diff --git a/adapter-base/src/main/java/org/eclipse/hono/adapter/AbstractProtocolAdapterBase.java b/adapter-base/src/main/java/org/eclipse/hono/adapter/AbstractProtocolAdapterBase.java index dfde5fafd0..ff974104e2 100644 --- a/adapter-base/src/main/java/org/eclipse/hono/adapter/AbstractProtocolAdapterBase.java +++ b/adapter-base/src/main/java/org/eclipse/hono/adapter/AbstractProtocolAdapterBase.java @@ -42,6 +42,7 @@ import org.eclipse.hono.client.telemetry.TelemetrySender; import org.eclipse.hono.client.util.ServiceClient; import org.eclipse.hono.service.AbstractServiceBase; +import org.eclipse.hono.service.AdapterDisabledException; import org.eclipse.hono.service.auth.ValidityBasedTrustOptions; import org.eclipse.hono.service.metric.MetricsTags.ConnectionAttemptOutcome; import org.eclipse.hono.service.util.ServiceBaseUtils; diff --git a/adapters/amqp/src/main/java/org/eclipse/hono/adapter/amqp/VertxBasedAmqpProtocolAdapter.java b/adapters/amqp/src/main/java/org/eclipse/hono/adapter/amqp/VertxBasedAmqpProtocolAdapter.java index 338a1c1cd2..285da75156 100644 --- a/adapters/amqp/src/main/java/org/eclipse/hono/adapter/amqp/VertxBasedAmqpProtocolAdapter.java +++ b/adapters/amqp/src/main/java/org/eclipse/hono/adapter/amqp/VertxBasedAmqpProtocolAdapter.java @@ -41,7 +41,6 @@ import org.apache.qpid.proton.message.Message; import org.eclipse.hono.adapter.AbstractProtocolAdapterBase; import org.eclipse.hono.adapter.AdapterConnectionsExceededException; -import org.eclipse.hono.adapter.AdapterDisabledException; import org.eclipse.hono.adapter.AuthorizationException; import org.eclipse.hono.adapter.auth.device.CredentialsApiAuthProvider; import org.eclipse.hono.adapter.auth.device.DeviceCredentials; @@ -67,8 +66,10 @@ import org.eclipse.hono.notification.deviceregistry.DeviceChangeNotification; import org.eclipse.hono.notification.deviceregistry.LifecycleChange; import org.eclipse.hono.notification.deviceregistry.TenantChangeNotification; +import org.eclipse.hono.service.AdapterDisabledException; import org.eclipse.hono.service.auth.DeviceUser; import org.eclipse.hono.service.http.HttpUtils; +import org.eclipse.hono.service.metric.MetricsTags; import org.eclipse.hono.service.metric.MetricsTags.ConnectionAttemptOutcome; import org.eclipse.hono.service.metric.MetricsTags.Direction; import org.eclipse.hono.service.metric.MetricsTags.EndpointType; @@ -1325,7 +1326,8 @@ private Future doUploadMessage( ProcessingOutcome.from(t), context.isRemotelySettled() ? QoS.AT_MOST_ONCE : QoS.AT_LEAST_ONCE, context.getPayloadSize(), - context.getTimer()); + context.getTimer(), + MetricsTags.Reason.from(t)); return Future.failedFuture(t); }).map(ok -> { diff --git a/adapters/amqp/src/test/java/org/eclipse/hono/adapter/amqp/VertxBasedAmqpProtocolAdapterTest.java b/adapters/amqp/src/test/java/org/eclipse/hono/adapter/amqp/VertxBasedAmqpProtocolAdapterTest.java index fcfb04f4a4..e2c6529198 100644 --- a/adapters/amqp/src/test/java/org/eclipse/hono/adapter/amqp/VertxBasedAmqpProtocolAdapterTest.java +++ b/adapters/amqp/src/test/java/org/eclipse/hono/adapter/amqp/VertxBasedAmqpProtocolAdapterTest.java @@ -388,7 +388,8 @@ public void testUploadTelemetryMessageFailsForDisabledAdapter(final VertxTestCon eq(ProcessingOutcome.UNPROCESSABLE), eq(MetricsTags.QoS.AT_LEAST_ONCE), eq(payload.length()), - any()); + any(), + eq(MetricsTags.Reason.TENANT_DISABLED_FOR_ADAPTER)); }); ctx.completeNow(); })); @@ -1000,7 +1001,8 @@ public void testMessageLimitExceededForATelemetryMessage(final VertxTestContext eq(ProcessingOutcome.UNPROCESSABLE), eq(MetricsTags.QoS.AT_LEAST_ONCE), eq(payload.length()), - any()); + any(), + eq(MetricsTags.Reason.MESSAGE_LIMIT_EXCEEDED)); }); } @@ -1027,7 +1029,8 @@ public void testMessageLimitExceededForAnEventMessage(final VertxTestContext ctx eq(ProcessingOutcome.UNPROCESSABLE), eq(MetricsTags.QoS.AT_LEAST_ONCE), eq(payload.length()), - any()); + any(), + eq(MetricsTags.Reason.MESSAGE_LIMIT_EXCEEDED)); }); } diff --git a/adapters/coap/src/main/java/org/eclipse/hono/adapter/coap/AbstractHonoResource.java b/adapters/coap/src/main/java/org/eclipse/hono/adapter/coap/AbstractHonoResource.java index 0967591ae8..ffa6aa8f71 100644 --- a/adapters/coap/src/main/java/org/eclipse/hono/adapter/coap/AbstractHonoResource.java +++ b/adapters/coap/src/main/java/org/eclipse/hono/adapter/coap/AbstractHonoResource.java @@ -413,7 +413,8 @@ protected final Future doUploadMessage( qos, payload.length(), getTtdStatus(context), - context.getTimer()); + context.getTimer(), + MetricsTags.Reason.from(t)); TracingHelper.logError(currentSpan, t); commandConsumerClosedTracker.onComplete(res -> currentSpan.finish()); return Future.failedFuture(t); diff --git a/adapters/coap/src/test/java/org/eclipse/hono/adapter/coap/EventResourceTest.java b/adapters/coap/src/test/java/org/eclipse/hono/adapter/coap/EventResourceTest.java index ce79003ae7..0c89fe2073 100644 --- a/adapters/coap/src/test/java/org/eclipse/hono/adapter/coap/EventResourceTest.java +++ b/adapters/coap/src/test/java/org/eclipse/hono/adapter/coap/EventResourceTest.java @@ -142,7 +142,8 @@ public void testUploadEventFailsForRejectedOutcome(final VertxTestContext ctx) { eq(MetricsTags.QoS.AT_LEAST_ONCE), eq(payload.length()), eq(TtdStatus.NONE), - any()); + any(), + eq(MetricsTags.Reason.UNKNOWN)); }); ctx.completeNow(); })); @@ -187,7 +188,8 @@ public void testMessageLimitExceededForAnEventMessage(final VertxTestContext ctx eq(MetricsTags.QoS.AT_LEAST_ONCE), eq(payload.length()), eq(TtdStatus.NONE), - any()); + any(), + eq(MetricsTags.Reason.MESSAGE_LIMIT_EXCEEDED)); }); ctx.completeNow(); })); diff --git a/adapters/coap/src/test/java/org/eclipse/hono/adapter/coap/TelemetryResourceTest.java b/adapters/coap/src/test/java/org/eclipse/hono/adapter/coap/TelemetryResourceTest.java index 0566e1fdb7..4dde379141 100644 --- a/adapters/coap/src/test/java/org/eclipse/hono/adapter/coap/TelemetryResourceTest.java +++ b/adapters/coap/src/test/java/org/eclipse/hono/adapter/coap/TelemetryResourceTest.java @@ -39,6 +39,7 @@ import org.eclipse.hono.client.ClientErrorException; import org.eclipse.hono.client.ServerErrorException; import org.eclipse.hono.client.command.CommandContext; +import org.eclipse.hono.service.AdapterDisabledException; import org.eclipse.hono.service.auth.DeviceUser; import org.eclipse.hono.service.metric.MetricsTags; import org.eclipse.hono.service.metric.MetricsTags.Direction; @@ -92,7 +93,7 @@ public void testUploadTelemetryFailsForDisabledTenant(final VertxTestContext ctx final var resource = givenAResource(adapter); // which is disabled for tenant "my-tenant" when(adapter.isAdapterEnabled(any(TenantObject.class))) - .thenReturn(Future.failedFuture(new ClientErrorException(HttpURLConnection.HTTP_FORBIDDEN))); + .thenReturn(Future.failedFuture(new AdapterDisabledException("my-tenant"))); // WHEN a device that belongs to "my-tenant" publishes a telemetry message final Buffer payload = Buffer.buffer("some payload"); @@ -118,7 +119,8 @@ public void testUploadTelemetryFailsForDisabledTenant(final VertxTestContext ctx eq(MetricsTags.QoS.AT_MOST_ONCE), eq(payload.length()), eq(TtdStatus.NONE), - any()); + any(), + eq(MetricsTags.Reason.TENANT_DISABLED_FOR_ADAPTER)); }); ctx.completeNow(); })); @@ -371,7 +373,8 @@ public void testMessageLimitExceededForATelemetryMessage(final VertxTestContext eq(MetricsTags.QoS.AT_MOST_ONCE), eq(payload.length()), eq(TtdStatus.NONE), - any()); + any(), + eq(MetricsTags.Reason.MESSAGE_LIMIT_EXCEEDED)); }); ctx.completeNow(); })); @@ -560,7 +563,8 @@ public void testUploadTelemetryReleasesCommandForFailedDownstreamSender(final Ve eq(MetricsTags.QoS.AT_LEAST_ONCE), eq(payload.length()), eq(TtdStatus.COMMAND), - any()); + any(), + eq(MetricsTags.Reason.UNKNOWN)); // and the command delivery is released verify(commandContext).release(any(Throwable.class)); }); diff --git a/adapters/http-base/src/main/java/org/eclipse/hono/adapter/http/AbstractVertxBasedHttpProtocolAdapter.java b/adapters/http-base/src/main/java/org/eclipse/hono/adapter/http/AbstractVertxBasedHttpProtocolAdapter.java index 9000e9b19a..aee46fa60d 100644 --- a/adapters/http-base/src/main/java/org/eclipse/hono/adapter/http/AbstractVertxBasedHttpProtocolAdapter.java +++ b/adapters/http-base/src/main/java/org/eclipse/hono/adapter/http/AbstractVertxBasedHttpProtocolAdapter.java @@ -45,6 +45,7 @@ import org.eclipse.hono.util.CommandConstants; import org.eclipse.hono.util.Constants; import org.eclipse.hono.util.MessageHelper; +import org.eclipse.hono.util.QoS; import org.eclipse.hono.util.RegistrationAssertion; import org.eclipse.hono.util.Strings; import org.eclipse.hono.util.TenantObject; @@ -85,7 +86,7 @@ public abstract class AbstractVertxBasedHttpProtocolAdapter startPromise) { .onComplete(startPromise); } - private Sample getMicrometerSample(final RoutingContext ctx) { + /** + * Gets the timer used to track the processing of a telemetry message. + * + * @param ctx The routing context to extract the sample from. + * @return The sample or {@code null} if the context does not + * contain a sample. + * @throws NullPointerException if ctx is {@code null}. + */ + protected Sample getMicrometerSample(final RoutingContext ctx) { return ctx.get(KEY_MICROMETER_SAMPLE); } @@ -778,7 +787,8 @@ private void doUploadMessage( qos, payloadSize, ctx.getTtdStatus(), - getMicrometerSample(ctx.getRoutingContext())); + getMicrometerSample(ctx.getRoutingContext()), + MetricsTags.Reason.from(t)); TracingHelper.logError(currentSpan, t); currentSpan.finish(); return Future.failedFuture(t); @@ -1295,9 +1305,16 @@ public final void uploadCommandResponseMessage( }); } - private static MetricsTags.QoS getQoSLevel( - final EndpointType endpoint, - final org.eclipse.hono.util.QoS requestedQos) { + /** + * Get the QoS based on the endpoint and the requested QoS. + * + * @param endpoint The endpoint the message was sent to. + * @param requestedQos The QoS requested by the sender. + * @return The resulting QoS. + */ + protected static MetricsTags.QoS getQoSLevel( + final EndpointType endpoint, + final QoS requestedQos) { if (endpoint == EndpointType.EVENT) { return MetricsTags.QoS.AT_LEAST_ONCE; diff --git a/adapters/http-base/src/test/java/org/eclipse/hono/adapter/http/AbstractVertxBasedHttpProtocolAdapterTest.java b/adapters/http-base/src/test/java/org/eclipse/hono/adapter/http/AbstractVertxBasedHttpProtocolAdapterTest.java index 538184b6cc..a4f19cb0fc 100644 --- a/adapters/http-base/src/test/java/org/eclipse/hono/adapter/http/AbstractVertxBasedHttpProtocolAdapterTest.java +++ b/adapters/http-base/src/test/java/org/eclipse/hono/adapter/http/AbstractVertxBasedHttpProtocolAdapterTest.java @@ -703,7 +703,8 @@ public void testUploadTelemetryWithTtdClosesCommandConsumerIfSendingFails() { eq(MetricsTags.QoS.AT_MOST_ONCE), eq(payload.length()), eq(TtdStatus.NONE), - any()); + any(), + eq(MetricsTags.Reason.UNKNOWN)); // and the command consumer is closed verify(commandConsumer).close(eq(false), any()); } @@ -786,7 +787,8 @@ public void testMessageLimitExceededForATelemetryMessage() { eq(MetricsTags.QoS.AT_MOST_ONCE), eq(payload.length()), eq(TtdStatus.NONE), - any()); + any(), + eq(MetricsTags.Reason.MESSAGE_LIMIT_EXCEEDED)); } /** @@ -825,7 +827,8 @@ public void testMessageLimitExceededForAnEventMessage() { eq(MetricsTags.QoS.AT_LEAST_ONCE), eq(payload.length()), eq(TtdStatus.NONE), - any()); + any(), + eq(MetricsTags.Reason.MESSAGE_LIMIT_EXCEEDED)); } /** diff --git a/adapters/lora/src/main/java/org/eclipse/hono/adapter/lora/LoraProtocolAdapter.java b/adapters/lora/src/main/java/org/eclipse/hono/adapter/lora/LoraProtocolAdapter.java index 5f29548a27..6fb8e8dce5 100644 --- a/adapters/lora/src/main/java/org/eclipse/hono/adapter/lora/LoraProtocolAdapter.java +++ b/adapters/lora/src/main/java/org/eclipse/hono/adapter/lora/LoraProtocolAdapter.java @@ -236,6 +236,11 @@ void handleProviderRoute(final HttpContext ctx, final LoraProvider provider) { final var gatewayDevice = ctx.getAuthenticatedDevice(); TracingHelper.setDeviceTags(currentSpan, gatewayDevice.getTenantId(), gatewayDevice.getDeviceId()); + + final Future tenantTracker = getTenantConfiguration(gatewayDevice.getTenantId(), currentSpan.context()); + final MetricsTags.EndpointType endpoint = MetricsTags.EndpointType.fromString(ctx.getRequestedResource().getEndpoint()); + final MetricsTags.QoS qos = getQoSLevel(endpoint, ctx.getRequestedQos()); + try { final LoraMessage loraMessage = provider.getMessage(ctx.getRoutingContext()); final LoraMessageType type = loraMessage.getType(); @@ -263,18 +268,41 @@ void handleProviderRoute(final HttpContext ctx, final LoraProvider provider) { registerCommandConsumerIfNeeded(provider, gatewayDevice, currentSpan.context()); break; default: + LOG.debug("discarding message of unsupported type [tenant: {}, device-id: {}, type: {}]", - gatewayDevice.getTenantId(), deviceId, type); + gatewayDevice.getTenantId(), deviceId, type); currentSpan.log("discarding message of unsupported type"); currentSpan.finish(); // discard the message but return 202 to not cause errors on the LoRa provider side handle202(ctx.getRoutingContext()); + + final MetricsTags.Reason reason = type == LoraMessageType.UNKNOWN ? MetricsTags.Reason.UNKNOWN_TYPE : MetricsTags.Reason.UNSUPPORTED_TYPE; + metrics.reportTelemetry( + endpoint, + gatewayDevice.getTenantId(), + tenantTracker.result(), + MetricsTags.ProcessingOutcome.UNPROCESSABLE, + qos, + ctx.getRoutingContext().body().buffer().length(), + ctx.getTtdStatus(), + getMicrometerSample(ctx.getRoutingContext()), + reason); } } catch (final LoraProviderMalformedPayloadException e) { LOG.debug("error processing request from provider [name: {}]", provider.getProviderName(), e); TracingHelper.logError(currentSpan, "error processing request", e); currentSpan.finish(); handle400(ctx.getRoutingContext(), ERROR_MSG_INVALID_PAYLOAD); + metrics.reportTelemetry( + endpoint, + gatewayDevice.getTenantId(), + tenantTracker.result(), + MetricsTags.ProcessingOutcome.UNPROCESSABLE, + qos, + ctx.getRoutingContext().body().buffer().length(), + ctx.getTtdStatus(), + getMicrometerSample(ctx.getRoutingContext()), + MetricsTags.Reason.BAD_SYNTAX); } } diff --git a/adapters/lora/src/main/java/org/eclipse/hono/adapter/lora/UnknownLoraMessage.java b/adapters/lora/src/main/java/org/eclipse/hono/adapter/lora/UnknownLoraMessage.java new file mode 100644 index 0000000000..595b343b4d --- /dev/null +++ b/adapters/lora/src/main/java/org/eclipse/hono/adapter/lora/UnknownLoraMessage.java @@ -0,0 +1,57 @@ +/** + * Copyright (c) 2023 Contributors to the Eclipse Foundation + * + * See the NOTICE file(s) distributed with this work for additional + * information regarding copyright ownership. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License 2.0 which is available at + * http://www.eclipse.org/legal/epl-2.0 + * + * SPDX-License-Identifier: EPL-2.0 + */ + + +package org.eclipse.hono.adapter.lora; + +import io.vertx.core.buffer.Buffer; + + +/** + * A Lora message that contains unknown data sent from an end-device to a Network Server. + * + */ +public class UnknownLoraMessage implements LoraMessage { + + /** + * {@inheritDoc} + */ + @Override + public final byte[] getDevEUI() { + return new byte[0]; + } + + /** + * {@inheritDoc} + */ + @Override + public final String getDevEUIAsString() { + return ""; + } + + /** + * {@inheritDoc} + */ + @Override + public final LoraMessageType getType() { + return LoraMessageType.UNKNOWN; + } + + /** + * {@inheritDoc} + */ + @Override + public final Buffer getPayload() { + return Buffer.buffer(); + } +} diff --git a/adapters/lora/src/main/java/org/eclipse/hono/adapter/lora/providers/JsonBasedLoraProvider.java b/adapters/lora/src/main/java/org/eclipse/hono/adapter/lora/providers/JsonBasedLoraProvider.java index 60e1c3a1d1..8aa2e30d28 100644 --- a/adapters/lora/src/main/java/org/eclipse/hono/adapter/lora/providers/JsonBasedLoraProvider.java +++ b/adapters/lora/src/main/java/org/eclipse/hono/adapter/lora/providers/JsonBasedLoraProvider.java @@ -20,6 +20,7 @@ import org.eclipse.hono.adapter.lora.LoraMessage; import org.eclipse.hono.adapter.lora.LoraMessageType; import org.eclipse.hono.adapter.lora.LoraMetaData; +import org.eclipse.hono.adapter.lora.UnknownLoraMessage; import org.eclipse.hono.adapter.lora.UplinkLoraMessage; import org.eclipse.hono.util.CommandEndpoint; import org.eclipse.hono.util.Strings; @@ -51,7 +52,7 @@ public LoraMessage getMessage(final RoutingContext ctx) { case UPLINK: return createUplinkMessage(ctx.request(), message); default: - throw new LoraProviderMalformedPayloadException(String.format("unsupported message type [%s]", type)); + return createUnknownMessage(ctx.request(), message); } } catch (final RuntimeException e) { // catch generic exception in order to also cover any (runtime) exceptions @@ -184,4 +185,26 @@ protected UplinkLoraMessage createUplinkMessage(final HttpServerRequest request, message.setAdditionalData(getAdditionalData(requestBody)); return message; } + + /** + * Creates an object representation of a Lora unknown message. + *

+ * This method uses the {@link #getDevEui(JsonObject)} + * method to extract relevant information from the request body to add + * to the returned message. + * + * @param request The request sent by the provider's Network Server. + * @param requestBody The JSON object contained in the request's body. + * @return The message. + * @throws RuntimeException if the message cannot be parsed. + */ + protected UnknownLoraMessage createUnknownMessage(final HttpServerRequest request, final JsonObject requestBody) { + + Objects.requireNonNull(requestBody); + + final UnknownLoraMessage message = new UnknownLoraMessage(); + return message; + } + + } diff --git a/adapters/lora/src/main/java/org/eclipse/hono/adapter/lora/providers/KerlinkProvider.java b/adapters/lora/src/main/java/org/eclipse/hono/adapter/lora/providers/KerlinkProvider.java index c26b355790..486673389c 100644 --- a/adapters/lora/src/main/java/org/eclipse/hono/adapter/lora/providers/KerlinkProvider.java +++ b/adapters/lora/src/main/java/org/eclipse/hono/adapter/lora/providers/KerlinkProvider.java @@ -79,7 +79,10 @@ public Set pathPrefixes() { */ @Override public LoraMessageType getMessageType(final JsonObject loraMessage) { - return LoraMessageType.UPLINK; + if (loraMessage.containsKey(FIELD_KERLINK_PAYLOAD)) { + return LoraMessageType.UPLINK; + } + return LoraMessageType.UNKNOWN; } @Override diff --git a/adapters/lora/src/main/java/org/eclipse/hono/adapter/lora/providers/KerlinkProviderCustomContentType.java b/adapters/lora/src/main/java/org/eclipse/hono/adapter/lora/providers/KerlinkProviderCustomContentType.java index 84e4898eee..d830979e17 100644 --- a/adapters/lora/src/main/java/org/eclipse/hono/adapter/lora/providers/KerlinkProviderCustomContentType.java +++ b/adapters/lora/src/main/java/org/eclipse/hono/adapter/lora/providers/KerlinkProviderCustomContentType.java @@ -15,6 +15,7 @@ import java.util.Base64; import java.util.Objects; +import java.util.Optional; import java.util.Set; import javax.enterprise.context.ApplicationScoped; @@ -57,7 +58,12 @@ public Set pathPrefixes() { */ @Override public LoraMessageType getMessageType(final JsonObject loraMessage) { - return LoraMessageType.UPLINK; + final Optional payload = LoraUtils.getChildObject(loraMessage, FIELD_UPLINK_USER_DATA, JsonObject.class) + .map(userData -> userData.getValue(FIELD_UPLINK_PAYLOAD)); + if (payload.isPresent()) { + return LoraMessageType.UPLINK; + } + return LoraMessageType.UNKNOWN; } /** diff --git a/adapters/lora/src/main/java/org/eclipse/hono/adapter/lora/providers/OrbiwiseProvider.java b/adapters/lora/src/main/java/org/eclipse/hono/adapter/lora/providers/OrbiwiseProvider.java index e8b81c9516..441d1cd7f4 100644 --- a/adapters/lora/src/main/java/org/eclipse/hono/adapter/lora/providers/OrbiwiseProvider.java +++ b/adapters/lora/src/main/java/org/eclipse/hono/adapter/lora/providers/OrbiwiseProvider.java @@ -82,7 +82,10 @@ protected Buffer getPayload(final JsonObject loraMessage) { protected LoraMessageType getMessageType(final JsonObject loraMessage) { Objects.requireNonNull(loraMessage); - return LoraMessageType.UPLINK; + if (loraMessage.containsKey(FIELD_ORBIWISE_PAYLOAD)) { + return LoraMessageType.UPLINK; + } + return LoraMessageType.UNKNOWN; } @Override diff --git a/adapters/lora/src/main/java/org/eclipse/hono/adapter/lora/providers/ProximusProvider.java b/adapters/lora/src/main/java/org/eclipse/hono/adapter/lora/providers/ProximusProvider.java index a148532773..e73efd398f 100644 --- a/adapters/lora/src/main/java/org/eclipse/hono/adapter/lora/providers/ProximusProvider.java +++ b/adapters/lora/src/main/java/org/eclipse/hono/adapter/lora/providers/ProximusProvider.java @@ -66,7 +66,11 @@ public Set pathPrefixes() { */ @Override protected LoraMessageType getMessageType(final JsonObject loraMessage) { - return LoraMessageType.UPLINK; + + if (loraMessage.containsKey(FIELD_PROXIMUS_PAYLOAD)) { + return LoraMessageType.UPLINK; + } + return LoraMessageType.UNKNOWN; } @Override diff --git a/adapters/lora/src/main/java/org/eclipse/hono/adapter/lora/providers/ThingsNetworkProvider.java b/adapters/lora/src/main/java/org/eclipse/hono/adapter/lora/providers/ThingsNetworkProvider.java index 2007efb841..3a9c4d5288 100644 --- a/adapters/lora/src/main/java/org/eclipse/hono/adapter/lora/providers/ThingsNetworkProvider.java +++ b/adapters/lora/src/main/java/org/eclipse/hono/adapter/lora/providers/ThingsNetworkProvider.java @@ -76,7 +76,10 @@ public Set pathPrefixes() { */ @Override protected LoraMessageType getMessageType(final JsonObject loraMessage) { - return LoraMessageType.UPLINK; + if (loraMessage.containsKey(FIELD_TTN_PAYLOAD_RAW)) { + return LoraMessageType.UPLINK; + } + return LoraMessageType.UNKNOWN; } @Override diff --git a/adapters/lora/src/test/java/org/eclipse/hono/adapter/lora/LoraProtocolAdapterTest.java b/adapters/lora/src/test/java/org/eclipse/hono/adapter/lora/LoraProtocolAdapterTest.java index 0bd731572c..c1216a914c 100644 --- a/adapters/lora/src/test/java/org/eclipse/hono/adapter/lora/LoraProtocolAdapterTest.java +++ b/adapters/lora/src/test/java/org/eclipse/hono/adapter/lora/LoraProtocolAdapterTest.java @@ -89,6 +89,7 @@ public class LoraProtocolAdapterTest extends ProtocolAdapterTestSupport !opName.equals(LoraProtocolAdapter.SPAN_NAME_PROCESS_MESSAGE)))).thenReturn(otherSpanBuilder); - final HttpAdapterMetrics metrics = mock(HttpAdapterMetrics.class); + metrics = mock(HttpAdapterMetrics.class); when(metrics.startTimer()).thenReturn(mock(Sample.class)); final LoraCommandSubscriptions commandSubscriptions = new LoraCommandSubscriptions(vertx, tracer); diff --git a/adapters/lora/src/test/java/org/eclipse/hono/adapter/lora/providers/LoraProviderTestBase.java b/adapters/lora/src/test/java/org/eclipse/hono/adapter/lora/providers/LoraProviderTestBase.java index 0c108f66f9..f272ce9b05 100644 --- a/adapters/lora/src/test/java/org/eclipse/hono/adapter/lora/providers/LoraProviderTestBase.java +++ b/adapters/lora/src/test/java/org/eclipse/hono/adapter/lora/providers/LoraProviderTestBase.java @@ -24,6 +24,7 @@ import org.eclipse.hono.adapter.lora.LoraCommand; import org.eclipse.hono.adapter.lora.LoraMessageType; +import org.eclipse.hono.adapter.lora.UnknownLoraMessage; import org.eclipse.hono.adapter.lora.UplinkLoraMessage; import org.eclipse.hono.util.CommandEndpoint; import org.junit.jupiter.api.BeforeEach; @@ -65,7 +66,7 @@ public abstract class LoraProviderTestBase { */ protected final RoutingContext getRequestContext(final LoraMessageType type, final String... classifiers) throws IOException { - final Buffer message = LoraTestUtil.loadTestFile(provider.getProviderName(), LoraMessageType.UPLINK, classifiers); + final Buffer message = LoraTestUtil.loadTestFile(provider.getProviderName(), type, classifiers); final HttpServerRequest request = mock(HttpServerRequest.class); final RoutingContext routingContext = mock(RoutingContext.class); when(routingContext.request()).thenReturn(request); @@ -99,6 +100,19 @@ public void testGetMessageSucceedsForUplinkMessage() throws IOException { assertMetaDataForUplinkMessage(loraMessage); } + /** + * Verifies that uplink messages are parsed correctly. + * + * @throws IOException If the file containing the example message could not be loaded. + */ + @Test + public void testGetMessageSucceedsForUnknownMessage() throws IOException { + + final RoutingContext request = getRequestContext(LoraMessageType.UNKNOWN); + final UnknownLoraMessage loraMessage = (UnknownLoraMessage) provider.getMessage(request); + assertThat(loraMessage.getType()).isEqualTo(LoraMessageType.UNKNOWN); + } + /** * Asserts presence of common properties in an uplink message. * diff --git a/adapters/lora/src/test/resources/payload/actilityEnterprise.unknown.json b/adapters/lora/src/test/resources/payload/actilityEnterprise.unknown.json new file mode 100644 index 0000000000..ffbec55de5 --- /dev/null +++ b/adapters/lora/src/test/resources/payload/actilityEnterprise.unknown.json @@ -0,0 +1,5 @@ +{ + "DevEUI_unknown": { + + } +} diff --git a/adapters/lora/src/test/resources/payload/actilityWireless.unknown.json b/adapters/lora/src/test/resources/payload/actilityWireless.unknown.json new file mode 100644 index 0000000000..d8ee1dfe7f --- /dev/null +++ b/adapters/lora/src/test/resources/payload/actilityWireless.unknown.json @@ -0,0 +1,4 @@ +{ + "DevEUI_unknown": { + } +} diff --git a/adapters/lora/src/test/resources/payload/chirpStack.unknown.json b/adapters/lora/src/test/resources/payload/chirpStack.unknown.json new file mode 100644 index 0000000000..5abcdd80bb --- /dev/null +++ b/adapters/lora/src/test/resources/payload/chirpStack.unknown.json @@ -0,0 +1,42 @@ +{ + "applicationID": "123", + "applicationName": "temperature-sensor", + "deviceName": "garden-sensor", + "devEUI": "AgICAgICAgI=", + "devAddr": "AFE5Qg==", + "rxInfo": [ + { + "gatewayID": "AwMDAwMDAwM=", + "time": "2019-11-08T13:59:25.048445Z", + "timeSinceGPSEpoch": null, + "rssi": -48, + "loRaSNR": 9, + "channel": 5, + "rfChain": 0, + "board": 0, + "antenna": 0, + "location": { + "latitude": 52.3740364, + "longitude": 4.9144401, + "altitude": 10.5 + }, + "fineTimestampType": "NONE", + "context": "9u/uvA==", + "uplinkID": "jhMh8Gq6RAOChSKbi83RHQ==" + } + ], + "txInfo": { + "frequency": 868100000, + "modulation": "LORA", + "loRaModulationInfo": { + "bandwidth": 125, + "spreadingFactor": 11, + "codeRate": "4/5", + "polarizationInversion": false + } + }, + "dr": 1, + "tags": { + "key": "value" + } +} \ No newline at end of file diff --git a/adapters/lora/src/test/resources/payload/chirpStackV4.unknown.json b/adapters/lora/src/test/resources/payload/chirpStackV4.unknown.json new file mode 100644 index 0000000000..03a32ee320 --- /dev/null +++ b/adapters/lora/src/test/resources/payload/chirpStackV4.unknown.json @@ -0,0 +1,18 @@ +{ + "deduplicationId": "c9dbe358-2578-4fb7-b295-66b44edc45a6", + "time": "2022-07-18T09:33:28.823500726+00:00", + "deviceInfo": { + "tenantId": "52f14cd4-c6f1-4fbd-8f87-4025e1d49242", + "tenantName": "ChirpStack", + "applicationId": "17c82e96-be03-4f38-aef3-f83d48582d97", + "applicationName": "Test application", + "deviceProfileId": "14855bf7-d10d-4aee-b618-ebfcb64dc7ad", + "deviceProfileName": "Test device-profile", + "deviceName": "Test device", + "devEui": "0101010101010101", + "tags": { + "key": "value" + } + }, + "devAddr": "00189440" +} \ No newline at end of file diff --git a/adapters/lora/src/test/resources/payload/everynet.unknown.json b/adapters/lora/src/test/resources/payload/everynet.unknown.json new file mode 100644 index 0000000000..835bba126d --- /dev/null +++ b/adapters/lora/src/test/resources/payload/everynet.unknown.json @@ -0,0 +1,18 @@ +{ + "meta": { + "network": "9e9bf02a", + "packet_hash": "adc6bcac0d06195bc0329c3ef6a2d6ea", + "application": "b3a1067cf7085309", + "time": 1504638900.866375, + "device": "8c30dd074be218cb", + "packet_id": "287f9555a3e8b000ffc8c3c50f60e309", + "gateway": "017e8cd996cd3a0e" + }, + "params": { + "dev_eui": "8c30dd074be218cb", + "dev_addr": "01d6dcd6", + "dev_nonce": "f9e7", + "net_id": "000000" + }, + "type": "join_request" +} \ No newline at end of file diff --git a/adapters/lora/src/test/resources/payload/firefly.unknown.json b/adapters/lora/src/test/resources/payload/firefly.unknown.json new file mode 100644 index 0000000000..11a2e0ed3c --- /dev/null +++ b/adapters/lora/src/test/resources/payload/firefly.unknown.json @@ -0,0 +1,9 @@ +{ + "uid": "8a569133-aa44-4d7e-810d-af62faf9f722", + "type": "join_accept", + "received_at": "2016-07-15T14:31:11", + "frame_counter": null, + "for_frame_counter": null, + "direction": "down", + "device_eui": "2564927382738492" +} \ No newline at end of file diff --git a/adapters/lora/src/test/resources/payload/kerlink-custom-content-type.unknown.json b/adapters/lora/src/test/resources/payload/kerlink-custom-content-type.unknown.json new file mode 100644 index 0000000000..2c63c08510 --- /dev/null +++ b/adapters/lora/src/test/resources/payload/kerlink-custom-content-type.unknown.json @@ -0,0 +1,2 @@ +{ +} diff --git a/adapters/lora/src/test/resources/payload/kerlink.unknown.json b/adapters/lora/src/test/resources/payload/kerlink.unknown.json new file mode 100644 index 0000000000..2c63c08510 --- /dev/null +++ b/adapters/lora/src/test/resources/payload/kerlink.unknown.json @@ -0,0 +1,2 @@ +{ +} diff --git a/adapters/lora/src/test/resources/payload/liveObjects.unknown.json b/adapters/lora/src/test/resources/payload/liveObjects.unknown.json new file mode 100644 index 0000000000..dd7c2ed826 --- /dev/null +++ b/adapters/lora/src/test/resources/payload/liveObjects.unknown.json @@ -0,0 +1,62 @@ +{ + "metadata": { + "source": "urn:lo:nsid:lora:4883C7DF3001114B", + "encoding": "siconia_temperature_humidity_pressure", + "group": { + "path": "/", + "id": "root" + }, + "device": { + "location": { + "provider": "static", + "lon": 2.545599, + "lat": 48.82198 + } + }, + "network": { + "lora": { + "rssi": -110, + "esp": -111.76, + "ack": false, + "fcnt": 27517, + "devEUI": "01020304050607AB", + "frequency": 868.5, + "signalLevel": 5, + "gatewayCnt": 5, + "sf": 10, + "messageType": "JOIN", + "port": 10, + "snr": 3, + "location": { + "provider": "lora", + "alt": 0, + "accuracy": 10000, + "lon": 2.526197, + "lat": 48.83361 + }, + "missingFcnt": 0 + } + } + }, + "streamId": "urn:lora:20635F0108000C8D!uplink", + "created": "2021-05-30T19:02:46.789Z", + "extra": { + }, + "location": { + "provider": "static", + "alt": null, + "accuracy": null, + "lon": 2.545599, + "lat": 48.82198 + }, + "model": "lora_v0", + "id": "60b3e15603b409370d2d2b10", + "value": { + "payload": "62756D6C7578", + "temperature": 21.81, + "humidity": 46.3, + "pressure": 1013.08 + }, + "timestamp": "2021-05-30T19:02:46.161Z", + "tags": [] +} diff --git a/adapters/lora/src/test/resources/payload/loriot.unknown.json b/adapters/lora/src/test/resources/payload/loriot.unknown.json new file mode 100644 index 0000000000..2c674e5e99 --- /dev/null +++ b/adapters/lora/src/test/resources/payload/loriot.unknown.json @@ -0,0 +1,24 @@ +{ + "cmd": "join", + "seqno": 136, + "EUI": "01020304050607AB", + "ts": 1573574479110, + "fcnt": 135, + "port": 2, + "freq": 868300000, + "dr": "SF7 BW125 4/5", + "ack": false, + "gws": [ + { + "rssi": -63, + "snr": 10, + "ts": 1573574479110, + "time": "2019-11-12T16:01:19.103417Z", + "gweui": "0101010101010101", + "lat": 12, + "lon": 4.4007817 + } + ], + "bat": 255, + "data": "62756D6C7578" +} diff --git a/adapters/lora/src/test/resources/payload/multiTech.unknown.json b/adapters/lora/src/test/resources/payload/multiTech.unknown.json new file mode 100644 index 0000000000..795763142b --- /dev/null +++ b/adapters/lora/src/test/resources/payload/multiTech.unknown.json @@ -0,0 +1,26 @@ +{ + "tmst": 320955108, + "chan": 2, + "rfch": 0, + "freq": 868.5, + "stat": 1, + "modu": "LORA", + "datr": "SF12BW125", + "codr": "4/5", + "lsnr": 8, + "rssi": -35, + "opts": "", + "size": 31, + "fcnt": 2, + "cls": 0, + "port": 2, + "mhdr": "80f97d5e01800200", + "appeui": "70-b3-d5-7b-b1-c0-ff-ee", + "deveui": "01-02-03-04-05-06-07-AB", + "devaddr": "015e7df9", + "ack": false, + "adr": true, + "gweui": "00-80-00-00-a0-00-4b-95", + "seqn": 2, + "time": "2021-04-19T06:19:30.762055Z" +} diff --git a/adapters/lora/src/test/resources/payload/objenious.unknown.json b/adapters/lora/src/test/resources/payload/objenious.unknown.json new file mode 100644 index 0000000000..8093e95bf1 --- /dev/null +++ b/adapters/lora/src/test/resources/payload/objenious.unknown.json @@ -0,0 +1,40 @@ +{ + "id": "uplink-7-1221", + "device_id": 1325751707030347, + "group_id": 1, + "group": "hono", + "profile_id": 4, + "profile": "test-tag", + "type": "unknown", + "timestamp": "2019-02-27T14:48:35.544Z", + "count": 7, + "payload_encrypted": "4b503954fe7a25629aa9d18b3dc4daa97635c4f5e391e6b7471d4e31d04958b156aa", + "payload_cleartext": "62756D6C7578", + "device_properties": { + "appeui": "be4800dfcb4f4333", + "deveui": "01020304050607AB", + "external_id": "" + }, + "protocol_data": { + "AppNonce": "d04ade", + "DevAddr": "d508e11e", + "DevNonce": "1221", + "NetID": "000007", + "best_gateway_id": "O24614", + "gateways": 25, + "lora_version": 0, + "noise": -10.22221891083863, + "port": 1, + "rssi": -103, + "sf": 11, + "signal": -102.12901394045883, + "snr": 1 + }, + "lat": 53.108805, + "lng": 9.193430, + "geolocation_type": "network", + "geolocation_precision": 1000, + "city_code": "12345", + "city_name": "none", + "delivered_at": null +} diff --git a/adapters/lora/src/test/resources/payload/orbiwise.unknown.json b/adapters/lora/src/test/resources/payload/orbiwise.unknown.json new file mode 100644 index 0000000000..0b67b62797 --- /dev/null +++ b/adapters/lora/src/test/resources/payload/orbiwise.unknown.json @@ -0,0 +1,27 @@ +{ + "confirmed":true, + "cr_used":"4/5", + "data_format":"hex", + "decrypted":true, + "devaddr":277690613, + "deveui":"01020304050607AB", + "device_redundancy":1, + "dr_used":"SF8BW500", + "early":false, + "fcnt":"57", + "freq":868500000000000, + "gtw_info":[{"ant":0, + "gtw_id":"10000001", + "rssi":-112, + "snr":-7.75}], + "id":1595970491225, + "live":false, + "mac_msg":"80f5388d1080581502958f3e69ed4ee658ca687c4bda6d9413b865d19f", + "port":2, + "rssi":-32, + "session_id":"e80181c0-b4c0-4a82-87b1-4d6844db553d", + "sf_used":10, + "snr":10, + "time_on_air_ms":30.848, + "timestamp":"2020-07-28T21:08:11.225Z" +} diff --git a/adapters/lora/src/test/resources/payload/proximus.unknown.json b/adapters/lora/src/test/resources/payload/proximus.unknown.json new file mode 100644 index 0000000000..f0bd22e1cb --- /dev/null +++ b/adapters/lora/src/test/resources/payload/proximus.unknown.json @@ -0,0 +1,38 @@ +{ + "companyName": "Hono Demo", + "thingName": "Temperature and humidity", + "thingVersion": "1", + "thingType": "Temperature and humidity", + "vendor": "BLX", + "latitude": "", + "longitude": "", + "description": "", + "locationFriendlyName1": "Home", + "locationFriendlyName2": "", + "containerFriendlyName": "Temperature", + "container": "0x0301.0x0000.0.m2m", + "value": "12.45", + "postfix": "°", + "timestamp": "1551278360", + "DevEUI": "01020304050607AB", + "DevAddr": "158205C6", + "FPort": "6", + "Fcntup": "23", + "Ackbit": "", + "Adrbit": "1", + "Fcntdn": "985", + "Lrcid": "00000239", + "Lrrrssi": "-54.000000", + "Lrrsnr": "2.000000", + "Spfact": "11", + "Subband": "G1", + "Channel": "LC2", + "Dvlrrcnt": "2", + "Lrrid": "038B0321", + "Customerid": "330220929", + "Customerdata": "{\"loc\":{\"lat\":\"53.108805\",\"lon\":\"9.193430\"},\"alr\":{\"pro\":\"UNOS/IFWKU\",\"ver\":\"1\"}}", + "Modelcfg": "0", + "Batterylevel": "", + "Batterytime": "", + "margin": "" +} diff --git a/adapters/lora/src/test/resources/payload/theThingsStack.unknown.json b/adapters/lora/src/test/resources/payload/theThingsStack.unknown.json new file mode 100644 index 0000000000..50d19db50d --- /dev/null +++ b/adapters/lora/src/test/resources/payload/theThingsStack.unknown.json @@ -0,0 +1,16 @@ +{ + "end_device_ids": { + "device_id": "dev1", + "application_ids": { + "application_id": "app1" + }, + "dev_eui": "01020304050607AB", + "join_eui": "800000000000000C", + "dev_addr": "00BCB929" + }, + "correlation_ids": [ + "as:up:01..." + ], + "received_at": "2020-02-12T15:15...", + "simulated": true +} diff --git a/adapters/lora/src/test/resources/payload/ttn.unknown.json b/adapters/lora/src/test/resources/payload/ttn.unknown.json new file mode 100644 index 0000000000..3a859ed69b --- /dev/null +++ b/adapters/lora/src/test/resources/payload/ttn.unknown.json @@ -0,0 +1,36 @@ +{ + "app_id": "ttn-app-id", + "dev_id": "ttn-dev-id", + "hardware_serial": "01020304050607AB", + "port": 1, + "counter": 9, + "is_retry": false, + "confirmed": false, + "payload_fields": {}, + "metadata": { + "airtime": 32527000, + "time": "2019-03-03T04:20:04Z", + "frequency": 868.1, + "modulation": "LORA", + "data_rate": "SF7BW125", + "bit_rate": 50000, + "coding_rate": "4/5", + "gateways": [ + { + "gtw_id": "0203040506070809", + "timestamp": 12345, + "time": "2019-03-03T04:19:32Z", + "channel": 0, + "rssi": -25, + "snr": 5, + "rf_chain": 0, + "latitude": 53.1088, + "longitude": 9.1934, + "altitude": 90 + } + ], + "latitude": 53.1088, + "longitude": 9.1934, + "altitude": 90 + } +} diff --git a/adapters/mqtt-base/src/main/java/org/eclipse/hono/adapter/mqtt/AbstractVertxBasedMqttProtocolAdapter.java b/adapters/mqtt-base/src/main/java/org/eclipse/hono/adapter/mqtt/AbstractVertxBasedMqttProtocolAdapter.java index 13910a0fea..d13382b7c4 100644 --- a/adapters/mqtt-base/src/main/java/org/eclipse/hono/adapter/mqtt/AbstractVertxBasedMqttProtocolAdapter.java +++ b/adapters/mqtt-base/src/main/java/org/eclipse/hono/adapter/mqtt/AbstractVertxBasedMqttProtocolAdapter.java @@ -731,7 +731,8 @@ public final Future uploadTelemetryMessage(final MqttContext ctx) { ProcessingOutcome.from(t), qos, payload.length(), - ctx.getTimer()); + ctx.getTimer(), + MetricsTags.Reason.from(t)); return Future.failedFuture(t); }); } @@ -781,7 +782,8 @@ public final Future uploadEventMessage(final MqttContext ctx) { ProcessingOutcome.from(t), qos, payload.length(), - ctx.getTimer()); + ctx.getTimer(), + MetricsTags.Reason.from(t)); return Future.failedFuture(t); }); } diff --git a/adapters/mqtt-base/src/test/java/org/eclipse/hono/adapter/mqtt/AbstractVertxBasedMqttProtocolAdapterTest.java b/adapters/mqtt-base/src/test/java/org/eclipse/hono/adapter/mqtt/AbstractVertxBasedMqttProtocolAdapterTest.java index 5e0eda7a2d..2333728c1b 100644 --- a/adapters/mqtt-base/src/test/java/org/eclipse/hono/adapter/mqtt/AbstractVertxBasedMqttProtocolAdapterTest.java +++ b/adapters/mqtt-base/src/test/java/org/eclipse/hono/adapter/mqtt/AbstractVertxBasedMqttProtocolAdapterTest.java @@ -1366,7 +1366,8 @@ public void testMessageLimitExceededForATelemetryMessage(final VertxTestContext eq(MetricsTags.ProcessingOutcome.UNPROCESSABLE), any(MetricsTags.QoS.class), anyInt(), - any()); + any(), + eq(MetricsTags.Reason.MESSAGE_LIMIT_EXCEEDED)); }); ctx.completeNow(); })); @@ -1413,7 +1414,8 @@ public void testMessageLimitExceededForAnEventMessage(final VertxTestContext ctx eq(MetricsTags.ProcessingOutcome.UNPROCESSABLE), any(MetricsTags.QoS.class), anyInt(), - any()); + any(), + eq(MetricsTags.Reason.MESSAGE_LIMIT_EXCEEDED)); }); ctx.completeNow(); })); diff --git a/log.log b/log.log new file mode 100644 index 0000000000..6ced52c634 --- /dev/null +++ b/log.log @@ -0,0 +1,45230 @@ +{"timestamp":"2023-07-25T01:59:09.518Z","sequence":85,"loggerClassName":"io.netty.util.internal.logging.LocationAwareSlf4JLogger","loggerName":"io.netty.util.internal.PlatformDependent","level":"INFO","message":"Your platform does not provide complete low-level API for accessing direct buffers reliably. Unless explicitly requested, heap buffer will always be preferred to avoid potential system instability.","threadName":"Thread-1","threadId":53,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:10.046Z","sequence":93,"loggerClassName":"org.jboss.logging.Logger","loggerName":"io.quarkus.runtime.configuration.ConfigRecorder","level":"WARN","message":"Build time property cannot be changed at runtime:\n - quarkus.opentelemetry.propagators is set to 'jaeger,ottrace,tracecontext,baggage' but it is build time fixed to 'tracecontext,baggage'. Did you change the property quarkus.opentelemetry.propagators after building the application?","threadName":"main","threadId":1,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:10.048Z","sequence":94,"loggerClassName":"org.jboss.logging.Logger","loggerName":"io.quarkus.vertx.core.runtime.VertxCoreRecorder","level":"DEBUG","message":"Vert.x Cache configured to: /tmp/vertx-cache/6848474754568730276","threadName":"main","threadId":1,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:10.05Z","sequence":98,"loggerClassName":"org.jboss.logging.Logger","loggerName":"io.quarkus.vertx.core.runtime.VertxCoreRecorder","level":"DEBUG","message":"Vertx has Native Transport Enabled: false","threadName":"main","threadId":1,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:10.051Z","sequence":99,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tracing.SamplerProducer","level":"DEBUG","message":"using OTEL configuration [otel.traces.sampler: null, otel.traces.sampler.arg: null]","threadName":"main","threadId":1,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:10.051Z","sequence":100,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tracing.SamplerProducer","level":"DEBUG","message":"using OTEL resources: {service.name=\"hono-service-device-registry-mongodb\", service.namespace=\"org.eclipse.hono\"}","threadName":"main","threadId":1,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:10.051Z","sequence":101,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tracing.SamplerProducer","level":"INFO","message":"using OpenTelemetry Sampler [ParentBased{root:AlwaysOnSampler,remoteParentSampled:AlwaysOnSampler,remoteParentNotSampled:AlwaysOffSampler,localParentSampled:AlwaysOnSampler,localParentNotSampled:AlwaysOffSampler}]","threadName":"main","threadId":1,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:10.055Z","sequence":102,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.kafka.metrics.MicrometerKafkaClientMetricsSupport","level":"INFO","message":"activating Kafka client metrics support; used metrics prefixes: [kafka.producer.topic.record.send.rate, kafka.producer.topic.record.error.rate, kafka.producer.node.request.rate, kafka.producer.node.response.rate, kafka.producer.node.request.latency.avg, kafka.producer.node.outgoing.byte.rate, kafka.producer.io.wait.time.ns.avg, kafka.producer.batch.size.avg, kafka.producer.produce.throttle.time.avg, kafka.producer.produce.throttle.time.max, kafka.consumer.fetch.manager.records.lag, kafka.consumer.fetch.manager.records.lag.max, kafka.consumer.fetch.manager.records.lead.min, kafka.consumer.fetch.manager.bytes.consumed.rate, kafka.consumer.fetch.manager.records.consumed.rate, kafka.consumer.fetch.manager.fetch.rate, kafka.consumer.fetch.manager.fetch.throttle.time.avg, kafka.consumer.fetch.manager.fetch.throttle.time.max, kafka.consumer.coordinator.rebalance.total, kafka.consumer.coordinator.failed.rebalance.total, kafka.consumer.coordinator.rebalance.latency.avg]","threadName":"main","threadId":1,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:10.056Z","sequence":103,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.quarkus.DelegatingAuthenticationServiceProducer","level":"INFO","message":"creating org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService instance","threadName":"main","threadId":1,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:10.056Z","sequence":104,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.util.KubernetesContainerUtil","level":"DEBUG","message":"Found container id 47c8819597ca99a98fb68a21593bfa9998ad9771e9f2cad97caaa5d692efce36","threadName":"main","threadId":1,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:10.056Z","sequence":105,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.SmallRyeHealthCheckServer","level":"DEBUG","message":"registering legacy readiness check [name: notification-kafka-producer-creation-122a2a94-a621-4683-bf01-1623ff0845d3]","threadName":"main","threadId":1,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:10.057Z","sequence":106,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.AbstractServiceApplication","level":"INFO","message":"running on Java VM [version: 17.0.6, name: Substrate VM, vendor: Oracle Corporation, max memory: 480MiB, processors: 1] with vert.x using legacy Base64 encoder","threadName":"main","threadId":1,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:10.058Z","sequence":107,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.app.Application","level":"INFO","message":"deploying 1 Hono MongoDB Device Registry instances ...","threadName":"main","threadId":1,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:10.058Z","sequence":108,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.config.MongoDbConfigProperties","level":"INFO","message":"using connection string, ignoring other connection properties","threadName":"main","threadId":1,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:10.06Z","sequence":109,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.BaseAuthenticationService","level":"INFO","message":"listening on event bus [address: authentication.in] for authentication requests","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:10.06Z","sequence":110,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"INFO","message":"starting DelegatingAuthenticationService [Authentication service: aloxy-hono-service-auth:5671] with support for SASL mechanisms: PLAIN","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:10.069Z","sequence":111,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.apache.kafka.common.security.authenticator.AbstractLogin","level":"INFO","message":"Successfully logged in.","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:10.071Z","sequence":112,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.kafka.metrics.MicrometerKafkaClientMetricsSupport","level":"DEBUG","message":"registered producer (1 producers total)","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:10.071Z","sequence":113,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.kafka.KafkaClientFactory","level":"DEBUG","message":"successfully created client [type: io.vertx.kafka.client.producer.impl.KafkaProducerImpl]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:10.071Z","sequence":114,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.app.Application","level":"INFO","message":"successfully deployed notification sender verticle","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:10.072Z","sequence":115,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.app.Application","level":"INFO","message":"successfully deployed authentication service verticle","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:10.072Z","sequence":116,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.AbstractServiceApplication","level":"DEBUG","message":"registering legacy health checks [provider: org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:10.072Z","sequence":117,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"INFO","message":"registering readiness check using vert.x Address Resolver","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:10.072Z","sequence":118,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.SmallRyeHealthCheckServer","level":"DEBUG","message":"registering legacy readiness check [name: authentication-service-availability]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:10.093Z","sequence":119,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.mongodb.driver.client","level":"INFO","message":"MongoClient with metadata {\"driver\": {\"name\": \"mongo-java-driver|reactive-streams\", \"version\": \"4.8.2\"}, \"os\": {\"type\": \"Linux\", \"name\": \"Linux\", \"architecture\": \"amd64\", \"version\": \"5.19.0-31-generic\"}, \"platform\": \"Java/Oracle Corporation/unknown-version\"} created with settings MongoClientSettings{readPreference=primary, writeConcern=WriteConcern{w=majority, wTimeout=null ms, journal=null}, retryWrites=true, retryReads=true, readConcern=ReadConcern{level=null}, credential=MongoCredential{mechanism=null, userName='eu3-aloxy', source='admin', password=, mechanismProperties=}, streamFactoryFactory=null, commandListeners=[], codecRegistry=ProvidersCodecRegistry{codecProviders=[ProvidersCodecRegistry{codecProviders=[MapOfCodecsProvider{codecsMap={class java.lang.Integer=org.bson.codecs.IntegerCodec@45699f86, class org.bson.BsonDocument=org.bson.codecs.BsonDocumentCodec@608ef329, class java.lang.String=org.bson.codecs.StringCodec@3b43b5bc, class java.lang.Double=org.bson.codecs.DoubleCodec@17d6528c, class java.lang.Long=org.bson.codecs.LongCodec@6754ba65, class java.lang.Boolean=org.bson.codecs.BooleanCodec@53995102}}]}, ProvidersCodecRegistry{codecProviders=[MapOfCodecsProvider{codecsMap={class io.vertx.core.json.JsonObject=io.vertx.ext.mongo.impl.codec.json.JsonObjectCodec@3d52e671}}]}]}, clusterSettings={hosts=[127.0.0.1:27017], srvHost=eu3.htp79.mongodb.net, srvServiceName=mongodb, mode=MULTIPLE, requiredClusterType=REPLICA_SET, requiredReplicaSetName='atlas-125ttg-shard-0', serverSelector='null', clusterListeners='[]', serverSelectionTimeout='30000 ms', localThreshold='30000 ms'}, socketSettings=SocketSettings{connectTimeoutMS=10000, readTimeoutMS=0, receiveBufferSize=0, sendBufferSize=0}, heartbeatSocketSettings=SocketSettings{connectTimeoutMS=10000, readTimeoutMS=10000, receiveBufferSize=0, sendBufferSize=0}, connectionPoolSettings=ConnectionPoolSettings{maxSize=100, minSize=0, maxWaitTimeMS=120000, maxConnectionLifeTimeMS=0, maxConnectionIdleTimeMS=0, maintenanceInitialDelayMS=0, maintenanceFrequencyMS=60000, connectionPoolListeners=[], maxConnecting=2}, serverSettings=ServerSettings{heartbeatFrequencyMS=10000, minHeartbeatFrequencyMS=500, serverListeners='[]', serverMonitorListeners='[]'}, sslSettings=SslSettings{enabled=true, invalidHostNameAllowed=false, context=javax.net.ssl.SSLContext@20589c6a}, applicationName='null', compressorList=[], uuidRepresentation=UNSPECIFIED, serverApi=null, autoEncryptionSettings=null, contextProvider=null}","threadName":"main","threadId":1,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:10.093Z","sequence":120,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"INFO","message":"using [org.eclipse.hono.deviceregistry.util.FieldLevelEncryption$NoopEncryption] for encrypting credentials","threadName":"main","threadId":1,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:10.093Z","sequence":121,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.SmallRyeHealthCheckServer","level":"DEBUG","message":"registering legacy readiness check [name: credentials-indices-created-0ceb0c25-0a1d-41d6-aa22-86fa94619092]","threadName":"main","threadId":1,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:10.093Z","sequence":122,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.SmallRyeHealthCheckServer","level":"DEBUG","message":"registering legacy readiness check [name: devices-indices-created-dc459f8b-376b-4941-b9f9-9adfd3725235]","threadName":"main","threadId":1,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:10.093Z","sequence":123,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.SmallRyeHealthCheckServer","level":"DEBUG","message":"registering legacy readiness check [name: tenants-indices-created-e04a3cd9-d0c5-40bf-8641-2c549042c2b9]","threadName":"main","threadId":1,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:10.093Z","sequence":124,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.SpringBasedHonoPasswordEncoder","level":"INFO","message":"using BCrypt [strength: 10] with PRNG [NativePRNGNonBlocking] for encoding clear text passwords","threadName":"main","threadId":1,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:10.093Z","sequence":125,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.util.KubernetesContainerUtil","level":"DEBUG","message":"Found container id 47c8819597ca99a98fb68a21593bfa9998ad9771e9f2cad97caaa5d692efce36","threadName":"main","threadId":1,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:10.094Z","sequence":126,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.JjwtBasedAuthTokenValidator","level":"INFO","message":"using public key from certificate [/opt/hono-aloxy-cert-service-auth/tls.crt] for validating tokens","threadName":"main","threadId":1,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:10.094Z","sequence":127,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"using service instance: org.eclipse.hono.deviceregistry.mongodb.service.MongoDbBasedTenantService@6cfa85ed","threadName":"main","threadId":1,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:10.094Z","sequence":128,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"registering endpoint [tenant]","threadName":"main","threadId":1,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:10.094Z","sequence":129,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.SmallRyeHealthCheckServer","level":"DEBUG","message":"registering legacy readiness check [name: event-kafka-producer-creation-55a90a4a-05b4-4f4e-bd74-54f12258e829]","threadName":"main","threadId":1,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:10.094Z","sequence":130,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"INFO","message":"using org.eclipse.hono.deviceregistry.mongodb.service.DaoBasedTenantInformationService@5916e1e6","threadName":"main","threadId":1,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:10.094Z","sequence":131,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"using service instance: org.eclipse.hono.deviceregistry.mongodb.service.MongoDbBasedRegistrationService@45d5d10e","threadName":"main","threadId":1,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:10.094Z","sequence":132,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"registering endpoint [registration]","threadName":"main","threadId":1,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:10.094Z","sequence":133,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.SmallRyeHealthCheckServer","level":"DEBUG","message":"registering legacy readiness check [name: event-kafka-producer-creation-883e5172-6233-4cf5-a75b-35597dcb2d04]","threadName":"main","threadId":1,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:10.094Z","sequence":134,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"using service instance: org.eclipse.hono.deviceregistry.mongodb.service.MongoDbBasedCredentialsService@18d65f25","threadName":"main","threadId":1,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:10.094Z","sequence":135,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"registering endpoint [credentials]","threadName":"main","threadId":1,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:10.095Z","sequence":136,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.tenant.DelegatingTenantManagementHttpEndpoint","level":"DEBUG","message":"using service instance: org.eclipse.hono.deviceregistry.mongodb.service.MongoDbBasedTenantManagementService@4ac55838","threadName":"main","threadId":1,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:10.095Z","sequence":137,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryHttpServer","level":"DEBUG","message":"registering endpoint [v1/tenants]","threadName":"main","threadId":1,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:10.095Z","sequence":138,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"using service instance: org.eclipse.hono.deviceregistry.mongodb.service.MongoDbBasedDeviceManagementService@53463b5a","threadName":"main","threadId":1,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:10.095Z","sequence":139,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryHttpServer","level":"DEBUG","message":"registering endpoint [v1/devices]","threadName":"main","threadId":1,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:10.095Z","sequence":140,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"using service instance: org.eclipse.hono.deviceregistry.mongodb.service.MongoDbBasedCredentialsManagementService@14aef079","threadName":"main","threadId":1,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:10.095Z","sequence":141,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryHttpServer","level":"DEBUG","message":"registering endpoint [v1/credentials]","threadName":"main","threadId":1,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:10.095Z","sequence":142,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryHttpServer","level":"INFO","message":"vert.x uses native transport: false","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:10.095Z","sequence":143,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.config.MongoDbBasedHttpServiceConfigProperties","level":"DEBUG","message":"using key [/opt/hono/tls/tls.key] and certificate [/opt/hono/tls/tls.crt] for identity","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:10.096Z","sequence":144,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryHttpServer","level":"INFO","message":"starting endpoint [name: v1/tenants, class: org.eclipse.hono.service.management.tenant.DelegatingTenantManagementHttpEndpoint]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:10.096Z","sequence":145,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryHttpServer","level":"INFO","message":"starting endpoint [name: v1/devices, class: org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:10.096Z","sequence":146,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryHttpServer","level":"INFO","message":"starting endpoint [name: v1/credentials, class: org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:10.096Z","sequence":147,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryHttpServer","level":"DEBUG","message":"OpenSSL [available: false, supports KeyManagerFactory: false]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:10.096Z","sequence":148,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryHttpServer","level":"INFO","message":"using JDK's default SSL engine","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:10.096Z","sequence":149,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryHttpServer","level":"INFO","message":"enabling secure protocol [TLSv1.2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:10.096Z","sequence":150,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryHttpServer","level":"INFO","message":"enabling secure protocol [TLSv1.3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:10.096Z","sequence":151,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryHttpServer","level":"INFO","message":"Service supports TLS ServerNameIndication: false","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:10.096Z","sequence":152,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.config.MongoDbBasedHttpServiceConfigProperties","level":"DEBUG","message":"using certificates from file [/opt/hono/tls/ca.crt] as trust anchor","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:10.096Z","sequence":153,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryHttpServer","level":"INFO","message":"enabling client authentication using certificates [io.vertx.core.net.PemTrustOptions]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:10.098Z","sequence":154,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.metrics.DeviceRegistryMetricsAdapter","level":"INFO","message":"registering gauge [hono.tenants.total]","threadName":"main","threadId":1,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:10.098Z","sequence":155,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"INFO","message":"vert.x uses native transport: false","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:10.099Z","sequence":156,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.config.ServiceConfigProperties","level":"DEBUG","message":"using key [/opt/hono/tls/tls.key] and certificate [/opt/hono/tls/tls.crt] for identity","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:10.099Z","sequence":157,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"INFO","message":"starting endpoint [name: credentials, class: org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:10.1Z","sequence":158,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.credentials.AbstractCredentialsService","level":"INFO","message":"Auto-provisioning of devices/gateways is available","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:10.1Z","sequence":159,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DeviceAndGatewayAutoProvisioner","level":"DEBUG","message":"starting up","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:10.102Z","sequence":160,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.kafka.metrics.MicrometerKafkaClientMetricsSupport","level":"DEBUG","message":"registered producer (2 producers total)","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:10.112Z","sequence":161,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.kafka.KafkaClientFactory","level":"DEBUG","message":"successfully created client [type: io.vertx.kafka.client.producer.impl.KafkaProducerImpl]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:10.116Z","sequence":162,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"INFO","message":"starting endpoint [name: registration, class: org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:10.116Z","sequence":163,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.EdgeDeviceAutoProvisioner","level":"DEBUG","message":"starting up","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:10.116Z","sequence":164,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.kafka.KafkaClientFactory","level":"DEBUG","message":"successfully created client [type: io.vertx.kafka.client.producer.impl.KafkaProducerImpl]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:10.117Z","sequence":165,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"INFO","message":"starting endpoint [name: tenant, class: org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:10.117Z","sequence":166,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"INFO","message":"Server uses secure standard port 5671","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:10.117Z","sequence":167,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"OpenSSL [available: false, supports KeyManagerFactory: false]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:10.117Z","sequence":168,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"INFO","message":"using JDK's default SSL engine","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:10.117Z","sequence":169,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"INFO","message":"enabling secure protocol [TLSv1.2]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:10.117Z","sequence":170,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"INFO","message":"enabling secure protocol [TLSv1.3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:10.117Z","sequence":171,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"INFO","message":"Service supports TLS ServerNameIndication: false","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:10.117Z","sequence":172,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.config.ServiceConfigProperties","level":"DEBUG","message":"using certificates from file [/opt/hono/tls/ca.crt] as trust anchor","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:10.117Z","sequence":173,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"INFO","message":"enabling client authentication using certificates [io.vertx.core.net.PemTrustOptions]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:10.118Z","sequence":174,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryHttpServer","level":"INFO","message":"server listens on standard insecure port [0.0.0.0:8080]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:10.118Z","sequence":175,"loggerClassName":"org.jboss.logging.Logger","loggerName":"io.quarkus","level":"INFO","message":"hono-service-device-registry-mongodb 2.3.0 native (powered by Quarkus 2.16.3.Final) started in 0.629s. Listening on: http://0.0.0.0:8088","threadName":"main","threadId":1,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:10.118Z","sequence":176,"loggerClassName":"org.jboss.logging.Logger","loggerName":"io.quarkus","level":"INFO","message":"Profile prod activated. ","threadName":"main","threadId":1,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:10.118Z","sequence":177,"loggerClassName":"org.jboss.logging.Logger","loggerName":"io.quarkus","level":"INFO","message":"Installed features: [cdi, config-yaml, kafka-client, logging-gelf, micrometer, mongodb-client, opentelemetry, opentelemetry-otlp-exporter, smallrye-context-propagation, smallrye-health, vertx]","threadName":"main","threadId":1,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:10.138Z","sequence":178,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.mongodb.driver.cluster","level":"INFO","message":"Adding discovered server eu3-shard-00-00.htp79.mongodb.net:27017 to client view of cluster","threadName":"cluster-ClusterId{value='64bf2c6e3852350765b1020a', description='null'}-srv-eu3.htp79.mongodb.net","threadId":65,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:10.139Z","sequence":179,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.mongodb.driver.cluster","level":"INFO","message":"Adding discovered server eu3-shard-00-01.htp79.mongodb.net:27017 to client view of cluster","threadName":"cluster-ClusterId{value='64bf2c6e3852350765b1020a', description='null'}-srv-eu3.htp79.mongodb.net","threadId":65,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:10.141Z","sequence":180,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.mongodb.driver.cluster","level":"INFO","message":"Adding discovered server eu3-shard-00-02.htp79.mongodb.net:27017 to client view of cluster","threadName":"cluster-ClusterId{value='64bf2c6e3852350765b1020a', description='null'}-srv-eu3.htp79.mongodb.net","threadId":65,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:10.496Z","sequence":181,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.mongodb.driver.cluster","level":"INFO","message":"Monitor thread successfully connected to server with description ServerDescription{address=eu3-shard-00-01.htp79.mongodb.net:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, minWireVersion=0, maxWireVersion=13, maxDocumentSize=16777216, logicalSessionTimeoutMinutes=30, roundTripTimeNanos=215009067, setName='atlas-125ttg-shard-0', canonicalAddress=eu3-shard-00-01.htp79.mongodb.net:27017, hosts=[eu3-shard-00-02.htp79.mongodb.net:27017, eu3-shard-00-01.htp79.mongodb.net:27017, eu3-shard-00-00.htp79.mongodb.net:27017], passives=[], arbiters=[], primary='eu3-shard-00-02.htp79.mongodb.net:27017', tagSet=TagSet{[Tag{name='nodeType', value='ELECTABLE'}, Tag{name='provider', value='AZURE'}, Tag{name='region', value='EUROPE_WEST'}, Tag{name='workloadType', value='OPERATIONAL'}]}, electionId=null, setVersion=1, topologyVersion=TopologyVersion{processId=64b59f3dfa9ae0bfb7ed76d3, counter=3}, lastWriteDate=Tue Jul 25 01:59:10 GMT 2023, lastUpdateTimeNanos=6030043433846576}","threadName":"cluster-ClusterId{value='64bf2c6e3852350765b1020a', description='null'}-eu3-shard-00-01.htp79.mongodb.net:27017","threadId":74,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:10.513Z","sequence":182,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.mongodb.driver.cluster","level":"INFO","message":"Monitor thread successfully connected to server with description ServerDescription{address=eu3-shard-00-02.htp79.mongodb.net:27017, type=REPLICA_SET_PRIMARY, state=CONNECTED, ok=true, minWireVersion=0, maxWireVersion=13, maxDocumentSize=16777216, logicalSessionTimeoutMinutes=30, roundTripTimeNanos=205286437, setName='atlas-125ttg-shard-0', canonicalAddress=eu3-shard-00-02.htp79.mongodb.net:27017, hosts=[eu3-shard-00-02.htp79.mongodb.net:27017, eu3-shard-00-01.htp79.mongodb.net:27017, eu3-shard-00-00.htp79.mongodb.net:27017], passives=[], arbiters=[], primary='eu3-shard-00-02.htp79.mongodb.net:27017', tagSet=TagSet{[Tag{name='nodeType', value='ELECTABLE'}, Tag{name='provider', value='AZURE'}, Tag{name='region', value='EUROPE_WEST'}, Tag{name='workloadType', value='OPERATIONAL'}]}, electionId=7fffffff0000000000000015, setVersion=1, topologyVersion=TopologyVersion{processId=64b59ee592f6194d65f9e330, counter=6}, lastWriteDate=Tue Jul 25 01:59:10 GMT 2023, lastUpdateTimeNanos=6030043459247115}","threadName":"cluster-ClusterId{value='64bf2c6e3852350765b1020a', description='null'}-eu3-shard-00-02.htp79.mongodb.net:27017","threadId":77,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:10.513Z","sequence":183,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.mongodb.driver.cluster","level":"INFO","message":"Discovered replica set primary eu3-shard-00-02.htp79.mongodb.net:27017 with max election id 7fffffff0000000000000015 and max set version 1","threadName":"cluster-ClusterId{value='64bf2c6e3852350765b1020a', description='null'}-eu3-shard-00-02.htp79.mongodb.net:27017","threadId":77,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:10.518Z","sequence":184,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.mongodb.driver.cluster","level":"INFO","message":"Monitor thread successfully connected to server with description ServerDescription{address=eu3-shard-00-00.htp79.mongodb.net:27017, type=REPLICA_SET_SECONDARY, state=CONNECTED, ok=true, minWireVersion=0, maxWireVersion=13, maxDocumentSize=16777216, logicalSessionTimeoutMinutes=30, roundTripTimeNanos=203419813, setName='atlas-125ttg-shard-0', canonicalAddress=eu3-shard-00-00.htp79.mongodb.net:27017, hosts=[eu3-shard-00-02.htp79.mongodb.net:27017, eu3-shard-00-01.htp79.mongodb.net:27017, eu3-shard-00-00.htp79.mongodb.net:27017], passives=[], arbiters=[], primary='eu3-shard-00-02.htp79.mongodb.net:27017', tagSet=TagSet{[Tag{name='nodeType', value='ELECTABLE'}, Tag{name='provider', value='AZURE'}, Tag{name='region', value='EUROPE_WEST'}, Tag{name='workloadType', value='OPERATIONAL'}]}, electionId=null, setVersion=1, topologyVersion=TopologyVersion{processId=64b59e9385ee96c39603bede, counter=4}, lastWriteDate=Tue Jul 25 01:59:10 GMT 2023, lastUpdateTimeNanos=6030043464099180}","threadName":"cluster-ClusterId{value='64bf2c6e3852350765b1020a', description='null'}-eu3-shard-00-00.htp79.mongodb.net:27017","threadId":71,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:11.007Z","sequence":185,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryHttpServer","level":"INFO","message":"server listens on standard secure port [0.0.0.0:8443]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:11.008Z","sequence":186,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.app.Application","level":"INFO","message":"successfully deployed HTTP server verticle(s)","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:11.069Z","sequence":187,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"INFO","message":"server listens on standard secure port [0.0.0.0:5671]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:11.07Z","sequence":188,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"INFO","message":"insecure port is not enabled","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:11.07Z","sequence":189,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.app.Application","level":"INFO","message":"successfully deployed AMQP server verticle(s)","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:31.421Z","sequence":190,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"credentials-indices not (yet) created","threadName":"executor-thread-0","threadId":56,"mdc":{"spanId":"32abf46ac29d6d92","traceId":"3effb411de42d069c27db6d53065b38b","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:31.421Z","sequence":191,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDao","level":"DEBUG","message":"creating index [collection: credentials]","threadName":"executor-thread-0","threadId":56,"mdc":{"spanId":"32abf46ac29d6d92","traceId":"3effb411de42d069c27db6d53065b38b","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:31.422Z","sequence":192,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedTenantDao","level":"DEBUG","message":"tenants-indices not (yet) created","threadName":"executor-thread-0","threadId":56,"mdc":{"spanId":"32abf46ac29d6d92","traceId":"3effb411de42d069c27db6d53065b38b","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:31.422Z","sequence":193,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDao","level":"DEBUG","message":"creating index [collection: tenants]","threadName":"executor-thread-0","threadId":56,"mdc":{"spanId":"32abf46ac29d6d92","traceId":"3effb411de42d069c27db6d53065b38b","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:31.422Z","sequence":194,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"devices-indices not (yet) created","threadName":"executor-thread-0","threadId":56,"mdc":{"spanId":"32abf46ac29d6d92","traceId":"3effb411de42d069c27db6d53065b38b","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:31.422Z","sequence":195,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDao","level":"DEBUG","message":"creating index [collection: devices]","threadName":"executor-thread-0","threadId":56,"mdc":{"spanId":"32abf46ac29d6d92","traceId":"3effb411de42d069c27db6d53065b38b","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:31.425Z","sequence":196,"loggerClassName":"io.smallrye.health.HealthLogging_$logger","loggerName":"io.smallrye.health","level":"INFO","message":"SRHCK01001: Reporting health down status: {\"status\":\"DOWN\",\"checks\":[{\"name\":\"MongoDB connection health check\",\"status\":\"UP\"},{\"name\":\"Vert.x deployment\",\"status\":\"UP\",\"data\":{\"notification sender verticle\":\"successfully deployed\",\"HTTP server verticle(s)\":\"successfully deployed\",\"authentication service verticle\":\"successfully deployed\",\"AMQP server verticle(s)\":\"successfully deployed\"}},{\"name\":\"event-kafka-producer-creation-883e5172-6233-4cf5-a75b-35597dcb2d04\",\"status\":\"UP\"},{\"name\":\"credentials-indices-created-0ceb0c25-0a1d-41d6-aa22-86fa94619092\",\"status\":\"DOWN\"},{\"name\":\"tenants-indices-created-e04a3cd9-d0c5-40bf-8641-2c549042c2b9\",\"status\":\"DOWN\"},{\"name\":\"event-kafka-producer-creation-55a90a4a-05b4-4f4e-bd74-54f12258e829\",\"status\":\"UP\"},{\"name\":\"devices-indices-created-dc459f8b-376b-4941-b9f9-9adfd3725235\",\"status\":\"DOWN\"},{\"name\":\"authentication-service-availability\",\"status\":\"UP\"},{\"name\":\"notification-kafka-producer-creation-122a2a94-a621-4683-bf01-1623ff0845d3\",\"status\":\"UP\"},{\"name\":\"AuthTokenValidator\",\"status\":\"UP\"}]}","threadName":"executor-thread-0","threadId":56,"mdc":{"spanId":"32abf46ac29d6d92","traceId":"3effb411de42d069c27db6d53065b38b","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:31.432Z","sequence":197,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDao","level":"DEBUG","message":"successfully created index [collection: credentials]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:31.432Z","sequence":198,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDao","level":"DEBUG","message":"creating index [collection: credentials]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:31.522Z","sequence":199,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDao","level":"DEBUG","message":"successfully created index [collection: credentials]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:31.522Z","sequence":200,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDao","level":"DEBUG","message":"creating index [collection: credentials]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:31.623Z","sequence":201,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDao","level":"DEBUG","message":"successfully created index [collection: credentials]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:31.623Z","sequence":202,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDao","level":"DEBUG","message":"successfully created index [collection: tenants]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:31.624Z","sequence":203,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDao","level":"DEBUG","message":"creating index [collection: tenants]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:31.626Z","sequence":204,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDao","level":"DEBUG","message":"successfully created index [collection: tenants]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:31.626Z","sequence":205,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDao","level":"DEBUG","message":"creating index [collection: tenants]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:31.627Z","sequence":206,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDao","level":"DEBUG","message":"successfully created index [collection: devices]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:31.629Z","sequence":207,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDao","level":"DEBUG","message":"successfully created index [collection: tenants]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:31.633Z","sequence":208,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDao","level":"DEBUG","message":"no index matching given criteria found:\n{\n \"tenant.trusted-ca.subject-dn\" : 1\n}\n{\n \"background\" : false,\n \"unique\" : true,\n \"sparse\" : false,\n \"partialFilterExpression\" : {\n \"tenant.trusted-ca\" : {\n \"$exists\" : true\n }\n }\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:41.881Z","sequence":209,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"initializing SASL authenticator","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:41.881Z","sequence":210,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client provided an empty list of SASL mechanisms [hostname: null, state: PN_SASL_IDLE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:41.884Z","sequence":211,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client wants to authenticate using SASL [mechanism: PLAIN, host: null, state: PN_SASL_STEP]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:41.884Z","sequence":212,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"received authentication request [mechanism: PLAIN]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2688c5a138911d67","traceId":"6d160bdaeea2daff888fa39c505df973","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:41.884Z","sequence":213,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"processing PLAIN authentication request [authzid: , authcid: lora-adapter@HONO, pwd: *****]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2688c5a138911d67","traceId":"6d160bdaeea2daff888fa39c505df973","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:41.884Z","sequence":214,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClientConfigProperties","level":"DEBUG","message":"using certificates from file [/opt/hono/tls/ca.crt] as trust anchor","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2688c5a138911d67","traceId":"6d160bdaeea2daff888fa39c505df973","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:41.885Z","sequence":215,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"OpenSSL [available: false, supports KeyManagerFactory: false]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2688c5a138911d67","traceId":"6d160bdaeea2daff888fa39c505df973","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:41.885Z","sequence":216,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"using JVM's default SSL engine","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2688c5a138911d67","traceId":"6d160bdaeea2daff888fa39c505df973","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:41.885Z","sequence":217,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2688c5a138911d67","traceId":"6d160bdaeea2daff888fa39c505df973","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:41.885Z","sequence":218,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2688c5a138911d67","traceId":"6d160bdaeea2daff888fa39c505df973","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:41.885Z","sequence":219,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connecting to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2688c5a138911d67","traceId":"6d160bdaeea2daff888fa39c505df973","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:41.992Z","sequence":220,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connected to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server], opening connection ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2688c5a138911d67","traceId":"6d160bdaeea2daff888fa39c505df973","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:41.994Z","sequence":221,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connection to container [hono-auth-0.0.0.0:5671] at [amqps://aloxy-hono-service-auth:5671, role: Authentication Server] open","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2688c5a138911d67","traceId":"6d160bdaeea2daff888fa39c505df973","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:41.997Z","sequence":222,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"opened receiver link to Authentication service, waiting for token ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2688c5a138911d67","traceId":"6d160bdaeea2daff888fa39c505df973","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:41.997Z","sequence":223,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"successfully retrieved token from Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2688c5a138911d67","traceId":"6d160bdaeea2daff888fa39c505df973","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:41.997Z","sequence":224,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"closing connection to Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2688c5a138911d67","traceId":"6d160bdaeea2daff888fa39c505df973","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:41.997Z","sequence":225,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.EventBusAuthenticationService","level":"DEBUG","message":"received token [length: 969] in response to authentication request","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:41.998Z","sequence":226,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.JjwtBasedAuthTokenValidator","level":"DEBUG","message":"using key [id: 984e3639028b1e7d0b7d97f8f3de6a82638af0ed7d06ce7d9e038a1c4c634169] to validate signature (alg: RS256]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:41.999Z","sequence":227,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"authentication of client [authorization ID: lora-adapter@HONO] succeeded","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:41.999Z","sequence":228,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"finishing SASL handshake with outcome PN_SASL_OK","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:41.999Z","sequence":229,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"received connection request from client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.004Z","sequence":230,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"processing open frame from client container [Hono adapter-lora-Tenant-995cc45f-23b2-488f-a5d9-0b18c4ae6c62]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.005Z","sequence":231,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"INFO","message":"client connected [container: Hono adapter-lora-Tenant-995cc45f-23b2-488f-a5d9-0b18c4ae6c62, user: lora-adapter@HONO, token valid until: 2023-07-25T02:59:41Z]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.008Z","sequence":232,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"opening new session with client [container: Hono adapter-lora-Tenant-995cc45f-23b2-488f-a5d9-0b18c4ae6c62]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.083Z","sequence":233,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_190875]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a1f1576b9fb664e7","parentId":"be751733fab3d125","traceId":"0000000000000000fddf6d3e49e97b57","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.103Z","sequence":234,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190875]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a1f1576b9fb664e7","parentId":"be751733fab3d125","traceId":"0000000000000000fddf6d3e49e97b57","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.271Z","sequence":235,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"initializing SASL authenticator","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.271Z","sequence":236,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client provided an empty list of SASL mechanisms [hostname: null, state: PN_SASL_IDLE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.273Z","sequence":237,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client wants to authenticate using SASL [mechanism: PLAIN, host: null, state: PN_SASL_STEP]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.274Z","sequence":238,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"received authentication request [mechanism: PLAIN]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"12b8d4bd306e938a","traceId":"723138d324186b3e49b5f7c2304e23e7","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.274Z","sequence":239,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"processing PLAIN authentication request [authzid: , authcid: lora-adapter@HONO, pwd: *****]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"12b8d4bd306e938a","traceId":"723138d324186b3e49b5f7c2304e23e7","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.274Z","sequence":240,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"OpenSSL [available: false, supports KeyManagerFactory: false]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"12b8d4bd306e938a","traceId":"723138d324186b3e49b5f7c2304e23e7","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.274Z","sequence":241,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"using JVM's default SSL engine","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"12b8d4bd306e938a","traceId":"723138d324186b3e49b5f7c2304e23e7","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.274Z","sequence":242,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"12b8d4bd306e938a","traceId":"723138d324186b3e49b5f7c2304e23e7","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.274Z","sequence":243,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"12b8d4bd306e938a","traceId":"723138d324186b3e49b5f7c2304e23e7","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.274Z","sequence":244,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connecting to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"12b8d4bd306e938a","traceId":"723138d324186b3e49b5f7c2304e23e7","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.285Z","sequence":245,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"initializing SASL authenticator","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.285Z","sequence":246,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client provided an empty list of SASL mechanisms [hostname: null, state: PN_SASL_IDLE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.288Z","sequence":247,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client wants to authenticate using SASL [mechanism: PLAIN, host: null, state: PN_SASL_STEP]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.288Z","sequence":248,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"received authentication request [mechanism: PLAIN]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"24804f8ea73a06cb","traceId":"f357c171135bcc3b31bbe98113c33f67","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.288Z","sequence":249,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"processing PLAIN authentication request [authzid: , authcid: command-router@HONO, pwd: *****]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"24804f8ea73a06cb","traceId":"f357c171135bcc3b31bbe98113c33f67","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.288Z","sequence":250,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"OpenSSL [available: false, supports KeyManagerFactory: false]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"24804f8ea73a06cb","traceId":"f357c171135bcc3b31bbe98113c33f67","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.288Z","sequence":251,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"using JVM's default SSL engine","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"24804f8ea73a06cb","traceId":"f357c171135bcc3b31bbe98113c33f67","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.288Z","sequence":252,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"24804f8ea73a06cb","traceId":"f357c171135bcc3b31bbe98113c33f67","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.288Z","sequence":253,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"24804f8ea73a06cb","traceId":"f357c171135bcc3b31bbe98113c33f67","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.288Z","sequence":254,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connecting to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"24804f8ea73a06cb","traceId":"f357c171135bcc3b31bbe98113c33f67","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.338Z","sequence":255,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"initializing SASL authenticator","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.338Z","sequence":256,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client provided an empty list of SASL mechanisms [hostname: null, state: PN_SASL_IDLE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.34Z","sequence":257,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client wants to authenticate using SASL [mechanism: PLAIN, host: null, state: PN_SASL_STEP]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.34Z","sequence":258,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"received authentication request [mechanism: PLAIN]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ed88022fd65c6cb3","traceId":"557dd5b9b37fa877dc69acbc76bbad10","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.34Z","sequence":259,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"processing PLAIN authentication request [authzid: , authcid: mqtt-adapter@HONO, pwd: *****]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ed88022fd65c6cb3","traceId":"557dd5b9b37fa877dc69acbc76bbad10","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.34Z","sequence":260,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"OpenSSL [available: false, supports KeyManagerFactory: false]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ed88022fd65c6cb3","traceId":"557dd5b9b37fa877dc69acbc76bbad10","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.34Z","sequence":261,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"using JVM's default SSL engine","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ed88022fd65c6cb3","traceId":"557dd5b9b37fa877dc69acbc76bbad10","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.34Z","sequence":262,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ed88022fd65c6cb3","traceId":"557dd5b9b37fa877dc69acbc76bbad10","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.34Z","sequence":263,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ed88022fd65c6cb3","traceId":"557dd5b9b37fa877dc69acbc76bbad10","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.34Z","sequence":264,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connecting to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ed88022fd65c6cb3","traceId":"557dd5b9b37fa877dc69acbc76bbad10","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.423Z","sequence":265,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connected to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server], opening connection ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"12b8d4bd306e938a","traceId":"723138d324186b3e49b5f7c2304e23e7","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.426Z","sequence":266,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connection to container [hono-auth-0.0.0.0:5671] at [amqps://aloxy-hono-service-auth:5671, role: Authentication Server] open","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"12b8d4bd306e938a","traceId":"723138d324186b3e49b5f7c2304e23e7","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.428Z","sequence":267,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"opened receiver link to Authentication service, waiting for token ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"12b8d4bd306e938a","traceId":"723138d324186b3e49b5f7c2304e23e7","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.428Z","sequence":268,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"successfully retrieved token from Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"12b8d4bd306e938a","traceId":"723138d324186b3e49b5f7c2304e23e7","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.428Z","sequence":269,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"closing connection to Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"12b8d4bd306e938a","traceId":"723138d324186b3e49b5f7c2304e23e7","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.428Z","sequence":270,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.EventBusAuthenticationService","level":"DEBUG","message":"received token [length: 969] in response to authentication request","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.428Z","sequence":271,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.JjwtBasedAuthTokenValidator","level":"DEBUG","message":"using key [id: 984e3639028b1e7d0b7d97f8f3de6a82638af0ed7d06ce7d9e038a1c4c634169] to validate signature (alg: RS256]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.429Z","sequence":272,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"authentication of client [authorization ID: lora-adapter@HONO] succeeded","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.429Z","sequence":273,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"finishing SASL handshake with outcome PN_SASL_OK","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.429Z","sequence":274,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"received connection request from client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.431Z","sequence":275,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connected to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server], opening connection ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"24804f8ea73a06cb","traceId":"f357c171135bcc3b31bbe98113c33f67","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.431Z","sequence":276,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"processing open frame from client container [Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.431Z","sequence":277,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"INFO","message":"client connected [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6, user: lora-adapter@HONO, token valid until: 2023-07-25T02:59:42Z]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.433Z","sequence":278,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connection to container [hono-auth-0.0.0.0:5671] at [amqps://aloxy-hono-service-auth:5671, role: Authentication Server] open","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"24804f8ea73a06cb","traceId":"f357c171135bcc3b31bbe98113c33f67","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.433Z","sequence":279,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"opening new session with client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.435Z","sequence":280,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"opened receiver link to Authentication service, waiting for token ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"24804f8ea73a06cb","traceId":"f357c171135bcc3b31bbe98113c33f67","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.435Z","sequence":281,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"successfully retrieved token from Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"24804f8ea73a06cb","traceId":"f357c171135bcc3b31bbe98113c33f67","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.435Z","sequence":282,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"closing connection to Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"24804f8ea73a06cb","traceId":"f357c171135bcc3b31bbe98113c33f67","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.435Z","sequence":283,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.EventBusAuthenticationService","level":"DEBUG","message":"received token [length: 696] in response to authentication request","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.436Z","sequence":284,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.JjwtBasedAuthTokenValidator","level":"DEBUG","message":"using key [id: 984e3639028b1e7d0b7d97f8f3de6a82638af0ed7d06ce7d9e038a1c4c634169] to validate signature (alg: RS256]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.436Z","sequence":285,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"authentication of client [authorization ID: command-router@HONO] succeeded","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.436Z","sequence":286,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"finishing SASL handshake with outcome PN_SASL_OK","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.436Z","sequence":287,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"received connection request from client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.451Z","sequence":288,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"processing open frame from client container [Hono service-command-router-Tenant-8c258f6d-8b57-47cf-8f84-a38d9786fed2]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.452Z","sequence":289,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"INFO","message":"client connected [container: Hono service-command-router-Tenant-8c258f6d-8b57-47cf-8f84-a38d9786fed2, user: command-router@HONO, token valid until: 2023-07-25T02:59:42Z]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.454Z","sequence":290,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"opening new session with client [container: Hono service-command-router-Tenant-8c258f6d-8b57-47cf-8f84-a38d9786fed2]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.465Z","sequence":291,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connected to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server], opening connection ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ed88022fd65c6cb3","traceId":"557dd5b9b37fa877dc69acbc76bbad10","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.467Z","sequence":292,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connection to container [hono-auth-0.0.0.0:5671] at [amqps://aloxy-hono-service-auth:5671, role: Authentication Server] open","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ed88022fd65c6cb3","traceId":"557dd5b9b37fa877dc69acbc76bbad10","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.47Z","sequence":293,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"opened receiver link to Authentication service, waiting for token ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ed88022fd65c6cb3","traceId":"557dd5b9b37fa877dc69acbc76bbad10","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.47Z","sequence":294,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"successfully retrieved token from Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ed88022fd65c6cb3","traceId":"557dd5b9b37fa877dc69acbc76bbad10","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.47Z","sequence":295,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"closing connection to Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ed88022fd65c6cb3","traceId":"557dd5b9b37fa877dc69acbc76bbad10","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.472Z","sequence":296,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.EventBusAuthenticationService","level":"DEBUG","message":"received token [length: 969] in response to authentication request","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.473Z","sequence":297,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.JjwtBasedAuthTokenValidator","level":"DEBUG","message":"using key [id: 984e3639028b1e7d0b7d97f8f3de6a82638af0ed7d06ce7d9e038a1c4c634169] to validate signature (alg: RS256]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.473Z","sequence":298,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"authentication of client [authorization ID: mqtt-adapter@HONO] succeeded","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.473Z","sequence":299,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"finishing SASL handshake with outcome PN_SASL_OK","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.474Z","sequence":300,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"received connection request from client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.475Z","sequence":301,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"initializing SASL authenticator","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.475Z","sequence":302,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client provided an empty list of SASL mechanisms [hostname: null, state: PN_SASL_IDLE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.476Z","sequence":303,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"processing open frame from client container [Hono adapter-mqtt-Credentials-75faa79c-12c0-45f2-bd9c-973655a3937c]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.476Z","sequence":304,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"INFO","message":"client connected [container: Hono adapter-mqtt-Credentials-75faa79c-12c0-45f2-bd9c-973655a3937c, user: mqtt-adapter@HONO, token valid until: 2023-07-25T02:59:42Z]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.477Z","sequence":305,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client wants to authenticate using SASL [mechanism: PLAIN, host: null, state: PN_SASL_STEP]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.477Z","sequence":306,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"received authentication request [mechanism: PLAIN]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6eaeda748c15ebac","traceId":"de46c3a6522b3e7657ed201ae0d4ae2d","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.478Z","sequence":307,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"processing PLAIN authentication request [authzid: , authcid: mqtt-adapter@HONO, pwd: *****]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6eaeda748c15ebac","traceId":"de46c3a6522b3e7657ed201ae0d4ae2d","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.478Z","sequence":308,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"OpenSSL [available: false, supports KeyManagerFactory: false]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6eaeda748c15ebac","traceId":"de46c3a6522b3e7657ed201ae0d4ae2d","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.478Z","sequence":309,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"using JVM's default SSL engine","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6eaeda748c15ebac","traceId":"de46c3a6522b3e7657ed201ae0d4ae2d","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.478Z","sequence":310,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6eaeda748c15ebac","traceId":"de46c3a6522b3e7657ed201ae0d4ae2d","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.479Z","sequence":311,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6eaeda748c15ebac","traceId":"de46c3a6522b3e7657ed201ae0d4ae2d","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.479Z","sequence":312,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connecting to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6eaeda748c15ebac","traceId":"de46c3a6522b3e7657ed201ae0d4ae2d","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.489Z","sequence":313,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"opening new session with client [container: Hono adapter-mqtt-Credentials-75faa79c-12c0-45f2-bd9c-973655a3937c]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.497Z","sequence":314,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"initializing SASL authenticator","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.497Z","sequence":315,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client provided an empty list of SASL mechanisms [hostname: null, state: PN_SASL_IDLE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.499Z","sequence":316,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client wants to authenticate using SASL [mechanism: PLAIN, host: null, state: PN_SASL_STEP]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.499Z","sequence":317,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"received authentication request [mechanism: PLAIN]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"65e296166b821703","traceId":"811448d0d9997385b9cfa89292d89c17","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.499Z","sequence":318,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"processing PLAIN authentication request [authzid: , authcid: command-router@HONO, pwd: *****]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"65e296166b821703","traceId":"811448d0d9997385b9cfa89292d89c17","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.499Z","sequence":319,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"OpenSSL [available: false, supports KeyManagerFactory: false]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"65e296166b821703","traceId":"811448d0d9997385b9cfa89292d89c17","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.499Z","sequence":320,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"using JVM's default SSL engine","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"65e296166b821703","traceId":"811448d0d9997385b9cfa89292d89c17","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.499Z","sequence":321,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"65e296166b821703","traceId":"811448d0d9997385b9cfa89292d89c17","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.499Z","sequence":322,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"65e296166b821703","traceId":"811448d0d9997385b9cfa89292d89c17","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.499Z","sequence":323,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connecting to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"65e296166b821703","traceId":"811448d0d9997385b9cfa89292d89c17","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.623Z","sequence":324,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connected to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server], opening connection ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6eaeda748c15ebac","traceId":"de46c3a6522b3e7657ed201ae0d4ae2d","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.624Z","sequence":325,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connection to container [hono-auth-0.0.0.0:5671] at [amqps://aloxy-hono-service-auth:5671, role: Authentication Server] open","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6eaeda748c15ebac","traceId":"de46c3a6522b3e7657ed201ae0d4ae2d","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.626Z","sequence":326,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"opened receiver link to Authentication service, waiting for token ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6eaeda748c15ebac","traceId":"de46c3a6522b3e7657ed201ae0d4ae2d","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.626Z","sequence":327,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"successfully retrieved token from Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6eaeda748c15ebac","traceId":"de46c3a6522b3e7657ed201ae0d4ae2d","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.627Z","sequence":328,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"closing connection to Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6eaeda748c15ebac","traceId":"de46c3a6522b3e7657ed201ae0d4ae2d","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.627Z","sequence":329,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.EventBusAuthenticationService","level":"DEBUG","message":"received token [length: 969] in response to authentication request","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.627Z","sequence":330,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.JjwtBasedAuthTokenValidator","level":"DEBUG","message":"using key [id: 984e3639028b1e7d0b7d97f8f3de6a82638af0ed7d06ce7d9e038a1c4c634169] to validate signature (alg: RS256]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.627Z","sequence":331,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"authentication of client [authorization ID: mqtt-adapter@HONO] succeeded","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.628Z","sequence":332,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"finishing SASL handshake with outcome PN_SASL_OK","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.628Z","sequence":333,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"received connection request from client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.629Z","sequence":334,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"processing open frame from client container [Hono adapter-mqtt-Tenant-ded758d0-b7cf-4d65-a210-6d11fa222d32]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.63Z","sequence":335,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"INFO","message":"client connected [container: Hono adapter-mqtt-Tenant-ded758d0-b7cf-4d65-a210-6d11fa222d32, user: mqtt-adapter@HONO, token valid until: 2023-07-25T02:59:42Z]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.631Z","sequence":336,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"opening new session with client [container: Hono adapter-mqtt-Tenant-ded758d0-b7cf-4d65-a210-6d11fa222d32]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.638Z","sequence":337,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connected to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server], opening connection ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"65e296166b821703","traceId":"811448d0d9997385b9cfa89292d89c17","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.639Z","sequence":338,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connection to container [hono-auth-0.0.0.0:5671] at [amqps://aloxy-hono-service-auth:5671, role: Authentication Server] open","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"65e296166b821703","traceId":"811448d0d9997385b9cfa89292d89c17","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.641Z","sequence":339,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"opened receiver link to Authentication service, waiting for token ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"65e296166b821703","traceId":"811448d0d9997385b9cfa89292d89c17","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.641Z","sequence":340,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"successfully retrieved token from Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"65e296166b821703","traceId":"811448d0d9997385b9cfa89292d89c17","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.641Z","sequence":341,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"closing connection to Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"65e296166b821703","traceId":"811448d0d9997385b9cfa89292d89c17","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.642Z","sequence":342,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.EventBusAuthenticationService","level":"DEBUG","message":"received token [length: 696] in response to authentication request","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.642Z","sequence":343,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.JjwtBasedAuthTokenValidator","level":"DEBUG","message":"using key [id: 984e3639028b1e7d0b7d97f8f3de6a82638af0ed7d06ce7d9e038a1c4c634169] to validate signature (alg: RS256]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.642Z","sequence":344,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"authentication of client [authorization ID: command-router@HONO] succeeded","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.642Z","sequence":345,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"finishing SASL handshake with outcome PN_SASL_OK","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.642Z","sequence":346,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"received connection request from client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.644Z","sequence":347,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"processing open frame from client container [Hono service-command-router-Device Registration-6b43a4ef-0980-4edd-b8fb-ab7a8b085811]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.645Z","sequence":348,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"INFO","message":"client connected [container: Hono service-command-router-Device Registration-6b43a4ef-0980-4edd-b8fb-ab7a8b085811, user: command-router@HONO, token valid until: 2023-07-25T02:59:42Z]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:42.647Z","sequence":349,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"opening new session with client [container: Hono service-command-router-Device Registration-6b43a4ef-0980-4edd-b8fb-ab7a8b085811]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:43.314Z","sequence":350,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"initializing SASL authenticator","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:43.315Z","sequence":351,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client provided an empty list of SASL mechanisms [hostname: null, state: PN_SASL_IDLE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:43.317Z","sequence":352,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client wants to authenticate using SASL [mechanism: PLAIN, host: null, state: PN_SASL_STEP]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:43.317Z","sequence":353,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"received authentication request [mechanism: PLAIN]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"55047271fe94c897","traceId":"d0029ce42edaab9ffa9b106ff45e6429","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:43.317Z","sequence":354,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"processing PLAIN authentication request [authzid: , authcid: lora-adapter@HONO, pwd: *****]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"55047271fe94c897","traceId":"d0029ce42edaab9ffa9b106ff45e6429","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:43.317Z","sequence":355,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"OpenSSL [available: false, supports KeyManagerFactory: false]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"55047271fe94c897","traceId":"d0029ce42edaab9ffa9b106ff45e6429","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:43.317Z","sequence":356,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"using JVM's default SSL engine","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"55047271fe94c897","traceId":"d0029ce42edaab9ffa9b106ff45e6429","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:43.317Z","sequence":357,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"55047271fe94c897","traceId":"d0029ce42edaab9ffa9b106ff45e6429","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:43.317Z","sequence":358,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"55047271fe94c897","traceId":"d0029ce42edaab9ffa9b106ff45e6429","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:43.317Z","sequence":359,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connecting to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"55047271fe94c897","traceId":"d0029ce42edaab9ffa9b106ff45e6429","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:43.394Z","sequence":360,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connected to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server], opening connection ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"55047271fe94c897","traceId":"d0029ce42edaab9ffa9b106ff45e6429","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:43.396Z","sequence":361,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connection to container [hono-auth-0.0.0.0:5671] at [amqps://aloxy-hono-service-auth:5671, role: Authentication Server] open","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"55047271fe94c897","traceId":"d0029ce42edaab9ffa9b106ff45e6429","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:43.399Z","sequence":362,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"opened receiver link to Authentication service, waiting for token ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"55047271fe94c897","traceId":"d0029ce42edaab9ffa9b106ff45e6429","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:43.399Z","sequence":363,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"successfully retrieved token from Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"55047271fe94c897","traceId":"d0029ce42edaab9ffa9b106ff45e6429","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:43.399Z","sequence":364,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"closing connection to Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"55047271fe94c897","traceId":"d0029ce42edaab9ffa9b106ff45e6429","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:43.399Z","sequence":365,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.EventBusAuthenticationService","level":"DEBUG","message":"received token [length: 969] in response to authentication request","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:43.4Z","sequence":366,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.JjwtBasedAuthTokenValidator","level":"DEBUG","message":"using key [id: 984e3639028b1e7d0b7d97f8f3de6a82638af0ed7d06ce7d9e038a1c4c634169] to validate signature (alg: RS256]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:43.4Z","sequence":367,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"authentication of client [authorization ID: lora-adapter@HONO] succeeded","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:43.4Z","sequence":368,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"finishing SASL handshake with outcome PN_SASL_OK","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:43.4Z","sequence":369,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"received connection request from client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:43.403Z","sequence":370,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"processing open frame from client container [Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:43.403Z","sequence":371,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"INFO","message":"client connected [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d, user: lora-adapter@HONO, token valid until: 2023-07-25T02:59:43Z]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:43.405Z","sequence":372,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"opening new session with client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:45.116Z","sequence":373,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"initializing SASL authenticator","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:45.116Z","sequence":374,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client provided an empty list of SASL mechanisms [hostname: null, state: PN_SASL_IDLE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:45.118Z","sequence":375,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client wants to authenticate using SASL [mechanism: PLAIN, host: null, state: PN_SASL_STEP]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:45.119Z","sequence":376,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"received authentication request [mechanism: PLAIN]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"486b4528f267fc83","traceId":"45403b4105094e38abeca83872095d71","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:45.119Z","sequence":377,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"processing PLAIN authentication request [authzid: , authcid: mqtt-adapter@HONO, pwd: *****]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"486b4528f267fc83","traceId":"45403b4105094e38abeca83872095d71","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:45.119Z","sequence":378,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"OpenSSL [available: false, supports KeyManagerFactory: false]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"486b4528f267fc83","traceId":"45403b4105094e38abeca83872095d71","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:45.119Z","sequence":379,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"using JVM's default SSL engine","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"486b4528f267fc83","traceId":"45403b4105094e38abeca83872095d71","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:45.119Z","sequence":380,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"486b4528f267fc83","traceId":"45403b4105094e38abeca83872095d71","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:45.119Z","sequence":381,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"486b4528f267fc83","traceId":"45403b4105094e38abeca83872095d71","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:45.119Z","sequence":382,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connecting to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"486b4528f267fc83","traceId":"45403b4105094e38abeca83872095d71","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:45.184Z","sequence":383,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connected to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server], opening connection ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"486b4528f267fc83","traceId":"45403b4105094e38abeca83872095d71","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:45.186Z","sequence":384,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connection to container [hono-auth-0.0.0.0:5671] at [amqps://aloxy-hono-service-auth:5671, role: Authentication Server] open","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"486b4528f267fc83","traceId":"45403b4105094e38abeca83872095d71","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:45.189Z","sequence":385,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"opened receiver link to Authentication service, waiting for token ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"486b4528f267fc83","traceId":"45403b4105094e38abeca83872095d71","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:45.189Z","sequence":386,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"successfully retrieved token from Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"486b4528f267fc83","traceId":"45403b4105094e38abeca83872095d71","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:45.189Z","sequence":387,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"closing connection to Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"486b4528f267fc83","traceId":"45403b4105094e38abeca83872095d71","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:45.19Z","sequence":388,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.EventBusAuthenticationService","level":"DEBUG","message":"received token [length: 969] in response to authentication request","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:45.19Z","sequence":389,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.JjwtBasedAuthTokenValidator","level":"DEBUG","message":"using key [id: 984e3639028b1e7d0b7d97f8f3de6a82638af0ed7d06ce7d9e038a1c4c634169] to validate signature (alg: RS256]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:45.191Z","sequence":390,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"authentication of client [authorization ID: mqtt-adapter@HONO] succeeded","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:45.191Z","sequence":391,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"finishing SASL handshake with outcome PN_SASL_OK","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:45.191Z","sequence":392,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"received connection request from client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:45.193Z","sequence":393,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"processing open frame from client container [Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:45.194Z","sequence":394,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"INFO","message":"client connected [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af, user: mqtt-adapter@HONO, token valid until: 2023-07-25T02:59:45Z]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:45.196Z","sequence":395,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"opening new session with client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:51.907Z","sequence":396,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF32FE5E9477EA2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"617f7c0a5494e7d4","parentId":"d0739c2badaa53e5","traceId":"000000000000000085fee961288fbf74","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:51.95Z","sequence":397,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF32FE5E9477EA2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"617f7c0a5494e7d4","parentId":"d0739c2badaa53e5","traceId":"000000000000000085fee961288fbf74","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:52.697Z","sequence":398,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 6A34BCD49575]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2266b601c7168ad4","parentId":"79842017dfed70b8","traceId":"00000000000000008a4c01621307d0b5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:52.745Z","sequence":399,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 6A34BCD49575]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2266b601c7168ad4","parentId":"79842017dfed70b8","traceId":"00000000000000008a4c01621307d0b5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:54.492Z","sequence":400,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Tenant-995cc45f-23b2-488f-a5d9-0b18c4ae6c62] wants to open a link [address: Source{address='tenant/0b12dfd3-5700-4b08-ad89-c46ad7435605', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:54.492Z","sequence":401,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-0]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:54.492Z","sequence":402,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@29e502c7] for replies to [tenant/0b12dfd3-5700-4b08-ad89-c46ad7435605]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:54.494Z","sequence":403,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Tenant-995cc45f-23b2-488f-a5d9-0b18c4ae6c62] wants to open a link [address: Target{address='tenant', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:54.494Z","sequence":404,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-1]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:54.494Z","sequence":405,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:54.497Z","sequence":406,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:54.497Z","sequence":407,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: shell]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:54.502Z","sequence":408,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-9f77385d-942b-4400-8184-61898768bfa2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:54.625Z","sequence":409,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] wants to open a link [address: Source{address='registration/shell/74e2bd88-8859-4370-ac72-407ea49d83c1', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:54.626Z","sequence":410,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-0]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:54.626Z","sequence":411,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@73f1de4d] for replies to [registration/shell/74e2bd88-8859-4370-ac72-407ea49d83c1]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:54.628Z","sequence":412,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] wants to open a link [address: Target{address='registration/shell', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:54.628Z","sequence":413,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-1]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:54.628Z","sequence":414,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:54.63Z","sequence":415,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:54.63Z","sequence":416,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AC7] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:54.637Z","sequence":417,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:54.637Z","sequence":418,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:54.644Z","sequence":419,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4938f7d1-b2d6-448b-96a6-cffb3032371a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:55.134Z","sequence":420,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:55.134Z","sequence":421,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B8A] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:55.152Z","sequence":422,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:55.153Z","sequence":423,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:55.159Z","sequence":424,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-675995c7-0bc0-47c2-9172-2da968a2d9ca, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:55.516Z","sequence":425,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:55.517Z","sequence":426,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10001CF] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:55.522Z","sequence":427,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:55.523Z","sequence":428,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:55.528Z","sequence":429,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-44955ee6-3225-45d3-90b0-3315866584e5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:56.065Z","sequence":430,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:56.065Z","sequence":431,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006CD] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:56.07Z","sequence":432,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:56.071Z","sequence":433,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:56.077Z","sequence":434,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-17f71da4-4527-470c-8279-0c22020df0fa, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:56.348Z","sequence":435,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:56.348Z","sequence":436,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BE3] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:56.368Z","sequence":437,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:56.369Z","sequence":438,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:56.381Z","sequence":439,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7eeb77e1-9df0-4141-9ab6-07855ef860c5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:57.209Z","sequence":440,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:57.209Z","sequence":441,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10008C5] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:57.249Z","sequence":442,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:57.25Z","sequence":443,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:57.268Z","sequence":444,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f3b02552-9471-495d-bdd7-a75e8ae53d99, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:57.753Z","sequence":445,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:57.753Z","sequence":446,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001ABB] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:57.776Z","sequence":447,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:57.777Z","sequence":448,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:57.789Z","sequence":449,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d8e31a7d-c4f5-49f1-beed-cd278e3be3f4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:59.746Z","sequence":450,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:59.746Z","sequence":451,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BF3] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:59.752Z","sequence":452,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:59.752Z","sequence":453,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:59.757Z","sequence":454,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9a933733-0090-4ee7-a904-a111eed8efce, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:59.783Z","sequence":455,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF87B588E356EC5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6d4319bc2b97de0e","parentId":"8fafee783423c30c","traceId":"0000000000000000ae78145a8d59345d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T01:59:59.805Z","sequence":456,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF87B588E356EC5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6d4319bc2b97de0e","parentId":"8fafee783423c30c","traceId":"0000000000000000ae78145a8d59345d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:00.343Z","sequence":457,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Credentials-75faa79c-12c0-45f2-bd9c-973655a3937c] wants to open a link [address: Source{address='credentials/oci/bf657c33-aa65-4c7e-82e7-26dadba11974', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:00.343Z","sequence":458,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-0]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:00.343Z","sequence":459,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@530fb350] for replies to [credentials/oci/bf657c33-aa65-4c7e-82e7-26dadba11974]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:00.346Z","sequence":460,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Credentials-75faa79c-12c0-45f2-bd9c-973655a3937c] wants to open a link [address: Target{address='credentials/oci', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:00.346Z","sequence":461,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-1]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:00.346Z","sequence":462,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:00.349Z","sequence":463,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/oci:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:00.349Z","sequence":464,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: oci, type: hashed-password, auth-id: auth-0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:00.362Z","sequence":465,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.PasswordCredential","level":"INFO","message":"using regular expression for validating authentication identifiers: ^[a-zA-Z0-9-_=\\.]+$","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:00.369Z","sequence":466,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-2b55e221-09fc-40ae-93d5-b273ec5496f0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:00.75Z","sequence":467,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/oci:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:00.75Z","sequence":468,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: oci, type: hashed-password, auth-id: auth-0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:00.768Z","sequence":469,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-0052c692-e9c7-4596-b1ce-939a80ecc572, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:00.793Z","sequence":470,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:00.793Z","sequence":471,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000567] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:00.796Z","sequence":472,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Tenant-ded758d0-b7cf-4d65-a210-6d11fa222d32] wants to open a link [address: Source{address='tenant/f0906088-8808-4f99-8973-fbef49db82e2', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:00.796Z","sequence":473,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-0]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:00.796Z","sequence":474,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@45e100de] for replies to [tenant/f0906088-8808-4f99-8973-fbef49db82e2]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:00.801Z","sequence":475,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Tenant-ded758d0-b7cf-4d65-a210-6d11fa222d32] wants to open a link [address: Target{address='tenant', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:00.801Z","sequence":476,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-1]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:00.801Z","sequence":477,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:00.802Z","sequence":478,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:00.802Z","sequence":479,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:00.804Z","sequence":480,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:00.805Z","sequence":481,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: lanxess]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:00.813Z","sequence":482,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-9f5ca53d-7493-4742-9ae3-f52af1bc9b29, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:00.814Z","sequence":483,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f0b0e031-7215-44e9-8e70-6f98d728cfc2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:00.816Z","sequence":484,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af] wants to open a link [address: Source{address='registration/lanxess/d1455897-3570-4e5b-a46a-f87fcf8c86d2', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:00.817Z","sequence":485,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-0]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:00.817Z","sequence":486,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@11584a17] for replies to [registration/lanxess/d1455897-3570-4e5b-a46a-f87fcf8c86d2]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:00.825Z","sequence":487,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af] wants to open a link [address: Target{address='registration/lanxess', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:00.825Z","sequence":488,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-1]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:00.825Z","sequence":489,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:00.835Z","sequence":490,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:00.835Z","sequence":491,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 70B3D57BB10001B5] for gateway [0008004BB84C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:00.836Z","sequence":492,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af] wants to open a link [address: Source{address='registration/oci/71d0de56-dceb-4f76-89a6-44e357cc7bd0', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:00.836Z","sequence":493,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-2]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:00.836Z","sequence":494,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@50881151] for replies to [registration/oci/71d0de56-dceb-4f76-89a6-44e357cc7bd0]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:00.841Z","sequence":495,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af] wants to open a link [address: Target{address='registration/oci', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:00.841Z","sequence":496,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:00.842Z","sequence":497,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:00.845Z","sequence":498,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_lanxess\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:00.845Z","sequence":499,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_lanxess\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:00.846Z","sequence":500,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:00.846Z","sequence":501,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001FA] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:00.847Z","sequence":502,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:00.847Z","sequence":503,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100017A] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:00.848Z","sequence":504,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-dea05feb-1094-42b6-85e0-842cea21cdf3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:00.857Z","sequence":505,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:00.857Z","sequence":506,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:00.899Z","sequence":507,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-80c8ecfc-722d-4fdc-a56f-2a27ef58321f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:00.919Z","sequence":508,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:00.921Z","sequence":509,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:01.005Z","sequence":510,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:01.005Z","sequence":511,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: repsol]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:01.161Z","sequence":512,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-f027d37b-2e8c-45ed-8187-24c0c6b1960b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:01.163Z","sequence":513,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Credentials-75faa79c-12c0-45f2-bd9c-973655a3937c] wants to open a link [address: Source{address='credentials/repsol/0848dcd0-9754-4134-9dd7-e90b04fdccd1', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:01.164Z","sequence":514,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-2]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:01.164Z","sequence":515,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@2ce0ef78] for replies to [credentials/repsol/0848dcd0-9754-4134-9dd7-e90b04fdccd1]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:01.166Z","sequence":516,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Credentials-75faa79c-12c0-45f2-bd9c-973655a3937c] wants to open a link [address: Target{address='credentials/repsol', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:01.167Z","sequence":517,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:01.167Z","sequence":518,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:01.169Z","sequence":519,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/repsol:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:01.169Z","sequence":520,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: repsol, type: hashed-password, auth-id: auth-0008004A37FF]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:01.17Z","sequence":521,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-85c75f0b-601f-4b8f-be9a-2569ce457338, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:01.172Z","sequence":522,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:01.172Z","sequence":523,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:01.185Z","sequence":524,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-36364e92-4964-45a8-a52d-0e8aed74deb7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:01.217Z","sequence":525,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-a42a114d-469a-471e-8200-ff0429633546, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:01.233Z","sequence":526,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: FE364EBEE4E0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"33281c62ad978958","parentId":"160f62a0e483fb9d","traceId":"00000000000000003d865d297ba3fb5a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:01.281Z","sequence":527,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: FE364EBEE4E0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"33281c62ad978958","parentId":"160f62a0e483fb9d","traceId":"00000000000000003d865d297ba3fb5a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:01.357Z","sequence":528,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af] wants to open a link [address: Source{address='registration/repsol/6d1d91ac-5aaa-4fd4-80b1-c4c7b6ce241f', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:01.357Z","sequence":529,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:01.357Z","sequence":530,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@63559f9b] for replies to [registration/repsol/6d1d91ac-5aaa-4fd4-80b1-c4c7b6ce241f]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:01.359Z","sequence":531,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af] wants to open a link [address: Target{address='registration/repsol', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:01.359Z","sequence":532,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-5]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:01.359Z","sequence":533,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:01.365Z","sequence":534,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/repsol:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:01.365Z","sequence":535,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: repsol, device-id: 0008004A37FF]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:01.38Z","sequence":536,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f7b023e9-66ef-4194-a0dc-f0d0184d930a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:01.521Z","sequence":537,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:01.521Z","sequence":538,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001FA] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:01.522Z","sequence":539,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:01.524Z","sequence":540,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100017A] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:01.534Z","sequence":541,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:01.535Z","sequence":542,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:01.548Z","sequence":543,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:01.549Z","sequence":544,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:01.549Z","sequence":545,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d3357f97-8add-4b7a-862c-09a8a0c9cbc5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:01.561Z","sequence":546,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-62af620c-658f-4ad4-a09e-37f0291ebf2e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:03.178Z","sequence":547,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Source{address='credentials/shell/d002da44-20c3-4255-82e3-bd4bdde68399', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:03.179Z","sequence":548,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-0]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:03.179Z","sequence":549,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@d33cb30] for replies to [credentials/shell/d002da44-20c3-4255-82e3-bd4bdde68399]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:03.181Z","sequence":550,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Target{address='credentials/shell', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:03.182Z","sequence":551,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-1]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:03.182Z","sequence":552,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:03.185Z","sequence":553,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/shell:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:03.185Z","sequence":554,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: shell, type: hashed-password, auth-id: auth-gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:03.197Z","sequence":555,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-6d62637d-9493-44b0-bba7-5a2ba486681f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:03.317Z","sequence":556,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:03.318Z","sequence":557,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A4D] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:03.333Z","sequence":558,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:03.333Z","sequence":559,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:03.342Z","sequence":560,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d57d33be-c3f7-4134-a171-bfd45a95f3fb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:03.376Z","sequence":561,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:03.376Z","sequence":562,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: conditionall]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:03.383Z","sequence":563,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-fb267960-39a0-4a9d-8032-ad96c7a672ac, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:03.387Z","sequence":564,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Credentials-75faa79c-12c0-45f2-bd9c-973655a3937c] wants to open a link [address: Source{address='credentials/conditionall/0227c860-46bb-4d75-a2d0-046bdb1cd15d', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:03.387Z","sequence":565,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:03.387Z","sequence":566,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@6264b89c] for replies to [credentials/conditionall/0227c860-46bb-4d75-a2d0-046bdb1cd15d]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:03.389Z","sequence":567,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Credentials-75faa79c-12c0-45f2-bd9c-973655a3937c] wants to open a link [address: Target{address='credentials/conditionall', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:03.39Z","sequence":568,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-5]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:03.39Z","sequence":569,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:03.392Z","sequence":570,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/conditionall:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:03.392Z","sequence":571,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: conditionall, type: hashed-password, auth-id: auth-0008004B512D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:03.404Z","sequence":572,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-7d05a18a-fb8d-44a9-a616-04ec156bc9d1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:03.531Z","sequence":573,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af] wants to open a link [address: Source{address='registration/conditionall/c7d20418-a5ea-4682-93ae-0a892cfe7e83', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:03.531Z","sequence":574,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-6]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:03.531Z","sequence":575,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@18136600] for replies to [registration/conditionall/c7d20418-a5ea-4682-93ae-0a892cfe7e83]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:03.534Z","sequence":576,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af] wants to open a link [address: Target{address='registration/conditionall', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:03.534Z","sequence":577,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-7]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:03.534Z","sequence":578,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:03.536Z","sequence":579,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/conditionall:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:03.538Z","sequence":580,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: conditionall, device-id: 0008004B512D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:03.543Z","sequence":581,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-49d602cd-25a6-425d-839d-29129cbb6ef4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:04.047Z","sequence":582,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:04.047Z","sequence":583,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BB84C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:04.069Z","sequence":584,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-227855fa-5037-4675-9568-37d63318ea7e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:06.721Z","sequence":585,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af] wants to open a link [address: Source{address='registration/ineos/03b0e8fa-a57c-4fbc-9ceb-1af278a1bfa4', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:06.721Z","sequence":586,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-8]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:06.721Z","sequence":587,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@3135c65f] for replies to [registration/ineos/03b0e8fa-a57c-4fbc-9ceb-1af278a1bfa4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:06.724Z","sequence":588,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af] wants to open a link [address: Target{address='registration/ineos', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:06.724Z","sequence":589,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-9]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:06.724Z","sequence":590,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:06.729Z","sequence":591,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:06.729Z","sequence":592,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 0008004B5135]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:06.747Z","sequence":593,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0c976aa7-7bd4-4752-9f80-4945e7cbe872, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:06.754Z","sequence":594,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:06.754Z","sequence":595,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: ineos]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:06.761Z","sequence":596,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-e97bc51d-960a-48fe-982b-111f7a735e8a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:09.386Z","sequence":597,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:09.386Z","sequence":598,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BBD1B]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:09.392Z","sequence":599,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-50036a25-17ca-41c2-83dc-5f59556a79ab, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:12.074Z","sequence":600,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:12.074Z","sequence":601,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: dow]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:12.077Z","sequence":602,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-aeaae8ca-e9c6-4a95-894e-d1f35636f68b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:12.08Z","sequence":603,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Credentials-75faa79c-12c0-45f2-bd9c-973655a3937c] wants to open a link [address: Source{address='credentials/dow/d6f209bf-d8d8-4972-a405-706fd4cdce1a', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:12.08Z","sequence":604,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-6]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:12.08Z","sequence":605,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@18ab6c75] for replies to [credentials/dow/d6f209bf-d8d8-4972-a405-706fd4cdce1a]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:12.082Z","sequence":606,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Credentials-75faa79c-12c0-45f2-bd9c-973655a3937c] wants to open a link [address: Target{address='credentials/dow', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:12.082Z","sequence":607,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-7]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:12.083Z","sequence":608,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:12.085Z","sequence":609,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/dow:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:12.085Z","sequence":610,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: dow, type: hashed-password, auth-id: auth-0008004B51D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:12.097Z","sequence":611,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-1b522a76-546f-4aa0-a496-581d0da43cb0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:12.225Z","sequence":612,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af] wants to open a link [address: Source{address='registration/dow/a0423045-c2e1-4bf8-b651-59474f37a41a', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:12.225Z","sequence":613,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:12.225Z","sequence":614,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@7101206e] for replies to [registration/dow/a0423045-c2e1-4bf8-b651-59474f37a41a]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:12.228Z","sequence":615,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af] wants to open a link [address: Target{address='registration/dow', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:12.229Z","sequence":616,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-11]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:12.229Z","sequence":617,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:12.232Z","sequence":618,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:12.232Z","sequence":619,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 0008004B51D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:12.241Z","sequence":620,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-14fd9f63-2dc3-48b1-b203-342bf2240389, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:12.406Z","sequence":621,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono service-command-router-Tenant-8c258f6d-8b57-47cf-8f84-a38d9786fed2] wants to open a link [address: Source{address='tenant/10ca41f0-09b1-4b0b-be9e-94571ec8d473', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:12.41Z","sequence":622,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-0]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:12.41Z","sequence":623,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@179363f7] for replies to [tenant/10ca41f0-09b1-4b0b-be9e-94571ec8d473]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:12.413Z","sequence":624,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono service-command-router-Tenant-8c258f6d-8b57-47cf-8f84-a38d9786fed2] wants to open a link [address: Target{address='tenant', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:12.413Z","sequence":625,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-1]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:12.413Z","sequence":626,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:12.415Z","sequence":627,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [command-router@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:12.416Z","sequence":628,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: dow]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:12.419Z","sequence":629,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-089ee840-91d1-4383-bdef-accd4c7da3fc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:14.894Z","sequence":630,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:14.894Z","sequence":631,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: exxon]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:14.898Z","sequence":632,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-5c80db99-b86a-483b-b578-f20a4c82061d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:14.902Z","sequence":633,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Source{address='credentials/exxon/1dd1baaf-1bb1-413b-97d9-c882e07ce412', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:14.902Z","sequence":634,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-2]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:14.902Z","sequence":635,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@63debe8a] for replies to [credentials/exxon/1dd1baaf-1bb1-413b-97d9-c882e07ce412]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:14.904Z","sequence":636,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Target{address='credentials/exxon', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:14.904Z","sequence":637,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:14.904Z","sequence":638,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:14.906Z","sequence":639,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/exxon:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:14.906Z","sequence":640,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: exxon, type: hashed-password, auth-id: auth-gateway_exxon_network_2559]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:14.916Z","sequence":641,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-7abb7528-217a-498a-808f-6eaea96e1544, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:15.032Z","sequence":642,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] wants to open a link [address: Source{address='registration/exxon/40fbb389-9462-4846-b9fd-06c9bf9220ca', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:15.032Z","sequence":643,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-2]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:15.032Z","sequence":644,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@2c95ef22] for replies to [registration/exxon/40fbb389-9462-4846-b9fd-06c9bf9220ca]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:15.034Z","sequence":645,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] wants to open a link [address: Target{address='registration/exxon', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:15.034Z","sequence":646,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:15.034Z","sequence":647,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:15.036Z","sequence":648,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/exxon:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:15.036Z","sequence":649,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: exxon, device-id: 70B3D57BB1000B43] for gateway [gateway_exxon_network_2559]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:15.037Z","sequence":650,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/exxon:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:15.037Z","sequence":651,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: exxon, device-id: gateway_exxon_network_2559]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:15.042Z","sequence":652,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_exxon\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:15.042Z","sequence":653,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_exxon\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:15.043Z","sequence":654,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d9a27d25-b124-47ec-8408-eeec48e45be0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:15.045Z","sequence":655,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2678d77d-a691-45ee-828f-53954e43cb9b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:15.466Z","sequence":656,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af] wants to open a link [address: Source{address='registration/arkema/5e3e6aea-8764-40d3-9a13-eccfde1a2ec0', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:15.466Z","sequence":657,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-12]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:15.467Z","sequence":658,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@27e28e2f] for replies to [registration/arkema/5e3e6aea-8764-40d3-9a13-eccfde1a2ec0]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:15.479Z","sequence":659,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af] wants to open a link [address: Target{address='registration/arkema', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:15.479Z","sequence":660,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-13]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:15.479Z","sequence":661,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:15.485Z","sequence":662,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/arkema:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:15.485Z","sequence":663,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: arkema, device-id: 0008004AE119]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:15.501Z","sequence":664,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2984181b-8823-4f13-9aa5-2588684a9b1a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:15.513Z","sequence":665,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:15.513Z","sequence":666,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: arkema]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:15.515Z","sequence":667,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-8c457c00-48de-4d15-be78-82fbb7ebe6f4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:15.569Z","sequence":668,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:15.569Z","sequence":669,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BBD1C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:15.581Z","sequence":670,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0b5e88b6-6f9c-41cb-9f8e-f5b156258301, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:21.931Z","sequence":671,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:21.932Z","sequence":672,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100140B] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:21.94Z","sequence":673,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:21.94Z","sequence":674,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:21.946Z","sequence":675,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4ff12d56-53b7-4834-87a6-73f83884426b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:22.138Z","sequence":676,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:22.138Z","sequence":677,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B60] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:22.144Z","sequence":678,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:22.144Z","sequence":679,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:22.15Z","sequence":680,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2a3fa75a-d0c1-4082-8446-3a1ba52f298e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:24.253Z","sequence":681,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:24.253Z","sequence":682,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 70B3D57BB100017F] for gateway [0008004BB84C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:24.258Z","sequence":683,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_lanxess\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:24.259Z","sequence":684,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_lanxess\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:24.262Z","sequence":685,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6a765bd6-77b1-44bd-9e0f-e6fe6afa75e7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:24.272Z","sequence":686,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:24.272Z","sequence":687,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000694] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:24.277Z","sequence":688,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:24.277Z","sequence":689,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:24.284Z","sequence":690,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b744a017-086a-4a9a-b115-35a92a4fd4fc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:25.328Z","sequence":691,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:25.328Z","sequence":692,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: dow]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:25.333Z","sequence":693,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-06a1e72b-4101-4e90-8584-57c1b5ee18b9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:25.34Z","sequence":694,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Source{address='credentials/dow/db83be11-4147-46d3-8e60-d77d05876779', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:25.34Z","sequence":695,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:25.34Z","sequence":696,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@a8a054e] for replies to [credentials/dow/db83be11-4147-46d3-8e60-d77d05876779]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:25.344Z","sequence":697,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Target{address='credentials/dow', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:25.345Z","sequence":698,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-5]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:25.345Z","sequence":699,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:25.348Z","sequence":700,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/dow:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:25.349Z","sequence":701,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: dow, type: hashed-password, auth-id: auth-gateway_dow_network_39199]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:25.401Z","sequence":702,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-b4a79c79-309b-460b-8cc9-5ab72e343b04, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:25.647Z","sequence":703,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] wants to open a link [address: Source{address='registration/dow/1eda3a91-82f3-489b-ac85-c27d4d402c98', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:25.648Z","sequence":704,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:25.648Z","sequence":705,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@234661f9] for replies to [registration/dow/1eda3a91-82f3-489b-ac85-c27d4d402c98]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:25.65Z","sequence":706,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] wants to open a link [address: Target{address='registration/dow', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:25.65Z","sequence":707,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-5]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:25.65Z","sequence":708,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:25.654Z","sequence":709,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:25.654Z","sequence":710,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 70B3D57BB10014F7] for gateway [gateway_dow_network_39199]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:25.655Z","sequence":711,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:25.655Z","sequence":712,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: gateway_dow_network_39199]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:25.662Z","sequence":713,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:25.664Z","sequence":714,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:25.665Z","sequence":715,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2fb5b1c5-b1cc-45e5-9f3c-0de87e3e1e0f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:25.669Z","sequence":716,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-bb41e732-7f53-47eb-8480-d387d7a4946f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:31.535Z","sequence":717,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:31.535Z","sequence":718,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10001D5] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:31.552Z","sequence":719,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:0.4.1\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:31.552Z","sequence":720,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:31.563Z","sequence":721,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e7d8ec5e-dd85-4b8f-8377-3b632a4d27f2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:32.983Z","sequence":722,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:32.984Z","sequence":723,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: flint]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:32.988Z","sequence":724,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-37190a46-624e-4953-a9d5-2156f039b01f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:32.991Z","sequence":725,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Source{address='credentials/flint/c13b01b4-4814-425e-ad3d-3d1700809237', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:32.991Z","sequence":726,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-6]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:32.991Z","sequence":727,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@1551f2dc] for replies to [credentials/flint/c13b01b4-4814-425e-ad3d-3d1700809237]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:32.993Z","sequence":728,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Target{address='credentials/flint', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:32.994Z","sequence":729,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-7]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:32.994Z","sequence":730,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:32.996Z","sequence":731,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/flint:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:32.996Z","sequence":732,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: flint, type: hashed-password, auth-id: auth-flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:33.054Z","sequence":733,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-18d5f379-4b77-4dd4-bc12-f2e31a779a7d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:33.174Z","sequence":734,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] wants to open a link [address: Source{address='registration/flint/913c8cbc-a1d0-4607-8c08-617b93e5d088', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:33.174Z","sequence":735,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-6]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:33.174Z","sequence":736,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@34b8e203] for replies to [registration/flint/913c8cbc-a1d0-4607-8c08-617b93e5d088]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:33.177Z","sequence":737,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] wants to open a link [address: Target{address='registration/flint', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:33.177Z","sequence":738,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-7]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:33.177Z","sequence":739,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:33.18Z","sequence":740,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:33.18Z","sequence":741,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10008A2] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:33.18Z","sequence":742,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:33.18Z","sequence":743,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:33.185Z","sequence":744,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ccad2810-e617-4bb0-b733-c39c44a790a6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:33.185Z","sequence":745,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:33.185Z","sequence":746,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:33.19Z","sequence":747,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f8c7d520-504e-4e8a-85df-9235755b67f3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:34.403Z","sequence":748,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/dow:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:34.408Z","sequence":749,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: dow, type: hashed-password, auth-id: auth-gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:34.455Z","sequence":750,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-5fc80085-79e7-4b85-a530-e029e0ac52db, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:34.824Z","sequence":751,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:34.825Z","sequence":752,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 70B3D57BB100125F] for gateway [gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:34.826Z","sequence":753,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:34.826Z","sequence":754,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:34.833Z","sequence":755,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d4e606c8-d543-45db-9755-46850cb3e28d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:34.834Z","sequence":756,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:34.834Z","sequence":757,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:34.839Z","sequence":758,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ed761c17-1075-4511-89f9-009e7b19f85f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:35.373Z","sequence":759,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:35.373Z","sequence":760,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AD5] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:35.386Z","sequence":761,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:35.387Z","sequence":762,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:35.396Z","sequence":763,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-70e2b097-3755-442e-b890-d41a69e8422d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:39.706Z","sequence":764,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:39.706Z","sequence":765,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A72] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:39.712Z","sequence":766,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:39.712Z","sequence":767,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:39.718Z","sequence":768,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a00a1a9d-2aa4-474f-aae0-02ccfc7c7ab0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:43.692Z","sequence":769,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:43.692Z","sequence":770,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006AB] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:43.701Z","sequence":771,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:43.701Z","sequence":772,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:43.706Z","sequence":773,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-41faa38c-294f-4588-903e-12f4bc64f38f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:50.287Z","sequence":774,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:50.287Z","sequence":775,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A52] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:50.293Z","sequence":776,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:50.293Z","sequence":777,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:50.299Z","sequence":778,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-baf584ec-b1ea-4649-a9e3-d07c2d868390, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:55.156Z","sequence":779,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:55.156Z","sequence":780,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: acta]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:55.159Z","sequence":781,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-a8799e8d-5273-4260-9669-ab9e6ebc7b1b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:55.161Z","sequence":782,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af] wants to open a link [address: Source{address='registration/acta/361c8689-8181-42dd-b6b5-66bb8a7b7144', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:55.162Z","sequence":783,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-14]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:55.162Z","sequence":784,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@1325312b] for replies to [registration/acta/361c8689-8181-42dd-b6b5-66bb8a7b7144]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:55.163Z","sequence":785,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af] wants to open a link [address: Target{address='registration/acta', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:55.163Z","sequence":786,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-15]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:55.164Z","sequence":787,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:55.166Z","sequence":788,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/acta:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:55.166Z","sequence":789,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: acta, device-id: 3534383400470039] for gateway [0008004AAAA3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:55.171Z","sequence":790,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.3.0\"\n },\n \"viaGroups\" : [ \"gateways_acta\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:55.171Z","sequence":791,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_acta\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:55.173Z","sequence":792,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f8321c92-c1d8-4485-9e48-1b1e99e29e91, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:58.026Z","sequence":793,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:58.026Z","sequence":794,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:00:58.031Z","sequence":795,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-265419d1-509c-4e82-a6c2-ccecefd2bade, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:04.237Z","sequence":796,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_190880]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"463e563d45baa273","parentId":"451e8dd59759c569","traceId":"00000000000000000ad9580354fb07e0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:04.255Z","sequence":797,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_190880, resource-version: 723df09e-60ae-49d5-804e-c8d35035335e]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"463e563d45baa273","parentId":"451e8dd59759c569","traceId":"00000000000000000ad9580354fb07e0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:04.261Z","sequence":798,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190880, resource-version: 9941024c-65ca-4d63-8f1a-4f4e167cf739]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"463e563d45baa273","parentId":"451e8dd59759c569","traceId":"00000000000000000ad9580354fb07e0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:04.265Z","sequence":799,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_190880]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2a39acb6bcb7f1f4","parentId":"558d9fa576a83518","traceId":"00000000000000000ad9580354fb07e0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:04.373Z","sequence":800,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190880]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2a39acb6bcb7f1f4","parentId":"558d9fa576a83518","traceId":"00000000000000000ad9580354fb07e0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:05.437Z","sequence":801,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFB46166FCF7415]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e29e13483bc0ac8e","parentId":"63447ab4101c906a","traceId":"0000000000000000c48f81ee91775913","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:05.455Z","sequence":802,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFB46166FCF7415, resource-version: 60867fce-ccd7-48f6-8cbe-1c3076b8b3cb]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e29e13483bc0ac8e","parentId":"63447ab4101c906a","traceId":"0000000000000000c48f81ee91775913","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:05.462Z","sequence":803,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFB46166FCF7415, resource-version: bd817e6c-f559-47bf-8b5b-06c422a73048]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e29e13483bc0ac8e","parentId":"63447ab4101c906a","traceId":"0000000000000000c48f81ee91775913","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:06.58Z","sequence":804,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:06.58Z","sequence":805,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:06.583Z","sequence":806,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-78ce4be2-a76f-45f5-8cd9-5ffd4d3e3cde, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:06.587Z","sequence":807,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Source{address='credentials/integrationtest/f533bb58-ace2-4f37-878e-e95b7e75bb08', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:06.587Z","sequence":808,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-8]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:06.587Z","sequence":809,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@23085008] for replies to [credentials/integrationtest/f533bb58-ace2-4f37-878e-e95b7e75bb08]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:06.589Z","sequence":810,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Target{address='credentials/integrationtest', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:06.589Z","sequence":811,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-9]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:06.589Z","sequence":812,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:06.591Z","sequence":813,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:06.591Z","sequence":814,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_190880]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:06.6Z","sequence":815,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-cab327fc-e1c3-4907-90e7-4a994da76588, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:06.722Z","sequence":816,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] wants to open a link [address: Source{address='registration/integrationtest/ce737339-6c47-4656-b9db-8ed33aedfce0', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:06.722Z","sequence":817,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-8]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:06.722Z","sequence":818,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@42cdcb72] for replies to [registration/integrationtest/ce737339-6c47-4656-b9db-8ed33aedfce0]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:06.724Z","sequence":819,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] wants to open a link [address: Target{address='registration/integrationtest', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:06.724Z","sequence":820,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-9]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:06.724Z","sequence":821,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:06.727Z","sequence":822,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:06.727Z","sequence":823,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFB46166FCF7415] for gateway [gateway_integrationtest_network_190880]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:06.727Z","sequence":824,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:06.727Z","sequence":825,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_190880]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:06.733Z","sequence":826,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-47ca6cf0-5143-44d0-9013-6975460ad78f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:06.734Z","sequence":827,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:06.734Z","sequence":828,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:06.91Z","sequence":829,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8c5a304d-4b07-4d97-a730-49b3ff55eb76, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:12.237Z","sequence":830,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:12.237Z","sequence":831,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 70B3D57BB1001233] for gateway [gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:12.243Z","sequence":832,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:12.243Z","sequence":833,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:12.247Z","sequence":834,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-be9b9bd9-167c-4ed8-9572-34ec6afc59c1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:18.277Z","sequence":835,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFB46166FCF7415]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3cc2b2286b325ce9","parentId":"eb0ea50579d3bd5d","traceId":"000000000000000083b02d7291cd2b8b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:18.295Z","sequence":836,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFB46166FCF7415]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3cc2b2286b325ce9","parentId":"eb0ea50579d3bd5d","traceId":"000000000000000083b02d7291cd2b8b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:18.883Z","sequence":837,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_190880]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bdb23d385e495fe0","parentId":"e000c30aba27b88f","traceId":"0000000000000000e61bb4f89be9607e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:18.901Z","sequence":838,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190880]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bdb23d385e495fe0","parentId":"e000c30aba27b88f","traceId":"0000000000000000e61bb4f89be9607e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:19.691Z","sequence":839,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 47F4D2B8F83D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7e7dc380c505b74c","parentId":"42f65d045f4d877e","traceId":"00000000000000004222d020ef393e22","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:19.707Z","sequence":840,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 47F4D2B8F83D, resource-version: 9cd543b1-fd6a-4b61-9a57-f8576612b508]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7e7dc380c505b74c","parentId":"42f65d045f4d877e","traceId":"00000000000000004222d020ef393e22","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:19.712Z","sequence":841,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 47F4D2B8F83D, resource-version: 467ccfa0-52d5-4558-87db-e7289d7600ae]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7e7dc380c505b74c","parentId":"42f65d045f4d877e","traceId":"00000000000000004222d020ef393e22","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:19.715Z","sequence":842,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 47F4D2B8F83D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2332445bcd7ea886","parentId":"84e8d0c328b45c16","traceId":"00000000000000004222d020ef393e22","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:19.838Z","sequence":843,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 47F4D2B8F83D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2332445bcd7ea886","parentId":"84e8d0c328b45c16","traceId":"00000000000000004222d020ef393e22","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:20.611Z","sequence":844,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF517C3A515E49E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e1cc1bf2ef175170","parentId":"5a81ba474aa132bf","traceId":"0000000000000000962f735f52388507","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:20.629Z","sequence":845,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF517C3A515E49E, resource-version: ad067060-2e40-4a92-8827-8b20806da399]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e1cc1bf2ef175170","parentId":"5a81ba474aa132bf","traceId":"0000000000000000962f735f52388507","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:20.635Z","sequence":846,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF517C3A515E49E, resource-version: fec9a394-a369-4fb4-9a16-247777d9cea1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e1cc1bf2ef175170","parentId":"5a81ba474aa132bf","traceId":"0000000000000000962f735f52388507","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:21.361Z","sequence":847,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:21.361Z","sequence":848,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A76] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:21.371Z","sequence":849,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:21.371Z","sequence":850,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:21.378Z","sequence":851,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-66819f89-f99d-413b-97dc-9d65863fbbac, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:21.696Z","sequence":852,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:21.696Z","sequence":853,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:21.699Z","sequence":854,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-e8d79b57-9f57-4937-a992-a86f10acf79f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:21.701Z","sequence":855,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Credentials-75faa79c-12c0-45f2-bd9c-973655a3937c] wants to open a link [address: Source{address='credentials/integrationtest/ef80b541-3ba4-4cad-a5ae-26aada848537', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:21.702Z","sequence":856,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-8]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:21.702Z","sequence":857,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@42c28c46] for replies to [credentials/integrationtest/ef80b541-3ba4-4cad-a5ae-26aada848537]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:21.704Z","sequence":858,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Credentials-75faa79c-12c0-45f2-bd9c-973655a3937c] wants to open a link [address: Target{address='credentials/integrationtest', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:21.704Z","sequence":859,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-9]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:21.704Z","sequence":860,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:21.707Z","sequence":861,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:21.707Z","sequence":862,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-47F4D2B8F83D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:21.717Z","sequence":863,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-87551bf9-9ace-43bb-84d0-cf6b411c8476, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:21.839Z","sequence":864,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af] wants to open a link [address: Source{address='registration/integrationtest/80b3ba07-4687-4ffe-8e08-830dcf8c92e2', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:21.84Z","sequence":865,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-16]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:21.84Z","sequence":866,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@317af79e] for replies to [registration/integrationtest/80b3ba07-4687-4ffe-8e08-830dcf8c92e2]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:21.842Z","sequence":867,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af] wants to open a link [address: Target{address='registration/integrationtest', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:21.842Z","sequence":868,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-17]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:21.842Z","sequence":869,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:21.844Z","sequence":870,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:21.844Z","sequence":871,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 47F4D2B8F83D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:21.855Z","sequence":872,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c741f69c-583b-421f-bd4f-0bda5dc00c55, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:21.859Z","sequence":873,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:21.86Z","sequence":874,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF517C3A515E49E] for gateway [47F4D2B8F83D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:21.865Z","sequence":875,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:21.865Z","sequence":876,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:22.285Z","sequence":877,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-053eee14-99c0-4eab-975c-3b5b75455536, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:22.684Z","sequence":878,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:22.684Z","sequence":879,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: chevron]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:22.688Z","sequence":880,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-d5ec06a2-289a-4919-98e4-ee5968f4acd1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:22.69Z","sequence":881,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Source{address='credentials/chevron/6c3dcc05-31e2-4c6c-a1d6-ce07c43d86b3', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:22.691Z","sequence":882,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:22.691Z","sequence":883,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@c9b4357] for replies to [credentials/chevron/6c3dcc05-31e2-4c6c-a1d6-ce07c43d86b3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:22.693Z","sequence":884,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Target{address='credentials/chevron', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:22.693Z","sequence":885,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-11]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:22.693Z","sequence":886,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:22.695Z","sequence":887,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/chevron:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:22.696Z","sequence":888,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: chevron, type: hashed-password, auth-id: auth-CHEVRON-ORBIWISE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:22.706Z","sequence":889,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-dff1e4b1-dc88-4b96-ac69-c01ac9040fa6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:22.826Z","sequence":890,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] wants to open a link [address: Source{address='registration/chevron/3d47d257-4aa0-4718-8044-f6f16cf18bc4', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:22.826Z","sequence":891,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:22.826Z","sequence":892,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@5ae305d8] for replies to [registration/chevron/3d47d257-4aa0-4718-8044-f6f16cf18bc4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:22.828Z","sequence":893,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] wants to open a link [address: Target{address='registration/chevron', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:22.828Z","sequence":894,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-11]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:22.829Z","sequence":895,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:22.831Z","sequence":896,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/chevron:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:22.831Z","sequence":897,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: chevron, device-id: 70B3D57BB100025B] for gateway [CHEVRON-ORBIWISE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:22.832Z","sequence":898,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/chevron:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:22.832Z","sequence":899,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: chevron, device-id: CHEVRON-ORBIWISE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:22.841Z","sequence":900,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-61165f58-4722-4434-9db4-617a218d4935, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:22.842Z","sequence":901,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_chevron\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:22.842Z","sequence":902,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_chevron\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:22.846Z","sequence":903,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ae7d44b6-6190-4bf1-8a44-a55c8d6e4088, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:24.701Z","sequence":904,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:24.702Z","sequence":905,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BEA] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:24.708Z","sequence":906,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:24.708Z","sequence":907,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:24.714Z","sequence":908,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9ef1100c-26fc-4d66-8897-63373fc2c666, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:27.641Z","sequence":909,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:27.641Z","sequence":910,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB100082D] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:27.646Z","sequence":911,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:27.646Z","sequence":912,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:27.649Z","sequence":913,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-81e62e7d-ed70-4107-a5f7-06894c7bb880, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:30.63Z","sequence":914,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:30.63Z","sequence":915,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 0008004C80F4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:30.636Z","sequence":916,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9135d450-ddf9-4924-875a-e90fd4b43e47, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:32.543Z","sequence":917,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:32.543Z","sequence":918,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 70B3D57BB100126C] for gateway [gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:32.549Z","sequence":919,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:32.549Z","sequence":920,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:32.553Z","sequence":921,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-74e324d6-3f8a-4307-8e30-c654bffab237, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:34.732Z","sequence":922,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF517C3A515E49E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"adc4c3720cacb2c8","parentId":"f5b233e1444b4a84","traceId":"000000000000000015b23f24eb8a92ff","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:34.748Z","sequence":923,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF517C3A515E49E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"adc4c3720cacb2c8","parentId":"f5b233e1444b4a84","traceId":"000000000000000015b23f24eb8a92ff","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:35.061Z","sequence":924,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 47F4D2B8F83D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"103a9ebc29fb4d22","parentId":"ecb4e8c4b7a472ef","traceId":"0000000000000000c905132c89bc7924","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:35.081Z","sequence":925,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 47F4D2B8F83D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"103a9ebc29fb4d22","parentId":"ecb4e8c4b7a472ef","traceId":"0000000000000000c905132c89bc7924","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:43.088Z","sequence":926,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af] wants to open a link [address: Source{address='registration/oiltanking/eb842f27-1606-4840-b2d2-7973646507e8', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:43.089Z","sequence":927,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-18]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:43.089Z","sequence":928,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@1804910d] for replies to [registration/oiltanking/eb842f27-1606-4840-b2d2-7973646507e8]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:43.091Z","sequence":929,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af] wants to open a link [address: Target{address='registration/oiltanking', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:43.091Z","sequence":930,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-19]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:43.091Z","sequence":931,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:43.093Z","sequence":932,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oiltanking:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:43.093Z","sequence":933,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oiltanking, device-id: 0008004BB60F]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:43.099Z","sequence":934,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e66794f3-2fed-478e-9d80-11e4716e5d0d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:43.102Z","sequence":935,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:43.102Z","sequence":936,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oiltanking]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:43.104Z","sequence":937,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-0a2092a0-2b22-4a60-8c66-ef29930b17b4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:48.271Z","sequence":938,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:48.271Z","sequence":939,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B83] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:48.278Z","sequence":940,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:48.278Z","sequence":941,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:48.284Z","sequence":942,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b5a85801-3499-4248-bc04-2892d989f040, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:54.293Z","sequence":943,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/conditionall:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:54.293Z","sequence":944,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: conditionall, device-id: 70B3D57BB1000226] for gateway [0008004B512D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:54.299Z","sequence":945,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_conditionall\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:54.299Z","sequence":946,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_conditionall\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:01:54.302Z","sequence":947,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d5d4256a-20a5-4ae8-a41a-7f648a0bdd91, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:01.749Z","sequence":948,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:01.749Z","sequence":949,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: terega]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:01.752Z","sequence":950,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-d1e56e2d-0dfb-4905-b2c9-ee7901d8586d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:01.756Z","sequence":951,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Source{address='credentials/terega/b7bcf5b3-d914-492b-8cb7-dd2338f8cf90', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:01.757Z","sequence":952,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-12]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:01.757Z","sequence":953,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@3bae2d63] for replies to [credentials/terega/b7bcf5b3-d914-492b-8cb7-dd2338f8cf90]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:01.759Z","sequence":954,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Target{address='credentials/terega', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:01.759Z","sequence":955,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-13]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:01.759Z","sequence":956,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:01.761Z","sequence":957,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/terega:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:01.762Z","sequence":958,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: terega, type: hashed-password, auth-id: auth-gateway_terega_network_27]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:01.78Z","sequence":959,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-b377160d-0982-4634-b612-75f5db0c4cda, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:01.898Z","sequence":960,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] wants to open a link [address: Source{address='registration/terega/2f42e07c-6255-49ca-a428-26b5d26897d1', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:01.898Z","sequence":961,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-12]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:01.898Z","sequence":962,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@28134c1d] for replies to [registration/terega/2f42e07c-6255-49ca-a428-26b5d26897d1]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:01.902Z","sequence":963,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] wants to open a link [address: Target{address='registration/terega', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:01.902Z","sequence":964,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-13]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:01.903Z","sequence":965,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:01.905Z","sequence":966,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/terega:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:01.905Z","sequence":967,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: terega, device-id: 70B3D57BB1000091] for gateway [gateway_terega_network_27]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:01.906Z","sequence":968,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/terega:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:01.906Z","sequence":969,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: terega, device-id: gateway_terega_network_27]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:01.912Z","sequence":970,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_terega\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:01.912Z","sequence":971,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_terega\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:01.913Z","sequence":972,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c6903d27-24f5-432a-b106-98d64dc5a6a7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:01.915Z","sequence":973,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3c65c994-61fe-46b1-a7da-dbcd18598ca7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:02.472Z","sequence":974,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:02.473Z","sequence":975,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oci]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:02.476Z","sequence":976,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-4f69fd70-6fe2-47a0-a60f-8f3602bb6f98, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:02.479Z","sequence":977,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:02.479Z","sequence":978,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001E1] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:02.5Z","sequence":979,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:02.5Z","sequence":980,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001E1] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:02.508Z","sequence":981,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:02.508Z","sequence":982,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:02.522Z","sequence":983,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7655664d-6809-4294-b8f3-2d3484c8bbfc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:02.522Z","sequence":984,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:02.522Z","sequence":985,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:02.537Z","sequence":986,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c297c47b-aaf5-42dc-9d7c-46abc65212f5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:08.627Z","sequence":987,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:08.627Z","sequence":988,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A78] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:08.639Z","sequence":989,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:08.639Z","sequence":990,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:08.645Z","sequence":991,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f506f41c-399c-4513-afcf-454b8d94d1c9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:15.387Z","sequence":992,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:15.387Z","sequence":993,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10007D3] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:15.394Z","sequence":994,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:15.395Z","sequence":995,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:15.399Z","sequence":996,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e0dd42ef-8621-4cc7-b0a5-a34705588303, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:20.261Z","sequence":997,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:20.261Z","sequence":998,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100016B] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:20.267Z","sequence":999,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:20.267Z","sequence":1000,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:20.27Z","sequence":1001,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2db0372d-3459-4826-ac21-42bb6ddbf4de, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:20.319Z","sequence":1002,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:20.319Z","sequence":1003,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100016B] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:20.324Z","sequence":1004,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:20.324Z","sequence":1005,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:20.327Z","sequence":1006,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1cfaa951-1e99-40f1-b692-9c769268672e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:28.036Z","sequence":1007,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af] wants to open a link [address: Source{address='registration/aloxy/ed631a32-4215-482a-9da6-17d154b240b1', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:28.036Z","sequence":1008,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-20]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:28.036Z","sequence":1009,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@34f2a49d] for replies to [registration/aloxy/ed631a32-4215-482a-9da6-17d154b240b1]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:28.039Z","sequence":1010,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af] wants to open a link [address: Target{address='registration/aloxy', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:28.039Z","sequence":1011,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-21]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:28.039Z","sequence":1012,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:28.042Z","sequence":1013,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/aloxy:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:28.042Z","sequence":1014,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: aloxy, device-id: 0008004A8F68]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:28.046Z","sequence":1015,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9483c315-9970-4bfd-9d3b-3eb137930fb4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:28.049Z","sequence":1016,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:28.049Z","sequence":1017,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: aloxy]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:28.052Z","sequence":1018,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-3db9eff8-1bda-428e-b27a-0c6615f86a1c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:28.269Z","sequence":1019,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:28.269Z","sequence":1020,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006A3] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:28.275Z","sequence":1021,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:28.275Z","sequence":1022,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:28.281Z","sequence":1023,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2b1c36d1-3649-4806-8fe4-2449c37dd034, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:28.81Z","sequence":1024,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:28.811Z","sequence":1025,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10009BB] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:28.817Z","sequence":1026,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:28.817Z","sequence":1027,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:28.821Z","sequence":1028,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d6779ace-cceb-4418-bd0f-cc61b6b67e68, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:38.95Z","sequence":1029,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:38.95Z","sequence":1030,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BB613]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:38.956Z","sequence":1031,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a569702b-dfeb-4a14-9be3-550e96682236, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:40.638Z","sequence":1032,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/acta:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:40.639Z","sequence":1033,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: acta, device-id: 0008004AAAA3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:40.644Z","sequence":1034,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-762ff2fb-b103-43b8-9fbd-c7648e236864, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:44.845Z","sequence":1035,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:44.845Z","sequence":1036,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: shelldev]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:44.848Z","sequence":1037,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-d29264e6-abd7-49d7-91c7-ed60d9ca7b7a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:44.851Z","sequence":1038,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Source{address='credentials/shelldev/3a922463-5cc6-4eeb-b566-a1692a8d544b', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:44.851Z","sequence":1039,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-14]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:44.851Z","sequence":1040,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@1559b10d] for replies to [credentials/shelldev/3a922463-5cc6-4eeb-b566-a1692a8d544b]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:44.853Z","sequence":1041,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Target{address='credentials/shelldev', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:44.853Z","sequence":1042,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-15]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:44.853Z","sequence":1043,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:44.855Z","sequence":1044,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/shelldev:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:44.855Z","sequence":1045,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: shelldev, type: hashed-password, auth-id: auth-AZUREFUNCTION-DEV]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:44.866Z","sequence":1046,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-ec54fa48-c96c-4d7b-9ab4-eb8dd4f53ae7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:44.999Z","sequence":1047,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] wants to open a link [address: Source{address='registration/shelldev/19f8147a-249b-4d4a-b983-ce6eee7a2dd3', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:44.999Z","sequence":1048,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-14]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:45Z","sequence":1049,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@11050a32] for replies to [registration/shelldev/19f8147a-249b-4d4a-b983-ce6eee7a2dd3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:45.002Z","sequence":1050,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] wants to open a link [address: Target{address='registration/shelldev', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:45.002Z","sequence":1051,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-15]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:45.002Z","sequence":1052,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:45.005Z","sequence":1053,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shelldev:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:45.005Z","sequence":1054,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shelldev, device-id: 70B3D57BB10001C9] for gateway [AZUREFUNCTION-DEV]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:45.006Z","sequence":1055,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shelldev:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:45.006Z","sequence":1056,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shelldev, device-id: AZUREFUNCTION-DEV]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:45.01Z","sequence":1057,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_shelldev\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:45.011Z","sequence":1058,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_shelldev\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:45.012Z","sequence":1059,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-fd74e8ad-2251-44fd-97d7-adf5aea3caf8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:45.013Z","sequence":1060,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c2a15bb1-8587-47a0-86d3-664422994c28, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:45.959Z","sequence":1061,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:45.959Z","sequence":1062,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001903] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:45.965Z","sequence":1063,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:45.965Z","sequence":1064,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:45.971Z","sequence":1065,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-329dacfb-a184-4750-a5e2-52825aa04fbc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:46.116Z","sequence":1066,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:46.116Z","sequence":1067,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B9F] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:46.124Z","sequence":1068,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:46.125Z","sequence":1069,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:46.131Z","sequence":1070,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2ad93e61-347c-41d4-8fcb-2c32acfbd496, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:48.797Z","sequence":1071,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:48.798Z","sequence":1072,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB1000A73] for gateway [0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:48.804Z","sequence":1073,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:48.804Z","sequence":1074,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:48.807Z","sequence":1075,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-57f58632-ce91-43db-9069-ebd0d9cf452a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:51.402Z","sequence":1076,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:51.403Z","sequence":1077,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000831] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:51.409Z","sequence":1078,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:51.409Z","sequence":1079,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:51.413Z","sequence":1080,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-32a2ff34-47d3-4376-9d9b-dcdfd45f668a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:51.53Z","sequence":1081,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:51.531Z","sequence":1082,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B5F] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:51.536Z","sequence":1083,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:51.536Z","sequence":1084,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:02:51.542Z","sequence":1085,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-979a3a8a-e4f8-4fae-9e57-f1b53268d32c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:04.307Z","sequence":1086,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_190882]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a4ebedadc76df54e","parentId":"e2b11d64fb66dc1d","traceId":"00000000000000000d9538b2b67dddbc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:04.326Z","sequence":1087,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_190882, resource-version: 075f2b64-b46e-4d42-8dcd-6e15c5631244]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a4ebedadc76df54e","parentId":"e2b11d64fb66dc1d","traceId":"00000000000000000d9538b2b67dddbc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:04.333Z","sequence":1088,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190882, resource-version: 70483c65-4a6b-4e99-b59a-0a895144b031]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a4ebedadc76df54e","parentId":"e2b11d64fb66dc1d","traceId":"00000000000000000d9538b2b67dddbc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:04.337Z","sequence":1089,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_190882]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"325399fca97a7c7c","parentId":"cd75111adca2300b","traceId":"00000000000000000d9538b2b67dddbc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:04.493Z","sequence":1090,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190882]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"325399fca97a7c7c","parentId":"cd75111adca2300b","traceId":"00000000000000000d9538b2b67dddbc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:05.377Z","sequence":1091,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFEEC06833E0D02]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"822c0c7b00b4177b","parentId":"548124f59af32bab","traceId":"00000000000000001614bf06f7a2184a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:05.393Z","sequence":1092,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFEEC06833E0D02, resource-version: fb466197-017f-4c05-8364-d81039360b70]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"822c0c7b00b4177b","parentId":"548124f59af32bab","traceId":"00000000000000001614bf06f7a2184a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:05.401Z","sequence":1093,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFEEC06833E0D02, resource-version: 8621a9e8-8f1a-484e-9523-811b4cf92597]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"822c0c7b00b4177b","parentId":"548124f59af32bab","traceId":"00000000000000001614bf06f7a2184a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:06.488Z","sequence":1094,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:06.488Z","sequence":1095,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_190882]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:06.512Z","sequence":1096,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-bcfe8dbb-9ac0-414a-9110-40dd2ea5d1fe, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:06.637Z","sequence":1097,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:06.637Z","sequence":1098,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFEEC06833E0D02] for gateway [gateway_integrationtest_network_190882]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:06.638Z","sequence":1099,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:06.638Z","sequence":1100,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_190882]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:06.648Z","sequence":1101,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:06.649Z","sequence":1102,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:06.649Z","sequence":1103,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-612dc317-bd82-474e-90ee-77ca2d451563, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:06.961Z","sequence":1104,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-673f7132-166c-497f-ba17-f6a5a070c76b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:08.029Z","sequence":1105,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:08.029Z","sequence":1106,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: shell]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:08.053Z","sequence":1107,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-3ad46295-d41a-4855-af13-ec9b49d7c4e3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:08.056Z","sequence":1108,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/shell:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:08.057Z","sequence":1109,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: shell, type: hashed-password, auth-id: auth-gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:08.129Z","sequence":1110,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-1fd4bdad-7c8e-4965-a3e1-4343f86fdc26, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:08.253Z","sequence":1111,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:08.253Z","sequence":1112,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100069C] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:08.258Z","sequence":1113,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:08.258Z","sequence":1114,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:08.264Z","sequence":1115,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-486c861e-fd46-471f-9156-cf6e62f01ccd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:13.191Z","sequence":1116,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:13.192Z","sequence":1117,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000516] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:13.203Z","sequence":1118,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:13.203Z","sequence":1119,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:13.209Z","sequence":1120,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7a947815-0ca6-4dd3-aee8-1ef5ac59333d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:13.783Z","sequence":1121,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:13.784Z","sequence":1122,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001FD] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:13.791Z","sequence":1123,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:13.791Z","sequence":1124,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:13.795Z","sequence":1125,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4b274953-cc42-44fd-87ba-683dff6932d6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:13.805Z","sequence":1126,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:13.805Z","sequence":1127,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001FD] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:13.811Z","sequence":1128,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:13.811Z","sequence":1129,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:13.814Z","sequence":1130,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b6f96eeb-54db-489f-b88e-6a563c33ce2c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:18.385Z","sequence":1131,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFEEC06833E0D02]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2dbd8ae6be88c030","parentId":"73102e5085beecdf","traceId":"00000000000000002982deb9489ddd34","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:18.401Z","sequence":1132,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFEEC06833E0D02]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2dbd8ae6be88c030","parentId":"73102e5085beecdf","traceId":"00000000000000002982deb9489ddd34","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:18.6Z","sequence":1133,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_190882]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"66515ff3051efa58","parentId":"7bffc7a2a6c8a375","traceId":"0000000000000000266d22172ea8ecd6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:18.624Z","sequence":1134,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190882]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"66515ff3051efa58","parentId":"7bffc7a2a6c8a375","traceId":"0000000000000000266d22172ea8ecd6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:19.321Z","sequence":1135,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 500B5FDD91D3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"42b2a8b968e3eb31","parentId":"8a382d6accd96ad7","traceId":"0000000000000000dbd0ccf1085dc7d9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:19.339Z","sequence":1136,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 500B5FDD91D3, resource-version: e078b971-26d2-4474-82ec-74ff7b03e6ec]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"42b2a8b968e3eb31","parentId":"8a382d6accd96ad7","traceId":"0000000000000000dbd0ccf1085dc7d9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:19.345Z","sequence":1137,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 500B5FDD91D3, resource-version: df8c38f8-1afc-45cb-b04e-f7c113fcb846]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"42b2a8b968e3eb31","parentId":"8a382d6accd96ad7","traceId":"0000000000000000dbd0ccf1085dc7d9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:19.347Z","sequence":1138,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 500B5FDD91D3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"12df22b3c61a26f1","parentId":"c7d5185c079e1b5b","traceId":"0000000000000000dbd0ccf1085dc7d9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:19.502Z","sequence":1139,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 500B5FDD91D3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"12df22b3c61a26f1","parentId":"c7d5185c079e1b5b","traceId":"0000000000000000dbd0ccf1085dc7d9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:19.96Z","sequence":1140,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF4672790D73D73]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4620185afed66160","parentId":"6ebc731fe05e1aa6","traceId":"0000000000000000045187c818a85e9f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:19.977Z","sequence":1141,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF4672790D73D73, resource-version: 480a7b67-3e7b-4dc8-a997-5f91f919a914]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4620185afed66160","parentId":"6ebc731fe05e1aa6","traceId":"0000000000000000045187c818a85e9f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:19.983Z","sequence":1142,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF4672790D73D73, resource-version: 2ad021a8-05a6-478d-a277-30c362846452]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4620185afed66160","parentId":"6ebc731fe05e1aa6","traceId":"0000000000000000045187c818a85e9f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:21.037Z","sequence":1143,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:21.037Z","sequence":1144,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-500B5FDD91D3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:21.047Z","sequence":1145,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-d521b5ef-ae55-4738-9f53-aff1abe90d9c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:21.175Z","sequence":1146,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:21.175Z","sequence":1147,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 500B5FDD91D3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:21.182Z","sequence":1148,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-30fc68b1-3cad-443b-97e4-55af8e79d57d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:21.186Z","sequence":1149,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:21.189Z","sequence":1150,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF4672790D73D73] for gateway [500B5FDD91D3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:21.194Z","sequence":1151,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:21.194Z","sequence":1152,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:21.501Z","sequence":1153,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8b16019b-df4d-4262-a605-e766a95e79f1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:23.14Z","sequence":1154,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:23.14Z","sequence":1155,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:23.145Z","sequence":1156,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f88769a2-f7d8-4c6e-a874-3193e7352f3e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:25.026Z","sequence":1157,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:25.026Z","sequence":1158,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006B1] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:25.027Z","sequence":1159,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:25.027Z","sequence":1160,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:25.031Z","sequence":1161,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:25.032Z","sequence":1162,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:25.032Z","sequence":1163,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0ec7824d-8fcb-4ad7-8ca6-8aefdbe7a757, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:25.037Z","sequence":1164,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1f6eb0b9-9e6a-49c8-9852-0ebcd904463c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:26.106Z","sequence":1165,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:26.107Z","sequence":1166,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AC1] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:26.112Z","sequence":1167,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:26.112Z","sequence":1168,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:26.118Z","sequence":1169,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f6e506a3-0b5f-40d3-8576-5747a816fbdf, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:31.415Z","sequence":1170,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/terega:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:31.415Z","sequence":1171,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: terega, device-id: 70B3D57BB1000DF8] for gateway [gateway_terega_network_27]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:31.421Z","sequence":1172,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_terega\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:31.421Z","sequence":1173,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_terega\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:31.424Z","sequence":1174,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-959ebee5-cfd3-4728-a6be-d981d6a83c64, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:32.727Z","sequence":1175,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF4672790D73D73]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"129e33de4a5d3a16","parentId":"2b1e8ca86c3f0432","traceId":"00000000000000005665fb5f47858570","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:32.744Z","sequence":1176,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF4672790D73D73]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"129e33de4a5d3a16","parentId":"2b1e8ca86c3f0432","traceId":"00000000000000005665fb5f47858570","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:33.076Z","sequence":1177,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 500B5FDD91D3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c7eed5a3905055d3","parentId":"f125537cb2650cc9","traceId":"000000000000000092604a21bc5bb436","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:33.091Z","sequence":1178,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 500B5FDD91D3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c7eed5a3905055d3","parentId":"f125537cb2650cc9","traceId":"000000000000000092604a21bc5bb436","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:33.291Z","sequence":1179,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:33.292Z","sequence":1180,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: repsol]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:33.297Z","sequence":1181,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-78eea7d2-6597-49af-8fe8-bd1f7084b820, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:35.464Z","sequence":1182,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:35.465Z","sequence":1183,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: indeel]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:35.469Z","sequence":1184,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-19789396-f3cf-4cbb-a6c3-979bb1a8fb88, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:35.471Z","sequence":1185,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Source{address='credentials/indeel/9f2df05c-3640-4b72-bf95-f187690aa3f9', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:35.471Z","sequence":1186,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-16]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:35.471Z","sequence":1187,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@38744694] for replies to [credentials/indeel/9f2df05c-3640-4b72-bf95-f187690aa3f9]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:35.474Z","sequence":1188,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Target{address='credentials/indeel', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:35.474Z","sequence":1189,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-17]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:35.474Z","sequence":1190,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:35.476Z","sequence":1191,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/indeel:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:35.477Z","sequence":1192,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: indeel, type: hashed-password, auth-id: auth-gateway_indeel_network_40884]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:35.488Z","sequence":1193,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-eab5b7e6-3b7f-40d6-8c07-8b673060f47d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:35.773Z","sequence":1194,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] wants to open a link [address: Source{address='registration/indeel/eeea4164-f880-46cc-a831-707bca8ffdbb', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:35.773Z","sequence":1195,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-16]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:35.773Z","sequence":1196,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@63cde310] for replies to [registration/indeel/eeea4164-f880-46cc-a831-707bca8ffdbb]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:35.776Z","sequence":1197,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] wants to open a link [address: Target{address='registration/indeel', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:35.776Z","sequence":1198,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-17]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:35.776Z","sequence":1199,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:35.779Z","sequence":1200,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/indeel:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:35.779Z","sequence":1201,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: indeel, device-id: 70B3D57BB10013FA] for gateway [gateway_indeel_network_40884]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:35.779Z","sequence":1202,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/indeel:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:35.779Z","sequence":1203,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: indeel, device-id: gateway_indeel_network_40884]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:35.785Z","sequence":1204,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e35dad3e-ed8c-4018-83ad-ca32c1075a60, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:35.785Z","sequence":1205,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_indeel\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:35.785Z","sequence":1206,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_indeel\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:35.787Z","sequence":1207,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4d01c052-ba88-472e-a263-6d1727fc4f00, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:35.981Z","sequence":1208,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:35.982Z","sequence":1209,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000168] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:35.988Z","sequence":1210,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:35.988Z","sequence":1211,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:35.989Z","sequence":1212,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:35.989Z","sequence":1213,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000168] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:35.992Z","sequence":1214,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-179906ad-7eef-4b3b-84fe-c9b2b33b473f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:35.995Z","sequence":1215,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:35.996Z","sequence":1216,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:35.998Z","sequence":1217,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5c6ca607-b916-4207-b2da-4a7f81e38f25, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:36.976Z","sequence":1218,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:36.976Z","sequence":1219,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006C2] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:36.981Z","sequence":1220,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:36.981Z","sequence":1221,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:36.987Z","sequence":1222,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-10a0d008-432f-41fd-83bf-c6c5dbc2e93d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:39.155Z","sequence":1223,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:39.155Z","sequence":1224,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000693] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:39.16Z","sequence":1225,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:39.16Z","sequence":1226,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:39.167Z","sequence":1227,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-30945289-a03b-4400-a8ef-66e53cf9467e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:39.727Z","sequence":1228,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:39.727Z","sequence":1229,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006C4] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:39.733Z","sequence":1230,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:39.733Z","sequence":1231,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:39.739Z","sequence":1232,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c1b4cf2f-9dac-4bce-a6dc-0cc13ecb0528, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:40.138Z","sequence":1233,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:40.139Z","sequence":1234,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: dow]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:40.143Z","sequence":1235,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-81d7f1a8-bda0-4f31-9e71-1ed4db834f24, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:40.145Z","sequence":1236,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/dow:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:40.145Z","sequence":1237,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: dow, type: hashed-password, auth-id: auth-gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:40.155Z","sequence":1238,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-e5fec5d9-29d8-4eae-98ae-5fb786145a6d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:40.463Z","sequence":1239,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:40.463Z","sequence":1240,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 70B3D57BB1001264] for gateway [gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:40.468Z","sequence":1241,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:40.468Z","sequence":1242,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:40.472Z","sequence":1243,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9994bb86-1050-4697-866d-7fcc7699298a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:41.173Z","sequence":1244,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:41.173Z","sequence":1245,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001EA] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:41.178Z","sequence":1246,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:41.178Z","sequence":1247,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:41.181Z","sequence":1248,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c002651e-14d1-4da5-b345-36d0f8e6506e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:41.211Z","sequence":1249,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:41.211Z","sequence":1250,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001EA] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:41.215Z","sequence":1251,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:41.215Z","sequence":1252,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:41.218Z","sequence":1253,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-66ffcb49-8cb8-4a83-b894-a19fe8013597, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:44.185Z","sequence":1254,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/repsol:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:44.185Z","sequence":1255,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: repsol, device-id: 70B3D57BB1000187] for gateway [0008004A37FF]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:44.197Z","sequence":1256,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:0.4.1\"\n },\n \"viaGroups\" : [ \"gateways_repsol\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:44.197Z","sequence":1257,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_repsol\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:44.201Z","sequence":1258,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-705d3c33-f3ce-4dec-b028-4aa386b16508, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:44.24Z","sequence":1259,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:44.241Z","sequence":1260,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B87] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:44.247Z","sequence":1261,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:44.247Z","sequence":1262,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:44.253Z","sequence":1263,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-68d56b52-040f-4e7d-b4bc-8383f73270e1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:47.204Z","sequence":1264,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:47.205Z","sequence":1265,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: flint]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:47.208Z","sequence":1266,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-df316b7d-fbe8-4f7e-8254-b5d3622cd7da, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:47.21Z","sequence":1267,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/flint:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:47.21Z","sequence":1268,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: flint, type: hashed-password, auth-id: auth-flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:47.221Z","sequence":1269,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-eb6945dc-e00c-442e-b671-c4dd1913b764, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:47.423Z","sequence":1270,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:47.423Z","sequence":1271,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB100052B] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:47.431Z","sequence":1272,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:47.432Z","sequence":1273,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:47.437Z","sequence":1274,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4e3bee7b-0605-422e-b397-6d880c89a85c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:51.714Z","sequence":1275,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:51.715Z","sequence":1276,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: dow]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:03:51.718Z","sequence":1277,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-6a364caf-8497-46f2-a949-0df56468484f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:04:11.369Z","sequence":1278,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:04:11.369Z","sequence":1279,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000218] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:04:11.394Z","sequence":1280,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:04:11.394Z","sequence":1281,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:04:11.398Z","sequence":1282,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-47c8e738-3b40-4a0c-9f0d-b863d6844e15, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:04:11.408Z","sequence":1283,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:04:11.408Z","sequence":1284,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000218] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:04:11.412Z","sequence":1285,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:04:11.413Z","sequence":1286,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:04:11.415Z","sequence":1287,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ddfb56e6-931c-414a-bf2c-61d8f14a16bb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:04:11.521Z","sequence":1288,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:04:11.521Z","sequence":1289,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10001D9] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:04:11.53Z","sequence":1290,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:04:11.531Z","sequence":1291,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:04:11.538Z","sequence":1292,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3630ca82-be87-47b4-bbab-9ad3a3c75f8f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:04:13.522Z","sequence":1293,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:04:13.522Z","sequence":1294,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006E1] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:04:13.528Z","sequence":1295,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.8.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:04:13.528Z","sequence":1296,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:04:13.534Z","sequence":1297,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0645cf95-42b4-4a67-bd84-ae6513cc6a42, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:04:13.634Z","sequence":1298,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"retrieving device [tenant: shell, device-id: 70B3D57BB10006E1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4fa9e180272bc392","parentId":"e359d41858f1e97a","traceId":"d5d322bc3a03090b488e16a01d9c99e3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:04:14.025Z","sequence":1299,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:04:14.026Z","sequence":1300,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: ineos]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:04:14.029Z","sequence":1301,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-7630b656-5623-4cdf-8a0b-e2962f6a1dc1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:04:14.031Z","sequence":1302,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:04:14.031Z","sequence":1303,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB1000A6F] for gateway [0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:04:14.045Z","sequence":1304,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:04:14.045Z","sequence":1305,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:04:14.054Z","sequence":1306,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-041b8174-c7bf-41fd-9b9f-50ec3005054a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:04:14.741Z","sequence":1307,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:04:14.741Z","sequence":1308,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB1000A82] for gateway [0008004B5135]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:04:14.751Z","sequence":1309,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:04:14.751Z","sequence":1310,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:04:14.758Z","sequence":1311,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-bce1a5f2-287a-4aa1-a106-dcf2eaf0cb15, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:04:15.679Z","sequence":1312,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:04:15.679Z","sequence":1313,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006C8] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:04:15.689Z","sequence":1314,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:04:15.689Z","sequence":1315,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:04:15.697Z","sequence":1316,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-986c4a9c-7ebf-4dfe-910d-210e2b53e79f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:04:23.952Z","sequence":1317,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:04:23.952Z","sequence":1318,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006BE] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:04:23.958Z","sequence":1319,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:04:23.959Z","sequence":1320,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:04:23.965Z","sequence":1321,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f1da8ba8-cc5e-4f32-a16d-a396e024f839, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:04:27.134Z","sequence":1322,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:04:27.134Z","sequence":1323,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AAF] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:04:27.14Z","sequence":1324,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:04:27.14Z","sequence":1325,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:04:27.147Z","sequence":1326,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-20146699-2551-45c5-bd41-44d7cd433d20, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:04:30.143Z","sequence":1327,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/terega:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:04:30.144Z","sequence":1328,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: terega, device-id: 70B3D57BB1000DFE] for gateway [gateway_terega_network_27]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:04:30.149Z","sequence":1329,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_terega\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:04:30.149Z","sequence":1330,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_terega\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:04:30.152Z","sequence":1331,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-747d09ba-a37b-4e2b-a530-747d683d053a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:04:30.343Z","sequence":1332,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:04:30.343Z","sequence":1333,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: conditionall]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:04:30.347Z","sequence":1334,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-96131c82-80c7-4683-83e2-b3ee4191a494, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:04:32.896Z","sequence":1335,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:04:32.896Z","sequence":1336,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000208] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:04:32.902Z","sequence":1337,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:04:32.902Z","sequence":1338,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:04:32.905Z","sequence":1339,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1345e091-5cde-4a43-9cc7-bd9f1d8f5145, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:04:32.945Z","sequence":1340,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:04:32.945Z","sequence":1341,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000208] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:04:32.951Z","sequence":1342,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:04:32.951Z","sequence":1343,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:04:32.954Z","sequence":1344,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c21a875d-007d-4f33-b966-6773cf2fae67, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:04:49.993Z","sequence":1345,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:04:49.993Z","sequence":1346,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100068E] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:04:50.007Z","sequence":1347,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:04:50.007Z","sequence":1348,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:04:50.045Z","sequence":1349,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e029e880-9ddb-49b8-bf1b-ead2b858908d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:01.133Z","sequence":1350,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:01.133Z","sequence":1351,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000797] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:01.145Z","sequence":1352,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:01.146Z","sequence":1353,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:01.197Z","sequence":1354,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-08af1f6c-cb4d-4b4d-b646-01067ea9285e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:04.672Z","sequence":1355,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_190884]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"49ed81b9d3dd62a5","parentId":"b6dd541cadd136c9","traceId":"000000000000000077865e763eebfc20","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:04.752Z","sequence":1356,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_190884, resource-version: 285e3e6e-f338-4d02-9ea0-7f03666c73c4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"49ed81b9d3dd62a5","parentId":"b6dd541cadd136c9","traceId":"000000000000000077865e763eebfc20","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:04.792Z","sequence":1357,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190884, resource-version: fad93070-427d-4c32-b1e0-242e94f91f7e]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"49ed81b9d3dd62a5","parentId":"b6dd541cadd136c9","traceId":"000000000000000077865e763eebfc20","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:04.795Z","sequence":1358,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_190884]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b3667687bb541155","parentId":"b35dfc9438bc3950","traceId":"000000000000000077865e763eebfc20","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:04.967Z","sequence":1359,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190884]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b3667687bb541155","parentId":"b35dfc9438bc3950","traceId":"000000000000000077865e763eebfc20","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:05.709Z","sequence":1360,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF8E036C9D90B9C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"dde63dee73db63a6","parentId":"9bfc89dd26e2f72b","traceId":"00000000000000004d14b99743f82f99","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:05.742Z","sequence":1361,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF8E036C9D90B9C, resource-version: 8b66a824-15fe-4b13-ab2f-fea29be0cfc3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"dde63dee73db63a6","parentId":"9bfc89dd26e2f72b","traceId":"00000000000000004d14b99743f82f99","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:05.751Z","sequence":1362,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF8E036C9D90B9C, resource-version: b850fe37-4d67-4b95-b17f-8fa6d4985ef8]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"dde63dee73db63a6","parentId":"9bfc89dd26e2f72b","traceId":"00000000000000004d14b99743f82f99","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:05.934Z","sequence":1363,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:05.935Z","sequence":1364,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BB84C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:05.945Z","sequence":1365,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d83f5167-ab5a-428c-a6a3-ec7d92952cb8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:05.949Z","sequence":1366,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:05.949Z","sequence":1367,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: lanxess]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:05.953Z","sequence":1368,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-5fec8be6-f466-44ee-bdeb-d14ea56b7599, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:06.501Z","sequence":1369,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:06.501Z","sequence":1370,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 70B3D57BB1001243] for gateway [gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:06.513Z","sequence":1371,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:06.513Z","sequence":1372,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:06.542Z","sequence":1373,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-807ee92f-c8d7-4dd6-811a-d05011246cf0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:06.825Z","sequence":1374,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:06.825Z","sequence":1375,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:06.833Z","sequence":1376,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-249aa0cd-a4b4-4d68-8224-066860ba433d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:06.837Z","sequence":1377,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:06.837Z","sequence":1378,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_190884]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:06.853Z","sequence":1379,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-f03f4c3d-bb70-4148-84b3-fdbf1a45a8a7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:07.009Z","sequence":1380,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:07.017Z","sequence":1381,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF8E036C9D90B9C] for gateway [gateway_integrationtest_network_190884]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:07.018Z","sequence":1382,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:07.018Z","sequence":1383,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_190884]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:07.028Z","sequence":1384,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:07.032Z","sequence":1385,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:07.033Z","sequence":1386,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9fc082a7-0d7d-4ab8-b531-6ccd374f072a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:07.637Z","sequence":1387,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b9dc68ef-6cee-4b02-8ebf-2650a483ff64, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:07.638Z","sequence":1388,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:07.638Z","sequence":1389,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006DC] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:07.644Z","sequence":1390,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:07.645Z","sequence":1391,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:07.664Z","sequence":1392,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-bf924a20-1a89-4964-8093-3b68154d2e65, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:08.432Z","sequence":1393,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:08.433Z","sequence":1394,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 0008004B5135]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:08.455Z","sequence":1395,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a16aed59-23a8-47ec-b437-166711127afe, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:10.613Z","sequence":1396,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:10.614Z","sequence":1397,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A9D] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:10.619Z","sequence":1398,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:10.619Z","sequence":1399,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:10.626Z","sequence":1400,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f7d0a58f-c578-4d3f-be41-d12510862d77, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:11.021Z","sequence":1401,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:11.022Z","sequence":1402,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AE3] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:11.029Z","sequence":1403,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:11.029Z","sequence":1404,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:11.035Z","sequence":1405,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a4887b03-b4e7-497d-8299-556670954d79, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:11.187Z","sequence":1406,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:11.188Z","sequence":1407,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BBD1B]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:11.194Z","sequence":1408,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5214ccec-9d2c-42f5-9e04-d3b7eaed32f0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:11.564Z","sequence":1409,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:11.565Z","sequence":1410,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006AA] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:11.573Z","sequence":1411,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:11.573Z","sequence":1412,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:11.581Z","sequence":1413,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-21b278aa-2ff1-483c-8475-f6c578c270e6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:17.025Z","sequence":1414,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF8E036C9D90B9C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c862fd31ef2c3af7","parentId":"4cd85dba193d2d25","traceId":"0000000000000000ccf8631480b4cf52","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:17.1Z","sequence":1415,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF8E036C9D90B9C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c862fd31ef2c3af7","parentId":"4cd85dba193d2d25","traceId":"0000000000000000ccf8631480b4cf52","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:17.277Z","sequence":1416,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/arkema:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:17.277Z","sequence":1417,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: arkema, device-id: 0008004AE119]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:17.298Z","sequence":1418,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-145f275b-59aa-48df-aba1-7aecda5a9f3e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:17.302Z","sequence":1419,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:17.302Z","sequence":1420,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: arkema]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:17.305Z","sequence":1421,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-d586c4f0-2735-4465-8ba1-698df3cb08f8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:17.37Z","sequence":1422,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_190884]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b649bd9fe07a6b26","parentId":"4f82c28bdba6814f","traceId":"0000000000000000d223848470b8a631","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:17.404Z","sequence":1423,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190884]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b649bd9fe07a6b26","parentId":"4f82c28bdba6814f","traceId":"0000000000000000d223848470b8a631","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:18.25Z","sequence":1424,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 5A107962CC5D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fe8ba1117b7e1247","parentId":"41cb6591ac22fc17","traceId":"00000000000000005e762e707aae4a97","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:18.294Z","sequence":1425,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 5A107962CC5D, resource-version: 462cbfcc-cbe6-43b5-99fb-2c7f2f4757c8]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fe8ba1117b7e1247","parentId":"41cb6591ac22fc17","traceId":"00000000000000005e762e707aae4a97","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:18.303Z","sequence":1426,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 5A107962CC5D, resource-version: 7f1c6bb2-ed73-42a6-9e27-877851dd3e7a]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fe8ba1117b7e1247","parentId":"41cb6591ac22fc17","traceId":"00000000000000005e762e707aae4a97","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:18.306Z","sequence":1427,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 5A107962CC5D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1991004869b9aed2","parentId":"e756b9476c19b61c","traceId":"00000000000000005e762e707aae4a97","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:18.488Z","sequence":1428,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 5A107962CC5D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1991004869b9aed2","parentId":"e756b9476c19b61c","traceId":"00000000000000005e762e707aae4a97","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:18.888Z","sequence":1429,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:18.889Z","sequence":1430,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BBD1C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:18.912Z","sequence":1431,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-72ce06f1-fb2e-43c4-bbf0-452ac28d5a8a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:19.087Z","sequence":1432,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF7BA3F3DA95B28]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"32bb79247d66c050","parentId":"9cc5cf907caf8bd3","traceId":"0000000000000000221a2145fef0487b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:19.107Z","sequence":1433,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF7BA3F3DA95B28, resource-version: 08b27d27-870c-4a15-a6bd-cf1ef1950277]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"32bb79247d66c050","parentId":"9cc5cf907caf8bd3","traceId":"0000000000000000221a2145fef0487b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:19.152Z","sequence":1434,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF7BA3F3DA95B28, resource-version: 6f6905c9-8446-4a32-a90b-7aca0db1478a]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"32bb79247d66c050","parentId":"9cc5cf907caf8bd3","traceId":"0000000000000000221a2145fef0487b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:20.24Z","sequence":1435,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:20.24Z","sequence":1436,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:20.243Z","sequence":1437,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-aef1a90b-2cd8-4c70-8b50-f75853e556de, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:20.245Z","sequence":1438,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:20.246Z","sequence":1439,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-5A107962CC5D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:20.261Z","sequence":1440,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-38bd5428-1a0d-40b3-ad21-d991f30a8a9c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:20.382Z","sequence":1441,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:20.382Z","sequence":1442,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 5A107962CC5D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:20.388Z","sequence":1443,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4412cae8-5495-4619-8050-1c92d07808b8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:20.392Z","sequence":1444,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:20.392Z","sequence":1445,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF7BA3F3DA95B28] for gateway [5A107962CC5D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:20.397Z","sequence":1446,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:20.397Z","sequence":1447,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:20.776Z","sequence":1448,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-80fe06f8-2ee6-4ac0-bf63-172c5e6499da, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:20.953Z","sequence":1449,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:20.954Z","sequence":1450,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C01] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:20.963Z","sequence":1451,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:20.963Z","sequence":1452,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:21.009Z","sequence":1453,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-34b4bf44-38f6-4b26-8b5b-a667e3a3f8d2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:31.371Z","sequence":1454,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF7BA3F3DA95B28]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9d77205d0b8ff30f","parentId":"7f8e1366895a8790","traceId":"000000000000000008159d20b194c3d0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:31.408Z","sequence":1455,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF7BA3F3DA95B28]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9d77205d0b8ff30f","parentId":"7f8e1366895a8790","traceId":"000000000000000008159d20b194c3d0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:31.722Z","sequence":1456,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 5A107962CC5D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c9b2fadba84e4d12","parentId":"4f9bd8a912c63fcc","traceId":"0000000000000000c161c09500fdffbd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:31.753Z","sequence":1457,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 5A107962CC5D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c9b2fadba84e4d12","parentId":"4f9bd8a912c63fcc","traceId":"0000000000000000c161c09500fdffbd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:31.78Z","sequence":1458,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:31.78Z","sequence":1459,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB1000B10] for gateway [0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:31.794Z","sequence":1460,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:31.794Z","sequence":1461,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:31.797Z","sequence":1462,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-56b67c16-b66b-4a76-86c4-58fbcad6d74c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:32.179Z","sequence":1463,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:32.179Z","sequence":1464,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:32.185Z","sequence":1465,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7317dea2-27fd-4ccc-abb8-8b5345afc166, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:32.19Z","sequence":1466,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:32.19Z","sequence":1467,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oci]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:32.193Z","sequence":1468,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-bbb84162-04d0-4f69-a8c4-ad7e51bfe4c2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:32.195Z","sequence":1469,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:32.195Z","sequence":1470,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001E9] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:32.234Z","sequence":1471,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:32.235Z","sequence":1472,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:32.239Z","sequence":1473,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b3e1e95e-402f-4b90-87f7-986cc76f7a65, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:32.242Z","sequence":1474,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:32.242Z","sequence":1475,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001E9] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:32.247Z","sequence":1476,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:32.247Z","sequence":1477,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:32.25Z","sequence":1478,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c075ce56-496f-4fa0-84ba-ade6075927e7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:32.282Z","sequence":1479,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:32.282Z","sequence":1480,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A98] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:32.287Z","sequence":1481,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:32.287Z","sequence":1482,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:32.303Z","sequence":1483,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0c148922-c093-49a3-9e6e-4e065d34948a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:32.937Z","sequence":1484,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:32.938Z","sequence":1485,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A9C] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:32.944Z","sequence":1486,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:32.945Z","sequence":1487,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:32.951Z","sequence":1488,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c6423043-bc07-46f6-989e-1e0804dd4dd0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:35.283Z","sequence":1489,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:35.283Z","sequence":1490,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AE5] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:35.308Z","sequence":1491,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:35.308Z","sequence":1492,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:35.315Z","sequence":1493,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-43720b49-2101-4f3f-a491-6bd01d000dea, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:39.922Z","sequence":1494,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:39.922Z","sequence":1495,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AA7] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:39.928Z","sequence":1496,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:39.928Z","sequence":1497,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:39.933Z","sequence":1498,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-69dd0308-98ac-4361-bf88-f15ef3ef7eec, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:41.675Z","sequence":1499,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:41.675Z","sequence":1500,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A96] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:41.681Z","sequence":1501,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:41.681Z","sequence":1502,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:41.687Z","sequence":1503,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0195c91c-9c7a-4ea7-bf21-67f864774ab9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:45.738Z","sequence":1504,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:45.739Z","sequence":1505,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BFC] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:45.753Z","sequence":1506,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:45.754Z","sequence":1507,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:45.79Z","sequence":1508,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-82be11ff-f3aa-4fa3-9e86-7fac540f875d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:50.77Z","sequence":1509,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:50.77Z","sequence":1510,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000202] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:50.778Z","sequence":1511,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:50.778Z","sequence":1512,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:50.788Z","sequence":1513,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f390056f-ae52-4529-8951-92d4621df23d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:54.86Z","sequence":1514,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:54.86Z","sequence":1515,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 70B3D57BB1001260] for gateway [gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:54.861Z","sequence":1516,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:54.861Z","sequence":1517,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:54.89Z","sequence":1518,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-88057ae3-fee3-4859-aca2-11f2460e5fb2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:54.89Z","sequence":1519,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:54.89Z","sequence":1520,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:54.94Z","sequence":1521,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6af07c8b-7145-4054-875e-52907424d7a1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:56.403Z","sequence":1522,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:56.404Z","sequence":1523,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A97] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:56.453Z","sequence":1524,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:56.454Z","sequence":1525,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:56.549Z","sequence":1526,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3ed2c376-42be-479a-b718-aa121e5ae0eb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:59.03Z","sequence":1527,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:59.03Z","sequence":1528,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100016C] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:59.035Z","sequence":1529,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:59.035Z","sequence":1530,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:59.038Z","sequence":1531,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-693a222b-b1c6-4f6b-89ea-5f7534b6abf2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:59.213Z","sequence":1532,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:59.213Z","sequence":1533,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100016C] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:59.229Z","sequence":1534,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:59.229Z","sequence":1535,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:59.237Z","sequence":1536,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7f3bd7e8-6ba0-4bfc-b3dd-fdc0473ce700, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:59.82Z","sequence":1537,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:59.82Z","sequence":1538,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:05:59.843Z","sequence":1539,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-869b5765-4b89-45dd-b883-465a4f412992, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:00.596Z","sequence":1540,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:00.596Z","sequence":1541,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100190D] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:00.643Z","sequence":1542,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:00.643Z","sequence":1543,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:00.651Z","sequence":1544,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c3eda542-6ba0-4383-83d1-bdb91033998e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:01.515Z","sequence":1545,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:01.515Z","sequence":1546,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000202] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:01.533Z","sequence":1547,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:01.534Z","sequence":1548,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:01.549Z","sequence":1549,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e1d59a7f-4d5d-4431-99c5-d4c7617a3008, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:02.86Z","sequence":1550,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:02.86Z","sequence":1551,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AB2] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:02.884Z","sequence":1552,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:02.884Z","sequence":1553,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:02.895Z","sequence":1554,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2a0a47a6-4d5e-4ca3-b54c-3fa7ec9c7337, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:04.537Z","sequence":1555,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:04.537Z","sequence":1556,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AA5] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:04.552Z","sequence":1557,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:04.552Z","sequence":1558,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:04.561Z","sequence":1559,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2368a8de-8232-4b8e-9885-1ca5d77fa040, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:06.029Z","sequence":1560,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:06.03Z","sequence":1561,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006D1] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:06.035Z","sequence":1562,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:06.035Z","sequence":1563,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:06.054Z","sequence":1564,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4e55b146-368f-49c6-891a-249379e9bf78, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:06.954Z","sequence":1565,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:06.954Z","sequence":1566,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10002D6] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:06.96Z","sequence":1567,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:06.961Z","sequence":1568,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:06.971Z","sequence":1569,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-32f13061-4e46-4304-a7cf-c760b5b3c002, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:11.301Z","sequence":1570,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:11.302Z","sequence":1571,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: shell]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:11.305Z","sequence":1572,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-8c089139-c708-49f1-9ecd-60c79c0eb39d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:11.307Z","sequence":1573,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/shell:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:11.307Z","sequence":1574,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: shell, type: hashed-password, auth-id: auth-gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:11.354Z","sequence":1575,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-57afa328-b158-48c9-9bb9-3d739a3993fa, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:11.487Z","sequence":1576,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:11.487Z","sequence":1577,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C15] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:11.498Z","sequence":1578,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:11.498Z","sequence":1579,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:11.542Z","sequence":1580,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5b5fe609-cc75-4d99-8fef-22fa685bb9e0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:14.625Z","sequence":1581,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:14.625Z","sequence":1582,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006B8] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:14.644Z","sequence":1583,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:14.644Z","sequence":1584,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:14.654Z","sequence":1585,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b1f41b61-c503-4374-bef7-ad99d00d2611, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:14.874Z","sequence":1586,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:14.875Z","sequence":1587,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006B3] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:14.884Z","sequence":1588,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:14.885Z","sequence":1589,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:14.902Z","sequence":1590,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c96e9ee8-6272-40e5-b4dd-a3519b8ea4db, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:17.165Z","sequence":1591,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:17.165Z","sequence":1592,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A9F] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:17.197Z","sequence":1593,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:17.197Z","sequence":1594,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:17.221Z","sequence":1595,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7a4e2e55-90ba-4f41-ae91-2cc00722d1be, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:19.664Z","sequence":1596,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:19.664Z","sequence":1597,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100140D] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:19.676Z","sequence":1598,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:19.677Z","sequence":1599,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:19.685Z","sequence":1600,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3e295eca-c6a2-40dc-b0e4-f4571a58b3f0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:20.88Z","sequence":1601,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:20.88Z","sequence":1602,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AAF] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:20.887Z","sequence":1603,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:20.887Z","sequence":1604,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:20.893Z","sequence":1605,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f6f7a56e-3ec8-4917-a46e-431914c3fc66, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:21.441Z","sequence":1606,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:21.441Z","sequence":1607,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C09] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:21.451Z","sequence":1608,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:21.452Z","sequence":1609,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:21.461Z","sequence":1610,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4d25f6aa-e48f-4099-9600-72b2bee207f8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:23.441Z","sequence":1611,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:23.441Z","sequence":1612,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A46] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:23.451Z","sequence":1613,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:23.451Z","sequence":1614,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:23.464Z","sequence":1615,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-89d87e6d-899e-49b9-92cf-5988cfcdcf59, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:24.713Z","sequence":1616,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:24.714Z","sequence":1617,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100057A] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:24.726Z","sequence":1618,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:24.726Z","sequence":1619,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:24.747Z","sequence":1620,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-724147ac-665b-41c7-bd18-4dd54f9c32d5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:27.329Z","sequence":1621,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:27.33Z","sequence":1622,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A9A] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:27.337Z","sequence":1623,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:27.337Z","sequence":1624,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:27.448Z","sequence":1625,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6eae8a90-1540-4937-a2c2-d40d85720d49, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:28.616Z","sequence":1626,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:28.616Z","sequence":1627,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000802] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:28.617Z","sequence":1628,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:28.617Z","sequence":1629,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:28.651Z","sequence":1630,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7ae12f14-be0d-41dc-a263-6b705a2fef16, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:28.651Z","sequence":1631,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:28.651Z","sequence":1632,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:28.656Z","sequence":1633,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d260bad1-381a-4561-8403-f0ee4cd0d557, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:29.343Z","sequence":1634,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:29.344Z","sequence":1635,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006C3] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:29.349Z","sequence":1636,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:29.349Z","sequence":1637,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:29.392Z","sequence":1638,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d3565076-ea97-4f11-be41-bd9205c160c7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:30.87Z","sequence":1639,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:30.87Z","sequence":1640,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AAB] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:30.893Z","sequence":1641,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:30.893Z","sequence":1642,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:30.9Z","sequence":1643,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-46f251ca-7966-4be1-aa54-a76ec89cc4ad, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:32.993Z","sequence":1644,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:32.994Z","sequence":1645,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 0008004C80F4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:33.003Z","sequence":1646,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5e9ddb65-3b22-49bd-bc16-e9d8f1be2868, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:35.53Z","sequence":1647,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:35.53Z","sequence":1648,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AA1] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:35.543Z","sequence":1649,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:35.543Z","sequence":1650,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:35.549Z","sequence":1651,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-10838da5-d379-435c-b916-8c81d2e5b108, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:36.018Z","sequence":1652,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:36.018Z","sequence":1653,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100190F] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:36.046Z","sequence":1654,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:36.047Z","sequence":1655,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:36.054Z","sequence":1656,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-78693ea9-20e1-4100-a716-708ec18a458d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:41.381Z","sequence":1657,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:41.381Z","sequence":1658,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10018EE] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:41.387Z","sequence":1659,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:41.387Z","sequence":1660,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:41.401Z","sequence":1661,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-23334082-6028-4899-b5a0-1e95d77740a2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:41.47Z","sequence":1662,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:41.47Z","sequence":1663,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10018F1] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:41.477Z","sequence":1664,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:41.477Z","sequence":1665,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:41.483Z","sequence":1666,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0ca76f6c-4f72-46c9-a891-b7442c8c1c1f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:44.948Z","sequence":1667,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oiltanking:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:44.948Z","sequence":1668,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oiltanking, device-id: 0008004BB60F]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:44.973Z","sequence":1669,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7933cfa4-c2cc-488e-9ff3-8c4153db5dd5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:44.976Z","sequence":1670,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:44.977Z","sequence":1671,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oiltanking]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:44.983Z","sequence":1672,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-88fce5c9-dc60-48f7-81ba-6956b902938e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:47.38Z","sequence":1673,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:47.38Z","sequence":1674,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006A4] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:47.389Z","sequence":1675,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:47.39Z","sequence":1676,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:47.399Z","sequence":1677,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-57c8572e-765c-4ae2-86ff-e469a3a4aa04, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:47.732Z","sequence":1678,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:47.733Z","sequence":1679,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AB3] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:47.741Z","sequence":1680,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:47.741Z","sequence":1681,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:47.749Z","sequence":1682,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-362a6aa9-e616-4bc6-891e-4a9b48ff7d7c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:52.125Z","sequence":1683,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:52.125Z","sequence":1684,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10018F0] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:52.138Z","sequence":1685,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:52.138Z","sequence":1686,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:52.15Z","sequence":1687,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-56c5287a-98f2-4815-adf9-6db9a6d64821, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:52.351Z","sequence":1688,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:52.351Z","sequence":1689,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AA0] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:52.358Z","sequence":1690,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:52.358Z","sequence":1691,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:52.366Z","sequence":1692,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d65c6f48-c0c9-4648-a2af-6780aef4b92b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:56.915Z","sequence":1693,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:56.915Z","sequence":1694,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10018F2] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:56.951Z","sequence":1695,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:56.952Z","sequence":1696,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:06:57.001Z","sequence":1697,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f0da66ee-1a4a-4ab8-9b06-fb3847a87c81, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:02.658Z","sequence":1698,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:02.658Z","sequence":1699,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A94] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:02.664Z","sequence":1700,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:02.664Z","sequence":1701,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:02.671Z","sequence":1702,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-881c34c7-22dd-4439-ab64-4bd4f1225d70, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:04.283Z","sequence":1703,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_190886]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4b40c0116c687fbb","parentId":"12439e3f33dadbf6","traceId":"00000000000000008e3c024d848b0677","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:04.359Z","sequence":1704,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_190886, resource-version: 7ba8bdfc-cd43-4549-8f67-885ea08561fb]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4b40c0116c687fbb","parentId":"12439e3f33dadbf6","traceId":"00000000000000008e3c024d848b0677","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:04.393Z","sequence":1705,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190886, resource-version: cafa98fd-9de8-4bf7-b6e2-60806a52a44f]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4b40c0116c687fbb","parentId":"12439e3f33dadbf6","traceId":"00000000000000008e3c024d848b0677","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:04.396Z","sequence":1706,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_190886]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cd074e35c4622a7f","parentId":"cf7d31b8712c15c2","traceId":"00000000000000008e3c024d848b0677","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:04.598Z","sequence":1707,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190886]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cd074e35c4622a7f","parentId":"cf7d31b8712c15c2","traceId":"00000000000000008e3c024d848b0677","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:05.336Z","sequence":1708,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFB0A13138A104E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d1d3991900961ddf","parentId":"ab425c979ddecfe6","traceId":"0000000000000000455fbe338975c984","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:05.361Z","sequence":1709,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFB0A13138A104E, resource-version: a3a7dcdd-6eae-49aa-adf8-a5f01587d4dc]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d1d3991900961ddf","parentId":"ab425c979ddecfe6","traceId":"0000000000000000455fbe338975c984","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:05.393Z","sequence":1710,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFB0A13138A104E, resource-version: 5fa33ec9-3df3-49ad-ab66-c251e51319c7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d1d3991900961ddf","parentId":"ab425c979ddecfe6","traceId":"0000000000000000455fbe338975c984","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:05.761Z","sequence":1711,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:05.761Z","sequence":1712,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001ABA] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:05.79Z","sequence":1713,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:05.79Z","sequence":1714,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:05.798Z","sequence":1715,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-99bd9af4-c22c-4e95-bfa0-9d60480f5e1e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:06.589Z","sequence":1716,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:06.589Z","sequence":1717,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_190886]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:06.631Z","sequence":1718,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-6fc24e83-a0c6-44e4-a9d7-140f26275017, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:06.751Z","sequence":1719,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:06.751Z","sequence":1720,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFB0A13138A104E] for gateway [gateway_integrationtest_network_190886]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:06.752Z","sequence":1721,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:06.752Z","sequence":1722,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_190886]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:06.775Z","sequence":1723,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:06.775Z","sequence":1724,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:06.776Z","sequence":1725,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-65777f7b-f52a-4134-9d83-1df107c171c5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:07.087Z","sequence":1726,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6856719d-7a95-4131-955b-327c2082d31c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:09.397Z","sequence":1727,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:09.397Z","sequence":1728,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C0D] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:09.404Z","sequence":1729,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:09.404Z","sequence":1730,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:09.411Z","sequence":1731,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1e6e8ada-131d-4a61-a6ce-1d6522570c17, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:10.584Z","sequence":1732,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:10.584Z","sequence":1733,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C13] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:10.599Z","sequence":1734,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:10.599Z","sequence":1735,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:10.605Z","sequence":1736,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a2cea29b-b284-4c01-8c20-dbbd29526f9f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:12.036Z","sequence":1737,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:12.036Z","sequence":1738,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AAC] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:12.042Z","sequence":1739,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:12.042Z","sequence":1740,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:12.048Z","sequence":1741,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1fd6d832-a419-4b41-84e2-eefc0dd89e52, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:13.561Z","sequence":1742,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/conditionall:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:13.561Z","sequence":1743,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: conditionall, device-id: 0008004B512D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:13.567Z","sequence":1744,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-94d3b463-5aa0-43e7-aebb-1e543f641e32, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:13.57Z","sequence":1745,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/conditionall:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:13.571Z","sequence":1746,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: conditionall, device-id: 70B3D57BB1000228] for gateway [0008004B512D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:13.576Z","sequence":1747,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_conditionall\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:13.577Z","sequence":1748,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_conditionall\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:13.58Z","sequence":1749,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-241a9fd7-c30a-4447-b651-fc0c962e3a09, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:20.91Z","sequence":1750,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFB0A13138A104E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"70c9405458cd4558","parentId":"0415d6e42319e801","traceId":"0000000000000000b2588efb14a3545b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:20.942Z","sequence":1751,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFB0A13138A104E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"70c9405458cd4558","parentId":"0415d6e42319e801","traceId":"0000000000000000b2588efb14a3545b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:21.071Z","sequence":1752,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_190886]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b4df7339848aa292","parentId":"7927374a2068a932","traceId":"0000000000000000949e9dafec05914e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:21.107Z","sequence":1753,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190886]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b4df7339848aa292","parentId":"7927374a2068a932","traceId":"0000000000000000949e9dafec05914e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:21.572Z","sequence":1754,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: BBB667999CF6]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d13c006325454776","parentId":"a1ce0d4dc616102b","traceId":"0000000000000000f5d870bd63fd6681","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:21.59Z","sequence":1755,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: BBB667999CF6, resource-version: c44bde8e-e925-48ec-9aaa-bc725479c7dd]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d13c006325454776","parentId":"a1ce0d4dc616102b","traceId":"0000000000000000f5d870bd63fd6681","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:21.597Z","sequence":1756,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: BBB667999CF6, resource-version: f0aa698c-cece-42e5-b16e-7a892fbbefd4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d13c006325454776","parentId":"a1ce0d4dc616102b","traceId":"0000000000000000f5d870bd63fd6681","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:21.6Z","sequence":1757,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: BBB667999CF6]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"dbf1f0dabe6686eb","parentId":"5ba4a5db7251d208","traceId":"0000000000000000f5d870bd63fd6681","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:21.751Z","sequence":1758,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: BBB667999CF6]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"dbf1f0dabe6686eb","parentId":"5ba4a5db7251d208","traceId":"0000000000000000f5d870bd63fd6681","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:22.241Z","sequence":1759,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFCD10277005915]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4a1e99984615f2c0","parentId":"bd73e6fb667b12fc","traceId":"00000000000000000a267d116c302e01","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:22.299Z","sequence":1760,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFCD10277005915, resource-version: a7baba84-85cc-40de-8497-2ac551d60ddc]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4a1e99984615f2c0","parentId":"bd73e6fb667b12fc","traceId":"00000000000000000a267d116c302e01","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:22.306Z","sequence":1761,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFCD10277005915, resource-version: 5c0655c5-f314-495f-a7ac-28cbe3e81441]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4a1e99984615f2c0","parentId":"bd73e6fb667b12fc","traceId":"00000000000000000a267d116c302e01","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:23.356Z","sequence":1762,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:23.356Z","sequence":1763,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-BBB667999CF6]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:23.366Z","sequence":1764,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-affbf4d5-98fd-41d1-891b-9dfe4dd1cc49, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:23.493Z","sequence":1765,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:23.493Z","sequence":1766,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: BBB667999CF6]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:23.498Z","sequence":1767,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-eb5b9b04-0639-442d-b213-f4907122aff3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:23.503Z","sequence":1768,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:23.503Z","sequence":1769,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCD10277005915] for gateway [BBB667999CF6]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:23.508Z","sequence":1770,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:23.508Z","sequence":1771,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:23.759Z","sequence":1772,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c3742c47-53ee-4862-ad33-a5b5e959b69d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:27.652Z","sequence":1773,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:27.652Z","sequence":1774,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001901] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:27.659Z","sequence":1775,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:27.659Z","sequence":1776,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:27.694Z","sequence":1777,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5d93bed9-04cd-4370-83cb-ca8ac0f30cf4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:30.047Z","sequence":1778,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/aloxy:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:30.047Z","sequence":1779,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: aloxy, device-id: 0008004A8F68]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:30.054Z","sequence":1780,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c4ad3df7-4516-4f9f-ad57-32bd1abeca17, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:30.057Z","sequence":1781,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:30.057Z","sequence":1782,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: aloxy]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:30.06Z","sequence":1783,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-81e59631-d054-42f8-b705-4cf52d739c07, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:32.81Z","sequence":1784,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFCD10277005915]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"57c1bfa218406f36","parentId":"83dba31f9282903e","traceId":"000000000000000044da91c496bd99e3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:32.858Z","sequence":1785,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFCD10277005915]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"57c1bfa218406f36","parentId":"83dba31f9282903e","traceId":"000000000000000044da91c496bd99e3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:33.134Z","sequence":1786,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: BBB667999CF6]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9cca66161f6a14a2","parentId":"776a16301636b9e2","traceId":"000000000000000004fecef3734503ca","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:33.155Z","sequence":1787,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: BBB667999CF6]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9cca66161f6a14a2","parentId":"776a16301636b9e2","traceId":"000000000000000004fecef3734503ca","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:34.887Z","sequence":1788,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:34.887Z","sequence":1789,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001910] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:34.896Z","sequence":1790,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:34.896Z","sequence":1791,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:34.905Z","sequence":1792,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7b00352d-9837-4bb2-9b3d-d1a43b5c61c1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:35.537Z","sequence":1793,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:35.537Z","sequence":1794,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100190B] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:35.542Z","sequence":1795,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:35.542Z","sequence":1796,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:35.548Z","sequence":1797,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-15ba3924-97d0-44ba-9e87-63481ede9c24, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:36.934Z","sequence":1798,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:36.934Z","sequence":1799,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AB1] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:36.939Z","sequence":1800,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:36.939Z","sequence":1801,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:36.946Z","sequence":1802,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-368a81ab-57b5-456c-85aa-9d4a1d6eca2f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:40.681Z","sequence":1803,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:40.681Z","sequence":1804,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BB613]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:40.688Z","sequence":1805,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b03d73b3-ece8-4143-ab7d-ff4a9fab2074, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:43.354Z","sequence":1806,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/acta:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:43.354Z","sequence":1807,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: acta, device-id: 0008004AAAA3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:43.36Z","sequence":1808,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-cac2fdc3-e725-4f84-8ae1-bfbf3699ba9e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:43.363Z","sequence":1809,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:43.364Z","sequence":1810,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: acta]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:43.37Z","sequence":1811,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-531ff549-d948-40d5-b52d-45d5eca6b178, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:46.703Z","sequence":1812,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:46.703Z","sequence":1813,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001ABE] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:46.747Z","sequence":1814,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:46.748Z","sequence":1815,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:46.801Z","sequence":1816,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-34f4241f-f432-42b0-887b-ac590ad801f5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:49.676Z","sequence":1817,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:49.677Z","sequence":1818,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AAA] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:49.682Z","sequence":1819,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:49.682Z","sequence":1820,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:49.689Z","sequence":1821,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-fd34d418-fea6-484f-af29-7c6261c9dd05, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:54.396Z","sequence":1822,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:54.396Z","sequence":1823,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100016F] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:54.402Z","sequence":1824,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:54.402Z","sequence":1825,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:54.407Z","sequence":1826,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e761a4c0-77e5-4401-9226-eeb7ec67e8d2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:54.563Z","sequence":1827,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:54.563Z","sequence":1828,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100016F] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:54.574Z","sequence":1829,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:54.574Z","sequence":1830,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:54.577Z","sequence":1831,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8c9ef65b-b905-4352-91fc-582b651e5ec3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:54.675Z","sequence":1832,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:54.675Z","sequence":1833,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10018FE] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:54.68Z","sequence":1834,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:54.68Z","sequence":1835,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:54.687Z","sequence":1836,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-fa58e8d3-530d-4245-b746-4e8f9a37d63c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:57.779Z","sequence":1837,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:57.779Z","sequence":1838,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001919] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:57.785Z","sequence":1839,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:57.786Z","sequence":1840,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:57.793Z","sequence":1841,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2182ac55-9188-40c6-aba2-b1cf18d9797f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:58.625Z","sequence":1842,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:58.625Z","sequence":1843,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: flint]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:58.631Z","sequence":1844,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-7214e399-713c-453f-bb37-420add651919, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:58.634Z","sequence":1845,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/flint:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:58.634Z","sequence":1846,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: flint, type: hashed-password, auth-id: auth-flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:58.667Z","sequence":1847,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-1b6d924f-aa94-4dc8-ba4b-1d4a9f8b99d4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:58.873Z","sequence":1848,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:58.873Z","sequence":1849,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000809] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:58.902Z","sequence":1850,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:58.902Z","sequence":1851,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:07:58.908Z","sequence":1852,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1e96e8cc-1bf8-48e7-8b29-d72175aca5a0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:02.389Z","sequence":1853,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:02.389Z","sequence":1854,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001ABD] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:02.395Z","sequence":1855,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:02.395Z","sequence":1856,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:02.402Z","sequence":1857,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4cfe5ff7-cf55-415c-b3f3-915f294fa505, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:06.661Z","sequence":1858,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:06.661Z","sequence":1859,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000A22] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:06.666Z","sequence":1860,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:06.667Z","sequence":1861,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:06.67Z","sequence":1862,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-411be996-7e7c-48c5-9ab9-8a30293f6286, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:07.683Z","sequence":1863,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:07.683Z","sequence":1864,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BF1] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:07.697Z","sequence":1865,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:07.697Z","sequence":1866,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:07.703Z","sequence":1867,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-216a2278-589f-4664-9be9-b66dbc04eae3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:11.83Z","sequence":1868,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:11.83Z","sequence":1869,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006C9] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:11.836Z","sequence":1870,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:11.836Z","sequence":1871,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:11.842Z","sequence":1872,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-eaa291bc-3442-467b-994a-e1434ab062b4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:14.892Z","sequence":1873,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:14.892Z","sequence":1874,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000204] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:14.898Z","sequence":1875,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:14.898Z","sequence":1876,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:14.901Z","sequence":1877,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-980ed23d-7633-475e-bf53-87d687c06654, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:14.947Z","sequence":1878,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:14.948Z","sequence":1879,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: dow]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:14.95Z","sequence":1880,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-771e151f-95b9-4c73-983e-3490a7654dfe, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:14.953Z","sequence":1881,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/dow:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:14.953Z","sequence":1882,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: dow, type: hashed-password, auth-id: auth-gateway_dow_network_39199]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:14.962Z","sequence":1883,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-a053db93-ad94-4064-b6aa-e4ce2e5dcf39, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:15.084Z","sequence":1884,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:15.084Z","sequence":1885,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 70B3D57BB10014FA] for gateway [gateway_dow_network_39199]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:15.085Z","sequence":1886,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:15.085Z","sequence":1887,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: gateway_dow_network_39199]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:15.093Z","sequence":1888,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:15.096Z","sequence":1889,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:15.097Z","sequence":1890,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3f2190da-9a2d-49f4-86d9-5c5baef85b00, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:15.101Z","sequence":1891,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5435739c-74ed-4b1b-854e-0a2bbd8e5694, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:19.823Z","sequence":1892,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:19.823Z","sequence":1893,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AE4] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:19.83Z","sequence":1894,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:19.83Z","sequence":1895,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:19.837Z","sequence":1896,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ddf5399b-454f-435f-9b4c-de8ef1d49f03, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:25Z","sequence":1897,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:25Z","sequence":1898,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:25.007Z","sequence":1899,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-db2237fd-261f-4d5e-a369-8053cb9d4e40, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:25.345Z","sequence":1900,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:25.345Z","sequence":1901,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: ineos]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:25.349Z","sequence":1902,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-b90088af-ae21-49d2-b52d-0e5428d5c5ac, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:25.352Z","sequence":1903,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:25.353Z","sequence":1904,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB1000A64] for gateway [0008004B5135]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:25.358Z","sequence":1905,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:25.363Z","sequence":1906,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:25.366Z","sequence":1907,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a4828ebd-b589-45d8-8d3f-b514978e12f4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:34.999Z","sequence":1908,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/repsol:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:34.999Z","sequence":1909,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: repsol, device-id: 0008004A37FF]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:35.005Z","sequence":1910,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e636ca8d-0c23-4092-a363-a7b1719880e8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:35.01Z","sequence":1911,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:35.01Z","sequence":1912,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: repsol]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:35.013Z","sequence":1913,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-8f986fb0-38a8-4b17-bb9c-869f36480461, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:35.457Z","sequence":1914,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:35.457Z","sequence":1915,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A75] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:35.458Z","sequence":1916,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:35.458Z","sequence":1917,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:35.464Z","sequence":1918,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3f394107-3f1f-4f67-8cd2-ee182f9bb808, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:35.464Z","sequence":1919,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:35.464Z","sequence":1920,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:35.47Z","sequence":1921,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-47867302-b224-4fed-8db5-cca98f197cdc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:36.101Z","sequence":1922,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:36.101Z","sequence":1923,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oci]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:36.105Z","sequence":1924,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-0c21e25a-5bd7-4d2b-ad40-bf73635f1f9d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:36.11Z","sequence":1925,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:36.111Z","sequence":1926,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001F4] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:36.116Z","sequence":1927,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:36.116Z","sequence":1928,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:36.119Z","sequence":1929,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-91532a37-795d-4612-ad47-0625ed9df9e0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:36.221Z","sequence":1930,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:36.221Z","sequence":1931,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001F4] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:36.226Z","sequence":1932,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:36.227Z","sequence":1933,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:36.23Z","sequence":1934,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-30cc8618-166a-4d22-aaec-1e7b88075a40, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:37.196Z","sequence":1935,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:37.196Z","sequence":1936,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BEE] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:37.202Z","sequence":1937,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:37.202Z","sequence":1938,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:37.209Z","sequence":1939,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e957eb76-5838-4748-b6fb-d3e4aa9e7ad3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:40.815Z","sequence":1940,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:40.815Z","sequence":1941,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C0B] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:40.82Z","sequence":1942,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:40.82Z","sequence":1943,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:40.827Z","sequence":1944,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2be8f477-ba37-41cf-aeb1-8f590333b030, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:42.549Z","sequence":1945,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:42.549Z","sequence":1946,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10001C7] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:42.554Z","sequence":1947,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:42.554Z","sequence":1948,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:42.561Z","sequence":1949,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-06854449-dc36-475c-9537-e3cb9367d0fa, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:44.581Z","sequence":1950,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:44.581Z","sequence":1951,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB1000A88] for gateway [0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:44.6Z","sequence":1952,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:44.601Z","sequence":1953,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:44.604Z","sequence":1954,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a89a3d66-436c-4130-b11b-971c4ed6eb84, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:51.036Z","sequence":1955,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:51.036Z","sequence":1956,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: lanxess]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:51.04Z","sequence":1957,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-c1c7b948-3a67-45fb-87e3-2c1ac2de11c6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:51.046Z","sequence":1958,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:51.046Z","sequence":1959,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 70B3D57BB1000190] for gateway [0008004BB84C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:51.053Z","sequence":1960,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_lanxess\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:51.054Z","sequence":1961,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_lanxess\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:51.061Z","sequence":1962,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-23cc6eb0-81fc-4085-bf16-6cdbbf33ecf0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:53.577Z","sequence":1963,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:53.577Z","sequence":1964,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 0008004B51D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:53.586Z","sequence":1965,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-453a87cf-20b8-4246-8016-52ccaddeced8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:53.589Z","sequence":1966,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:53.589Z","sequence":1967,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: dow]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:53.592Z","sequence":1968,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-b66cbfd3-eec0-4757-a68b-193bc53ad381, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:56.726Z","sequence":1969,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:56.726Z","sequence":1970,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10002D5] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:56.732Z","sequence":1971,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:56.732Z","sequence":1972,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:08:56.738Z","sequence":1973,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-20a94ef1-f31e-48bf-acdc-7dcc35df071b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:04.24Z","sequence":1974,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_190888]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6c4ad4c48f2e2fcd","parentId":"dcec98888914a229","traceId":"0000000000000000ecd905d67b54d7eb","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:04.264Z","sequence":1975,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_190888, resource-version: 466bff58-df39-4098-a2a0-9326d5933083]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6c4ad4c48f2e2fcd","parentId":"dcec98888914a229","traceId":"0000000000000000ecd905d67b54d7eb","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:04.271Z","sequence":1976,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190888, resource-version: 661b4255-73fd-44e1-b052-96568825b56a]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6c4ad4c48f2e2fcd","parentId":"dcec98888914a229","traceId":"0000000000000000ecd905d67b54d7eb","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:04.275Z","sequence":1977,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_190888]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b1a56ecd62641dbf","parentId":"1c7b8d64598713f2","traceId":"0000000000000000ecd905d67b54d7eb","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:04.431Z","sequence":1978,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190888]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b1a56ecd62641dbf","parentId":"1c7b8d64598713f2","traceId":"0000000000000000ecd905d67b54d7eb","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:05.391Z","sequence":1979,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF38E6FFCB1C4D2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"08eec27a4cec60b9","parentId":"686089364f451aec","traceId":"00000000000000003ea7fccc6eec913f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:05.408Z","sequence":1980,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF38E6FFCB1C4D2, resource-version: 6687be2f-3c42-433b-960a-9c952cb4da33]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"08eec27a4cec60b9","parentId":"686089364f451aec","traceId":"00000000000000003ea7fccc6eec913f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:05.416Z","sequence":1981,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF38E6FFCB1C4D2, resource-version: 087c14ec-9354-41aa-b725-d71907da8cdc]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"08eec27a4cec60b9","parentId":"686089364f451aec","traceId":"00000000000000003ea7fccc6eec913f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:06.525Z","sequence":1982,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:06.526Z","sequence":1983,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:06.53Z","sequence":1984,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-41984fc4-dbfc-4e96-a933-027206949057, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:06.534Z","sequence":1985,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:06.534Z","sequence":1986,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_190888]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:06.551Z","sequence":1987,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-565380bd-b809-4563-9a92-a11f4bdf9636, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:06.669Z","sequence":1988,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:06.669Z","sequence":1989,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF38E6FFCB1C4D2] for gateway [gateway_integrationtest_network_190888]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:06.67Z","sequence":1990,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:06.67Z","sequence":1991,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_190888]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:06.677Z","sequence":1992,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:06.677Z","sequence":1993,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:06.678Z","sequence":1994,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-69dfad25-a968-4cd1-979b-20f1f4b48536, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:06.989Z","sequence":1995,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a64adb23-8181-40c0-899b-4b7de90189ec, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:10.269Z","sequence":1996,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:10.27Z","sequence":1997,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BF2] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:10.275Z","sequence":1998,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:10.275Z","sequence":1999,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:10.282Z","sequence":2000,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-843e70b0-a515-432c-91bc-12bad9895924, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:16.691Z","sequence":2001,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:16.691Z","sequence":2002,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: terega]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:16.696Z","sequence":2003,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-f32af082-40db-4013-9437-2818b88d4de9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:16.7Z","sequence":2004,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/terega:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:16.7Z","sequence":2005,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: terega, type: hashed-password, auth-id: auth-gateway_terega_network_27]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:16.71Z","sequence":2006,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-0e98efa8-8af1-47a3-810d-44b57f6a5a21, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:16.848Z","sequence":2007,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/terega:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:16.849Z","sequence":2008,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: terega, device-id: 70B3D57BB1000E13] for gateway [gateway_terega_network_27]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:16.849Z","sequence":2009,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/terega:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:16.85Z","sequence":2010,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: terega, device-id: gateway_terega_network_27]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:16.856Z","sequence":2011,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_terega\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:16.856Z","sequence":2012,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_terega\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:16.857Z","sequence":2013,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6d640def-d03c-4491-a0ca-725e2079c2ba, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:16.86Z","sequence":2014,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9c7972c4-3c88-4382-9de6-786d41c39172, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:20.684Z","sequence":2015,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF38E6FFCB1C4D2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9dce507f001201d4","parentId":"ed3156a4895a073a","traceId":"00000000000000000dbd500dae1ffd8b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:20.889Z","sequence":2016,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF38E6FFCB1C4D2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9dce507f001201d4","parentId":"ed3156a4895a073a","traceId":"00000000000000000dbd500dae1ffd8b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:21.023Z","sequence":2017,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_190888]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"44bfe7b4604ad4e3","parentId":"7fdf5f6143cc29e0","traceId":"0000000000000000682e1b77e7aa934c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:21.051Z","sequence":2018,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190888]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"44bfe7b4604ad4e3","parentId":"7fdf5f6143cc29e0","traceId":"0000000000000000682e1b77e7aa934c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:21.519Z","sequence":2019,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 3841DD0B904C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"617527316ac96758","parentId":"7aa6a287df95f24d","traceId":"0000000000000000e0dd2a646951e48e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:21.537Z","sequence":2020,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 3841DD0B904C, resource-version: e243b576-d85c-4063-95ed-77969bff3ebd]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"617527316ac96758","parentId":"7aa6a287df95f24d","traceId":"0000000000000000e0dd2a646951e48e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:21.543Z","sequence":2021,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 3841DD0B904C, resource-version: f937a98a-fd69-47ca-b00b-e624765001fb]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"617527316ac96758","parentId":"7aa6a287df95f24d","traceId":"0000000000000000e0dd2a646951e48e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:21.546Z","sequence":2022,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 3841DD0B904C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cfba8ba72e5be53c","parentId":"53c91643d5032926","traceId":"0000000000000000e0dd2a646951e48e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:21.675Z","sequence":2023,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 3841DD0B904C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cfba8ba72e5be53c","parentId":"53c91643d5032926","traceId":"0000000000000000e0dd2a646951e48e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:22.343Z","sequence":2024,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF86FE158246565]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5588a962aec85b87","parentId":"c23229fcd38ab080","traceId":"00000000000000009596580d7faede3e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:22.361Z","sequence":2025,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF86FE158246565, resource-version: 6c12ca0c-74c9-47b6-b0f1-cd30a925858a]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5588a962aec85b87","parentId":"c23229fcd38ab080","traceId":"00000000000000009596580d7faede3e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:22.372Z","sequence":2026,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF86FE158246565, resource-version: 4fb7a6be-0629-4071-81d8-c9a3c2e2a4a0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5588a962aec85b87","parentId":"c23229fcd38ab080","traceId":"00000000000000009596580d7faede3e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:23.421Z","sequence":2027,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:23.421Z","sequence":2028,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:23.424Z","sequence":2029,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-060fec02-9e76-4c07-8f60-71c863f8a558, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:23.426Z","sequence":2030,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:23.426Z","sequence":2031,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-3841DD0B904C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:23.437Z","sequence":2032,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-b7d065b3-0464-4ef5-b680-87dee8a23168, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:23.575Z","sequence":2033,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:23.575Z","sequence":2034,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 3841DD0B904C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:23.582Z","sequence":2035,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-74b30537-733e-4191-a621-34f8eed07f88, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:23.586Z","sequence":2036,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:23.586Z","sequence":2037,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF86FE158246565] for gateway [3841DD0B904C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:23.591Z","sequence":2038,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:23.591Z","sequence":2039,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:23.758Z","sequence":2040,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-08798c35-1b12-4896-b452-a51165111a97, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:26.664Z","sequence":2041,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/dow:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:26.665Z","sequence":2042,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: dow, type: hashed-password, auth-id: auth-gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:26.687Z","sequence":2043,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-e3702f90-8415-4d8b-9f2a-8bcca01cb9df, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:26.712Z","sequence":2044,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:26.713Z","sequence":2045,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: shell]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:26.719Z","sequence":2046,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-038e295e-53ae-474c-82fc-e1eba23848a7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:26.724Z","sequence":2047,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/shell:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:26.725Z","sequence":2048,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: shell, type: hashed-password, auth-id: auth-gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:26.743Z","sequence":2049,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-8e34606b-c7a8-47bb-b186-c98df71eccf6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:26.984Z","sequence":2050,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:26.985Z","sequence":2051,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BF7] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:27.005Z","sequence":2052,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:27.005Z","sequence":2053,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:27.013Z","sequence":2054,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-547697b9-3e44-4f01-9b0b-beb5b81442bf, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:27.076Z","sequence":2055,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:27.076Z","sequence":2056,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 70B3D57BB100126E] for gateway [gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:27.082Z","sequence":2057,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:27.082Z","sequence":2058,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:27.089Z","sequence":2059,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-890d9238-b24c-478a-8a3a-964357bb0f5e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:32.195Z","sequence":2060,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:32.196Z","sequence":2061,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: conditionall]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:32.203Z","sequence":2062,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-3f8a3b71-ffd6-420e-aacd-d3f312573196, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:33.106Z","sequence":2063,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF86FE158246565]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7e172f075de782f6","parentId":"71333f4ca2309031","traceId":"00000000000000008d74c614082d5e32","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:33.125Z","sequence":2064,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF86FE158246565]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7e172f075de782f6","parentId":"71333f4ca2309031","traceId":"00000000000000008d74c614082d5e32","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:33.481Z","sequence":2065,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 3841DD0B904C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"77ddbf09cef4c92f","parentId":"68d35327f0c62739","traceId":"0000000000000000909e691dc82267b6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:33.498Z","sequence":2066,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 3841DD0B904C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"77ddbf09cef4c92f","parentId":"68d35327f0c62739","traceId":"0000000000000000909e691dc82267b6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:39.665Z","sequence":2067,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:39.665Z","sequence":2068,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006A5] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:39.671Z","sequence":2069,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:39.671Z","sequence":2070,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:39.677Z","sequence":2071,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5a87f287-c8a5-4eaa-a191-f88502e5e709, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:48.476Z","sequence":2072,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:48.476Z","sequence":2073,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AD2] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:48.482Z","sequence":2074,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:48.482Z","sequence":2075,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:48.488Z","sequence":2076,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-abb3e2eb-041d-4cd5-81d6-1029256af6d8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:49.057Z","sequence":2077,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:49.057Z","sequence":2078,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000571] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:49.065Z","sequence":2079,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:49.065Z","sequence":2080,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:49.073Z","sequence":2081,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-46e17aad-2713-4155-8e4e-cdd4312e0421, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:53.547Z","sequence":2082,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:53.547Z","sequence":2083,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 70B3D57BB1001287] for gateway [gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:53.557Z","sequence":2084,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:53.557Z","sequence":2085,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:53.561Z","sequence":2086,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-375ee0b5-7bbc-4fd8-a11a-54f6009bd068, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:54.198Z","sequence":2087,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:54.198Z","sequence":2088,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C11] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:54.209Z","sequence":2089,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:54.21Z","sequence":2090,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:54.217Z","sequence":2091,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5daae3d1-dd27-45ab-9c73-05e18f459fe8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:58.635Z","sequence":2092,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:58.635Z","sequence":2093,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B2F] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:58.642Z","sequence":2094,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:58.642Z","sequence":2095,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:09:58.648Z","sequence":2096,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9dba8b51-d40e-4fbe-a34f-9c0560ae5ab6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:10:04.461Z","sequence":2097,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:10:04.462Z","sequence":2098,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C1A] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:10:04.468Z","sequence":2099,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:10:04.468Z","sequence":2100,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:10:04.474Z","sequence":2101,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a3cdbe30-9a23-4f91-badd-8e88e2c422af, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:10:07.712Z","sequence":2102,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:10:07.712Z","sequence":2103,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BB84C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:10:07.718Z","sequence":2104,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-812feec6-5bcf-45fe-b8e9-9230d0927075, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:10:10.178Z","sequence":2105,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:10:10.178Z","sequence":2106,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 0008004B5135]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:10:10.183Z","sequence":2107,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8e8b90df-c62e-41e4-9a82-1d8633e137f2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:10:10.361Z","sequence":2108,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/terega:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:10:10.361Z","sequence":2109,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: terega, device-id: 70B3D57BB10000A2] for gateway [gateway_terega_network_27]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:10:10.366Z","sequence":2110,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_terega\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:10:10.367Z","sequence":2111,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_terega\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:10:10.371Z","sequence":2112,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3e29dd11-dc77-4862-989a-0bf5ce2344f5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:10:12.879Z","sequence":2113,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:10:12.879Z","sequence":2114,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 70B3D57BB10014ED] for gateway [gateway_dow_network_39199]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:10:12.889Z","sequence":2115,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:10:12.889Z","sequence":2116,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:10:12.895Z","sequence":2117,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-18c01442-6e27-4330-b97a-0944e80f2ef2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:10:12.961Z","sequence":2118,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:10:12.961Z","sequence":2119,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BBD1B]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:10:12.966Z","sequence":2120,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e7071f1b-634d-4286-a4c5-3d357199c605, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:10:18.977Z","sequence":2121,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:10:18.977Z","sequence":2122,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000528] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:10:18.983Z","sequence":2123,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:10:18.983Z","sequence":2124,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:10:18.987Z","sequence":2125,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-98cf6e5b-7bf4-4b26-ac86-a2095b63e867, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:10:19.093Z","sequence":2126,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/arkema:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:10:19.093Z","sequence":2127,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: arkema, device-id: 0008004AE119]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:10:19.1Z","sequence":2128,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-820a2fa9-9dfd-48c4-8336-b9ae1cdfe1dd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:10:19.103Z","sequence":2129,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:10:19.103Z","sequence":2130,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: arkema]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:10:19.106Z","sequence":2131,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-a2884d74-766b-4874-8edd-92304e725033, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:10:21.599Z","sequence":2132,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:10:21.599Z","sequence":2133,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001949] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:10:21.61Z","sequence":2134,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:10:21.61Z","sequence":2135,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:10:21.617Z","sequence":2136,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-53c18fff-5ef7-4239-a751-edd0302f12e4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:10:22.086Z","sequence":2137,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:10:22.086Z","sequence":2138,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BBD1C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:10:22.092Z","sequence":2139,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-eb414a2f-d63e-4651-8275-b92a0473d820, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:10:27.078Z","sequence":2140,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:10:27.078Z","sequence":2141,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BF4] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:10:27.084Z","sequence":2142,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:10:27.084Z","sequence":2143,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:10:27.1Z","sequence":2144,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3caf594c-fadd-46a8-9627-f060af568e63, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:10:33.206Z","sequence":2145,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:10:33.206Z","sequence":2146,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001B10] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:10:33.212Z","sequence":2147,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:10:33.212Z","sequence":2148,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:10:33.218Z","sequence":2149,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-07d4d23c-c745-48e2-b9ff-f1edd9eac02a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:10:36.508Z","sequence":2150,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:10:36.508Z","sequence":2151,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000179] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:10:36.515Z","sequence":2152,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:10:36.515Z","sequence":2153,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:10:36.518Z","sequence":2154,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ca5e4ecb-8d24-4ec6-8b66-8ff9bb404e64, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:10:36.568Z","sequence":2155,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:10:36.568Z","sequence":2156,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:10:36.573Z","sequence":2157,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-35ef2685-18bd-4d49-8275-bfa49d935460, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:10:36.577Z","sequence":2158,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:10:36.577Z","sequence":2159,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000179] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:10:36.583Z","sequence":2160,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:10:36.583Z","sequence":2161,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:10:36.585Z","sequence":2162,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-50c58f55-762d-4990-b754-8ccb1228288a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:10:40.468Z","sequence":2163,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:10:40.469Z","sequence":2164,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: exxon]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:10:40.472Z","sequence":2165,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-5c0c06ca-5dcd-41e8-8261-7315403746d3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:10:40.474Z","sequence":2166,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/exxon:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:10:40.474Z","sequence":2167,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: exxon, type: hashed-password, auth-id: auth-gateway_exxon_network_2559]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:10:40.485Z","sequence":2168,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-2698fcc4-508a-4954-8b05-847971ce467b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:10:40.61Z","sequence":2169,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/exxon:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:10:40.611Z","sequence":2170,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: exxon, device-id: 70B3D57BB10013DD] for gateway [gateway_exxon_network_2559]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:10:40.611Z","sequence":2171,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/exxon:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:10:40.611Z","sequence":2172,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: exxon, device-id: gateway_exxon_network_2559]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:10:40.616Z","sequence":2173,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_exxon\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:10:40.616Z","sequence":2174,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_exxon\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:10:40.617Z","sequence":2175,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-54f3a148-9ef7-4025-92a1-1cf6e1d14899, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:10:40.619Z","sequence":2176,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8857301b-ab5b-49c3-8186-d42e309919b3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:10:46.999Z","sequence":2177,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:10:46.999Z","sequence":2178,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006CF] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:10:47.007Z","sequence":2179,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:10:47.007Z","sequence":2180,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:10:47.014Z","sequence":2181,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-02344dd9-f23b-409b-817c-010dcb79a6e6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:10:49.583Z","sequence":2182,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:10:49.583Z","sequence":2183,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AF3] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:10:49.589Z","sequence":2184,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:10:49.589Z","sequence":2185,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:10:49.595Z","sequence":2186,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ecf3d060-bbb4-487c-8f0b-792f4db68522, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:10:54.566Z","sequence":2187,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:10:54.566Z","sequence":2188,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AFD] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:10:54.572Z","sequence":2189,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:10:54.572Z","sequence":2190,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:10:54.578Z","sequence":2191,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ab84dced-ca10-4b74-9822-3cfb4080e32c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:10:55.405Z","sequence":2192,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:10:55.405Z","sequence":2193,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000ABE] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:10:55.443Z","sequence":2194,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:10:55.443Z","sequence":2195,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:10:55.465Z","sequence":2196,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-37f8ca2f-07c4-43c8-b17c-235f607051bc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:10:58.36Z","sequence":2197,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:10:58.36Z","sequence":2198,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001928] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:10:58.368Z","sequence":2199,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:10:58.369Z","sequence":2200,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:10:58.375Z","sequence":2201,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-91dc61e0-d9dd-4e12-90ee-28b8b84d9d64, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:10:59.446Z","sequence":2202,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:10:59.446Z","sequence":2203,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AFB] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:10:59.453Z","sequence":2204,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:10:59.453Z","sequence":2205,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:10:59.458Z","sequence":2206,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-45ea0812-5bd1-43f0-bbc9-ea687df25ba0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:00.086Z","sequence":2207,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:00.087Z","sequence":2208,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001945] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:00.1Z","sequence":2209,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:00.1Z","sequence":2210,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:00.107Z","sequence":2211,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8ae583ea-ace7-40d3-9bc0-732c78a95b51, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:01.447Z","sequence":2212,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:01.447Z","sequence":2213,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100194B] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:01.453Z","sequence":2214,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:01.453Z","sequence":2215,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:01.461Z","sequence":2216,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c2ecd1da-28a9-40f7-ada5-5fcf2d5dcd2e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:01.628Z","sequence":2217,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:01.628Z","sequence":2218,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:01.634Z","sequence":2219,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2814f14b-1ee3-4e01-82d5-ecb8e07fd3a5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:04.227Z","sequence":2220,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_190890]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4c241734b160274e","parentId":"3d23d429bebba906","traceId":"0000000000000000329843886138b0e3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:04.247Z","sequence":2221,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_190890, resource-version: 61fcd0d1-f8f2-4397-b5cc-7cf45f272e41]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4c241734b160274e","parentId":"3d23d429bebba906","traceId":"0000000000000000329843886138b0e3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:04.253Z","sequence":2222,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190890, resource-version: 83a7c48d-2042-44f2-a21d-70e86c3438cb]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4c241734b160274e","parentId":"3d23d429bebba906","traceId":"0000000000000000329843886138b0e3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:04.256Z","sequence":2223,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_190890]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cea59315c65bb99d","parentId":"4999a57a1242a0ed","traceId":"0000000000000000329843886138b0e3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:04.415Z","sequence":2224,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190890]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cea59315c65bb99d","parentId":"4999a57a1242a0ed","traceId":"0000000000000000329843886138b0e3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:05.187Z","sequence":2225,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFDAFFB047C0EF1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"724cc1ff6566e442","parentId":"6553e4e78c126d3f","traceId":"0000000000000000ef81545ac8347d43","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:05.206Z","sequence":2226,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFDAFFB047C0EF1, resource-version: cf245c5e-f577-45d4-a26c-4a8bd154e30d]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"724cc1ff6566e442","parentId":"6553e4e78c126d3f","traceId":"0000000000000000ef81545ac8347d43","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:05.208Z","sequence":2227,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/repsol:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:05.208Z","sequence":2228,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: repsol, device-id: 70B3D57BB1000229] for gateway [0008004A37FF]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:05.214Z","sequence":2229,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFDAFFB047C0EF1, resource-version: b3382486-580f-4f7b-882e-9e84b5556bcf]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"724cc1ff6566e442","parentId":"6553e4e78c126d3f","traceId":"0000000000000000ef81545ac8347d43","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:05.215Z","sequence":2230,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:0.4.1\"\n },\n \"viaGroups\" : [ \"gateways_repsol\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:05.215Z","sequence":2231,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_repsol\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:05.222Z","sequence":2232,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-dc3fdd40-d90b-4e62-be6b-76aa8274fc08, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:06.321Z","sequence":2233,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:06.321Z","sequence":2234,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_190890]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:06.344Z","sequence":2235,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-e410eb35-c281-4f16-bdf6-df76b8396d2f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:06.476Z","sequence":2236,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:06.476Z","sequence":2237,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDAFFB047C0EF1] for gateway [gateway_integrationtest_network_190890]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:06.477Z","sequence":2238,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:06.477Z","sequence":2239,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_190890]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:06.482Z","sequence":2240,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:06.482Z","sequence":2241,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:06.483Z","sequence":2242,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5dd86f61-f89d-45b6-881f-e0d0df04c1ef, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:06.933Z","sequence":2243,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4b35d4f4-304d-4ff9-8455-902074770ecc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:11.537Z","sequence":2244,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:11.538Z","sequence":2245,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006BB] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:11.546Z","sequence":2246,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:11.546Z","sequence":2247,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:11.553Z","sequence":2248,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c33caf79-84d0-47ef-96b8-984e75352949, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:13.288Z","sequence":2249,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:13.288Z","sequence":2250,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001B0E] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:13.308Z","sequence":2251,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:13.308Z","sequence":2252,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:13.32Z","sequence":2253,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e3da8bfb-0164-45d5-94a7-91810bead7ba, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:15.475Z","sequence":2254,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:15.475Z","sequence":2255,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A66] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:15.482Z","sequence":2256,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:15.483Z","sequence":2257,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:15.489Z","sequence":2258,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e7ba6bec-24c0-4b31-a369-125225ff8fbe, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:18.226Z","sequence":2259,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFDAFFB047C0EF1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"506393542b17454b","parentId":"04c5b8285e62518d","traceId":"00000000000000007e4f344b97dc7a99","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:18.244Z","sequence":2260,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFDAFFB047C0EF1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"506393542b17454b","parentId":"04c5b8285e62518d","traceId":"00000000000000007e4f344b97dc7a99","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:18.444Z","sequence":2261,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_190890]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7c762b615325cedf","parentId":"8e9b8e8216a38fc4","traceId":"00000000000000001a0a2f6b601faa95","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:18.46Z","sequence":2262,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190890]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7c762b615325cedf","parentId":"8e9b8e8216a38fc4","traceId":"00000000000000001a0a2f6b601faa95","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:19.018Z","sequence":2263,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 7A5605B8595F]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"090f6f09b3fccd9b","parentId":"65acf5819fcb2ebe","traceId":"00000000000000001468054f7691cde0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:19.039Z","sequence":2264,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 7A5605B8595F, resource-version: 0a5d070b-0417-4d10-b743-f0e7ccbdc744]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"090f6f09b3fccd9b","parentId":"65acf5819fcb2ebe","traceId":"00000000000000001468054f7691cde0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:19.046Z","sequence":2265,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 7A5605B8595F, resource-version: 8696388e-936e-469c-85e5-9119851fb3ca]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"090f6f09b3fccd9b","parentId":"65acf5819fcb2ebe","traceId":"00000000000000001468054f7691cde0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:19.049Z","sequence":2266,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 7A5605B8595F]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fb8c3533708af7d2","parentId":"85e6acd9ffcebe56","traceId":"00000000000000001468054f7691cde0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:19.231Z","sequence":2267,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 7A5605B8595F]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fb8c3533708af7d2","parentId":"85e6acd9ffcebe56","traceId":"00000000000000001468054f7691cde0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:19.838Z","sequence":2268,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF40756FB85D673]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"81fa173aafefcb71","parentId":"beb4cbfbb3f3ccb1","traceId":"00000000000000005d6d83a4394a4ce8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:19.859Z","sequence":2269,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF40756FB85D673, resource-version: b5246352-9ba3-4dfc-b41a-a7b06d079eb6]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"81fa173aafefcb71","parentId":"beb4cbfbb3f3ccb1","traceId":"00000000000000005d6d83a4394a4ce8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:19.866Z","sequence":2270,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF40756FB85D673, resource-version: 60c55bad-9b58-4d10-a1c5-9152906a695b]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"81fa173aafefcb71","parentId":"beb4cbfbb3f3ccb1","traceId":"00000000000000005d6d83a4394a4ce8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:20.91Z","sequence":2271,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:20.91Z","sequence":2272,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-7A5605B8595F]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:20.921Z","sequence":2273,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-d1f7169c-b5a0-4a31-b597-6e60a908a60a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:21.043Z","sequence":2274,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:21.043Z","sequence":2275,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 7A5605B8595F]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:21.049Z","sequence":2276,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-47acb31c-7969-4893-a5ed-99e5fd590049, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:21.054Z","sequence":2277,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:21.054Z","sequence":2278,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF40756FB85D673] for gateway [7A5605B8595F]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:21.06Z","sequence":2279,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:21.06Z","sequence":2280,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:21.252Z","sequence":2281,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d79d61b3-5e20-49af-8ff4-1382482de18d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:26.107Z","sequence":2282,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:26.107Z","sequence":2283,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: dow]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:26.11Z","sequence":2284,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-353b406a-149c-4bca-952c-c3c008a3a3e8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:26.367Z","sequence":2285,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:26.368Z","sequence":2286,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 70B3D57BB100125B] for gateway [gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:26.368Z","sequence":2287,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:26.368Z","sequence":2288,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:26.373Z","sequence":2289,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:26.373Z","sequence":2290,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:26.373Z","sequence":2291,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-30f09dcd-de8e-4401-89a1-2b27d1b93c82, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:26.377Z","sequence":2292,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9b4c514c-e3f1-4c72-8665-d630f466f8b1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:27.075Z","sequence":2293,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:27.075Z","sequence":2294,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001B0F] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:27.08Z","sequence":2295,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:27.08Z","sequence":2296,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:27.087Z","sequence":2297,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6fa636e6-1596-46cc-89eb-29248fed7a70, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:34.511Z","sequence":2298,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF40756FB85D673]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cd32bf5c592719c5","parentId":"f0c85e78a26de198","traceId":"0000000000000000337279f70ef011bc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:34.53Z","sequence":2299,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF40756FB85D673]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cd32bf5c592719c5","parentId":"f0c85e78a26de198","traceId":"0000000000000000337279f70ef011bc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:34.648Z","sequence":2300,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:34.648Z","sequence":2301,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 0008004C80F4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:34.653Z","sequence":2302,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-877a04a8-60d0-4652-803f-5aa751d881b4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:34.709Z","sequence":2303,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:34.709Z","sequence":2304,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001B14] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:34.714Z","sequence":2305,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:34.714Z","sequence":2306,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:34.725Z","sequence":2307,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2e400095-088a-4418-a567-66396da9069b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:34.912Z","sequence":2308,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 7A5605B8595F]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3ce1f42eae89fbff","parentId":"2cea8e1d4f90cabe","traceId":"0000000000000000c00d460aa302cd2d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:34.934Z","sequence":2309,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 7A5605B8595F]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3ce1f42eae89fbff","parentId":"2cea8e1d4f90cabe","traceId":"0000000000000000c00d460aa302cd2d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:41.128Z","sequence":2310,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:41.128Z","sequence":2311,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 70B3D57BB1001277] for gateway [gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:41.134Z","sequence":2312,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:41.134Z","sequence":2313,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:41.137Z","sequence":2314,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-163c0d68-1f0f-434a-b5e9-daf773abdec8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:46.865Z","sequence":2315,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oiltanking:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:46.865Z","sequence":2316,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oiltanking, device-id: 0008004BB60F]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:46.87Z","sequence":2317,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9e095588-7528-45ab-b10c-59776d12655d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:46.873Z","sequence":2318,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:46.873Z","sequence":2319,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oiltanking]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:46.876Z","sequence":2320,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-8844cdf5-5844-4af4-a39b-9dfe86143bb2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:57.553Z","sequence":2321,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:57.553Z","sequence":2322,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100193E] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:57.563Z","sequence":2323,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:57.563Z","sequence":2324,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:11:57.57Z","sequence":2325,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-baa73a5a-8e79-4e6c-9df1-70529ed166ae, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:03.802Z","sequence":2326,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:03.802Z","sequence":2327,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: flint]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:03.806Z","sequence":2328,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-7e2a1e13-3cf8-470d-bf08-6d7f6d4e9e34, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:03.81Z","sequence":2329,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/flint:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:03.81Z","sequence":2330,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: flint, type: hashed-password, auth-id: auth-flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:03.82Z","sequence":2331,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/flint:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:03.821Z","sequence":2332,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: flint, type: hashed-password, auth-id: auth-flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:03.822Z","sequence":2333,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-dbc63838-479c-4954-96ca-5a39082fd6dd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:03.83Z","sequence":2334,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-07e7464f-29d0-42ee-935f-4aa6a98d24e1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:03.996Z","sequence":2335,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:03.996Z","sequence":2336,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10007F7] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:03.997Z","sequence":2337,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:03.997Z","sequence":2338,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:04.011Z","sequence":2339,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a3448ef4-89ec-43dc-a5cc-fb8b6c73332b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:04.011Z","sequence":2340,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:04.011Z","sequence":2341,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:04.017Z","sequence":2342,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8a2a8f62-521b-4847-912b-29114ea269e0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:06.669Z","sequence":2343,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:06.669Z","sequence":2344,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100194E] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:06.675Z","sequence":2345,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:06.675Z","sequence":2346,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:06.682Z","sequence":2347,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-23b2646f-312b-48bb-b0c9-59e043744c4a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:11.081Z","sequence":2348,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:11.081Z","sequence":2349,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: ineos]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:11.085Z","sequence":2350,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-f259d900-4d68-4e4c-8cc2-af998eb1575f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:11.087Z","sequence":2351,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:11.087Z","sequence":2352,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB1000A87] for gateway [0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:11.093Z","sequence":2353,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:11.093Z","sequence":2354,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:11.097Z","sequence":2355,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-da6cfeb7-4009-4766-9fdc-042775a6896c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:16.568Z","sequence":2356,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:16.568Z","sequence":2357,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB100081A] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:16.574Z","sequence":2358,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:16.574Z","sequence":2359,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:16.579Z","sequence":2360,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2a47aec3-ab8c-4363-bd85-940affc34065, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:16.681Z","sequence":2361,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:16.681Z","sequence":2362,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AF2] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:16.686Z","sequence":2363,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:16.687Z","sequence":2364,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:16.693Z","sequence":2365,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2ef26468-2f11-4634-8d08-ce2e04b783ff, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:16.876Z","sequence":2366,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:16.876Z","sequence":2367,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001944] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:16.886Z","sequence":2368,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:16.886Z","sequence":2369,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:16.897Z","sequence":2370,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-539a1780-f36a-4764-aec3-b7bdc749e312, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:30.194Z","sequence":2371,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:30.195Z","sequence":2372,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oci]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:30.198Z","sequence":2373,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-73d6d853-17e3-4fb0-907d-d72121f37818, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:30.2Z","sequence":2374,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:30.2Z","sequence":2375,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000173] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:30.205Z","sequence":2376,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:30.205Z","sequence":2377,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:30.208Z","sequence":2378,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-cdd7ac50-4da2-4c12-8d9f-de48e3f67557, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:30.333Z","sequence":2379,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:30.333Z","sequence":2380,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000173] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:30.34Z","sequence":2381,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:30.34Z","sequence":2382,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:30.343Z","sequence":2383,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-89d61d7c-8cfd-4f79-9ae2-dcf951012fff, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:31.125Z","sequence":2384,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/conditionall:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:31.125Z","sequence":2385,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: conditionall, device-id: 0008004B512D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:31.131Z","sequence":2386,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-70c41542-7d3f-4c68-bcf8-e56b57d36a40, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:31.135Z","sequence":2387,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/conditionall:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:31.135Z","sequence":2388,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: conditionall, device-id: 70B3D57BB1000211] for gateway [0008004B512D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:31.139Z","sequence":2389,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_conditionall\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:31.14Z","sequence":2390,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_conditionall\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:31.142Z","sequence":2391,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2c69e2dd-9621-4f0d-bb4a-1453e1a5c5c6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:32.237Z","sequence":2392,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/aloxy:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:32.237Z","sequence":2393,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: aloxy, device-id: 0008004A8F68]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:32.243Z","sequence":2394,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-78b1011a-657c-480f-9ede-af0bb4e91c9f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:32.247Z","sequence":2395,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:32.247Z","sequence":2396,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: aloxy]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:32.249Z","sequence":2397,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-01e01479-d170-4d51-b695-f801e3dea0f8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:39.772Z","sequence":2398,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:39.772Z","sequence":2399,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: shell]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:39.775Z","sequence":2400,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-4394cbc6-a63d-4ddd-bbf2-3da17ec0d655, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:39.777Z","sequence":2401,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/shell:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:39.777Z","sequence":2402,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: shell, type: hashed-password, auth-id: auth-gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:39.788Z","sequence":2403,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-bdaddad1-06a1-4344-8cc4-ab5c5f794c68, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:39.91Z","sequence":2404,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:39.91Z","sequence":2405,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001403] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:39.917Z","sequence":2406,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:39.917Z","sequence":2407,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:39.923Z","sequence":2408,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-20df79db-b04a-40f6-8506-587d4cf5ce48, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:40.649Z","sequence":2409,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:40.649Z","sequence":2410,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AFA] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:40.655Z","sequence":2411,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:40.655Z","sequence":2412,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:40.661Z","sequence":2413,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-662825cc-abaa-4837-8f73-6a82f9e48c70, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:41.165Z","sequence":2414,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:41.165Z","sequence":2415,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000ABF] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:41.171Z","sequence":2416,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:41.171Z","sequence":2417,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:41.177Z","sequence":2418,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8e2782d5-d7f7-466b-9b13-f00d941af121, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:42.542Z","sequence":2419,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:42.542Z","sequence":2420,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BB613]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:42.547Z","sequence":2421,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-aa746929-2582-4997-aba7-14fe07d5ff44, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:42.55Z","sequence":2422,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:42.55Z","sequence":2423,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: lanxess]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:42.553Z","sequence":2424,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-24118bff-03c7-48b7-93d7-33c85b5ec870, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:46.122Z","sequence":2425,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/acta:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:46.122Z","sequence":2426,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: acta, device-id: 0008004AAAA3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:46.128Z","sequence":2427,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2255554f-1364-4544-a65c-6c85176c622a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:46.131Z","sequence":2428,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:46.131Z","sequence":2429,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: acta]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:46.134Z","sequence":2430,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-e100556f-ca8a-4c8b-9510-ac630c3fff80, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:47.306Z","sequence":2431,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:47.306Z","sequence":2432,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001B15] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:47.321Z","sequence":2433,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:47.321Z","sequence":2434,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:47.329Z","sequence":2435,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5bc6d027-7d69-44a7-8dc6-9b4bc3ca20b9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:52.285Z","sequence":2436,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:52.286Z","sequence":2437,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000154] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:52.292Z","sequence":2438,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:52.293Z","sequence":2439,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:52.295Z","sequence":2440,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-10e37199-1bae-476d-9738-b55046696fbc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:52.332Z","sequence":2441,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:52.333Z","sequence":2442,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000154] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:52.338Z","sequence":2443,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:52.338Z","sequence":2444,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:52.341Z","sequence":2445,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3c6e0474-e2af-4751-ae56-05596d27aebd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:53.269Z","sequence":2446,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:53.269Z","sequence":2447,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006D5] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:53.277Z","sequence":2448,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:53.277Z","sequence":2449,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:12:53.289Z","sequence":2450,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6ec7c498-4b99-43aa-8aeb-899986e10b40, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:13:03.575Z","sequence":2451,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:13:03.575Z","sequence":2452,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10013E9] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:13:03.582Z","sequence":2453,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:13:03.582Z","sequence":2454,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:13:03.588Z","sequence":2455,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-494a0b12-00ae-4f0f-b758-ddf8231f7e89, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:13:04.788Z","sequence":2456,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_190892]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"231bcf6175748e68","parentId":"e1640a73d17510a6","traceId":"00000000000000008362a3939cdeb556","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:13:04.808Z","sequence":2457,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_190892, resource-version: 58c48776-b618-4082-87e2-8a0f2fd02ff1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"231bcf6175748e68","parentId":"e1640a73d17510a6","traceId":"00000000000000008362a3939cdeb556","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:13:04.842Z","sequence":2458,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190892, resource-version: 438b695e-9f02-4005-9bbf-89264e99a6dc]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"231bcf6175748e68","parentId":"e1640a73d17510a6","traceId":"00000000000000008362a3939cdeb556","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:13:04.845Z","sequence":2459,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_190892]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4eb37240b9f5256f","parentId":"3ceb98a3274a8708","traceId":"00000000000000008362a3939cdeb556","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:13:05.003Z","sequence":2460,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190892]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4eb37240b9f5256f","parentId":"3ceb98a3274a8708","traceId":"00000000000000008362a3939cdeb556","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:13:05.784Z","sequence":2461,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF95792C8F0C434]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4005f2d96bbb9bd7","parentId":"0f34ce414c9371bd","traceId":"00000000000000005b60718721aecdc0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:13:05.807Z","sequence":2462,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF95792C8F0C434, resource-version: e0202626-0488-4e22-8122-6d324c93e3be]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4005f2d96bbb9bd7","parentId":"0f34ce414c9371bd","traceId":"00000000000000005b60718721aecdc0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:13:05.816Z","sequence":2463,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF95792C8F0C434, resource-version: 05bd1993-fdbd-4ee8-af03-a64cb1717391]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4005f2d96bbb9bd7","parentId":"0f34ce414c9371bd","traceId":"00000000000000005b60718721aecdc0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:13:06.906Z","sequence":2464,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:13:06.906Z","sequence":2465,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:13:06.91Z","sequence":2466,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-0a7692bb-a487-4dd9-9208-af6e7f28cafd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:13:06.912Z","sequence":2467,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:13:06.912Z","sequence":2468,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_190892]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:13:06.923Z","sequence":2469,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-139e15b6-54e4-4b19-825e-b92a8616b426, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:13:07.046Z","sequence":2470,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:13:07.046Z","sequence":2471,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF95792C8F0C434] for gateway [gateway_integrationtest_network_190892]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:13:07.047Z","sequence":2472,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:13:07.047Z","sequence":2473,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_190892]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:13:07.052Z","sequence":2474,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:13:07.053Z","sequence":2475,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:13:07.054Z","sequence":2476,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9c206f22-6c5a-4664-9521-f10532c00a59, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:13:07.386Z","sequence":2477,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-547459b0-c159-4713-8935-51eaf487d395, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:13:12.287Z","sequence":2478,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:13:12.287Z","sequence":2479,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100021A] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:13:12.293Z","sequence":2480,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:0.4.1\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:13:12.293Z","sequence":2481,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:13:12.299Z","sequence":2482,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-cfec88cb-263d-4508-b3f6-acd637d5cece, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:13:14.085Z","sequence":2483,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:13:14.085Z","sequence":2484,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000868] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:13:14.091Z","sequence":2485,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:13:14.091Z","sequence":2486,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:13:14.094Z","sequence":2487,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0f57fbe5-6c40-4677-85af-2316111747eb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:13:14.652Z","sequence":2488,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:13:14.652Z","sequence":2489,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10004BC] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:13:14.664Z","sequence":2490,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:13:14.664Z","sequence":2491,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:13:14.671Z","sequence":2492,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e602770e-33fc-4c24-bc4e-16b27cc8d3f1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:13:20.555Z","sequence":2493,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF95792C8F0C434]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c72ec231e4e63908","parentId":"40802d1422d9664b","traceId":"00000000000000003d1756b73927e598","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:13:20.571Z","sequence":2494,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF95792C8F0C434]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c72ec231e4e63908","parentId":"40802d1422d9664b","traceId":"00000000000000003d1756b73927e598","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:13:20.704Z","sequence":2495,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_190892]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"26f242d85b83687c","parentId":"e83f55e3ff5d1b91","traceId":"0000000000000000c50a6eb9f9c28b15","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:13:20.722Z","sequence":2496,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190892]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"26f242d85b83687c","parentId":"e83f55e3ff5d1b91","traceId":"0000000000000000c50a6eb9f9c28b15","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:13:21.132Z","sequence":2497,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 20E6BA55E4D6]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"85b0a2b48ef704a0","parentId":"080444d23c878165","traceId":"0000000000000000ebe6343f438d140c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:13:21.15Z","sequence":2498,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 20E6BA55E4D6, resource-version: 794b7957-d5f7-480a-9049-551ea627065e]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"85b0a2b48ef704a0","parentId":"080444d23c878165","traceId":"0000000000000000ebe6343f438d140c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:13:21.156Z","sequence":2499,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 20E6BA55E4D6, resource-version: e13f8af2-dc9e-431d-884c-684d7db6dccc]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"85b0a2b48ef704a0","parentId":"080444d23c878165","traceId":"0000000000000000ebe6343f438d140c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:13:21.159Z","sequence":2500,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 20E6BA55E4D6]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"669c27d9796755ba","parentId":"1340682641337b1c","traceId":"0000000000000000ebe6343f438d140c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:13:21.282Z","sequence":2501,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 20E6BA55E4D6]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"669c27d9796755ba","parentId":"1340682641337b1c","traceId":"0000000000000000ebe6343f438d140c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:13:21.808Z","sequence":2502,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF8C9357B59FECB]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"519dfd8fa003ef70","parentId":"5b0acd0c4312930b","traceId":"000000000000000052e1e31af23b81b8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:13:21.824Z","sequence":2503,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF8C9357B59FECB, resource-version: bc33a3ab-706e-49f8-a940-c517c88379e5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"519dfd8fa003ef70","parentId":"5b0acd0c4312930b","traceId":"000000000000000052e1e31af23b81b8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:13:21.832Z","sequence":2504,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF8C9357B59FECB, resource-version: 26de17e2-c5cc-4718-b048-ebfada517e71]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"519dfd8fa003ef70","parentId":"5b0acd0c4312930b","traceId":"000000000000000052e1e31af23b81b8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:13:22.875Z","sequence":2505,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:13:22.875Z","sequence":2506,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:13:22.878Z","sequence":2507,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-d1617eeb-c949-45cd-bda6-7b97e45b20ed, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:13:22.882Z","sequence":2508,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:13:22.882Z","sequence":2509,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-20E6BA55E4D6]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:13:22.891Z","sequence":2510,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-65e7d064-133b-4289-93ee-58eb17f43ea5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:13:23.011Z","sequence":2511,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:13:23.011Z","sequence":2512,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 20E6BA55E4D6]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:13:23.016Z","sequence":2513,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-85c20093-2b5b-45cf-b02e-78298bfe54b7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:13:23.021Z","sequence":2514,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:13:23.021Z","sequence":2515,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF8C9357B59FECB] for gateway [20E6BA55E4D6]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:13:23.028Z","sequence":2516,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:13:23.028Z","sequence":2517,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:13:23.199Z","sequence":2518,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f2223400-3aa1-44cf-a5e5-1e3c8ce2ab21, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:13:26.73Z","sequence":2519,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:13:26.73Z","sequence":2520,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:13:26.735Z","sequence":2521,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4848958e-594f-4b68-a5e3-e97375289292, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:13:34.61Z","sequence":2522,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF8C9357B59FECB]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bc5460af0ae2ae01","parentId":"2135bdfbbb04906e","traceId":"00000000000000007e103700bc7fb66d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:13:34.626Z","sequence":2523,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF8C9357B59FECB]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bc5460af0ae2ae01","parentId":"2135bdfbbb04906e","traceId":"00000000000000007e103700bc7fb66d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:13:34.877Z","sequence":2524,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:13:34.877Z","sequence":2525,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BB9] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:13:34.884Z","sequence":2526,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:13:34.884Z","sequence":2527,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:13:34.89Z","sequence":2528,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-756df1c3-6003-464f-84a9-1327b55ddf0a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:13:34.933Z","sequence":2529,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 20E6BA55E4D6]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ee06b8df2a80892b","parentId":"c656e5dbd92f0a44","traceId":"0000000000000000372b33c8b9da8360","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:13:34.949Z","sequence":2530,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 20E6BA55E4D6]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ee06b8df2a80892b","parentId":"c656e5dbd92f0a44","traceId":"0000000000000000372b33c8b9da8360","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:13:36.677Z","sequence":2531,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/repsol:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:13:36.677Z","sequence":2532,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: repsol, device-id: 0008004A37FF]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:13:36.683Z","sequence":2533,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-77a8dc1f-ed9f-4f8e-8dda-271fe7e53607, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:13:36.686Z","sequence":2534,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:13:36.686Z","sequence":2535,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: repsol]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:13:36.689Z","sequence":2536,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-2ef0f2de-e8bb-4bd2-9bfa-23de85119e16, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:13:48.77Z","sequence":2537,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:13:48.771Z","sequence":2538,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AF4] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:13:48.772Z","sequence":2539,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:13:48.773Z","sequence":2540,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:13:48.776Z","sequence":2541,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:13:48.776Z","sequence":2542,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:13:48.779Z","sequence":2543,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-85816fcd-b33f-46a0-b8e1-096287db5611, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:13:48.782Z","sequence":2544,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0e5dfdbb-5ec1-49a2-b9bc-0b0c4675d523, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:13:55.313Z","sequence":2545,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/dow:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:13:55.313Z","sequence":2546,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: dow, type: hashed-password, auth-id: auth-gateway_dow_network_39199]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:13:55.337Z","sequence":2547,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-9810c79f-96a0-40b8-817b-e38f30e51f6c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:13:55.471Z","sequence":2548,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:13:55.471Z","sequence":2549,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 0008004B51D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:13:55.482Z","sequence":2550,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e13b006c-f8b9-4994-ab9e-7fcb549c13fc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:13:55.489Z","sequence":2551,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:13:55.489Z","sequence":2552,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: dow]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:13:55.492Z","sequence":2553,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-284741b8-e4e8-4fa1-94a4-27700ebe5472, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:13:55.623Z","sequence":2554,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:13:55.624Z","sequence":2555,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 70B3D57BB10014EB] for gateway [gateway_dow_network_39199]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:13:55.625Z","sequence":2556,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:13:55.625Z","sequence":2557,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: gateway_dow_network_39199]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:13:55.63Z","sequence":2558,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:13:55.631Z","sequence":2559,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:13:55.631Z","sequence":2560,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-53ec2e8a-2d71-4fe9-bdbc-969015ba08be, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:13:55.641Z","sequence":2561,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-de4490e0-869b-40d1-9106-260db4daaf9a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:14:01.628Z","sequence":2562,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:14:01.629Z","sequence":2563,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 70B3D57BB10001A5] for gateway [0008004BB84C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:14:01.634Z","sequence":2564,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:0.4.1\"\n },\n \"viaGroups\" : [ \"gateways_lanxess\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:14:01.634Z","sequence":2565,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_lanxess\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:14:01.638Z","sequence":2566,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-888efce1-0dab-4e58-b3aa-759befd2d09b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:14:02.434Z","sequence":2567,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:14:02.434Z","sequence":2568,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10008A4] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:14:02.44Z","sequence":2569,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:14:02.44Z","sequence":2570,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:14:02.444Z","sequence":2571,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-dc9ff568-4ddf-4011-a411-5a0e26c75785, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:14:02.742Z","sequence":2572,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:14:02.742Z","sequence":2573,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000834] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:14:02.749Z","sequence":2574,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:14:02.749Z","sequence":2575,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:14:02.753Z","sequence":2576,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-096b650e-5f50-47c5-884e-8fba697b2f78, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:14:04.567Z","sequence":2577,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/acta:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:14:04.567Z","sequence":2578,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: acta, device-id: 353438340047002F] for gateway [0008004AAAA3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:14:04.572Z","sequence":2579,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.3.0\"\n },\n \"viaGroups\" : [ \"gateways_acta\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:14:04.573Z","sequence":2580,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_acta\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:14:04.575Z","sequence":2581,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2664b469-7566-477e-bad2-be8f21399686, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:14:24.398Z","sequence":2582,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:14:24.398Z","sequence":2583,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A99] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:14:24.404Z","sequence":2584,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:14:24.404Z","sequence":2585,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:14:24.41Z","sequence":2586,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-01eea6d5-3c9a-484f-a5c2-a13e9da19b29, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:14:26.176Z","sequence":2587,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:14:26.177Z","sequence":2588,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001C0] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:14:26.18Z","sequence":2589,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:14:26.18Z","sequence":2590,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001C0] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:14:26.188Z","sequence":2591,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:14:26.188Z","sequence":2592,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:14:26.19Z","sequence":2593,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:14:26.19Z","sequence":2594,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:14:26.202Z","sequence":2595,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-fdbe1c7a-1598-4324-9a76-4229571e81ab, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:14:26.202Z","sequence":2596,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-376ceb23-63c3-45ca-86c4-6f53a4f80b95, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:14:27.663Z","sequence":2597,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:14:27.663Z","sequence":2598,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10009EA] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:14:27.668Z","sequence":2599,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:14:27.668Z","sequence":2600,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:14:27.671Z","sequence":2601,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-832a56fa-a461-4da4-b752-e326c3139693, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:14:28.182Z","sequence":2602,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:14:28.182Z","sequence":2603,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000897] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:14:28.188Z","sequence":2604,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:14:28.188Z","sequence":2605,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:14:28.192Z","sequence":2606,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8080ee9a-f924-46c3-b16b-56fb131f9c21, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:14:31.88Z","sequence":2607,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:14:31.88Z","sequence":2608,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000169] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:14:31.887Z","sequence":2609,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:14:31.887Z","sequence":2610,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:14:31.89Z","sequence":2611,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d5be8277-ede8-41a5-b942-1c1e36516da9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:14:31.911Z","sequence":2612,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:14:31.911Z","sequence":2613,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000169] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:14:31.916Z","sequence":2614,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:14:31.917Z","sequence":2615,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:14:31.92Z","sequence":2616,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8554d117-b4af-4e2b-88f4-9667e1e09512, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:14:33.984Z","sequence":2617,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:14:33.985Z","sequence":2618,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: conditionall]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:14:33.988Z","sequence":2619,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-6cf13403-a91e-498e-b8fc-953e60020117, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:14:37.109Z","sequence":2620,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:14:37.109Z","sequence":2621,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000A93] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:14:37.115Z","sequence":2622,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:14:37.115Z","sequence":2623,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:14:37.122Z","sequence":2624,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ca560e8e-3b72-4b53-97a7-3c8b86959d42, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:14:39.336Z","sequence":2625,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:14:39.336Z","sequence":2626,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000845] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:14:39.342Z","sequence":2627,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:14:39.342Z","sequence":2628,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:14:39.346Z","sequence":2629,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e0d4e34c-fe8e-4c73-9ff0-f23c972e1651, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:14:48.029Z","sequence":2630,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:14:48.029Z","sequence":2631,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006C6] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:14:48.035Z","sequence":2632,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:14:48.035Z","sequence":2633,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:14:48.041Z","sequence":2634,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-88cc7c46-39a1-43f9-85f5-22be6a7cbf11, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:14:55.055Z","sequence":2635,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:14:55.055Z","sequence":2636,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10007FE] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:14:55.065Z","sequence":2637,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:14:55.066Z","sequence":2638,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:14:55.073Z","sequence":2639,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1b01e8aa-5418-4234-bd3f-43668542e3c6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:01.316Z","sequence":2640,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:01.316Z","sequence":2641,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 70B3D57BB10001AE] for gateway [0008004BB84C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:01.323Z","sequence":2642,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:0.4.0\"\n },\n \"viaGroups\" : [ \"gateways_lanxess\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:01.324Z","sequence":2643,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_lanxess\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:01.328Z","sequence":2644,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e2d58dae-5897-40e3-bd24-efe1aefec62a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:01.52Z","sequence":2645,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:01.521Z","sequence":2646,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001E8] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:01.528Z","sequence":2647,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:01.528Z","sequence":2648,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:01.531Z","sequence":2649,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ace66f09-82ac-4d3b-af27-fa38707cb3d1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:01.585Z","sequence":2650,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:01.586Z","sequence":2651,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001E8] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:01.602Z","sequence":2652,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:01.602Z","sequence":2653,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:01.605Z","sequence":2654,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1c2d87ab-c4a8-449e-ab7d-e661a0ff21e2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:02.433Z","sequence":2655,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:02.433Z","sequence":2656,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006E0] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:02.441Z","sequence":2657,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:02.441Z","sequence":2658,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:02.449Z","sequence":2659,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ee6930aa-1486-4001-a249-7234ad55e3a9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:04.23Z","sequence":2660,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_190894]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d42eb424a121a0df","parentId":"fee1f2fb22107b57","traceId":"0000000000000000799f597b3b812293","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:04.248Z","sequence":2661,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_190894, resource-version: 1edad1d8-aff5-4014-8ebf-85fbb6459f4c]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d42eb424a121a0df","parentId":"fee1f2fb22107b57","traceId":"0000000000000000799f597b3b812293","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:04.256Z","sequence":2662,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190894, resource-version: 11f49151-0dd3-4ec5-8544-89ad2f4eac9c]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d42eb424a121a0df","parentId":"fee1f2fb22107b57","traceId":"0000000000000000799f597b3b812293","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:04.259Z","sequence":2663,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_190894]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"da39d283728c6c82","parentId":"537f38f8b1ec7f51","traceId":"0000000000000000799f597b3b812293","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:04.411Z","sequence":2664,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190894]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"da39d283728c6c82","parentId":"537f38f8b1ec7f51","traceId":"0000000000000000799f597b3b812293","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:05.281Z","sequence":2665,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF93F323B095379]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"06bd96f86e3d32d5","parentId":"3c5da3afc392a689","traceId":"00000000000000009b4d50ef49ac5467","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:05.303Z","sequence":2666,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF93F323B095379, resource-version: ef981223-710f-4558-9fed-6c173a9b9300]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"06bd96f86e3d32d5","parentId":"3c5da3afc392a689","traceId":"00000000000000009b4d50ef49ac5467","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:05.309Z","sequence":2667,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF93F323B095379, resource-version: a581dcdf-9d10-430f-9d7a-f5e3c8fec9f5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"06bd96f86e3d32d5","parentId":"3c5da3afc392a689","traceId":"00000000000000009b4d50ef49ac5467","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:06.403Z","sequence":2668,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:06.403Z","sequence":2669,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_190894]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:06.415Z","sequence":2670,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-555c64c0-a174-41e8-ab6d-30a370199b60, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:06.538Z","sequence":2671,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:06.539Z","sequence":2672,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF93F323B095379] for gateway [gateway_integrationtest_network_190894]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:06.539Z","sequence":2673,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:06.539Z","sequence":2674,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_190894]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:06.553Z","sequence":2675,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-79c2cacd-4ab3-4feb-918b-704d517280e4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:06.553Z","sequence":2676,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:06.553Z","sequence":2677,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:06.89Z","sequence":2678,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-23c1677c-f42a-468c-b2ce-3c8324df7d4f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:07.547Z","sequence":2679,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:07.547Z","sequence":2680,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A92] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:07.567Z","sequence":2681,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:07.567Z","sequence":2682,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:07.575Z","sequence":2683,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-52a14fa9-cbcb-4f1a-8020-e44a70090440, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:09.475Z","sequence":2684,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:09.475Z","sequence":2685,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BB84C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:09.481Z","sequence":2686,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-fd2bbd5a-4eca-45f5-bcb5-02e7b0a7a8a4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:09.784Z","sequence":2687,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:09.784Z","sequence":2688,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: flint]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:09.789Z","sequence":2689,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-ac75a8c9-01ee-4fb8-8f63-c478d0a95e23, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:09.791Z","sequence":2690,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/flint:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:09.791Z","sequence":2691,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: flint, type: hashed-password, auth-id: auth-flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:09.817Z","sequence":2692,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-962a026d-94dd-4f96-aac2-eb42da1c8c86, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:09.949Z","sequence":2693,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:09.949Z","sequence":2694,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000804] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:09.954Z","sequence":2695,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:09.955Z","sequence":2696,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:09.958Z","sequence":2697,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8a8232e7-639d-45df-ad90-026322ba064a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:11.91Z","sequence":2698,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:11.91Z","sequence":2699,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 0008004B5135]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:11.916Z","sequence":2700,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5a66b83b-59f0-4c50-b08b-e86b472b95c5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:11.919Z","sequence":2701,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:11.919Z","sequence":2702,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: ineos]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:11.922Z","sequence":2703,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-681e971b-8563-4324-8068-839533affcd1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:14.741Z","sequence":2704,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:14.742Z","sequence":2705,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BBD1B]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:14.757Z","sequence":2706,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e0e65bb9-a4f7-4edf-b9a4-5c4052feeb88, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:18.107Z","sequence":2707,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:18.107Z","sequence":2708,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB100081B] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:18.114Z","sequence":2709,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:18.114Z","sequence":2710,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:18.117Z","sequence":2711,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5fcd57f1-3e5c-4e35-b793-8bf631221e6b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:19.298Z","sequence":2712,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF93F323B095379]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e24ea3487702cb16","parentId":"ac8f8fe506af9f37","traceId":"000000000000000080b16b1931c192de","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:19.317Z","sequence":2713,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF93F323B095379]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e24ea3487702cb16","parentId":"ac8f8fe506af9f37","traceId":"000000000000000080b16b1931c192de","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:19.561Z","sequence":2714,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_190894]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"493c430f5802ab48","parentId":"f664a1b262df2624","traceId":"000000000000000086a0fc74f1bf02e2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:19.577Z","sequence":2715,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190894]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"493c430f5802ab48","parentId":"f664a1b262df2624","traceId":"000000000000000086a0fc74f1bf02e2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:20.086Z","sequence":2716,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: F724B1AA7FFB]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4fdc72b84ddca2b2","parentId":"f1461c7f5476e28e","traceId":"000000000000000012f155b757bc3768","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:20.102Z","sequence":2717,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: F724B1AA7FFB, resource-version: 4c4b8c15-0e22-4e95-a0a7-b9f0ea5b323f]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4fdc72b84ddca2b2","parentId":"f1461c7f5476e28e","traceId":"000000000000000012f155b757bc3768","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:20.109Z","sequence":2718,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: F724B1AA7FFB, resource-version: 5a38eca2-3bac-4511-bade-3ab108e742db]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4fdc72b84ddca2b2","parentId":"f1461c7f5476e28e","traceId":"000000000000000012f155b757bc3768","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:20.116Z","sequence":2719,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: F724B1AA7FFB]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"72efaf7052e449fb","parentId":"d498b54c4a5ad777","traceId":"000000000000000012f155b757bc3768","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:20.243Z","sequence":2720,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: F724B1AA7FFB]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"72efaf7052e449fb","parentId":"d498b54c4a5ad777","traceId":"000000000000000012f155b757bc3768","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:20.724Z","sequence":2721,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFFF51A66A881F7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"633ddb96cfb9e9da","parentId":"3df43630029d6fbd","traceId":"0000000000000000f6716402da2eade5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:20.742Z","sequence":2722,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFFF51A66A881F7, resource-version: 5463b470-9a3b-4a57-bff5-fb69fa695940]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"633ddb96cfb9e9da","parentId":"3df43630029d6fbd","traceId":"0000000000000000f6716402da2eade5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:20.749Z","sequence":2723,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFFF51A66A881F7, resource-version: d807ea77-39e9-40eb-aa64-f7c3d1b1cb2f]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"633ddb96cfb9e9da","parentId":"3df43630029d6fbd","traceId":"0000000000000000f6716402da2eade5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:20.921Z","sequence":2724,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/arkema:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:20.921Z","sequence":2725,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: arkema, device-id: 0008004AE119]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:20.926Z","sequence":2726,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5751cfcf-6af4-43dd-989f-38122f335cbf, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:20.93Z","sequence":2727,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:20.93Z","sequence":2728,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: arkema]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:20.933Z","sequence":2729,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-9985f6f8-5a2f-4192-bdd2-4a7536efbfb4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:21.405Z","sequence":2730,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:21.405Z","sequence":2731,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000579] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:21.411Z","sequence":2732,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:21.411Z","sequence":2733,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:21.417Z","sequence":2734,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-65adb685-11d5-47a0-a142-e5b060eee75b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:21.797Z","sequence":2735,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:21.797Z","sequence":2736,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-F724B1AA7FFB]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:21.814Z","sequence":2737,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-6c864bab-e617-4b70-a879-714d288b5331, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:21.936Z","sequence":2738,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:21.936Z","sequence":2739,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: F724B1AA7FFB]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:21.942Z","sequence":2740,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-be5a88a1-27bb-418f-a9d1-bfdbbdf9936d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:21.947Z","sequence":2741,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:21.947Z","sequence":2742,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFFF51A66A881F7] for gateway [F724B1AA7FFB]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:21.953Z","sequence":2743,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:21.953Z","sequence":2744,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:22.126Z","sequence":2745,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-83d4d19e-b400-4150-a60f-86037e8f3f9c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:22.127Z","sequence":2746,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:22.127Z","sequence":2747,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB1000B0C] for gateway [0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:22.132Z","sequence":2748,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:22.132Z","sequence":2749,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:22.135Z","sequence":2750,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-41e087c8-5878-4be5-9dd7-4d6f623e9343, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:25.202Z","sequence":2751,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:25.202Z","sequence":2752,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BBD1C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:25.208Z","sequence":2753,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d2c26f03-ce62-4cee-baf6-1596266788df, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:31.646Z","sequence":2754,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFFF51A66A881F7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b7b94887c16659f2","parentId":"d3270db98cb66538","traceId":"00000000000000006aaa7d68280d9029","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:31.66Z","sequence":2755,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFFF51A66A881F7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b7b94887c16659f2","parentId":"d3270db98cb66538","traceId":"00000000000000006aaa7d68280d9029","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:31.937Z","sequence":2756,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: F724B1AA7FFB]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"277d1b2f7ae34ff7","parentId":"10d5c8e33750d4b0","traceId":"000000000000000025b9cbda2af48d57","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:31.954Z","sequence":2757,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: F724B1AA7FFB]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"277d1b2f7ae34ff7","parentId":"10d5c8e33750d4b0","traceId":"000000000000000025b9cbda2af48d57","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:35.838Z","sequence":2758,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:35.838Z","sequence":2759,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: terega]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:35.841Z","sequence":2760,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-d3322f50-5f50-480a-ad59-9f13f7b68a26, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:35.845Z","sequence":2761,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/terega:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:35.845Z","sequence":2762,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: terega, type: hashed-password, auth-id: auth-gateway_terega_network_27]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:35.855Z","sequence":2763,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-c02c089f-0b3e-42d1-b30f-86ea51b8a41b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:35.971Z","sequence":2764,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/terega:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:35.971Z","sequence":2765,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: terega, device-id: 70B3D57BB1000E0D] for gateway [gateway_terega_network_27]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:35.971Z","sequence":2766,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/terega:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:35.971Z","sequence":2767,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: terega, device-id: gateway_terega_network_27]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:35.977Z","sequence":2768,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-cb664b14-2e68-427e-9461-d66e81844821, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:35.977Z","sequence":2769,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_terega\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:35.977Z","sequence":2770,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_terega\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:35.982Z","sequence":2771,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-66351dbe-b9e8-4619-a5fc-65f215bd5836, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:38.702Z","sequence":2772,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:38.702Z","sequence":2773,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A9B] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:38.709Z","sequence":2774,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:38.709Z","sequence":2775,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:38.718Z","sequence":2776,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-bc5d5eeb-5ff8-4c9b-b138-11bb3006fc8e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:41.893Z","sequence":2777,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:41.893Z","sequence":2778,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: shell]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:41.897Z","sequence":2779,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-ac67ba28-0e91-4e89-9252-c32a6ba99587, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:41.899Z","sequence":2780,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/shell:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:41.899Z","sequence":2781,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: shell, type: hashed-password, auth-id: auth-gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:41.908Z","sequence":2782,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-da35e3b8-7c55-45d5-8059-7fb5e1e68050, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:42.024Z","sequence":2783,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:42.024Z","sequence":2784,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B89] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:42.029Z","sequence":2785,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:42.029Z","sequence":2786,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:42.035Z","sequence":2787,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2685723e-9076-4683-850f-842c52051e85, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:44.268Z","sequence":2788,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:44.268Z","sequence":2789,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A80] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:44.274Z","sequence":2790,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:44.275Z","sequence":2791,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:44.28Z","sequence":2792,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-fca74cdd-5f24-413c-917e-64e0acb4ce43, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:51.249Z","sequence":2793,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:51.249Z","sequence":2794,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B58] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:51.258Z","sequence":2795,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:51.258Z","sequence":2796,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:51.264Z","sequence":2797,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ab6980ab-4dc8-4f50-b518-706baafda124, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:55.848Z","sequence":2798,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:55.848Z","sequence":2799,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB100085F] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:55.855Z","sequence":2800,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:55.855Z","sequence":2801,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:55.859Z","sequence":2802,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-75fe410e-420d-4f05-a14d-25f9686f42e5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:57.743Z","sequence":2803,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:57.744Z","sequence":2804,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AF5] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:57.749Z","sequence":2805,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:57.749Z","sequence":2806,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:57.755Z","sequence":2807,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-74322168-b61a-40b9-8ac4-319c22c5917e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:57.924Z","sequence":2808,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:57.924Z","sequence":2809,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A9E] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:57.933Z","sequence":2810,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:57.933Z","sequence":2811,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:57.94Z","sequence":2812,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-25ccd650-ff8c-4883-8e91-2860a32d8311, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:59.801Z","sequence":2813,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:59.801Z","sequence":2814,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10008AF] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:59.809Z","sequence":2815,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:59.809Z","sequence":2816,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:15:59.815Z","sequence":2817,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f0b98681-147c-48ea-8549-d0ae9ba028e5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:16:03.423Z","sequence":2818,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:16:03.424Z","sequence":2819,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:16:03.429Z","sequence":2820,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4ac7dce1-d61c-497b-8e11-8c95028a43d4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:16:04.892Z","sequence":2821,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:16:04.892Z","sequence":2822,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: exxon]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:16:04.896Z","sequence":2823,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-ed8706dd-dbfd-4400-82d8-163d0f9fe407, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:16:04.898Z","sequence":2824,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/exxon:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:16:04.899Z","sequence":2825,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: exxon, type: hashed-password, auth-id: auth-gateway_exxon_network_2559]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:16:04.908Z","sequence":2826,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-e2db0707-cba4-4a75-93fe-efa9e8809731, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:16:05.04Z","sequence":2827,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/exxon:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:16:05.041Z","sequence":2828,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: exxon, device-id: 70B3D57BB1000B45] for gateway [gateway_exxon_network_2559]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:16:05.043Z","sequence":2829,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/exxon:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:16:05.043Z","sequence":2830,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: exxon, device-id: gateway_exxon_network_2559]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:16:05.047Z","sequence":2831,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_exxon\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:16:05.049Z","sequence":2832,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_exxon\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:16:05.05Z","sequence":2833,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-79659126-6baf-4def-b12c-923b4cdbd788, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:16:05.051Z","sequence":2834,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-bfde9a2a-6fb6-4e73-ad4b-7f858e2b93aa, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:16:07.005Z","sequence":2835,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:16:07.005Z","sequence":2836,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C1E] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:16:07.013Z","sequence":2837,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:16:07.013Z","sequence":2838,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:16:07.019Z","sequence":2839,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-85e75de9-957e-4843-b3ad-719fccae666e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:16:08.325Z","sequence":2840,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/terega:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:16:08.325Z","sequence":2841,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: terega, device-id: 70B3D57BB1000DFF] for gateway [gateway_terega_network_27]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:16:08.331Z","sequence":2842,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_terega\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:16:08.331Z","sequence":2843,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_terega\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:16:08.334Z","sequence":2844,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8f7d76c7-66c4-43c9-863a-28bab9d76fd0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:16:12.902Z","sequence":2845,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:16:12.902Z","sequence":2846,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AA3] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:16:12.909Z","sequence":2847,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:16:12.909Z","sequence":2848,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:16:12.915Z","sequence":2849,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9e988000-197f-43f0-91b7-8f91f4bd3d38, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:16:23.354Z","sequence":2850,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:16:23.354Z","sequence":2851,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C10] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:16:23.361Z","sequence":2852,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:16:23.361Z","sequence":2853,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:16:23.367Z","sequence":2854,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ffee2478-5931-4e5c-8293-11e21fdeda09, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:16:30.828Z","sequence":2855,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:16:30.828Z","sequence":2856,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100021F] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:16:30.834Z","sequence":2857,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:0.4.1\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:16:30.834Z","sequence":2858,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:16:30.839Z","sequence":2859,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b38b711a-206f-40c0-a8b9-2cb5532660f8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:16:33.191Z","sequence":2860,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:16:33.191Z","sequence":2861,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006A1] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:16:33.197Z","sequence":2862,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:16:33.197Z","sequence":2863,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:16:33.203Z","sequence":2864,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f2d04990-e578-49b4-8ea6-472b0fbc7385, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:16:34.89Z","sequence":2865,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:16:34.89Z","sequence":2866,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A93] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:16:34.896Z","sequence":2867,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:16:34.896Z","sequence":2868,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:16:34.903Z","sequence":2869,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c1edd209-0fb7-461d-b38d-7dd06a17138d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:16:35.047Z","sequence":2870,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:16:35.048Z","sequence":2871,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A88] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:16:35.053Z","sequence":2872,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:16:35.054Z","sequence":2873,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:16:35.06Z","sequence":2874,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d8b5b734-7b5f-43d9-9ffc-272f38472f4a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:16:36.534Z","sequence":2875,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:16:36.534Z","sequence":2876,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 0008004C80F4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:16:36.54Z","sequence":2877,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-388f16ca-798a-492a-a2f6-54806b8b4d19, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:16:45.8Z","sequence":2878,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:16:45.801Z","sequence":2879,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:16:45.809Z","sequence":2880,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e1b6f204-33e0-449c-a740-bff9065ab67f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:16:45.812Z","sequence":2881,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:16:45.812Z","sequence":2882,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oci]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:16:45.815Z","sequence":2883,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-c21e2eee-b34a-43d7-80f6-926a6cd6ce37, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:16:45.817Z","sequence":2884,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:16:45.817Z","sequence":2885,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000203] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:16:45.823Z","sequence":2886,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:16:45.823Z","sequence":2887,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:16:45.825Z","sequence":2888,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-29e85c43-dc81-4153-ab1c-08ebe9837956, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:16:45.858Z","sequence":2889,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:16:45.858Z","sequence":2890,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000203] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:16:45.864Z","sequence":2891,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:16:45.864Z","sequence":2892,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:16:45.867Z","sequence":2893,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-83812cd8-c0f3-4748-96b4-38c2be683cb0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:16:47.965Z","sequence":2894,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:16:47.965Z","sequence":2895,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10007F4] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:16:47.97Z","sequence":2896,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:16:47.971Z","sequence":2897,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:16:47.974Z","sequence":2898,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-70887d34-3bc4-4af5-b127-65c26d57a539, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:16:48.607Z","sequence":2899,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oiltanking:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:16:48.607Z","sequence":2900,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oiltanking, device-id: 0008004BB60F]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:16:48.614Z","sequence":2901,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1090d9be-865b-46fd-ae94-093e74aaff1d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:16:48.619Z","sequence":2902,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:16:48.619Z","sequence":2903,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oiltanking]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:16:48.622Z","sequence":2904,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-f678040d-351b-4ac7-af36-31bc0dde6354, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:01.984Z","sequence":2905,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:01.985Z","sequence":2906,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: acta]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:01.99Z","sequence":2907,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-f933eea5-bc84-4fb4-8b4a-caf27993a0b4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:01.992Z","sequence":2908,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/acta:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:01.992Z","sequence":2909,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: acta, device-id: 35343834001F0046] for gateway [0008004AAAA3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:02.001Z","sequence":2910,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.3.0\"\n },\n \"viaGroups\" : [ \"gateways_acta\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:02.001Z","sequence":2911,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_acta\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:02.003Z","sequence":2912,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9ffbd0f4-cb0b-4177-a048-f7802257d812, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:04.244Z","sequence":2913,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_190896]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"de92811947dcd3aa","parentId":"435c265de36b4cd6","traceId":"0000000000000000db7f4debe4305dac","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:04.26Z","sequence":2914,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_190896, resource-version: 15c65b8e-21d7-4871-bc15-ed68e8f36cf2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"de92811947dcd3aa","parentId":"435c265de36b4cd6","traceId":"0000000000000000db7f4debe4305dac","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:04.267Z","sequence":2915,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190896, resource-version: feea7464-723a-4ca3-9d27-268d2ef36d6f]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"de92811947dcd3aa","parentId":"435c265de36b4cd6","traceId":"0000000000000000db7f4debe4305dac","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:04.27Z","sequence":2916,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_190896]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c7e511b456e49095","parentId":"2eb3109dda3e878d","traceId":"0000000000000000db7f4debe4305dac","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:04.409Z","sequence":2917,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190896]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c7e511b456e49095","parentId":"2eb3109dda3e878d","traceId":"0000000000000000db7f4debe4305dac","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:05.276Z","sequence":2918,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF0E00FFA5899FA]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e0329ab8998eebe2","parentId":"53907707cbd2ac05","traceId":"0000000000000000df0b5c1b15839b8a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:05.297Z","sequence":2919,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF0E00FFA5899FA, resource-version: ac893d2a-2bb4-427b-86fe-6d07810db5f8]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e0329ab8998eebe2","parentId":"53907707cbd2ac05","traceId":"0000000000000000df0b5c1b15839b8a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:05.306Z","sequence":2920,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF0E00FFA5899FA, resource-version: 451deceb-c31d-47b4-95dc-881b12331465]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e0329ab8998eebe2","parentId":"53907707cbd2ac05","traceId":"0000000000000000df0b5c1b15839b8a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:06.38Z","sequence":2921,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:06.38Z","sequence":2922,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:06.384Z","sequence":2923,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-7974a70b-58b7-4487-8ba4-0d87d33fb916, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:06.388Z","sequence":2924,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:06.388Z","sequence":2925,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_190896]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:06.398Z","sequence":2926,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-0c0cdfda-7cbc-4df5-8908-88c743467702, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:06.521Z","sequence":2927,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:06.521Z","sequence":2928,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF0E00FFA5899FA] for gateway [gateway_integrationtest_network_190896]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:06.522Z","sequence":2929,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:06.522Z","sequence":2930,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_190896]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:06.533Z","sequence":2931,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:06.533Z","sequence":2932,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:06.533Z","sequence":2933,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-115f699d-d986-499d-ac81-1098e50ab303, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:06.847Z","sequence":2934,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-cce18cd9-0177-4cd9-9965-f26e90b973db, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:07.155Z","sequence":2935,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:07.155Z","sequence":2936,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BB6] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:07.185Z","sequence":2937,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:07.185Z","sequence":2938,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:07.209Z","sequence":2939,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2d7b36e1-6a74-49f4-bbc5-56f80d7ca93f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:14.244Z","sequence":2940,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:14.244Z","sequence":2941,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000159] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:14.251Z","sequence":2942,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:14.251Z","sequence":2943,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:14.254Z","sequence":2944,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9e27b4f7-fb63-4344-8773-5143dac7e6dd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:14.301Z","sequence":2945,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:14.301Z","sequence":2946,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000159] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:14.313Z","sequence":2947,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:14.313Z","sequence":2948,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:14.316Z","sequence":2949,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-774a062e-db72-49c4-9999-a6aa0e5f4daa, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:19.226Z","sequence":2950,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF0E00FFA5899FA]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8d5259f540f5ed02","parentId":"3a0733824e57507e","traceId":"0000000000000000853b7d801315f140","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:19.252Z","sequence":2951,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF0E00FFA5899FA]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8d5259f540f5ed02","parentId":"3a0733824e57507e","traceId":"0000000000000000853b7d801315f140","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:19.364Z","sequence":2952,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_190896]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c83da3a4b2b5c01d","parentId":"a6b9b3ee639a31f2","traceId":"000000000000000099ceb8769910e5c6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:19.381Z","sequence":2953,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190896]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c83da3a4b2b5c01d","parentId":"a6b9b3ee639a31f2","traceId":"000000000000000099ceb8769910e5c6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:19.823Z","sequence":2954,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0E545CE7FC58]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e5b2e74c48c9ad08","parentId":"6a692087c43b90c3","traceId":"0000000000000000db88f7b34aef1eed","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:19.843Z","sequence":2955,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0E545CE7FC58, resource-version: 0f3431f7-6712-4790-a269-0244013cb3a7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e5b2e74c48c9ad08","parentId":"6a692087c43b90c3","traceId":"0000000000000000db88f7b34aef1eed","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:19.849Z","sequence":2956,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0E545CE7FC58, resource-version: 2b97552c-3a17-4461-a018-b4e976cdba5a]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e5b2e74c48c9ad08","parentId":"6a692087c43b90c3","traceId":"0000000000000000db88f7b34aef1eed","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:19.852Z","sequence":2957,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 0E545CE7FC58]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0d69a25662c1de50","parentId":"508188d18a6bcf37","traceId":"0000000000000000db88f7b34aef1eed","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:19.975Z","sequence":2958,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 0E545CE7FC58]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0d69a25662c1de50","parentId":"508188d18a6bcf37","traceId":"0000000000000000db88f7b34aef1eed","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:20.52Z","sequence":2959,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFEE9AEB83A5D03]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7c61778a2cf70875","parentId":"615a3b9140a79394","traceId":"0000000000000000808c8dfa4dadd23f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:20.536Z","sequence":2960,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFEE9AEB83A5D03, resource-version: 69529b31-c1e3-4234-8abf-c8d7c66e7cb0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7c61778a2cf70875","parentId":"615a3b9140a79394","traceId":"0000000000000000808c8dfa4dadd23f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:20.545Z","sequence":2961,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFEE9AEB83A5D03, resource-version: d98db211-7b0f-420c-99a5-021413fdfa3e]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7c61778a2cf70875","parentId":"615a3b9140a79394","traceId":"0000000000000000808c8dfa4dadd23f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:21.598Z","sequence":2962,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:21.599Z","sequence":2963,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:21.602Z","sequence":2964,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-9eb8a0ff-bac2-4d80-b6aa-8f94e6ddc9a7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:21.604Z","sequence":2965,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:21.604Z","sequence":2966,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-0E545CE7FC58]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:21.613Z","sequence":2967,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-acbba5d9-32ae-4314-8d96-3cf44f01252e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:21.729Z","sequence":2968,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:21.729Z","sequence":2969,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0E545CE7FC58]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:21.735Z","sequence":2970,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-60e16b34-878e-4081-a823-ec5c456fa784, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:21.743Z","sequence":2971,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:21.743Z","sequence":2972,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFEE9AEB83A5D03] for gateway [0E545CE7FC58]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:21.75Z","sequence":2973,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:21.75Z","sequence":2974,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:21.931Z","sequence":2975,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7667f8cb-1920-4ecc-8f67-57a928dd8f9f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:22.139Z","sequence":2976,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:22.139Z","sequence":2977,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A74] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:22.145Z","sequence":2978,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:22.146Z","sequence":2979,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:22.152Z","sequence":2980,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ac17bcde-70d3-4ac3-82d9-436d41b6f300, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:22.892Z","sequence":2981,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:22.893Z","sequence":2982,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000787] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:22.898Z","sequence":2983,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:22.899Z","sequence":2984,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:22.904Z","sequence":2985,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f2a855a6-47b3-450a-a32d-16c90b0cdc5b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:34.275Z","sequence":2986,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/aloxy:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:34.275Z","sequence":2987,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: aloxy, device-id: 0008004A8F68]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:34.28Z","sequence":2988,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7669efd5-be40-4661-b69a-6975bfd1667d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:34.284Z","sequence":2989,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:34.284Z","sequence":2990,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: aloxy]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:34.287Z","sequence":2991,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-8d50d8cd-b032-408b-b66a-58c0b74b64d2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:34.502Z","sequence":2992,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFEE9AEB83A5D03]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"20673d3b4be082c1","parentId":"f211cc773bfabac3","traceId":"0000000000000000cf386baaeec4f7e5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:34.518Z","sequence":2993,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFEE9AEB83A5D03]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"20673d3b4be082c1","parentId":"f211cc773bfabac3","traceId":"0000000000000000cf386baaeec4f7e5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:34.82Z","sequence":2994,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0E545CE7FC58]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5b9c93214a53feda","parentId":"174cc58c5091a5c6","traceId":"0000000000000000fa4554618ce0d4b2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:34.838Z","sequence":2995,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0E545CE7FC58]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5b9c93214a53feda","parentId":"174cc58c5091a5c6","traceId":"0000000000000000fa4554618ce0d4b2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:40.472Z","sequence":2996,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/terega:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:40.472Z","sequence":2997,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: terega, device-id: 70B3D57BB1000E06] for gateway [gateway_terega_network_27]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:40.478Z","sequence":2998,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_terega\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:40.478Z","sequence":2999,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_terega\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:40.481Z","sequence":3000,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-04ae82e3-ff89-4044-89e7-53f5288a10bc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:42.914Z","sequence":3001,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:42.914Z","sequence":3002,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001B17] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:42.923Z","sequence":3003,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:42.923Z","sequence":3004,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:42.929Z","sequence":3005,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0b604d24-4414-409a-8bdc-1d45e1143b27, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:44.282Z","sequence":3006,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:44.282Z","sequence":3007,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BB613]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:44.297Z","sequence":3008,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1b3f7b4e-796d-4244-83d6-91149e0d643b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:44.301Z","sequence":3009,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:44.301Z","sequence":3010,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: lanxess]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:44.304Z","sequence":3011,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-ef888dfb-1d34-40b3-ac33-5ca2ca4e3ec2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:48.969Z","sequence":3012,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/acta:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:48.969Z","sequence":3013,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: acta, device-id: 0008004AAAA3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:48.975Z","sequence":3014,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d5fa393b-49d9-4db3-b1d0-66c709dd9899, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:54.209Z","sequence":3015,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:54.21Z","sequence":3016,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: chevron]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:54.213Z","sequence":3017,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-44c653d7-9159-4747-a94b-4976953b5851, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:54.216Z","sequence":3018,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/chevron:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:54.216Z","sequence":3019,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: chevron, type: hashed-password, auth-id: auth-CHEVRON-ORBIWISE-EL-SEGUNDO]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:54.227Z","sequence":3020,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-2f799116-c21e-4d7c-a2af-3665b0e3e6ec, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:54.346Z","sequence":3021,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/chevron:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:54.346Z","sequence":3022,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: chevron, device-id: 70B3D57BB10005B8] for gateway [CHEVRON-ORBIWISE-EL-SEGUNDO]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:54.347Z","sequence":3023,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/chevron:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:54.347Z","sequence":3024,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: chevron, device-id: CHEVRON-ORBIWISE-EL-SEGUNDO]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:54.351Z","sequence":3025,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_chevron\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:54.351Z","sequence":3026,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_chevron\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:54.353Z","sequence":3027,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f4f7ec23-0710-4329-a5bf-4aae9c504ed6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:54.356Z","sequence":3028,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-16329336-3643-4fcd-abc7-1c984084a7e5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:59.299Z","sequence":3029,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:59.299Z","sequence":3030,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B66] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:59.306Z","sequence":3031,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:59.306Z","sequence":3032,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:17:59.312Z","sequence":3033,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-55024555-279e-4b37-80d6-dbc9ac631777, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:18:01.59Z","sequence":3034,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:18:01.59Z","sequence":3035,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A85] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:18:01.601Z","sequence":3036,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:18:01.601Z","sequence":3037,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:18:01.616Z","sequence":3038,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2cceff0e-de8b-4466-b902-c99ef4aa9b5c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:18:02.746Z","sequence":3039,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:18:02.746Z","sequence":3040,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B70] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:18:02.755Z","sequence":3041,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:18:02.755Z","sequence":3042,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:18:02.761Z","sequence":3043,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-704eb897-6652-4fdf-9152-eeb42fae0adf, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:18:21.942Z","sequence":3044,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:18:21.943Z","sequence":3045,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: flint]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:18:21.947Z","sequence":3046,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-a69897f1-4c69-4385-811e-d694ce4fbf0a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:18:21.949Z","sequence":3047,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/flint:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:18:21.949Z","sequence":3048,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: flint, type: hashed-password, auth-id: auth-flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:18:21.961Z","sequence":3049,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-7db33056-07e7-4cfe-8e72-734e6e65ac5d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:18:22.08Z","sequence":3050,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:18:22.08Z","sequence":3051,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10009DA] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:18:22.08Z","sequence":3052,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:18:22.08Z","sequence":3053,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:18:22.085Z","sequence":3054,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:18:22.085Z","sequence":3055,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:18:22.086Z","sequence":3056,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-67db7942-508a-483a-8535-a12e21707717, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:18:22.089Z","sequence":3057,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-bf7d9528-b8a8-4b7e-8579-d8630fb6f17c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:18:28.468Z","sequence":3058,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:18:28.469Z","sequence":3059,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:18:28.475Z","sequence":3060,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1576940d-63b3-44da-a6b6-ca6dc712ed44, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:18:29.836Z","sequence":3061,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/terega:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:18:29.836Z","sequence":3062,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: terega, device-id: 70B3D57BB1000E12] for gateway [gateway_terega_network_27]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:18:29.841Z","sequence":3063,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_terega\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:18:29.841Z","sequence":3064,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_terega\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:18:29.845Z","sequence":3065,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9f98a7b4-f96e-4779-831d-ce699b9f55ec, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:18:31.966Z","sequence":3066,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:18:31.966Z","sequence":3067,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B7F] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:18:31.972Z","sequence":3068,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:18:31.972Z","sequence":3069,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:18:31.979Z","sequence":3070,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-95bfb7ac-b164-4306-9607-9730732572fe, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:18:38.427Z","sequence":3071,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/repsol:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:18:38.427Z","sequence":3072,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: repsol, device-id: 0008004A37FF]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:18:38.433Z","sequence":3073,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9d764bf4-1275-47af-8643-377360777c2e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:18:38.436Z","sequence":3074,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:18:38.437Z","sequence":3075,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: repsol]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:18:38.44Z","sequence":3076,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-260db23d-2d03-4355-a192-346726174990, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:18:38.967Z","sequence":3077,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:18:38.967Z","sequence":3078,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: dow]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:18:38.971Z","sequence":3079,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-088ec2a4-9d39-4b11-93b6-6c7724172b60, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:18:38.973Z","sequence":3080,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/dow:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:18:38.973Z","sequence":3081,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: dow, type: hashed-password, auth-id: auth-gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:18:38.984Z","sequence":3082,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-de10a261-fea9-41f4-9a97-6c227fdb3123, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:18:39.29Z","sequence":3083,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:18:39.29Z","sequence":3084,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 70B3D57BB1001247] for gateway [gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:18:39.291Z","sequence":3085,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:18:39.291Z","sequence":3086,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:18:39.297Z","sequence":3087,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:18:39.297Z","sequence":3088,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:18:39.298Z","sequence":3089,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9cd96b16-be09-42ee-9661-1fe6e51d17e4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:18:39.302Z","sequence":3090,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-eb595f0b-e8d6-4135-88de-d8d6a690a286, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:18:45.5Z","sequence":3091,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:18:45.5Z","sequence":3092,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 70B3D57BB1000196] for gateway [0008004BB84C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:18:45.506Z","sequence":3093,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:0.4.1\"\n },\n \"viaGroups\" : [ \"gateways_lanxess\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:18:45.507Z","sequence":3094,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_lanxess\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:18:45.51Z","sequence":3095,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5d3e8485-fd48-4026-88b7-5b247d312822, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:18:57.314Z","sequence":3096,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:18:57.314Z","sequence":3097,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 0008004B51D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:18:57.32Z","sequence":3098,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a7c2e5d8-8bab-41d6-a5a6-5ac12801f85c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:18:57.323Z","sequence":3099,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:18:57.323Z","sequence":3100,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: dow]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:18:57.325Z","sequence":3101,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-976eef6c-5def-427f-93b1-ed60c59be0ed, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:18:59.21Z","sequence":3102,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:18:59.21Z","sequence":3103,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000856] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:18:59.22Z","sequence":3104,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:18:59.22Z","sequence":3105,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:18:59.223Z","sequence":3106,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b767baf2-0eb1-4e81-95b2-4587f979c156, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:00.962Z","sequence":3107,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:00.962Z","sequence":3108,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: shell]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:00.966Z","sequence":3109,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-7078b2f3-bb7d-4018-b270-c77d072c4e3b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:00.968Z","sequence":3110,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/shell:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:00.968Z","sequence":3111,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: shell, type: hashed-password, auth-id: auth-gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:00.985Z","sequence":3112,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-582e3991-e6ed-49ab-ae67-07e51b44a2e6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:01.108Z","sequence":3113,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:01.108Z","sequence":3114,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001B05] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:01.108Z","sequence":3115,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:01.108Z","sequence":3116,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:01.117Z","sequence":3117,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:01.118Z","sequence":3118,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:01.119Z","sequence":3119,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a5f1c778-40c3-4fd7-8df7-ce21a90b7148, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:01.125Z","sequence":3120,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5d8bfd4d-dd7b-4da9-970c-04053981e0ea, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:02.91Z","sequence":3121,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:02.911Z","sequence":3122,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: chevronsgp]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:02.914Z","sequence":3123,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-15187d32-5d50-4ac8-82ad-344f740fa909, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:02.916Z","sequence":3124,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Source{address='credentials/chevronsgp/f9c5ee80-69fa-401e-a514-a3bcce57375b', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:02.916Z","sequence":3125,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-18]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:02.917Z","sequence":3126,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@47d273a4] for replies to [credentials/chevronsgp/f9c5ee80-69fa-401e-a514-a3bcce57375b]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:02.919Z","sequence":3127,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Target{address='credentials/chevronsgp', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:02.919Z","sequence":3128,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-19]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:02.919Z","sequence":3129,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:02.921Z","sequence":3130,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/chevronsgp:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:02.921Z","sequence":3131,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: chevronsgp, type: hashed-password, auth-id: auth-chevronsgp_42]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:02.922Z","sequence":3132,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:02.923Z","sequence":3133,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000209] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:02.924Z","sequence":3134,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:02.924Z","sequence":3135,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000209] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:02.928Z","sequence":3136,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:02.929Z","sequence":3137,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:02.952Z","sequence":3138,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d7c942a1-28b7-49db-8d07-f5809f7951ae, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:02.969Z","sequence":3139,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-1d562009-63d8-4762-bb03-599b7ad499f0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:03.079Z","sequence":3140,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:03.08Z","sequence":3141,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:03.082Z","sequence":3142,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-54b74be7-2dbc-4845-a5f1-8a07edefd711, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:03.087Z","sequence":3143,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] wants to open a link [address: Source{address='registration/chevronsgp/52107228-9d17-4ac0-a7eb-ea86ef29772a', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:03.087Z","sequence":3144,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-18]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:03.087Z","sequence":3145,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@414b7e9e] for replies to [registration/chevronsgp/52107228-9d17-4ac0-a7eb-ea86ef29772a]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:03.089Z","sequence":3146,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] wants to open a link [address: Target{address='registration/chevronsgp', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:03.089Z","sequence":3147,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-19]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:03.09Z","sequence":3148,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:03.092Z","sequence":3149,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/chevronsgp:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:03.092Z","sequence":3150,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: chevronsgp, device-id: 70B3D57BB1000851] for gateway [gateway_chevronsgp_network_42]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:03.092Z","sequence":3151,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/chevronsgp:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:03.092Z","sequence":3152,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: chevronsgp, device-id: gateway_chevronsgp_network_42]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:03.099Z","sequence":3153,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-39a4751f-0b36-4d48-84a0-dd5d9952be9c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:03.1Z","sequence":3154,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_chevronsgp\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:03.1Z","sequence":3155,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_chevronsgp\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:03.103Z","sequence":3156,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-29f352ab-7e76-410e-b25f-2ab069e81445, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:04.277Z","sequence":3157,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:04.277Z","sequence":3158,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BB7] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:04.283Z","sequence":3159,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:04.284Z","sequence":3160,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:04.297Z","sequence":3161,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-35c797c9-c56e-4cdc-9542-dbc0b3afbadc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:04.916Z","sequence":3162,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_190898]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"344432f4d67727a8","parentId":"8a7b7482c513db46","traceId":"0000000000000000e93b5d64a7786f19","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:04.981Z","sequence":3163,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_190898, resource-version: 58e2872c-b7f3-41e6-9663-c3db46352116]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"344432f4d67727a8","parentId":"8a7b7482c513db46","traceId":"0000000000000000e93b5d64a7786f19","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:04.993Z","sequence":3164,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190898, resource-version: c0631e83-1bca-41d9-9c70-bbb20cb0dc04]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"344432f4d67727a8","parentId":"8a7b7482c513db46","traceId":"0000000000000000e93b5d64a7786f19","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:04.997Z","sequence":3165,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_190898]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a0c000edcce24c63","parentId":"a6a8079f8c2e9aff","traceId":"0000000000000000e93b5d64a7786f19","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:05.296Z","sequence":3166,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190898]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a0c000edcce24c63","parentId":"a6a8079f8c2e9aff","traceId":"0000000000000000e93b5d64a7786f19","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:06.249Z","sequence":3167,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF5C499470350F2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7b457fdbf214064a","parentId":"fd585d6327cbdff6","traceId":"00000000000000009d290b73169944a8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:06.272Z","sequence":3168,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF5C499470350F2, resource-version: 57bc70ff-5136-4641-bcc1-51e6164f40c7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7b457fdbf214064a","parentId":"fd585d6327cbdff6","traceId":"00000000000000009d290b73169944a8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:06.281Z","sequence":3169,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF5C499470350F2, resource-version: 1824ec98-8289-49e7-89a2-f3cf3826a925]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7b457fdbf214064a","parentId":"fd585d6327cbdff6","traceId":"00000000000000009d290b73169944a8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:07.388Z","sequence":3170,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:07.389Z","sequence":3171,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_190898]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:07.4Z","sequence":3172,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-69ec4bc5-d6b7-4b38-a161-63ea53a7ebe0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:07.525Z","sequence":3173,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:07.525Z","sequence":3174,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF5C499470350F2] for gateway [gateway_integrationtest_network_190898]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:07.526Z","sequence":3175,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:07.526Z","sequence":3176,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_190898]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:07.533Z","sequence":3177,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6ae7a860-a366-4141-89eb-1efc181ad296, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:07.534Z","sequence":3178,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:07.534Z","sequence":3179,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:07.695Z","sequence":3180,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9760aebd-8f67-470a-84f5-d5effb2773ce, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:10.696Z","sequence":3181,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:10.696Z","sequence":3182,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB100083B] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:10.702Z","sequence":3183,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:10.702Z","sequence":3184,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:10.705Z","sequence":3185,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7d27d971-728d-43b8-b04c-d1f142662e41, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:10.825Z","sequence":3186,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:10.825Z","sequence":3187,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001B0B] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:10.831Z","sequence":3188,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:10.831Z","sequence":3189,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:10.837Z","sequence":3190,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7f4a893b-28a9-406e-b00c-79eb898030d8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:14.109Z","sequence":3191,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:14.109Z","sequence":3192,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001B13] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:14.116Z","sequence":3193,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:14.117Z","sequence":3194,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:14.123Z","sequence":3195,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ba6c5714-27bf-4558-b560-1d3aa3104b9e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:15.344Z","sequence":3196,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:15.344Z","sequence":3197,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BC1] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:15.349Z","sequence":3198,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:15.35Z","sequence":3199,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:15.355Z","sequence":3200,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-23400ca1-f432-4303-81f3-1ae5eba5a231, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:20.579Z","sequence":3201,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF5C499470350F2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a6f31b81648f29d6","parentId":"d39816f3377b87c1","traceId":"000000000000000075d44ab6640ac493","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:20.595Z","sequence":3202,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF5C499470350F2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a6f31b81648f29d6","parentId":"d39816f3377b87c1","traceId":"000000000000000075d44ab6640ac493","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:20.729Z","sequence":3203,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_190898]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"039b16fabf3d4ca9","parentId":"9ebee47faec800e5","traceId":"0000000000000000d27941be5e02debe","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:20.744Z","sequence":3204,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190898]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"039b16fabf3d4ca9","parentId":"9ebee47faec800e5","traceId":"0000000000000000d27941be5e02debe","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:21.188Z","sequence":3205,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 68CC6E639813]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2b25129ac673189c","parentId":"1239ec6e9876f743","traceId":"000000000000000022b91bbf25432ff3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:21.208Z","sequence":3206,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 68CC6E639813, resource-version: f93603ff-c724-4a52-a581-00d8cc7e579e]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2b25129ac673189c","parentId":"1239ec6e9876f743","traceId":"000000000000000022b91bbf25432ff3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:21.215Z","sequence":3207,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 68CC6E639813, resource-version: 44583e42-00e1-4611-9733-905044a769f7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2b25129ac673189c","parentId":"1239ec6e9876f743","traceId":"000000000000000022b91bbf25432ff3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:21.218Z","sequence":3208,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 68CC6E639813]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"85fe22a3b23b40a3","parentId":"4c2ac963c4770149","traceId":"000000000000000022b91bbf25432ff3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:21.346Z","sequence":3209,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 68CC6E639813]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"85fe22a3b23b40a3","parentId":"4c2ac963c4770149","traceId":"000000000000000022b91bbf25432ff3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:21.718Z","sequence":3210,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFB0B18DDC2F0FC]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d03830a2cddf7470","parentId":"66cebecb3a837c21","traceId":"00000000000000002488508c87a7b0dc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:21.735Z","sequence":3211,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFB0B18DDC2F0FC, resource-version: de4b61bf-068a-4fc8-bd6f-fe0dc62bcb7e]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d03830a2cddf7470","parentId":"66cebecb3a837c21","traceId":"00000000000000002488508c87a7b0dc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:21.755Z","sequence":3212,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFB0B18DDC2F0FC, resource-version: df10c433-6a39-4e30-8ef5-34adb482ab8b]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d03830a2cddf7470","parentId":"66cebecb3a837c21","traceId":"00000000000000002488508c87a7b0dc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:22.797Z","sequence":3213,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:22.797Z","sequence":3214,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-68CC6E639813]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:22.809Z","sequence":3215,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-8d0515c8-740f-45fd-8491-aaefe6188747, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:22.933Z","sequence":3216,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:22.933Z","sequence":3217,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 68CC6E639813]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:22.939Z","sequence":3218,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-296aa026-9263-4685-ac3c-47c9a6ed3d06, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:22.943Z","sequence":3219,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:22.943Z","sequence":3220,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFB0B18DDC2F0FC] for gateway [68CC6E639813]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:22.949Z","sequence":3221,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:22.949Z","sequence":3222,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:23.114Z","sequence":3223,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2031b153-206f-4560-8509-3d31f700c7eb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:28.292Z","sequence":3224,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:28.293Z","sequence":3225,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B4F] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:28.298Z","sequence":3226,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:28.298Z","sequence":3227,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:28.305Z","sequence":3228,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-10f1fe73-ce23-4ec0-ba13-c113b71af43d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:33.711Z","sequence":3229,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:33.712Z","sequence":3230,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000F76] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:33.726Z","sequence":3231,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:33.726Z","sequence":3232,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:33.731Z","sequence":3233,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-cf32587b-160a-42da-90d8-d351bd5f90e4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:35.957Z","sequence":3234,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/conditionall:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:35.957Z","sequence":3235,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: conditionall, device-id: 0008004B512D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:35.964Z","sequence":3236,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f4d174c6-2e4b-4212-ac7d-73a0a5ab3539, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:35.967Z","sequence":3237,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:35.967Z","sequence":3238,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: conditionall]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:35.97Z","sequence":3239,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-4c21b63e-7ec1-4158-a32d-2c72922e684b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:36.239Z","sequence":3240,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFB0B18DDC2F0FC]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"471cc62004d5a397","parentId":"91c889f74954c9d9","traceId":"00000000000000007cf6782fdbb8d063","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:36.26Z","sequence":3241,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFB0B18DDC2F0FC]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"471cc62004d5a397","parentId":"91c889f74954c9d9","traceId":"00000000000000007cf6782fdbb8d063","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:36.558Z","sequence":3242,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 68CC6E639813]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0b3e841da4ffc510","parentId":"a6ef8c58f1602c93","traceId":"000000000000000027a6c2b085d35fe9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:36.576Z","sequence":3243,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 68CC6E639813]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0b3e841da4ffc510","parentId":"a6ef8c58f1602c93","traceId":"000000000000000027a6c2b085d35fe9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:43.188Z","sequence":3244,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:43.189Z","sequence":3245,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AEF] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:43.198Z","sequence":3246,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:43.198Z","sequence":3247,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:43.211Z","sequence":3248,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-99015edb-9203-4377-9d33-7cd2c5e616be, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:43.645Z","sequence":3249,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:43.645Z","sequence":3250,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000508] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:43.653Z","sequence":3251,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:43.653Z","sequence":3252,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:43.662Z","sequence":3253,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a91e89e8-d339-4c32-b8a7-84dadc6aa4fe, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:46.377Z","sequence":3254,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:46.377Z","sequence":3255,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C1F] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:46.407Z","sequence":3256,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:46.407Z","sequence":3257,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:46.421Z","sequence":3258,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-68e2d83e-fbb2-4e94-b53a-ea08760be235, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:54.526Z","sequence":3259,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:54.526Z","sequence":3260,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001B06] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:54.553Z","sequence":3261,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:54.553Z","sequence":3262,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:54.569Z","sequence":3263,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a453b47d-1ca0-4b91-bcef-6979ccdb0dc4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:56.7Z","sequence":3264,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:56.7Z","sequence":3265,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000524] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:56.705Z","sequence":3266,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:56.705Z","sequence":3267,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:56.711Z","sequence":3268,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-74f96749-3e1a-49ca-a7c0-c921c558ec58, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:57.095Z","sequence":3269,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:57.096Z","sequence":3270,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001B04] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:57.104Z","sequence":3271,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:57.105Z","sequence":3272,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:19:57.112Z","sequence":3273,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-430ba93e-c2e0-45f7-95ef-2d4196c3aa83, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:20:08.692Z","sequence":3274,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:20:08.693Z","sequence":3275,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AFE] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:20:08.698Z","sequence":3276,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:20:08.698Z","sequence":3277,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:20:08.703Z","sequence":3278,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-43d0ff69-ec94-4c1c-80e6-bc640dfdf7fb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:20:11.363Z","sequence":3279,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:20:11.363Z","sequence":3280,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BB84C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:20:11.37Z","sequence":3281,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7c6b5b02-3999-4ad7-816f-c0a436414ac2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:20:12.025Z","sequence":3282,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:20:12.025Z","sequence":3283,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100052A] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:20:12.037Z","sequence":3284,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:20:12.037Z","sequence":3285,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:20:12.043Z","sequence":3286,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c3c5fc98-b9ab-4301-a760-5939993a1202, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:20:13.641Z","sequence":3287,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:20:13.641Z","sequence":3288,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 0008004B5135]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:20:13.649Z","sequence":3289,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-efc882d8-eb41-4340-b8fb-39e859f28e8d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:20:13.656Z","sequence":3290,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:20:13.657Z","sequence":3291,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: ineos]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:20:13.661Z","sequence":3292,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-974c9e63-9686-4960-bd81-42e092ca3fd8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:20:16.489Z","sequence":3293,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:20:16.489Z","sequence":3294,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BBD1B]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:20:16.501Z","sequence":3295,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8ca66181-e5a2-43f5-9ae2-2ff2b2a876bb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:20:21.537Z","sequence":3296,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:20:21.537Z","sequence":3297,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001B19] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:20:21.549Z","sequence":3298,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:20:21.55Z","sequence":3299,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:20:21.556Z","sequence":3300,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1c4be5fb-5b1f-4ed3-b4f3-30d3b7daec67, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:20:22.733Z","sequence":3301,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/arkema:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:20:22.733Z","sequence":3302,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: arkema, device-id: 0008004AE119]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:20:22.748Z","sequence":3303,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0e741d1b-459e-435f-87df-0e7ba20a917c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:20:22.752Z","sequence":3304,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:20:22.752Z","sequence":3305,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: arkema]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:20:22.755Z","sequence":3306,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-5341cb68-cd02-41c5-9e47-72984c5ab4be, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:20:23.16Z","sequence":3307,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:20:23.16Z","sequence":3308,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B7C] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:20:23.165Z","sequence":3309,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:20:23.165Z","sequence":3310,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:20:23.171Z","sequence":3311,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-005a8723-66ce-4b2c-8746-0a4b1cb1e69e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:20:28.603Z","sequence":3312,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:20:28.604Z","sequence":3313,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BBD1C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:20:28.609Z","sequence":3314,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-eba041fb-51dd-4409-a057-58de13c66b0d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:20:31.062Z","sequence":3315,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:20:31.062Z","sequence":3316,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100192B] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:20:31.067Z","sequence":3317,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:20:31.067Z","sequence":3318,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:20:31.073Z","sequence":3319,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c164fc37-11c8-4a5a-9243-34f7fed9c1de, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:20:32.372Z","sequence":3320,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:20:32.372Z","sequence":3321,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001B03] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:20:32.378Z","sequence":3322,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:20:32.378Z","sequence":3323,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:20:32.384Z","sequence":3324,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-17cbe71e-8096-49ae-b587-49dd8e12374f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:20:36.522Z","sequence":3325,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:20:36.522Z","sequence":3326,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: acta]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:20:36.526Z","sequence":3327,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-1fc0c3e3-82bc-4508-bec2-546584139ad3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:20:36.532Z","sequence":3328,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/acta:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:20:36.532Z","sequence":3329,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: acta, device-id: 39383837002B0047] for gateway [0008004AAAA3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:20:36.541Z","sequence":3330,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.3.0\"\n },\n \"viaGroups\" : [ \"gateways_acta\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:20:36.541Z","sequence":3331,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_acta\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:20:36.543Z","sequence":3332,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c9fe512d-135d-4027-8d96-fb17769cc534, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:20:39.614Z","sequence":3333,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:20:39.614Z","sequence":3334,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A59] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:20:39.625Z","sequence":3335,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:20:39.625Z","sequence":3336,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:20:39.637Z","sequence":3337,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2b92cc75-8713-4015-aec7-b22afa114284, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:20:44.637Z","sequence":3338,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:20:44.637Z","sequence":3339,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB1000B1B] for gateway [0008004B5135]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:20:44.676Z","sequence":3340,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:20:44.677Z","sequence":3341,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:20:44.695Z","sequence":3342,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4de5574d-ef6e-460f-be80-5db8a7f7554c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:20:45.039Z","sequence":3343,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:20:45.04Z","sequence":3344,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001946] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:20:45.077Z","sequence":3345,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:20:45.077Z","sequence":3346,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:20:45.094Z","sequence":3347,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1099ef5b-0d3f-4c47-9a83-5d213870445c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:20:45.881Z","sequence":3348,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:20:45.881Z","sequence":3349,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB1000B1B] for gateway [0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:20:45.909Z","sequence":3350,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:20:45.909Z","sequence":3351,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:20:45.917Z","sequence":3352,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-eaf5f054-a477-4147-a18e-56f082652d40, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:20:47.785Z","sequence":3353,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:20:47.785Z","sequence":3354,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10007F2] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:20:47.824Z","sequence":3355,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:20:47.825Z","sequence":3356,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:20:47.842Z","sequence":3357,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-245f2b48-dacc-4984-a592-023372f45139, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:20:50.409Z","sequence":3358,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:20:50.409Z","sequence":3359,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006C5] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:20:50.427Z","sequence":3360,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:20:50.427Z","sequence":3361,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:20:50.443Z","sequence":3362,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a6065165-bb0e-47ce-a38f-92f0a3433913, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:20:59.695Z","sequence":3363,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:20:59.695Z","sequence":3364,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oci]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:20:59.698Z","sequence":3365,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-e34f6e1c-1b37-4ec2-a2e9-e7bcdd779d58, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:20:59.703Z","sequence":3366,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:20:59.704Z","sequence":3367,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001D4] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:20:59.737Z","sequence":3368,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:20:59.737Z","sequence":3369,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:20:59.743Z","sequence":3370,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8b8ec7e4-4c77-487e-9f5a-08c7757686e0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:20:59.75Z","sequence":3371,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:20:59.75Z","sequence":3372,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001D4] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:20:59.755Z","sequence":3373,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:20:59.755Z","sequence":3374,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:20:59.758Z","sequence":3375,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ddc9855a-4d63-4031-9079-f6a3b45fde4e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:00.573Z","sequence":3376,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:00.573Z","sequence":3377,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10002AC] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:00.596Z","sequence":3378,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:00.597Z","sequence":3379,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:00.639Z","sequence":3380,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:00.639Z","sequence":3381,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001950] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:00.645Z","sequence":3382,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-cbdbb34b-b646-4efa-8fb9-eda7d877730b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:00.658Z","sequence":3383,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:00.659Z","sequence":3384,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:00.697Z","sequence":3385,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-45e5d5ac-1985-4636-9e6f-e5026ac7a875, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:01.837Z","sequence":3386,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/conditionall:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:01.837Z","sequence":3387,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: conditionall, device-id: 70B3D57BB10001F0] for gateway [0008004B512D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:01.89Z","sequence":3388,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_conditionall\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:01.89Z","sequence":3389,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_conditionall\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:01.897Z","sequence":3390,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3246f390-2ade-4792-ac67-3001fe6816ee, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:04.225Z","sequence":3391,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_190900]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4fbfebbce393cfb6","parentId":"61a8b6089fc6bff2","traceId":"00000000000000005c953fde40103cda","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:04.244Z","sequence":3392,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_190900, resource-version: 4defa193-75fe-41be-a5ce-aff065f7075f]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4fbfebbce393cfb6","parentId":"61a8b6089fc6bff2","traceId":"00000000000000005c953fde40103cda","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:04.307Z","sequence":3393,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190900, resource-version: badf2f0f-a220-442b-bc83-1657803a1081]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4fbfebbce393cfb6","parentId":"61a8b6089fc6bff2","traceId":"00000000000000005c953fde40103cda","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:04.31Z","sequence":3394,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_190900]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4d6716b8b1ae6926","parentId":"6465e344b3f499a3","traceId":"00000000000000005c953fde40103cda","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:04.456Z","sequence":3395,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190900]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4d6716b8b1ae6926","parentId":"6465e344b3f499a3","traceId":"00000000000000005c953fde40103cda","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:05.209Z","sequence":3396,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:05.21Z","sequence":3397,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:05.215Z","sequence":3398,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c2a74523-db82-43ee-88cc-8af2bebe965c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:05.645Z","sequence":3399,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF42755DDE4A981]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ed312f3a44e31485","parentId":"799113dd4533f847","traceId":"0000000000000000b43cd37555df3e1b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:05.697Z","sequence":3400,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF42755DDE4A981, resource-version: b70517c0-86b5-4291-99a1-28d7d92ffbf8]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ed312f3a44e31485","parentId":"799113dd4533f847","traceId":"0000000000000000b43cd37555df3e1b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:05.706Z","sequence":3401,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF42755DDE4A981, resource-version: 5d45d84b-a002-4981-84ab-63d46e7049f7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ed312f3a44e31485","parentId":"799113dd4533f847","traceId":"0000000000000000b43cd37555df3e1b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:06.897Z","sequence":3402,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:06.897Z","sequence":3403,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:06.901Z","sequence":3404,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-602760fc-d6fa-490d-946d-772540f15ae1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:06.903Z","sequence":3405,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:06.903Z","sequence":3406,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_190900]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:06.919Z","sequence":3407,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-d124e8f8-16ae-44e0-abe4-8275b6b1627c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:07.05Z","sequence":3408,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:07.05Z","sequence":3409,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF42755DDE4A981] for gateway [gateway_integrationtest_network_190900]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:07.051Z","sequence":3410,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:07.051Z","sequence":3411,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_190900]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:07.056Z","sequence":3412,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:07.056Z","sequence":3413,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:07.058Z","sequence":3414,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1987bfdd-26fd-446f-8601-411c82b7de2d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:07.517Z","sequence":3415,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-207df4c3-b167-4e7f-a800-fe3f366dced1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:08.365Z","sequence":3416,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:08.365Z","sequence":3417,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000574] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:08.39Z","sequence":3418,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:08.391Z","sequence":3419,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:08.446Z","sequence":3420,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d1a6caf4-12c1-460e-93dc-50c79fdccfeb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:15.088Z","sequence":3421,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:15.088Z","sequence":3422,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100194C] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:15.095Z","sequence":3423,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:15.096Z","sequence":3424,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:15.202Z","sequence":3425,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-677de94b-7e4d-4918-ab93-9c88cac4d463, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:16.179Z","sequence":3426,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:16.179Z","sequence":3427,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: lanxess]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:16.197Z","sequence":3428,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-e9f3d137-5711-4c9d-9e01-754c677b2549, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:16.204Z","sequence":3429,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:16.205Z","sequence":3430,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 70B3D57BB100018E] for gateway [0008004BB84C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:16.229Z","sequence":3431,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_lanxess\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:16.229Z","sequence":3432,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_lanxess\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:16.241Z","sequence":3433,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7e067230-f6e0-48c3-be64-d857db5bf5a7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:17.715Z","sequence":3434,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:17.715Z","sequence":3435,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100140E] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:17.722Z","sequence":3436,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:17.722Z","sequence":3437,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:17.729Z","sequence":3438,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:17.729Z","sequence":3439,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oiltanking]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:17.73Z","sequence":3440,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-66ba415b-9064-47e7-8e96-c3fd3378f284, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:17.733Z","sequence":3441,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-3a62ad59-098e-45d4-9849-664fd638845a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:17.737Z","sequence":3442,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oiltanking:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:17.737Z","sequence":3443,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oiltanking, device-id: 3536333500420028] for gateway [0008004BB60F]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:17.742Z","sequence":3444,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_oiltanking\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:17.742Z","sequence":3445,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oiltanking\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:17.745Z","sequence":3446,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ffa71091-a441-452e-b205-e842f5f9a18c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:19.831Z","sequence":3447,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF42755DDE4A981]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"94c62b7da5487f9f","parentId":"6f7b0df70942ec00","traceId":"00000000000000001251764ae6849314","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:19.85Z","sequence":3448,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF42755DDE4A981]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"94c62b7da5487f9f","parentId":"6f7b0df70942ec00","traceId":"00000000000000001251764ae6849314","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:20.197Z","sequence":3449,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_190900]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"102fe0e5cc5cc46c","parentId":"93187b56754e45aa","traceId":"000000000000000094871df50779a320","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:20.215Z","sequence":3450,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190900]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"102fe0e5cc5cc46c","parentId":"93187b56754e45aa","traceId":"000000000000000094871df50779a320","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:20.919Z","sequence":3451,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 67EB10A13901]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6af168ba276178f1","parentId":"7be243a7bd350f4a","traceId":"00000000000000008828dd9eefdf5861","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:20.939Z","sequence":3452,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 67EB10A13901, resource-version: c3a67a75-7717-4676-9c8c-b8abfd72ac6d]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6af168ba276178f1","parentId":"7be243a7bd350f4a","traceId":"00000000000000008828dd9eefdf5861","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:20.946Z","sequence":3453,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 67EB10A13901, resource-version: 7cf571d9-1930-4540-9875-6b06a3216fda]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6af168ba276178f1","parentId":"7be243a7bd350f4a","traceId":"00000000000000008828dd9eefdf5861","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:20.95Z","sequence":3454,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 67EB10A13901]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ab85d074ffebd522","parentId":"e5828e75b8716767","traceId":"00000000000000008828dd9eefdf5861","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:21.098Z","sequence":3455,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 67EB10A13901]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ab85d074ffebd522","parentId":"e5828e75b8716767","traceId":"00000000000000008828dd9eefdf5861","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:21.873Z","sequence":3456,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF3250F3547559E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cff0dc20a9df3b48","parentId":"2d3e787eb044f7aa","traceId":"0000000000000000a7214162fad654e1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:21.891Z","sequence":3457,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF3250F3547559E, resource-version: 03dfe519-c4fe-494c-a31f-b12520471ba3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cff0dc20a9df3b48","parentId":"2d3e787eb044f7aa","traceId":"0000000000000000a7214162fad654e1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:21.896Z","sequence":3458,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF3250F3547559E, resource-version: 0380b6f7-e39e-41e4-89a1-fd99706da0d1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cff0dc20a9df3b48","parentId":"2d3e787eb044f7aa","traceId":"0000000000000000a7214162fad654e1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:22.943Z","sequence":3459,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:22.944Z","sequence":3460,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:22.947Z","sequence":3461,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-8b63145a-191d-4cdb-93f3-94647e7db47d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:22.95Z","sequence":3462,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:22.95Z","sequence":3463,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-67EB10A13901]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:22.961Z","sequence":3464,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-b06e8cd8-9721-4595-acad-dda0fa5c368f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:23.079Z","sequence":3465,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:23.08Z","sequence":3466,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 67EB10A13901]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:23.085Z","sequence":3467,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-78222053-3c86-4725-9dd9-3b7bc52aa061, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:23.091Z","sequence":3468,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:23.091Z","sequence":3469,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF3250F3547559E] for gateway [67EB10A13901]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:23.097Z","sequence":3470,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:23.098Z","sequence":3471,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:23.32Z","sequence":3472,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-bf1a2252-680b-41fd-8a9c-50378f1eef70, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:23.321Z","sequence":3473,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:23.321Z","sequence":3474,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B2E] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:23.327Z","sequence":3475,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:23.327Z","sequence":3476,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:23.33Z","sequence":3477,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:23.33Z","sequence":3478,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB1000A74] for gateway [0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:23.336Z","sequence":3479,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b7dd4511-6a8c-40cd-a013-cc2f1042d4e6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:23.337Z","sequence":3480,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:23.337Z","sequence":3481,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:23.341Z","sequence":3482,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-575f958c-a785-44f7-a0a6-256887c9fb07, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:29.825Z","sequence":3483,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:29.825Z","sequence":3484,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B57] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:29.831Z","sequence":3485,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:29.831Z","sequence":3486,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:29.837Z","sequence":3487,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-adeed311-12fd-4d1f-a3ba-0302c8600edb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:30.972Z","sequence":3488,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/acta:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:30.972Z","sequence":3489,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: acta, device-id: 35343834003C0033] for gateway [0008004AAAA3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:30.978Z","sequence":3490,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.3.0\"\n },\n \"viaGroups\" : [ \"gateways_acta\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:30.979Z","sequence":3491,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_acta\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:30.981Z","sequence":3492,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5ad2f63d-1afa-4170-a3ae-17977b110aae, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:33.856Z","sequence":3493,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF3250F3547559E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"10130930df741841","parentId":"0b46234dcfa15a00","traceId":"0000000000000000ad27ac2bcaede44d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:33.908Z","sequence":3494,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF3250F3547559E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"10130930df741841","parentId":"0b46234dcfa15a00","traceId":"0000000000000000ad27ac2bcaede44d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:34.206Z","sequence":3495,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 67EB10A13901]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7266c5ef692e8cd1","parentId":"605ffc0e9eaa92fa","traceId":"000000000000000060a7f448477b092f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:34.253Z","sequence":3496,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 67EB10A13901]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7266c5ef692e8cd1","parentId":"605ffc0e9eaa92fa","traceId":"000000000000000060a7f448477b092f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:37.017Z","sequence":3497,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:37.017Z","sequence":3498,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10001DE] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:37.023Z","sequence":3499,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:0.4.1\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:37.023Z","sequence":3500,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:37.031Z","sequence":3501,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2fece5ef-a52e-4f92-8ae9-c2853aeeb4d4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:38.294Z","sequence":3502,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:38.294Z","sequence":3503,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 0008004C80F4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:38.3Z","sequence":3504,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-464d58a7-2dad-492d-a90a-8fb85fe1e342, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:46.527Z","sequence":3505,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:46.527Z","sequence":3506,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B92] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:46.532Z","sequence":3507,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:46.532Z","sequence":3508,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:46.539Z","sequence":3509,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b496b271-a5ab-4a20-ac8b-73be0c952e98, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:47.65Z","sequence":3510,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:47.651Z","sequence":3511,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: flint]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:47.653Z","sequence":3512,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-45fbb50e-9775-4d0d-ac17-c4ccdd64b2ca, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:47.656Z","sequence":3513,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/flint:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:47.656Z","sequence":3514,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: flint, type: hashed-password, auth-id: auth-flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:47.665Z","sequence":3515,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-b8ea804a-adda-4918-a534-07bdbaa1ae64, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:47.986Z","sequence":3516,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:47.987Z","sequence":3517,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10009C7] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:47.992Z","sequence":3518,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:47.993Z","sequence":3519,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:48Z","sequence":3520,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-613f20e9-2db3-4381-b716-75d14c7ddb4a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:50.488Z","sequence":3521,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oiltanking:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:50.488Z","sequence":3522,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oiltanking, device-id: 0008004BB60F]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:21:50.501Z","sequence":3523,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4c4a1352-b00d-4954-861f-1a6be371022c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:22:05.985Z","sequence":3524,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:22:05.985Z","sequence":3525,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: shell]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:22:05.988Z","sequence":3526,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-10f37e7e-f78a-49f8-a810-cf735426113d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:22:05.99Z","sequence":3527,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/shell:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:22:05.991Z","sequence":3528,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: shell, type: hashed-password, auth-id: auth-gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:22:06.002Z","sequence":3529,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-15d78e6a-ba6f-48d0-9d24-21625718801e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:22:06.12Z","sequence":3530,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:22:06.12Z","sequence":3531,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006A2] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:22:06.126Z","sequence":3532,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:22:06.126Z","sequence":3533,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:22:06.136Z","sequence":3534,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-361bdc66-f9a8-4f34-a59e-23fa6203b256, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:22:22.01Z","sequence":3535,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:22:22.01Z","sequence":3536,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001FC] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:22:22.016Z","sequence":3537,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:22:22.016Z","sequence":3538,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:22:22.019Z","sequence":3539,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-504b743c-3dc5-4625-96ff-4ed93cfcd6fc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:22:22.039Z","sequence":3540,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:22:22.04Z","sequence":3541,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:22:22.045Z","sequence":3542,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0936baae-1b8c-4505-a00c-02f71b8187d3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:22:22.048Z","sequence":3543,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:22:22.049Z","sequence":3544,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001FC] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:22:22.053Z","sequence":3545,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:22:22.053Z","sequence":3546,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:22:22.056Z","sequence":3547,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a60a6a27-caa5-4881-9911-cbe884a194d7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:22:22.691Z","sequence":3548,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:22:22.692Z","sequence":3549,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001943] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:22:22.698Z","sequence":3550,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:22:22.698Z","sequence":3551,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:22:22.705Z","sequence":3552,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b9e9b7c5-67a6-4872-81f0-441893fb6f6b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:22:27.66Z","sequence":3553,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:22:27.66Z","sequence":3554,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AF8] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:22:27.666Z","sequence":3555,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:22:27.666Z","sequence":3556,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:22:27.673Z","sequence":3557,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6eed0bd2-702a-45fd-bad3-d19f0458fe9a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:22:31.8Z","sequence":3558,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:22:31.8Z","sequence":3559,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006B9] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:22:31.808Z","sequence":3560,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:22:31.808Z","sequence":3561,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:22:31.815Z","sequence":3562,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4d28ae83-80ed-491b-929d-fa9cf83d44b1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:22:34.444Z","sequence":3563,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:22:34.444Z","sequence":3564,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B7A] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:22:34.45Z","sequence":3565,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:22:34.45Z","sequence":3566,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:22:34.458Z","sequence":3567,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5294fe35-bcdf-4fa2-b2f4-92e1e47bc85d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:22:36.834Z","sequence":3568,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/aloxy:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:22:36.835Z","sequence":3569,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: aloxy, device-id: 0008004A8F68]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:22:36.846Z","sequence":3570,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-02d1f09f-6c1d-446f-bdb6-542c693a4913, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:22:36.849Z","sequence":3571,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:22:36.849Z","sequence":3572,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: aloxy]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:22:36.852Z","sequence":3573,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-82b1fafa-cac2-4a47-a271-16623b3ae285, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:22:39.151Z","sequence":3574,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:22:39.151Z","sequence":3575,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000F86] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:22:39.157Z","sequence":3576,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:22:39.157Z","sequence":3577,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:22:39.167Z","sequence":3578,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-fdd486e0-c26f-4520-bba3-ed8635a1cb52, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:22:39.585Z","sequence":3579,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:22:39.585Z","sequence":3580,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B74] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:22:39.594Z","sequence":3581,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:22:39.594Z","sequence":3582,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:22:39.6Z","sequence":3583,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8e54275d-8bec-4a0b-97a1-03e642585e8a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:22:41.343Z","sequence":3584,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:22:41.343Z","sequence":3585,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100194D] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:22:41.349Z","sequence":3586,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:22:41.349Z","sequence":3587,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:22:41.355Z","sequence":3588,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-27c727ac-8c42-4f7e-b795-377392b31571, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:22:46.034Z","sequence":3589,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:22:46.035Z","sequence":3590,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BB613]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:22:46.04Z","sequence":3591,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-68e50a63-b9da-42da-8e71-c32fab07355c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:22:51.827Z","sequence":3592,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/acta:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:22:51.827Z","sequence":3593,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: acta, device-id: 0008004AAAA3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:22:51.846Z","sequence":3594,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-09c52ab3-90d7-48a7-bbb5-dc3122c0deab, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:22:52.909Z","sequence":3595,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:22:52.909Z","sequence":3596,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001B11] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:22:52.915Z","sequence":3597,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:22:52.915Z","sequence":3598,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:22:52.922Z","sequence":3599,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-81653ffc-1721-4c4b-9c67-0a7c9b92b54e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:03.166Z","sequence":3600,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:03.167Z","sequence":3601,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10001DF] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:03.19Z","sequence":3602,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:03.19Z","sequence":3603,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:03.243Z","sequence":3604,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-96bbbf1c-7c71-435a-bf6f-2fa58f97cdf4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:03.667Z","sequence":3605,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:03.668Z","sequence":3606,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: chevronsgp]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:03.681Z","sequence":3607,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-e2101b37-479b-4b02-8339-74c802fd2893, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:03.684Z","sequence":3608,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/chevronsgp:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:03.685Z","sequence":3609,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: chevronsgp, type: hashed-password, auth-id: auth-chevronsgp_42]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:03.756Z","sequence":3610,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-eaf87e7b-b537-49df-80f4-41711f5c8521, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:03.899Z","sequence":3611,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/chevronsgp:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:03.899Z","sequence":3612,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: chevronsgp, device-id: 70B3D57BB1000869] for gateway [gateway_chevronsgp_network_42]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:03.925Z","sequence":3613,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_chevronsgp\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:03.925Z","sequence":3614,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_chevronsgp\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:03.954Z","sequence":3615,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-19c42661-f4c9-4354-85c0-2b3bf1aeac93, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:04.004Z","sequence":3616,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:04.005Z","sequence":3617,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001947] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:04.018Z","sequence":3618,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:04.018Z","sequence":3619,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:04.025Z","sequence":3620,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5cc91cdf-353b-4d0b-b560-725e9d43ad45, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:04.246Z","sequence":3621,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_190902]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7472471da361e0f8","parentId":"c5ff7a33da4a74aa","traceId":"000000000000000070956f52ed5ac904","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:04.309Z","sequence":3622,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_190902, resource-version: aa467510-0989-4d3b-b750-d0b96ea7e859]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7472471da361e0f8","parentId":"c5ff7a33da4a74aa","traceId":"000000000000000070956f52ed5ac904","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:04.352Z","sequence":3623,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190902, resource-version: d1f1c6f0-b0bc-4019-9b0a-29bbfce2b916]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7472471da361e0f8","parentId":"c5ff7a33da4a74aa","traceId":"000000000000000070956f52ed5ac904","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:04.357Z","sequence":3624,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_190902]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"70f4c0ed55a944f6","parentId":"84556d8b10d312b6","traceId":"000000000000000070956f52ed5ac904","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:04.561Z","sequence":3625,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190902]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"70f4c0ed55a944f6","parentId":"84556d8b10d312b6","traceId":"000000000000000070956f52ed5ac904","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:05.742Z","sequence":3626,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFF7D6FA70A5A1B]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"dde813696a67c77e","parentId":"47f40e10685d1d1e","traceId":"000000000000000051ec0ea8d7215322","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:05.8Z","sequence":3627,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFF7D6FA70A5A1B, resource-version: 74e29242-6df8-4ecc-958a-42ce52c9ea7d]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"dde813696a67c77e","parentId":"47f40e10685d1d1e","traceId":"000000000000000051ec0ea8d7215322","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:05.814Z","sequence":3628,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFF7D6FA70A5A1B, resource-version: 4ca093bc-5b45-44a3-bf96-62feec45f1fa]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"dde813696a67c77e","parentId":"47f40e10685d1d1e","traceId":"000000000000000051ec0ea8d7215322","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:06.954Z","sequence":3629,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:06.954Z","sequence":3630,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_190902]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:06.993Z","sequence":3631,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-614b7b68-9f0f-43d1-b9c3-101e047d9ba2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:07.113Z","sequence":3632,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:07.113Z","sequence":3633,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFF7D6FA70A5A1B] for gateway [gateway_integrationtest_network_190902]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:07.114Z","sequence":3634,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:07.114Z","sequence":3635,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_190902]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:07.12Z","sequence":3636,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-886297ac-fe7f-4ddf-8a80-409d0e5f3582, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:07.12Z","sequence":3637,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:07.12Z","sequence":3638,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:07.379Z","sequence":3639,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-bbfeaab3-04d4-4ef5-ae76-2cf920186278, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:10.848Z","sequence":3640,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:10.849Z","sequence":3641,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: dow]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:10.852Z","sequence":3642,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-0cf03dad-73c3-4b30-b9ea-4efe24be9e67, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:10.854Z","sequence":3643,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/dow:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:10.854Z","sequence":3644,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: dow, type: hashed-password, auth-id: auth-gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:10.865Z","sequence":3645,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-4d36c25c-d7f4-4255-96f4-15451330a601, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:11.229Z","sequence":3646,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:11.23Z","sequence":3647,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 70B3D57BB100123E] for gateway [gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:11.235Z","sequence":3648,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:11.236Z","sequence":3649,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:11.241Z","sequence":3650,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-efc8b389-f7c7-4c1a-a73a-74ed460f21e1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:11.385Z","sequence":3651,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:11.385Z","sequence":3652,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001948] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:11.392Z","sequence":3653,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:11.392Z","sequence":3654,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:11.4Z","sequence":3655,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4b465e6a-f0c3-42ec-8a21-1190192de557, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:21.302Z","sequence":3656,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFF7D6FA70A5A1B]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5e24e56891aa138b","parentId":"3223b9f54b43c4a8","traceId":"00000000000000001415590d27996f09","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:21.392Z","sequence":3657,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFF7D6FA70A5A1B]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5e24e56891aa138b","parentId":"3223b9f54b43c4a8","traceId":"00000000000000001415590d27996f09","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:21.51Z","sequence":3658,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_190902]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1f1248d13f3869f8","parentId":"d38169f555458722","traceId":"00000000000000009185f138d5073661","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:21.548Z","sequence":3659,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190902]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1f1248d13f3869f8","parentId":"d38169f555458722","traceId":"00000000000000009185f138d5073661","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:22.001Z","sequence":3660,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 590B8A88022C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9196788023a087fb","parentId":"ad83b64cd07b78cc","traceId":"00000000000000006d4b65db8e31de7d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:22.036Z","sequence":3661,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 590B8A88022C, resource-version: 42ed3d27-dd8b-4af2-a942-465e7ea735af]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9196788023a087fb","parentId":"ad83b64cd07b78cc","traceId":"00000000000000006d4b65db8e31de7d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:22.043Z","sequence":3662,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 590B8A88022C, resource-version: 9a0e7298-04e7-47d9-adb8-73363596c49e]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9196788023a087fb","parentId":"ad83b64cd07b78cc","traceId":"00000000000000006d4b65db8e31de7d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:22.046Z","sequence":3663,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 590B8A88022C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cac7ccc109f56b07","parentId":"3cc54b0768b4a43f","traceId":"00000000000000006d4b65db8e31de7d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:22.197Z","sequence":3664,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 590B8A88022C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cac7ccc109f56b07","parentId":"3cc54b0768b4a43f","traceId":"00000000000000006d4b65db8e31de7d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:22.81Z","sequence":3665,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFAC84AE914C6CD]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a31b38a825b9bd66","parentId":"5b53e39e116ccd7c","traceId":"00000000000000007de5010e5636d0c1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:22.841Z","sequence":3666,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFAC84AE914C6CD, resource-version: 107e893a-1cbc-4177-8b7c-7640abbd27f3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a31b38a825b9bd66","parentId":"5b53e39e116ccd7c","traceId":"00000000000000007de5010e5636d0c1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:22.85Z","sequence":3667,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFAC84AE914C6CD, resource-version: 6b5f2cbf-f042-49e8-ac47-16c74448b6c7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a31b38a825b9bd66","parentId":"5b53e39e116ccd7c","traceId":"00000000000000007de5010e5636d0c1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:23.894Z","sequence":3668,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:23.894Z","sequence":3669,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-590B8A88022C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:23.904Z","sequence":3670,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-c687ca79-18df-42eb-84ec-7557bfc8cab7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:24.02Z","sequence":3671,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:24.02Z","sequence":3672,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 590B8A88022C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:24.025Z","sequence":3673,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1fc65448-52fc-4ee2-942b-de85c138cdaa, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:24.029Z","sequence":3674,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:24.029Z","sequence":3675,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFAC84AE914C6CD] for gateway [590B8A88022C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:24.034Z","sequence":3676,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:24.034Z","sequence":3677,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:24.266Z","sequence":3678,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-78bf473f-e5b8-4439-8564-1a9917d71479, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:27.156Z","sequence":3679,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:27.156Z","sequence":3680,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100016A] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:27.193Z","sequence":3681,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:27.193Z","sequence":3682,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:27.197Z","sequence":3683,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b9f39228-1e34-42c7-903f-6985be62e176, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:27.201Z","sequence":3684,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:27.202Z","sequence":3685,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100016A] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:27.206Z","sequence":3686,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:27.206Z","sequence":3687,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:27.209Z","sequence":3688,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-458eea42-2626-42e3-b967-69e38a3255f8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:30.141Z","sequence":3689,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:30.141Z","sequence":3690,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:30.147Z","sequence":3691,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9fdbd38e-fad2-4258-8867-8848745db6af, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:31.46Z","sequence":3692,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:31.46Z","sequence":3693,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10009BF] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:31.46Z","sequence":3694,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:31.461Z","sequence":3695,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:31.487Z","sequence":3696,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:31.487Z","sequence":3697,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:31.487Z","sequence":3698,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a30b1035-1d42-4e55-b8b0-9ddefc776515, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:31.492Z","sequence":3699,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ce5c970d-f8d0-4919-a88b-0f7cc1ad1da8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:34.138Z","sequence":3700,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:34.138Z","sequence":3701,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000170] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:34.145Z","sequence":3702,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:34.145Z","sequence":3703,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:34.149Z","sequence":3704,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f776b3ec-bdbd-46eb-b603-2ae0adec8cdc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:34.162Z","sequence":3705,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:34.162Z","sequence":3706,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000170] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:34.168Z","sequence":3707,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:34.168Z","sequence":3708,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:34.171Z","sequence":3709,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-879d3ce9-6519-4a2f-b854-32f88beded5b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:35.548Z","sequence":3710,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFAC84AE914C6CD]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"63b06f429506fa18","parentId":"815838c298e4cd57","traceId":"00000000000000000b48af57cda5b7e0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:35.648Z","sequence":3711,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFAC84AE914C6CD]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"63b06f429506fa18","parentId":"815838c298e4cd57","traceId":"00000000000000000b48af57cda5b7e0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:35.944Z","sequence":3712,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 590B8A88022C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0d76b0662c35b608","parentId":"f3ba22f83743091f","traceId":"0000000000000000a7306226f69fefdd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:35.995Z","sequence":3713,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 590B8A88022C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0d76b0662c35b608","parentId":"f3ba22f83743091f","traceId":"0000000000000000a7306226f69fefdd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:39.952Z","sequence":3714,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:39.952Z","sequence":3715,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100018D] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:39.957Z","sequence":3716,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:39.958Z","sequence":3717,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:39.961Z","sequence":3718,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b5fd16f1-9e4b-41cb-89ce-e799749d4dcc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:39.973Z","sequence":3719,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:39.973Z","sequence":3720,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100018D] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:39.979Z","sequence":3721,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:39.979Z","sequence":3722,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:39.982Z","sequence":3723,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-230d223a-e45d-46b9-8aab-5bcfc0b07df4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:40.128Z","sequence":3724,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/repsol:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:40.128Z","sequence":3725,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: repsol, device-id: 0008004A37FF]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:40.134Z","sequence":3726,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6bca5f13-1489-4101-86d2-7534792edae6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:40.137Z","sequence":3727,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:40.137Z","sequence":3728,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: repsol]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:40.14Z","sequence":3729,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-3826b245-05a4-4971-a085-3a2908873adf, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:54.376Z","sequence":3730,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:54.376Z","sequence":3731,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B79] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:54.405Z","sequence":3732,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:54.405Z","sequence":3733,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:54.505Z","sequence":3734,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7c24d4e6-2cf2-4eb4-9c7e-a2421d5bfeca, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:57.392Z","sequence":3735,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:57.393Z","sequence":3736,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000575] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:57.398Z","sequence":3737,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:57.398Z","sequence":3738,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:57.404Z","sequence":3739,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3c0ab61a-b96c-4b4a-a1b0-00db9f1d6663, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:59.198Z","sequence":3740,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:59.198Z","sequence":3741,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 0008004B51D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:59.206Z","sequence":3742,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-033bf02e-a580-4b5f-833c-bb25714f0e2f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:59.208Z","sequence":3743,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:59.209Z","sequence":3744,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: dow]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:23:59.211Z","sequence":3745,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-12a14670-124e-4c82-a4da-37e839c919d7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:24:05.815Z","sequence":3746,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:24:05.815Z","sequence":3747,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oci]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:24:05.821Z","sequence":3748,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-456df00a-6fb4-420a-b681-390977ce2a94, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:24:05.833Z","sequence":3749,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:24:05.833Z","sequence":3750,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100015F] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:24:05.839Z","sequence":3751,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:24:05.839Z","sequence":3752,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:24:05.847Z","sequence":3753,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-053002e4-659b-4792-8806-62a2256f22a1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:24:05.932Z","sequence":3754,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:24:05.932Z","sequence":3755,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100015F] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:24:05.978Z","sequence":3756,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:24:05.979Z","sequence":3757,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:24:05.987Z","sequence":3758,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b1c6f6e0-6d7c-4ae3-bc7b-2e033558191f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:24:11.571Z","sequence":3759,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:24:11.572Z","sequence":3760,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10009CC] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:24:11.6Z","sequence":3761,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:24:11.6Z","sequence":3762,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:24:11.652Z","sequence":3763,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0025c93a-f16c-41ec-9db6-138aad2c3c6c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:24:15.878Z","sequence":3764,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:24:15.878Z","sequence":3765,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AC6] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:24:15.879Z","sequence":3766,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:24:15.879Z","sequence":3767,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:24:15.898Z","sequence":3768,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-289f73ea-b9d7-4142-b06d-890dac0dd076, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:24:15.898Z","sequence":3769,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:24:15.898Z","sequence":3770,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:24:15.949Z","sequence":3771,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-256ead53-b2ec-431d-a0ca-675c50bbe944, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:24:35.443Z","sequence":3772,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:24:35.443Z","sequence":3773,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: ineos]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:24:35.448Z","sequence":3774,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-f32ba7cf-4f9a-4c70-95d5-573ee8096494, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:24:35.454Z","sequence":3775,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:24:35.454Z","sequence":3776,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB1000A8D] for gateway [0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:24:35.497Z","sequence":3777,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:24:35.497Z","sequence":3778,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:24:35.501Z","sequence":3779,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5880d18f-9ee7-4937-84ff-3d41e34c5fd1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:24:35.693Z","sequence":3780,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:24:35.693Z","sequence":3781,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B6A] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:24:35.805Z","sequence":3782,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:24:35.805Z","sequence":3783,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:24:35.894Z","sequence":3784,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9a6c5abc-b58b-4ea9-bc8f-6606c9835c3a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:24:37.69Z","sequence":3785,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/conditionall:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:24:37.69Z","sequence":3786,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: conditionall, device-id: 0008004B512D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:24:37.698Z","sequence":3787,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6bf5b1f2-e84d-4c1d-afff-4ce3b42e1515, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:24:37.701Z","sequence":3788,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:24:37.701Z","sequence":3789,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: conditionall]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:24:37.704Z","sequence":3790,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-799da497-2d1f-40d0-9c02-878f4fd5f266, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:24:45.733Z","sequence":3791,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:24:45.733Z","sequence":3792,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A04] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:24:45.757Z","sequence":3793,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:24:45.757Z","sequence":3794,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:24:45.801Z","sequence":3795,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9fd72a28-a810-4ab7-83a6-3b3a6ca8c810, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:24:51.58Z","sequence":3796,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:24:51.58Z","sequence":3797,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100015B] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:24:51.588Z","sequence":3798,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:0.4.1\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:24:51.589Z","sequence":3799,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:24:51.645Z","sequence":3800,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-39e56cf9-d1fa-4331-89a5-b90cc00fee02, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:24:54.336Z","sequence":3801,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:24:54.336Z","sequence":3802,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: arkema]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:24:54.344Z","sequence":3803,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-f67db13c-6eb2-462f-b6fa-bfa4018bc0ac, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:24:54.346Z","sequence":3804,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/arkema:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:24:54.347Z","sequence":3805,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: arkema, device-id: 70B3D57BB10012FF] for gateway [0008004AE119]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:24:54.352Z","sequence":3806,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_arkema\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:24:54.353Z","sequence":3807,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_arkema\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:24:54.355Z","sequence":3808,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8c9a3240-da2d-4858-bce1-21659193e5a6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:24:55.709Z","sequence":3809,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:24:55.709Z","sequence":3810,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006B7] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:24:55.716Z","sequence":3811,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:24:55.716Z","sequence":3812,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:24:55.723Z","sequence":3813,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-aa31ed9b-3146-47c7-9dbc-6829639e9c4f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:24:58.145Z","sequence":3814,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:24:58.145Z","sequence":3815,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: terega]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:24:58.149Z","sequence":3816,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-fd7f934b-88a8-4e79-9b72-561e12b98c63, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:24:58.151Z","sequence":3817,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/terega:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:24:58.151Z","sequence":3818,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: terega, type: hashed-password, auth-id: auth-gateway_terega_network_27]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:24:58.167Z","sequence":3819,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-a4ee6a2d-0069-4d5f-9620-f9603f87dda1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:24:58.292Z","sequence":3820,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/terega:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:24:58.292Z","sequence":3821,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: terega, device-id: 39383837002F0030] for gateway [gateway_terega_network_27]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:24:58.293Z","sequence":3822,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/terega:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:24:58.293Z","sequence":3823,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: terega, device-id: gateway_terega_network_27]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:24:58.309Z","sequence":3824,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_terega\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:24:58.309Z","sequence":3825,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_terega\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:24:58.31Z","sequence":3826,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3de99a05-5df8-4898-82ab-39e7b851e508, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:24:58.338Z","sequence":3827,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-aa7a9edb-9ebe-4a38-acda-9bd7f549f4e5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:04.238Z","sequence":3828,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_190904]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"478dcd5ac0bf4560","parentId":"654394de4afd161d","traceId":"0000000000000000f2f4255da086e184","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:04.354Z","sequence":3829,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_190904, resource-version: a9bb05a5-8c30-4fcb-8e88-652210890935]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"478dcd5ac0bf4560","parentId":"654394de4afd161d","traceId":"0000000000000000f2f4255da086e184","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:04.366Z","sequence":3830,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190904, resource-version: bff0d099-7f1d-49dd-ab5e-157e858aed41]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"478dcd5ac0bf4560","parentId":"654394de4afd161d","traceId":"0000000000000000f2f4255da086e184","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:04.37Z","sequence":3831,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_190904]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"14ad786087675555","parentId":"98764685e4291db0","traceId":"0000000000000000f2f4255da086e184","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:04.556Z","sequence":3832,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190904]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"14ad786087675555","parentId":"98764685e4291db0","traceId":"0000000000000000f2f4255da086e184","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:05.241Z","sequence":3833,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:05.241Z","sequence":3834,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AB0] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:05.247Z","sequence":3835,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:05.247Z","sequence":3836,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:05.258Z","sequence":3837,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-be9a5ae6-1c99-4b84-8f5f-c042b9164aa9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:05.516Z","sequence":3838,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF4CDA45978AB99]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b2237828e5b5f7be","parentId":"21aa526acd93c965","traceId":"000000000000000049bbcb058b7b417c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:05.535Z","sequence":3839,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF4CDA45978AB99, resource-version: 76c64c69-b934-4203-a2f5-9f64c6fa3e25]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b2237828e5b5f7be","parentId":"21aa526acd93c965","traceId":"000000000000000049bbcb058b7b417c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:05.545Z","sequence":3840,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF4CDA45978AB99, resource-version: 59340bf7-384e-4c03-b71b-600c16bc188c]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b2237828e5b5f7be","parentId":"21aa526acd93c965","traceId":"000000000000000049bbcb058b7b417c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:06.612Z","sequence":3841,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:06.612Z","sequence":3842,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:06.616Z","sequence":3843,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-5c90767a-8b4d-4bd5-bc2e-585d2af2d798, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:06.625Z","sequence":3844,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:06.625Z","sequence":3845,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_190904]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:06.642Z","sequence":3846,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-40bb4e7b-58b6-4aa3-877d-d163a8f7ac14, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:06.785Z","sequence":3847,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:06.785Z","sequence":3848,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF4CDA45978AB99] for gateway [gateway_integrationtest_network_190904]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:06.785Z","sequence":3849,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:06.785Z","sequence":3850,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_190904]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:06.796Z","sequence":3851,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ed03833e-d599-4986-b244-f2eb75306cf1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:06.797Z","sequence":3852,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:06.797Z","sequence":3853,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:07.123Z","sequence":3854,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-58bfa751-5a48-42cb-99ee-b3977ac4a862, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:08.984Z","sequence":3855,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:08.984Z","sequence":3856,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: shell]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:08.99Z","sequence":3857,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-7a5f6f43-06ed-45f2-a807-8287f1bb0979, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:08.993Z","sequence":3858,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/shell:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:08.993Z","sequence":3859,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: shell, type: hashed-password, auth-id: auth-gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:09.006Z","sequence":3860,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-0d02de05-dd89-436c-ba22-fd357b7877a3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:09.138Z","sequence":3861,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:09.138Z","sequence":3862,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AB6] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:09.145Z","sequence":3863,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:09.145Z","sequence":3864,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:09.152Z","sequence":3865,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4803d4a3-7c1e-4615-8b97-c6a06622ab6b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:13.117Z","sequence":3866,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:13.117Z","sequence":3867,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BB84C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:13.14Z","sequence":3868,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-599af88b-ee8f-40b7-819c-c952149b547d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:13.144Z","sequence":3869,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:13.144Z","sequence":3870,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: lanxess]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:13.149Z","sequence":3871,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-d3d74728-fd18-494c-aaf7-e4b6ab3cd684, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:13.397Z","sequence":3872,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:13.397Z","sequence":3873,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006D0] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:13.425Z","sequence":3874,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:13.425Z","sequence":3875,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:13.432Z","sequence":3876,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0e5ccb26-082a-40c7-a7b9-875695c24a0e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:15.105Z","sequence":3877,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:15.105Z","sequence":3878,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100016D] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:15.146Z","sequence":3879,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:15.146Z","sequence":3880,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:15.149Z","sequence":3881,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-307aa6d0-27da-4b61-a24e-6c537860f15b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:15.159Z","sequence":3882,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:15.159Z","sequence":3883,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100016D] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:15.165Z","sequence":3884,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:15.166Z","sequence":3885,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:15.173Z","sequence":3886,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-818c1461-c916-41d4-96f5-fffd27c84208, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:15.424Z","sequence":3887,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:15.424Z","sequence":3888,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 0008004B5135]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:15.459Z","sequence":3889,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6555717a-7a9f-4f87-aca1-ae255acacdd1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:15.82Z","sequence":3890,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:15.821Z","sequence":3891,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AB7] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:15.839Z","sequence":3892,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:15.839Z","sequence":3893,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:15.851Z","sequence":3894,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-cbc8f06b-49af-4b74-b84c-ab64ee62a59b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:17.485Z","sequence":3895,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:17.485Z","sequence":3896,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001EB] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:17.493Z","sequence":3897,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:17.493Z","sequence":3898,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:17.497Z","sequence":3899,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0ae81d2a-c57e-43cc-8223-353839a71b17, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:17.53Z","sequence":3900,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:17.53Z","sequence":3901,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001EB] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:17.536Z","sequence":3902,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:17.536Z","sequence":3903,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:17.541Z","sequence":3904,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7913fd9b-5b44-4214-8bd0-71d15e6fd16b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:18.262Z","sequence":3905,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:18.263Z","sequence":3906,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BBD1B]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:18.301Z","sequence":3907,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-df6cd1d5-89fd-479a-a155-012e28b23f85, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:21.262Z","sequence":3908,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF4CDA45978AB99]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"026e50de3f84685a","parentId":"424e89aee2e9f407","traceId":"000000000000000002e342c38b95220c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:21.297Z","sequence":3909,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF4CDA45978AB99]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"026e50de3f84685a","parentId":"424e89aee2e9f407","traceId":"000000000000000002e342c38b95220c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:21.577Z","sequence":3910,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_190904]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"40e36e16a65612a1","parentId":"997e1f97816fe6d0","traceId":"00000000000000005e4869467c6645a3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:21.606Z","sequence":3911,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190904]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"40e36e16a65612a1","parentId":"997e1f97816fe6d0","traceId":"00000000000000005e4869467c6645a3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:22.107Z","sequence":3912,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 36C9201EB3BB]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a8900330848c4d8a","parentId":"23e7e0403538808a","traceId":"000000000000000012dc437dbc2aa368","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:22.154Z","sequence":3913,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 36C9201EB3BB, resource-version: 7aecdbed-49f2-4dcc-8634-4711308534a5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a8900330848c4d8a","parentId":"23e7e0403538808a","traceId":"000000000000000012dc437dbc2aa368","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:22.193Z","sequence":3914,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 36C9201EB3BB, resource-version: 483590d5-b04c-4bb4-ba51-db89749674e0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a8900330848c4d8a","parentId":"23e7e0403538808a","traceId":"000000000000000012dc437dbc2aa368","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:22.197Z","sequence":3915,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 36C9201EB3BB]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4d30d7529b6003db","parentId":"d2f405de7045ec29","traceId":"000000000000000012dc437dbc2aa368","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:22.288Z","sequence":3916,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:22.288Z","sequence":3917,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001ABF] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:22.293Z","sequence":3918,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:22.293Z","sequence":3919,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:22.305Z","sequence":3920,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-df93e81d-027d-4d62-b126-5a26e277b9fb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:22.356Z","sequence":3921,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 36C9201EB3BB]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4d30d7529b6003db","parentId":"d2f405de7045ec29","traceId":"000000000000000012dc437dbc2aa368","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:23.101Z","sequence":3922,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF2AB2A882744F3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1de787157b15bf2a","parentId":"c5447c3432846d8c","traceId":"00000000000000002a6fe4430dee09c7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:23.14Z","sequence":3923,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF2AB2A882744F3, resource-version: 1875c96d-5ac8-4fdc-8fe2-e3ed79930ffe]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1de787157b15bf2a","parentId":"c5447c3432846d8c","traceId":"00000000000000002a6fe4430dee09c7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:23.189Z","sequence":3924,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF2AB2A882744F3, resource-version: b28aeec1-bf7d-4664-9695-ac96fa4c5eb9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1de787157b15bf2a","parentId":"c5447c3432846d8c","traceId":"00000000000000002a6fe4430dee09c7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:24.386Z","sequence":3925,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:24.387Z","sequence":3926,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:24.39Z","sequence":3927,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-80fe16ae-331e-46c1-9e10-607f79559899, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:24.395Z","sequence":3928,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:24.395Z","sequence":3929,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-36C9201EB3BB]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:24.408Z","sequence":3930,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-b5fb5c62-4de2-4b49-96e0-2fea3a631dd2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:24.541Z","sequence":3931,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:24.541Z","sequence":3932,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 36C9201EB3BB]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:24.546Z","sequence":3933,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/arkema:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:24.547Z","sequence":3934,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: arkema, device-id: 0008004AE119]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:24.547Z","sequence":3935,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ed0c5bfd-e6e1-453b-ad63-9a5e5d76ded5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:24.551Z","sequence":3936,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:24.551Z","sequence":3937,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF2AB2A882744F3] for gateway [36C9201EB3BB]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:24.552Z","sequence":3938,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-624835a2-efb1-46fe-a91d-1875b9b2b9c3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:24.556Z","sequence":3939,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:24.556Z","sequence":3940,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:24.843Z","sequence":3941,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2f32cb00-66c8-4532-95c9-aee716384ad2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:30.376Z","sequence":3942,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:30.376Z","sequence":3943,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: flint]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:30.38Z","sequence":3944,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-45e90f7f-6d42-4f93-98a6-a518e19a63b0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:30.384Z","sequence":3945,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/flint:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:30.384Z","sequence":3946,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: flint, type: hashed-password, auth-id: auth-flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:30.399Z","sequence":3947,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-9cc7354d-35e6-455f-9a15-113cc505af78, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:30.528Z","sequence":3948,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:30.528Z","sequence":3949,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10008A9] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:30.534Z","sequence":3950,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:30.534Z","sequence":3951,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:30.537Z","sequence":3952,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-283e0c54-26b5-4f9b-8026-49101dda9dc4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:33.132Z","sequence":3953,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:33.132Z","sequence":3954,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BBD1C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:33.138Z","sequence":3955,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b772c277-7c1f-4bd5-9810-b5b4c56035fb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:38.656Z","sequence":3956,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF2AB2A882744F3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fde4c336c6482214","parentId":"002787f0c04ad116","traceId":"00000000000000003ac696a064fbeaea","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:38.693Z","sequence":3957,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF2AB2A882744F3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fde4c336c6482214","parentId":"002787f0c04ad116","traceId":"00000000000000003ac696a064fbeaea","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:38.972Z","sequence":3958,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 36C9201EB3BB]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"83bcd38c8fc8bfac","parentId":"bf3080ceedfd80f6","traceId":"00000000000000007b486ee2967a9682","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:38.995Z","sequence":3959,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 36C9201EB3BB]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"83bcd38c8fc8bfac","parentId":"bf3080ceedfd80f6","traceId":"00000000000000007b486ee2967a9682","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:40.728Z","sequence":3960,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:40.728Z","sequence":3961,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B71] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:40.734Z","sequence":3962,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:40.734Z","sequence":3963,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:40.751Z","sequence":3964,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6c5d3313-0b12-4b5f-9cd3-76621ba88358, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:48.185Z","sequence":3965,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:48.185Z","sequence":3966,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: exxon]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:48.191Z","sequence":3967,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-974405e2-aed6-4781-9a5c-74258cc8322e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:48.193Z","sequence":3968,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/exxon:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:48.193Z","sequence":3969,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: exxon, type: hashed-password, auth-id: auth-gateway_exxon_network_2559]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:48.245Z","sequence":3970,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-e1daad8c-9d35-48ec-9a29-15e67f28e036, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:48.363Z","sequence":3971,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/exxon:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:48.363Z","sequence":3972,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: exxon, device-id: 70B3D57BB1000B38] for gateway [gateway_exxon_network_2559]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:48.364Z","sequence":3973,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/exxon:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:48.364Z","sequence":3974,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: exxon, device-id: gateway_exxon_network_2559]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:48.373Z","sequence":3975,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ab00063d-5c86-4076-b343-a3e67a11be5b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:48.373Z","sequence":3976,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_exxon\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:48.373Z","sequence":3977,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_exxon\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:48.376Z","sequence":3978,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ff6a7984-bc84-4e12-b71b-b8fbf3e11a76, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:51.516Z","sequence":3979,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:51.516Z","sequence":3980,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AAD] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:51.524Z","sequence":3981,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:51.524Z","sequence":3982,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:51.533Z","sequence":3983,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3b0ff7c8-1e48-464f-89f2-a4e5683fc75d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:52.662Z","sequence":3984,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:52.662Z","sequence":3985,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AB4] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:52.668Z","sequence":3986,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:52.668Z","sequence":3987,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:52.674Z","sequence":3988,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-bba5ca91-a5f6-4f1e-b49d-e35f37753b91, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:54.867Z","sequence":3989,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:54.868Z","sequence":3990,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AB8] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:54.881Z","sequence":3991,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:54.881Z","sequence":3992,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:54.887Z","sequence":3993,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-44b74a80-e3df-45e7-932b-c51214a0708d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:58.551Z","sequence":3994,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:58.552Z","sequence":3995,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000F83] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:58.557Z","sequence":3996,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:58.557Z","sequence":3997,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:58.563Z","sequence":3998,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a032079c-11ea-4539-bf36-03020f532177, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:25:58.789Z","sequence":3999,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"retrieving device [tenant: shell, device-id: 70B3D57BB1000F83]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"78a7b9ac2df81852","parentId":"beb81b8e086e9181","traceId":"f9d7c38ebf13d1ece8dba62b2a7a699d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:26:06.999Z","sequence":4000,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:26:06.999Z","sequence":4001,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:26:07.006Z","sequence":4002,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c5d83bf9-98bd-4b85-a5b3-bcdbdab4d7c6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:26:09.241Z","sequence":4003,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:26:09.241Z","sequence":4004,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB1000B1C] for gateway [0008004B5135]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:26:09.247Z","sequence":4005,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:26:09.247Z","sequence":4006,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:26:09.25Z","sequence":4007,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e4dfd714-6a39-41bd-b0fe-f1f94b51d3c5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:26:09.298Z","sequence":4008,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:26:09.298Z","sequence":4009,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AA8] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:26:09.305Z","sequence":4010,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:26:09.305Z","sequence":4011,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:26:09.313Z","sequence":4012,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-58a5f560-3fec-498e-a59a-870973752e68, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:26:12.329Z","sequence":4013,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:26:12.329Z","sequence":4014,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006CB] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:26:12.338Z","sequence":4015,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.8.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:26:12.338Z","sequence":4016,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:26:12.344Z","sequence":4017,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-44204625-fe0b-4c9f-afc1-ccd8619c41a4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:26:12.79Z","sequence":4018,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/arkema:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:26:12.79Z","sequence":4019,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: arkema, device-id: 70B3D57BB1001301] for gateway [0008004AE119]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:26:12.797Z","sequence":4020,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_arkema\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:26:12.797Z","sequence":4021,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_arkema\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:26:12.801Z","sequence":4022,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d61f085c-7c23-43e6-8b32-86c88ae3626e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:26:30.949Z","sequence":4023,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:26:30.949Z","sequence":4024,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000500] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:26:30.954Z","sequence":4025,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:26:30.954Z","sequence":4026,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:26:30.961Z","sequence":4027,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-139ccb1e-da03-46bc-b879-7559e6569c46, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:26:31.41Z","sequence":4028,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:26:31.41Z","sequence":4029,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AA6] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:26:31.417Z","sequence":4030,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:26:31.417Z","sequence":4031,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:26:31.424Z","sequence":4032,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2090cd39-81a4-4cf2-a52d-786f4c068a9a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:26:40.059Z","sequence":4033,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:26:40.059Z","sequence":4034,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 0008004C80F4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:26:40.066Z","sequence":4035,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a5ded6c8-8206-474b-88b6-cc5937b011e4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:26:40.651Z","sequence":4036,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:26:40.651Z","sequence":4037,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: repsol]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:26:40.654Z","sequence":4038,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-761b73d6-ff74-499d-b8c4-4b4857013d9c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:26:40.657Z","sequence":4039,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/repsol:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:26:40.657Z","sequence":4040,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: repsol, device-id: 70B3D57BB1000207] for gateway [0008004A37FF]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:26:40.663Z","sequence":4041,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:0.4.1\"\n },\n \"viaGroups\" : [ \"gateways_repsol\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:26:40.663Z","sequence":4042,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_repsol\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:26:40.667Z","sequence":4043,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8d34df7c-a8c1-464b-80da-894be7def0e4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:26:42.76Z","sequence":4044,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:26:42.76Z","sequence":4045,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000ADB] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:26:42.765Z","sequence":4046,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:26:42.765Z","sequence":4047,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:26:42.772Z","sequence":4048,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f2461f30-67db-4dac-8aab-9155be01b96e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:26:50.776Z","sequence":4049,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:26:50.776Z","sequence":4050,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB100080A] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:26:50.789Z","sequence":4051,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:26:50.79Z","sequence":4052,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:26:50.795Z","sequence":4053,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-353b40c7-4a1d-4b59-8262-869cb8068a55, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:26:51.687Z","sequence":4054,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:26:51.687Z","sequence":4055,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001C1] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:26:51.692Z","sequence":4056,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:26:51.693Z","sequence":4057,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001C1] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:26:51.701Z","sequence":4058,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:26:51.701Z","sequence":4059,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:26:51.702Z","sequence":4060,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:26:51.702Z","sequence":4061,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:26:51.709Z","sequence":4062,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-cd070d02-a10e-4d6a-a63a-7dcbea3ef0a8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:26:51.709Z","sequence":4063,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0fe62613-f155-4029-a98c-242cbbc4c46f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:26:51.727Z","sequence":4064,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:26:51.727Z","sequence":4065,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100056E] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:26:51.737Z","sequence":4066,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:26:51.737Z","sequence":4067,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:26:51.746Z","sequence":4068,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4b9d9391-3092-438b-8853-addbc154ecbb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:26:52.312Z","sequence":4069,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oiltanking:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:26:52.313Z","sequence":4070,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oiltanking, device-id: 0008004BB60F]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:26:52.321Z","sequence":4071,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a515d110-eb91-44d4-b406-a66426902a40, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:26:52.329Z","sequence":4072,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:26:52.329Z","sequence":4073,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oiltanking]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:26:52.339Z","sequence":4074,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-0bcdd649-04a5-4f05-ba39-d175d12aedaa, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:26:53.935Z","sequence":4075,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:26:53.936Z","sequence":4076,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AAE] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:26:53.941Z","sequence":4077,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:26:53.941Z","sequence":4078,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:26:53.948Z","sequence":4079,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-10414467-b5d8-4951-bcb6-fcad16264bf1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:26:58.59Z","sequence":4080,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:26:58.59Z","sequence":4081,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BBF] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:26:58.596Z","sequence":4082,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:26:58.596Z","sequence":4083,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:26:58.602Z","sequence":4084,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ca8458f8-5ccd-48e2-8066-9d404b6008a3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:04.331Z","sequence":4085,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_190906]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6b6d2530eb3ab80e","parentId":"3f27cc296ae49e5a","traceId":"000000000000000021d6564d660fe233","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:04.356Z","sequence":4086,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_190906, resource-version: f91798a3-094c-4755-b0bd-101596fe7fcb]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6b6d2530eb3ab80e","parentId":"3f27cc296ae49e5a","traceId":"000000000000000021d6564d660fe233","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:04.363Z","sequence":4087,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190906, resource-version: c6894d9c-c7e7-43b8-af6b-3a79a66b7765]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6b6d2530eb3ab80e","parentId":"3f27cc296ae49e5a","traceId":"000000000000000021d6564d660fe233","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:04.367Z","sequence":4088,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_190906]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"168d2b6cb06819d1","parentId":"5a3ad88ac1c9c266","traceId":"000000000000000021d6564d660fe233","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:04.481Z","sequence":4089,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190906]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"168d2b6cb06819d1","parentId":"5a3ad88ac1c9c266","traceId":"000000000000000021d6564d660fe233","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:05.331Z","sequence":4090,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFDD128658CE078]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f4e12efc0b7bd51b","parentId":"e720a80a1f91afc9","traceId":"000000000000000058ee42739638ed8b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:05.349Z","sequence":4091,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFDD128658CE078, resource-version: 2c193539-5de6-4819-9856-8cf7a3ebf2f1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f4e12efc0b7bd51b","parentId":"e720a80a1f91afc9","traceId":"000000000000000058ee42739638ed8b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:05.358Z","sequence":4092,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFDD128658CE078, resource-version: 5cf5a721-612b-479f-8032-adf19c842503]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f4e12efc0b7bd51b","parentId":"e720a80a1f91afc9","traceId":"000000000000000058ee42739638ed8b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:06.425Z","sequence":4093,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:06.425Z","sequence":4094,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_190906]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:06.436Z","sequence":4095,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-25787f63-6a7b-43f4-a278-b947ccc5a364, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:06.562Z","sequence":4096,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:06.562Z","sequence":4097,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDD128658CE078] for gateway [gateway_integrationtest_network_190906]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:06.563Z","sequence":4098,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:06.563Z","sequence":4099,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_190906]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:06.569Z","sequence":4100,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-296814a3-51dc-4a17-ab91-3e49714b2e39, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:06.57Z","sequence":4101,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:06.57Z","sequence":4102,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:06.768Z","sequence":4103,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5082222c-1afd-4957-8777-1336f43bbf99, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:12.355Z","sequence":4104,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:12.355Z","sequence":4105,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10002D2] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:12.365Z","sequence":4106,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:12.365Z","sequence":4107,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:12.369Z","sequence":4108,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6507e206-c914-4b85-bb68-e7ca6793c9a5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:17.853Z","sequence":4109,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFDD128658CE078]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b7f5aca818844794","parentId":"a222b33d77a981f8","traceId":"00000000000000004fa05a397fe7d103","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:17.868Z","sequence":4110,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFDD128658CE078]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b7f5aca818844794","parentId":"a222b33d77a981f8","traceId":"00000000000000004fa05a397fe7d103","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:18.203Z","sequence":4111,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_190906]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cbbe1fceab7b1ceb","parentId":"63c787672131c84b","traceId":"0000000000000000c1634c6f79c192c2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:18.218Z","sequence":4112,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190906]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cbbe1fceab7b1ceb","parentId":"63c787672131c84b","traceId":"0000000000000000c1634c6f79c192c2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:18.824Z","sequence":4113,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 8B7BB8CC9FB4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"32ba4ecd41b25a43","parentId":"08ba02daa0aeff58","traceId":"00000000000000004ba97ce0f4a49b55","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:18.845Z","sequence":4114,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 8B7BB8CC9FB4, resource-version: 3c8e2f75-3a9a-4988-944f-8b2e0bb1acd7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"32ba4ecd41b25a43","parentId":"08ba02daa0aeff58","traceId":"00000000000000004ba97ce0f4a49b55","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:18.853Z","sequence":4115,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 8B7BB8CC9FB4, resource-version: c90170c7-2355-4dfc-b91b-b86832b7093e]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"32ba4ecd41b25a43","parentId":"08ba02daa0aeff58","traceId":"00000000000000004ba97ce0f4a49b55","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:18.859Z","sequence":4116,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 8B7BB8CC9FB4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"347f7fc285832642","parentId":"bd834d018f5fba3d","traceId":"00000000000000004ba97ce0f4a49b55","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:19.043Z","sequence":4117,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 8B7BB8CC9FB4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"347f7fc285832642","parentId":"bd834d018f5fba3d","traceId":"00000000000000004ba97ce0f4a49b55","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:19.624Z","sequence":4118,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF9034135DF6467]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d7cad3f376ae28b1","parentId":"bb78b9f8ed50314f","traceId":"0000000000000000110df0ddb4d601a4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:19.65Z","sequence":4119,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF9034135DF6467, resource-version: 4eb29bc2-e280-433e-8526-f1421276937e]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d7cad3f376ae28b1","parentId":"bb78b9f8ed50314f","traceId":"0000000000000000110df0ddb4d601a4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:19.656Z","sequence":4120,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF9034135DF6467, resource-version: 56ad0106-0981-41ea-b464-96d613e0e45c]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d7cad3f376ae28b1","parentId":"bb78b9f8ed50314f","traceId":"0000000000000000110df0ddb4d601a4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:20.255Z","sequence":4121,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:20.256Z","sequence":4122,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B36] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:20.261Z","sequence":4123,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:20.261Z","sequence":4124,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:20.269Z","sequence":4125,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3c3fcec5-d9be-46fa-bb25-198925832d89, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:20.704Z","sequence":4126,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:20.704Z","sequence":4127,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-8B7BB8CC9FB4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:20.714Z","sequence":4128,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-60763334-b374-4f99-81a1-0a94a3b86ec4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:20.833Z","sequence":4129,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:20.834Z","sequence":4130,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 8B7BB8CC9FB4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:20.842Z","sequence":4131,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-cf4044d7-9207-4dc1-976e-b4aafc9cb6c3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:20.847Z","sequence":4132,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:20.847Z","sequence":4133,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF9034135DF6467] for gateway [8B7BB8CC9FB4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:20.853Z","sequence":4134,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:20.853Z","sequence":4135,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:21.295Z","sequence":4136,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-16ca4464-1120-441a-be70-93a221b491b8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:21.296Z","sequence":4137,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:21.296Z","sequence":4138,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006C7] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:21.312Z","sequence":4139,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:21.312Z","sequence":4140,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:21.319Z","sequence":4141,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-12a74650-d9a6-46ab-b408-0170963ebbb6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:23.389Z","sequence":4142,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:23.389Z","sequence":4143,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000F79] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:23.394Z","sequence":4144,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:23.394Z","sequence":4145,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:23.4Z","sequence":4146,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1de673f4-d9c2-4394-9f43-46fa8861a701, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:35.701Z","sequence":4147,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF9034135DF6467]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e152b29f329f5c80","parentId":"974853c620612b28","traceId":"0000000000000000e3b5b49c830b1ea3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:35.718Z","sequence":4148,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF9034135DF6467]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e152b29f329f5c80","parentId":"974853c620612b28","traceId":"0000000000000000e3b5b49c830b1ea3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:36.156Z","sequence":4149,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 8B7BB8CC9FB4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"217efb01f1f2e0e8","parentId":"eda3f5d538d271df","traceId":"000000000000000099ac0916a2ea4017","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:36.174Z","sequence":4150,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 8B7BB8CC9FB4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"217efb01f1f2e0e8","parentId":"eda3f5d538d271df","traceId":"000000000000000099ac0916a2ea4017","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:38.121Z","sequence":4151,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:38.122Z","sequence":4152,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10009BD] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:38.127Z","sequence":4153,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:38.128Z","sequence":4154,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:38.135Z","sequence":4155,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5af79b00-4db3-413d-b798-a8447256f228, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:38.137Z","sequence":4156,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:38.137Z","sequence":4157,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oci]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:38.14Z","sequence":4158,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-86d6da54-5ce1-409e-9fb2-0b198fe2365f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:38.142Z","sequence":4159,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:38.142Z","sequence":4160,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100015E] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:38.148Z","sequence":4161,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:38.148Z","sequence":4162,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:38.152Z","sequence":4163,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-26e9b8ba-feee-4a52-97fc-c0884bcd968c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:38.22Z","sequence":4164,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:38.221Z","sequence":4165,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:38.227Z","sequence":4166,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b74e226d-14e6-4974-81cf-2d48461491f0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:38.23Z","sequence":4167,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:38.23Z","sequence":4168,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100015E] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:38.235Z","sequence":4169,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:38.235Z","sequence":4170,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:38.239Z","sequence":4171,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ed09e9f0-45ea-4bec-b52c-fe7eb121ee0c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:38.803Z","sequence":4172,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/aloxy:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:38.803Z","sequence":4173,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: aloxy, device-id: 0008004A8F68]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:38.809Z","sequence":4174,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-50d2f564-2c90-45ce-a3cf-c35f882d5a72, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:38.812Z","sequence":4175,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:38.812Z","sequence":4176,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: aloxy]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:38.816Z","sequence":4177,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-13414e58-7939-41d7-95c1-42dcaa26de49, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:43.724Z","sequence":4178,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:43.724Z","sequence":4179,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B56] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:43.73Z","sequence":4180,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:43.73Z","sequence":4181,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:43.737Z","sequence":4182,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d0a3a896-c84d-4f81-ad29-d9064f2748ab, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:45.962Z","sequence":4183,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:45.962Z","sequence":4184,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: chevronsgp]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:45.965Z","sequence":4185,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-549dca44-06f5-4a2f-a6a9-e8d5ccecbd34, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:45.967Z","sequence":4186,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/chevronsgp:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:45.968Z","sequence":4187,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: chevronsgp, type: hashed-password, auth-id: auth-chevronsgp_42]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:45.978Z","sequence":4188,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-57095f56-130d-4e1a-8c49-04d19bfbc4a0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:46.097Z","sequence":4189,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/chevronsgp:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:46.097Z","sequence":4190,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: chevronsgp, device-id: 70B3D57BB100086D] for gateway [gateway_chevronsgp_network_42]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:46.098Z","sequence":4191,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/chevronsgp:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:46.098Z","sequence":4192,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: chevronsgp, device-id: gateway_chevronsgp_network_42]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:46.105Z","sequence":4193,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_chevronsgp\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:46.108Z","sequence":4194,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_chevronsgp\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:46.109Z","sequence":4195,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-77ce14e8-79fe-4e06-b72a-2ae35779455a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:46.112Z","sequence":4196,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a7ed1528-9cfd-446d-bbd9-6d1ccfe316fe, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:47.882Z","sequence":4197,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:47.882Z","sequence":4198,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BB613]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:47.888Z","sequence":4199,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8a7a7951-fec0-4554-86e8-a333b378b32b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:54.565Z","sequence":4200,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/acta:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:54.565Z","sequence":4201,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: acta, device-id: 0008004AAAA3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:54.571Z","sequence":4202,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e0fdfe0b-4c44-4c4a-943c-887edc91f103, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:54.574Z","sequence":4203,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:54.574Z","sequence":4204,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: acta]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:27:54.577Z","sequence":4205,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-0a8901d5-4dfd-45fc-8d2f-ef448d4a9843, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:28:13.339Z","sequence":4206,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:28:13.339Z","sequence":4207,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: shell]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:28:13.342Z","sequence":4208,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-66e0a911-162a-4948-8008-287b3e234216, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:28:13.345Z","sequence":4209,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/shell:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:28:13.345Z","sequence":4210,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: shell, type: hashed-password, auth-id: auth-gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:28:13.357Z","sequence":4211,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-ebe29d54-317f-4bcd-b113-39a142de326c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:28:13.545Z","sequence":4212,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:28:13.545Z","sequence":4213,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100080F] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:28:13.556Z","sequence":4214,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:28:13.556Z","sequence":4215,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:28:13.565Z","sequence":4216,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-158b1d40-5f6c-4108-9da8-440ddc88c80c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:28:27.702Z","sequence":4217,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:28:27.702Z","sequence":4218,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000F8B] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:28:27.708Z","sequence":4219,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:28:27.708Z","sequence":4220,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:28:27.714Z","sequence":4221,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6bdc1c9e-7e89-47ab-9cba-cd36ea6e8779, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:28:31.964Z","sequence":4222,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:28:31.964Z","sequence":4223,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:28:31.971Z","sequence":4224,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d960a6e9-8c8e-499b-913d-128ec247d08c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:28:40.655Z","sequence":4225,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:28:40.655Z","sequence":4226,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: flint]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:28:40.659Z","sequence":4227,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-58ca6855-e26c-43fa-8be9-fd9cff01b54b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:28:40.661Z","sequence":4228,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/flint:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:28:40.661Z","sequence":4229,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: flint, type: hashed-password, auth-id: auth-flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:28:40.672Z","sequence":4230,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-7b766d3e-28c2-4137-bea1-3dc50e621835, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:28:40.793Z","sequence":4231,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:28:40.793Z","sequence":4232,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000829] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:28:40.794Z","sequence":4233,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:28:40.794Z","sequence":4234,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:28:40.799Z","sequence":4235,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-86a63118-3cbd-46e1-bdb4-de2f52e25460, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:28:40.8Z","sequence":4236,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:28:40.8Z","sequence":4237,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:28:40.805Z","sequence":4238,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4c56e648-7a53-4131-904f-b608f31a0132, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:28:41.867Z","sequence":4239,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/repsol:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:28:41.867Z","sequence":4240,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: repsol, device-id: 0008004A37FF]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:28:41.874Z","sequence":4241,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3e4b1364-df4e-4076-a36a-caa89126cadc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:28:47.533Z","sequence":4242,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oiltanking:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:28:47.534Z","sequence":4243,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oiltanking, device-id: 70B3D57BB10001DA] for gateway [0008004BB60F]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:28:47.547Z","sequence":4244,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_oiltanking\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:28:47.547Z","sequence":4245,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oiltanking\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:28:47.55Z","sequence":4246,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7e2d7d5e-a1f0-482d-b698-cf65dabc77d5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:28:49.834Z","sequence":4247,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:28:49.835Z","sequence":4248,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006D9] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:28:49.856Z","sequence":4249,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:28:49.856Z","sequence":4250,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:28:49.867Z","sequence":4251,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d2a79a58-0298-44c3-bae4-c1fed3484e57, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:28:55.445Z","sequence":4252,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:28:55.445Z","sequence":4253,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100017A] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:28:55.471Z","sequence":4254,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:28:55.471Z","sequence":4255,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:28:55.497Z","sequence":4256,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9002df28-d9ae-45d3-80c5-6b32d67d7a9a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:28:55.502Z","sequence":4257,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:28:55.503Z","sequence":4258,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100017A] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:28:55.518Z","sequence":4259,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:28:55.518Z","sequence":4260,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:28:55.524Z","sequence":4261,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e491bff1-bee6-4675-b26a-827c9c43afb3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:28:55.729Z","sequence":4262,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:28:55.729Z","sequence":4263,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001B02] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:28:55.756Z","sequence":4264,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:28:55.756Z","sequence":4265,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:28:55.763Z","sequence":4266,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-29b9e605-2261-45fe-b686-fd37cc741b5c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:01.032Z","sequence":4267,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:01.032Z","sequence":4268,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 0008004B51D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:01.038Z","sequence":4269,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-adac5c37-97aa-41ac-8fa5-8c5031bb61a1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:01.042Z","sequence":4270,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:01.042Z","sequence":4271,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: dow]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:01.046Z","sequence":4272,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-41e7c8bd-97da-4456-8b93-501f47bcb88a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:01.728Z","sequence":4273,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:01.728Z","sequence":4274,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100193B] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:01.734Z","sequence":4275,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:01.734Z","sequence":4276,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:01.74Z","sequence":4277,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e9df2601-10d4-44bf-ab83-9f8dbb36a796, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:04.382Z","sequence":4278,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_190908]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"761c5cd3ec16e759","parentId":"6a38afc9c693af7a","traceId":"0000000000000000df541289f10c2a4f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:04.403Z","sequence":4279,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_190908, resource-version: b2d22edf-1abe-4d8f-99ca-903c090b7c5c]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"761c5cd3ec16e759","parentId":"6a38afc9c693af7a","traceId":"0000000000000000df541289f10c2a4f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:04.411Z","sequence":4280,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190908, resource-version: 3ac911f6-45c7-4215-8f8f-bd3ffcadee9b]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"761c5cd3ec16e759","parentId":"6a38afc9c693af7a","traceId":"0000000000000000df541289f10c2a4f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:04.415Z","sequence":4281,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_190908]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6154b2041f5d59cb","parentId":"232498d31264fad9","traceId":"0000000000000000df541289f10c2a4f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:04.537Z","sequence":4282,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190908]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6154b2041f5d59cb","parentId":"232498d31264fad9","traceId":"0000000000000000df541289f10c2a4f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:04.797Z","sequence":4283,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:04.797Z","sequence":4284,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B65] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:04.804Z","sequence":4285,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:04.804Z","sequence":4286,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:04.81Z","sequence":4287,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e17e6a7e-f448-4f3a-bd3c-64431826df23, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:05.815Z","sequence":4288,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFBBB8298818710]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b1f3b918df799d06","parentId":"6d0ebc01a2182ef6","traceId":"00000000000000002c675c0755b0ac2d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:05.835Z","sequence":4289,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFBBB8298818710, resource-version: 0fe75872-47e4-4fd1-92a3-d499cdbbc68e]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b1f3b918df799d06","parentId":"6d0ebc01a2182ef6","traceId":"00000000000000002c675c0755b0ac2d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:05.842Z","sequence":4290,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFBBB8298818710, resource-version: 4c0230d8-d864-4dcf-8dfa-d46a21b2911a]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b1f3b918df799d06","parentId":"6d0ebc01a2182ef6","traceId":"00000000000000002c675c0755b0ac2d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:06.944Z","sequence":4291,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:06.944Z","sequence":4292,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:06.947Z","sequence":4293,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-61fd39a5-c821-41d0-a38e-5bd98eeb0dd4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:06.951Z","sequence":4294,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:06.951Z","sequence":4295,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_190908]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:06.96Z","sequence":4296,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-c92a8306-276a-4232-87d2-ed4c94682b08, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:07.079Z","sequence":4297,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:07.079Z","sequence":4298,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFBBB8298818710] for gateway [gateway_integrationtest_network_190908]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:07.079Z","sequence":4299,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:07.079Z","sequence":4300,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_190908]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:07.084Z","sequence":4301,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1b06b9bf-e4f4-4b4a-880e-f19cd8c9cdd9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:07.085Z","sequence":4302,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:07.085Z","sequence":4303,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:07.35Z","sequence":4304,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6820e044-d5f5-458d-afa5-f1473b9cc9d9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:09.541Z","sequence":4305,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:09.541Z","sequence":4306,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AF0] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:09.547Z","sequence":4307,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:09.547Z","sequence":4308,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:09.554Z","sequence":4309,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-54013b1d-41f3-4e75-89f5-7689c84fbc61, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:10.715Z","sequence":4310,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:10.715Z","sequence":4311,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000861] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:10.721Z","sequence":4312,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:10.721Z","sequence":4313,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:10.724Z","sequence":4314,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a7783113-dc20-420e-aeaa-6d1fc768cfc3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:11.156Z","sequence":4315,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:11.156Z","sequence":4316,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: ineos]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:11.16Z","sequence":4317,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-78f46160-2d62-4fd3-a169-1c204f15ba6a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:11.164Z","sequence":4318,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:11.165Z","sequence":4319,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB1000B27] for gateway [0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:11.173Z","sequence":4320,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:11.173Z","sequence":4321,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:11.177Z","sequence":4322,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8ef267ec-ce4d-4718-8bcb-9bb585da6e71, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:11.825Z","sequence":4323,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:11.825Z","sequence":4324,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B6F] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:11.852Z","sequence":4325,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:11.853Z","sequence":4326,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:11.864Z","sequence":4327,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9c24dd09-8303-4bb0-ad67-710365e16472, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:13.805Z","sequence":4328,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:13.805Z","sequence":4329,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001FA] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:13.811Z","sequence":4330,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:13.816Z","sequence":4331,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:13.82Z","sequence":4332,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8501dfb1-46b1-4014-a1c0-d80dbd1dbe34, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:13.859Z","sequence":4333,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:13.859Z","sequence":4334,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001FA] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:13.864Z","sequence":4335,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:13.864Z","sequence":4336,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:13.867Z","sequence":4337,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7dc469e3-8dd4-4a52-9a7c-9ddf9bba9cfe, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:16.808Z","sequence":4338,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFBBB8298818710]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"00c7827456daf644","parentId":"7242f5dffefb868b","traceId":"00000000000000004865c0322d8be7e8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:16.825Z","sequence":4339,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFBBB8298818710]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"00c7827456daf644","parentId":"7242f5dffefb868b","traceId":"00000000000000004865c0322d8be7e8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:17.077Z","sequence":4340,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_190908]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"42a929f4ba6140e4","parentId":"1e01edfcd206dfa1","traceId":"0000000000000000a47b9484b697edc4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:17.091Z","sequence":4341,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190908]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"42a929f4ba6140e4","parentId":"1e01edfcd206dfa1","traceId":"0000000000000000a47b9484b697edc4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:17.621Z","sequence":4342,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: AE4CCB4E469C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4586dbaeda79c0ff","parentId":"532bcbcf918647e6","traceId":"000000000000000052580423264c419c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:17.644Z","sequence":4343,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: AE4CCB4E469C, resource-version: 2bdbf08e-ca7c-4243-88f7-2a5183d38f40]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4586dbaeda79c0ff","parentId":"532bcbcf918647e6","traceId":"000000000000000052580423264c419c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:17.656Z","sequence":4344,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: AE4CCB4E469C, resource-version: 079d52d3-36d2-48c3-b867-f188fee50b47]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4586dbaeda79c0ff","parentId":"532bcbcf918647e6","traceId":"000000000000000052580423264c419c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:17.661Z","sequence":4345,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: AE4CCB4E469C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5189f77c837f90d8","parentId":"84a80a5d37842346","traceId":"000000000000000052580423264c419c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:17.823Z","sequence":4346,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: AE4CCB4E469C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5189f77c837f90d8","parentId":"84a80a5d37842346","traceId":"000000000000000052580423264c419c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:18.524Z","sequence":4347,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFECD8624E5791D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"aedd49ef24ee19ad","parentId":"22935187125284c6","traceId":"00000000000000008a86d6f7bdd17ba3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:18.543Z","sequence":4348,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFECD8624E5791D, resource-version: a9a78335-8f77-4cb7-8fb9-3012c1131d03]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"aedd49ef24ee19ad","parentId":"22935187125284c6","traceId":"00000000000000008a86d6f7bdd17ba3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:18.554Z","sequence":4349,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFECD8624E5791D, resource-version: 6c0ea00d-c35f-4e47-8d53-b1d61fb1c8fd]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"aedd49ef24ee19ad","parentId":"22935187125284c6","traceId":"00000000000000008a86d6f7bdd17ba3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:19.614Z","sequence":4350,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:19.614Z","sequence":4351,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:19.619Z","sequence":4352,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-0e9dcae3-9099-4a41-946a-395936d5300c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:19.623Z","sequence":4353,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:19.623Z","sequence":4354,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-AE4CCB4E469C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:19.644Z","sequence":4355,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-138f7adc-fc58-4d05-9e17-6013c8f3acee, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:19.762Z","sequence":4356,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:19.762Z","sequence":4357,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: AE4CCB4E469C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:19.767Z","sequence":4358,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7ebbb3ee-3dae-4cd3-814c-6addea1835a5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:19.771Z","sequence":4359,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:19.771Z","sequence":4360,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFECD8624E5791D] for gateway [AE4CCB4E469C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:19.777Z","sequence":4361,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:19.777Z","sequence":4362,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:20.103Z","sequence":4363,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-406281fb-08b9-45ce-9303-0abc6de7ca83, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:32.909Z","sequence":4364,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:32.909Z","sequence":4365,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000F86] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:32.91Z","sequence":4366,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:32.91Z","sequence":4367,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:32.915Z","sequence":4368,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:32.915Z","sequence":4369,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:32.916Z","sequence":4370,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7fc53751-0c78-4920-af48-1ec0aa1b5dd6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:32.922Z","sequence":4371,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5f486543-6801-482c-ba0c-f4e40c3deeac, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:33.195Z","sequence":4372,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFECD8624E5791D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8e61aa3ee2193a1f","parentId":"2693ee89d9d81b0d","traceId":"0000000000000000516f71a09fa8045c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:33.212Z","sequence":4373,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFECD8624E5791D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8e61aa3ee2193a1f","parentId":"2693ee89d9d81b0d","traceId":"0000000000000000516f71a09fa8045c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:33.883Z","sequence":4374,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: AE4CCB4E469C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a95ed74c3b0bfa6b","parentId":"b636f2865d5af831","traceId":"0000000000000000aa67ca5cdabb9efe","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:33.9Z","sequence":4375,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: AE4CCB4E469C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a95ed74c3b0bfa6b","parentId":"b636f2865d5af831","traceId":"0000000000000000aa67ca5cdabb9efe","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:36.009Z","sequence":4376,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:36.01Z","sequence":4377,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AFF] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:36.016Z","sequence":4378,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:36.016Z","sequence":4379,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:36.024Z","sequence":4380,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-328c7639-baf9-4de7-8242-d2bd1c2bb2b8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:36.385Z","sequence":4381,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:36.386Z","sequence":4382,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB1000B26] for gateway [0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:36.392Z","sequence":4383,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:36.393Z","sequence":4384,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:36.396Z","sequence":4385,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-377cb378-fe3b-4fa6-bae7-2d7c6d90d2ee, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:39.479Z","sequence":4386,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/conditionall:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:39.479Z","sequence":4387,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: conditionall, device-id: 0008004B512D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:39.485Z","sequence":4388,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-64a353bc-94cd-4e11-af65-0e7566910f85, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:39.488Z","sequence":4389,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:39.488Z","sequence":4390,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: conditionall]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:39.491Z","sequence":4391,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-14978a4e-3cdb-4f5f-af33-362737bb4338, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:45.657Z","sequence":4392,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:45.658Z","sequence":4393,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AE7] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:45.663Z","sequence":4394,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:45.665Z","sequence":4395,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:45.673Z","sequence":4396,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e5bfc7cc-0f72-4705-bfa8-42f01ca3b58d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:46.167Z","sequence":4397,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:46.167Z","sequence":4398,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001B0D] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:46.177Z","sequence":4399,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:46.177Z","sequence":4400,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:46.185Z","sequence":4401,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-fdb0503b-eb7f-444e-afa8-97b3d96b8f42, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:47.908Z","sequence":4402,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:47.908Z","sequence":4403,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B6B] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:47.916Z","sequence":4404,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:47.916Z","sequence":4405,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:47.924Z","sequence":4406,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-bf3b96ea-946b-4d62-a4a7-5ff1207722a2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:52.529Z","sequence":4407,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:52.529Z","sequence":4408,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001B0A] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:52.535Z","sequence":4409,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:52.535Z","sequence":4410,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:52.542Z","sequence":4411,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-376cdb6b-184d-4e65-9b8f-83b749f6d2fe, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:55.245Z","sequence":4412,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:55.245Z","sequence":4413,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000567] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:55.267Z","sequence":4414,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:55.268Z","sequence":4415,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:55.282Z","sequence":4416,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a5bf23cc-bd2d-4752-bda7-d90a572f2a05, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:58.168Z","sequence":4417,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:58.168Z","sequence":4418,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AE4] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:58.174Z","sequence":4419,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:58.174Z","sequence":4420,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:58.181Z","sequence":4421,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a31707e5-b303-4169-a93c-f86a67405e98, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:59.241Z","sequence":4422,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:59.241Z","sequence":4423,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10009CF] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:59.265Z","sequence":4424,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:59.265Z","sequence":4425,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:29:59.273Z","sequence":4426,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9504d76d-75dd-4bb6-8807-78da88e9c523, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:30:00.672Z","sequence":4427,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:30:00.672Z","sequence":4428,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: lanxess]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:30:00.675Z","sequence":4429,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-09e5ea9e-55a5-434e-b212-4b0012e4a6ef, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:30:00.677Z","sequence":4430,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:30:00.677Z","sequence":4431,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 70B3D57BB10001B5] for gateway [0008004BB84C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:30:00.683Z","sequence":4432,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_lanxess\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:30:00.683Z","sequence":4433,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_lanxess\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:30:00.685Z","sequence":4434,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-27e6b034-648b-408b-a102-9db4648edc9b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:30:04.879Z","sequence":4435,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:30:04.88Z","sequence":4436,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100193D] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:30:04.895Z","sequence":4437,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:30:04.895Z","sequence":4438,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:30:04.905Z","sequence":4439,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-fae9afe5-c125-452d-996f-9c2526448904, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:30:05.301Z","sequence":4440,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:30:05.301Z","sequence":4441,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B5A] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:30:05.31Z","sequence":4442,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:30:05.31Z","sequence":4443,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:30:05.315Z","sequence":4444,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3f36cff7-10f0-4358-9517-49888312c0c2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:30:13.827Z","sequence":4445,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:30:13.827Z","sequence":4446,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AE3] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:30:13.846Z","sequence":4447,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:30:13.846Z","sequence":4448,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:30:13.857Z","sequence":4449,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-dda2509a-a6e7-4fcb-ad32-d8995e39ccda, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:30:14.863Z","sequence":4450,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:30:14.863Z","sequence":4451,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BB84C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:30:14.887Z","sequence":4452,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6dd46f16-6b51-4b78-9935-7a0335b8be29, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:30:17.257Z","sequence":4453,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:30:17.257Z","sequence":4454,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 0008004B5135]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:30:17.277Z","sequence":4455,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ffa4e0ef-cf52-4815-9b1c-b652ed697a52, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:30:20.058Z","sequence":4456,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:30:20.058Z","sequence":4457,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BBD1B]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:30:20.073Z","sequence":4458,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9446e13a-7463-476e-9631-09ad0fe0ba92, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:30:23.345Z","sequence":4459,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:30:23.346Z","sequence":4460,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AE8] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:30:23.356Z","sequence":4461,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:30:23.356Z","sequence":4462,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:30:23.371Z","sequence":4463,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3e0db11c-7a59-4c17-b5e6-452f83314b72, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:30:24.145Z","sequence":4464,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:30:24.146Z","sequence":4465,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 70B3D57BB100017F] for gateway [0008004BB84C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:30:24.157Z","sequence":4466,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_lanxess\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:30:24.157Z","sequence":4467,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_lanxess\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:30:24.16Z","sequence":4468,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f9ac1736-f6f8-4a60-8840-277a763b585a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:30:26.427Z","sequence":4469,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/arkema:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:30:26.427Z","sequence":4470,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: arkema, device-id: 0008004AE119]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:30:26.433Z","sequence":4471,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-df46fc86-b92d-489a-b6ed-70444b2cd844, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:30:26.436Z","sequence":4472,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:30:26.437Z","sequence":4473,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: arkema]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:30:26.44Z","sequence":4474,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-c1ac0117-c367-409b-a187-d750ce995e3f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:30:29.437Z","sequence":4475,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:30:29.437Z","sequence":4476,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B51] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:30:29.443Z","sequence":4477,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:30:29.443Z","sequence":4478,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:30:29.45Z","sequence":4479,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7badd1f3-0bd0-477e-a099-9941906fda42, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:30:31.641Z","sequence":4480,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:30:31.642Z","sequence":4481,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10001D5] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:30:31.648Z","sequence":4482,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:0.4.1\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:30:31.648Z","sequence":4483,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:30:31.654Z","sequence":4484,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ee6cb800-d9ed-46e4-863a-d1775bdaec05, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:30:33.893Z","sequence":4485,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:30:33.893Z","sequence":4486,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A6F] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:30:33.899Z","sequence":4487,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:30:33.899Z","sequence":4488,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:30:33.905Z","sequence":4489,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-38890273-8036-49dc-9f63-9de7d2e59ebb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:30:36.37Z","sequence":4490,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:30:36.37Z","sequence":4491,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BBD1C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:30:36.376Z","sequence":4492,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-688f65fe-13c0-4697-8123-c19ee92c40cd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:30:41.755Z","sequence":4493,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:30:41.755Z","sequence":4494,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100068B] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:30:41.76Z","sequence":4495,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:30:41.76Z","sequence":4496,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:30:41.767Z","sequence":4497,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-70329802-7477-48c2-bfd5-0a41b0eaf05c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:30:44.026Z","sequence":4498,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:30:44.027Z","sequence":4499,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB100089D] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:30:44.036Z","sequence":4500,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:30:44.037Z","sequence":4501,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:30:44.051Z","sequence":4502,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7db7a7b8-f220-4f66-9530-3d82020f5d33, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:30:45.348Z","sequence":4503,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:30:45.348Z","sequence":4504,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AA9] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:30:45.354Z","sequence":4505,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:30:45.354Z","sequence":4506,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:30:45.36Z","sequence":4507,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2ce82f96-0a94-4220-8449-97794a354390, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:02.572Z","sequence":4508,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:02.572Z","sequence":4509,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001B00] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:02.578Z","sequence":4510,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:02.578Z","sequence":4511,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:02.585Z","sequence":4512,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8c9e4844-ecc9-4bee-83bb-38c3bc79d508, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:04.633Z","sequence":4513,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_190910]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"397fc50f0cf1551f","parentId":"772b2790fdbea4ab","traceId":"0000000000000000ac7245f7475c4b84","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:04.656Z","sequence":4514,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_190910, resource-version: 450362c1-6b9f-41ed-b0de-1e32728fee29]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"397fc50f0cf1551f","parentId":"772b2790fdbea4ab","traceId":"0000000000000000ac7245f7475c4b84","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:04.663Z","sequence":4515,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190910, resource-version: 55fa85ac-5aff-4b08-bbde-039de830c8eb]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"397fc50f0cf1551f","parentId":"772b2790fdbea4ab","traceId":"0000000000000000ac7245f7475c4b84","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:04.668Z","sequence":4516,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_190910]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d1a073cdd9ce51c2","parentId":"32accdb68f6e3284","traceId":"0000000000000000ac7245f7475c4b84","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:04.816Z","sequence":4517,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190910]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d1a073cdd9ce51c2","parentId":"32accdb68f6e3284","traceId":"0000000000000000ac7245f7475c4b84","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:05.83Z","sequence":4518,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF73F85959A9F1D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ab47eedb44240ac6","parentId":"9fdd75254a9f1291","traceId":"0000000000000000e01df0471b0a0303","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:05.85Z","sequence":4519,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF73F85959A9F1D, resource-version: 7a89aed7-deec-4c19-a18a-04c3c1820499]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ab47eedb44240ac6","parentId":"9fdd75254a9f1291","traceId":"0000000000000000e01df0471b0a0303","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:05.856Z","sequence":4520,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF73F85959A9F1D, resource-version: 72ec82e5-2342-4e0e-950a-6301d9a83068]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ab47eedb44240ac6","parentId":"9fdd75254a9f1291","traceId":"0000000000000000e01df0471b0a0303","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:06.952Z","sequence":4521,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:06.952Z","sequence":4522,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_190910]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:06.964Z","sequence":4523,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-5d5712ea-fa78-4252-b70c-0905306c8bd8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:07.109Z","sequence":4524,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:07.109Z","sequence":4525,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF73F85959A9F1D] for gateway [gateway_integrationtest_network_190910]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:07.11Z","sequence":4526,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:07.11Z","sequence":4527,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_190910]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:07.12Z","sequence":4528,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:07.12Z","sequence":4529,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:07.123Z","sequence":4530,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-816924f1-49fd-417c-9973-065a61f85d9e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:07.502Z","sequence":4531,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1bc00d87-7e30-40da-8869-48083b86177d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:07.503Z","sequence":4532,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:07.503Z","sequence":4533,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000811] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:07.526Z","sequence":4534,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:07.527Z","sequence":4535,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:07.548Z","sequence":4536,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ae57ab88-e5fd-4942-9886-98162029c55b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:08.865Z","sequence":4537,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:08.865Z","sequence":4538,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:08.891Z","sequence":4539,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7f0fbabc-4213-4c9e-9c65-baf375a135a0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:10.181Z","sequence":4540,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:10.181Z","sequence":4541,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB100082F] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:10.19Z","sequence":4542,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:10.191Z","sequence":4543,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:10.194Z","sequence":4544,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4022db94-8f89-4468-b091-405406d07dc6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:13.276Z","sequence":4545,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:13.276Z","sequence":4546,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10009E3] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:13.284Z","sequence":4547,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:13.284Z","sequence":4548,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:13.292Z","sequence":4549,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b7e18f72-5e38-42ae-9411-fc6b75f5f6be, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:20.916Z","sequence":4550,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF73F85959A9F1D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"84b7da67aad3725f","parentId":"bb38eb63ea110689","traceId":"0000000000000000bb88e57c2e60f74d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:20.933Z","sequence":4551,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF73F85959A9F1D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"84b7da67aad3725f","parentId":"bb38eb63ea110689","traceId":"0000000000000000bb88e57c2e60f74d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:21.321Z","sequence":4552,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_190910]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"540435de123fba8c","parentId":"8d59835cabdbee88","traceId":"0000000000000000b5de69341f90ff6e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:21.344Z","sequence":4553,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190910]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"540435de123fba8c","parentId":"8d59835cabdbee88","traceId":"0000000000000000b5de69341f90ff6e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:21.973Z","sequence":4554,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: C2FEA7DB0A53]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"df472521934edd9c","parentId":"9e22bf7eb20836aa","traceId":"00000000000000004703e7de1ff1dd85","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:21.992Z","sequence":4555,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: C2FEA7DB0A53, resource-version: 3093a2f7-b6cf-457d-9a91-8d7cc572ebab]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"df472521934edd9c","parentId":"9e22bf7eb20836aa","traceId":"00000000000000004703e7de1ff1dd85","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:22.003Z","sequence":4556,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: C2FEA7DB0A53, resource-version: 0358ab53-7a55-46fa-bf1f-338c9a14fd69]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"df472521934edd9c","parentId":"9e22bf7eb20836aa","traceId":"00000000000000004703e7de1ff1dd85","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:22.006Z","sequence":4557,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: C2FEA7DB0A53]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d7ef1df829dcd21e","parentId":"83e1d4c0d6d0cd05","traceId":"00000000000000004703e7de1ff1dd85","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:22.127Z","sequence":4558,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: C2FEA7DB0A53]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d7ef1df829dcd21e","parentId":"83e1d4c0d6d0cd05","traceId":"00000000000000004703e7de1ff1dd85","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:22.619Z","sequence":4559,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF102A330B0A220]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"922288d6f235ec86","parentId":"785c842461485282","traceId":"0000000000000000dd89ee13263409a7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:22.637Z","sequence":4560,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF102A330B0A220, resource-version: 81c0e55d-cb0f-46d6-88d9-45f0bfba5942]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"922288d6f235ec86","parentId":"785c842461485282","traceId":"0000000000000000dd89ee13263409a7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:22.645Z","sequence":4561,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF102A330B0A220, resource-version: a81dac24-4d2a-4111-89ed-80caa51de3cf]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"922288d6f235ec86","parentId":"785c842461485282","traceId":"0000000000000000dd89ee13263409a7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:23.689Z","sequence":4562,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:23.689Z","sequence":4563,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-C2FEA7DB0A53]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:23.7Z","sequence":4564,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-0d1ce0e5-3679-489b-a32f-baabbb3a9d59, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:23.821Z","sequence":4565,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:23.822Z","sequence":4566,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: C2FEA7DB0A53]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:23.828Z","sequence":4567,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-fc3266b0-4e92-4b95-9557-07f424e9b6ab, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:23.831Z","sequence":4568,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:23.832Z","sequence":4569,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF102A330B0A220] for gateway [C2FEA7DB0A53]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:23.837Z","sequence":4570,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:23.837Z","sequence":4571,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:24.088Z","sequence":4572,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3d933b4d-8a76-48bf-a541-47281a80414e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:26.672Z","sequence":4573,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:26.672Z","sequence":4574,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: shell]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:26.675Z","sequence":4575,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-f541eb87-c49a-46b9-a4fd-2b51855cc62b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:26.677Z","sequence":4576,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/shell:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:26.677Z","sequence":4577,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: shell, type: hashed-password, auth-id: auth-gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:26.689Z","sequence":4578,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-b4420275-3b75-440f-a76a-4cdbcca5c99c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:26.819Z","sequence":4579,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:26.819Z","sequence":4580,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000A9D] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:26.825Z","sequence":4581,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:26.825Z","sequence":4582,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:26.832Z","sequence":4583,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-43f1a4c9-b28a-4f0a-81e7-cf5e3dc23d78, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:30.103Z","sequence":4584,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:30.103Z","sequence":4585,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10001FE] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:30.109Z","sequence":4586,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:30.109Z","sequence":4587,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:30.116Z","sequence":4588,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-17237aff-8c92-4792-a72b-e444ead31989, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:37.425Z","sequence":4589,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF102A330B0A220]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b0992198ec5b3da6","parentId":"dc8fb79b3e3437c3","traceId":"000000000000000021b490976df43687","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:37.443Z","sequence":4590,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF102A330B0A220]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b0992198ec5b3da6","parentId":"dc8fb79b3e3437c3","traceId":"000000000000000021b490976df43687","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:37.771Z","sequence":4591,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: C2FEA7DB0A53]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"105e657c196a368b","parentId":"3d0d1bbb57220e72","traceId":"0000000000000000bd48cd05f4aa8dcd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:37.788Z","sequence":4592,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: C2FEA7DB0A53]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"105e657c196a368b","parentId":"3d0d1bbb57220e72","traceId":"0000000000000000bd48cd05f4aa8dcd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:38.773Z","sequence":4593,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:38.774Z","sequence":4594,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AB5] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:38.779Z","sequence":4595,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:38.779Z","sequence":4596,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:38.786Z","sequence":4597,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e04fbf49-7e03-469c-b720-09e2999c77a7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:39.315Z","sequence":4598,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:39.315Z","sequence":4599,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: acta]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:39.319Z","sequence":4600,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-f3e9c0a8-6912-4c32-8051-aca720002478, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:39.321Z","sequence":4601,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/acta:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:39.321Z","sequence":4602,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: acta, device-id: 3534383400470039] for gateway [0008004AAAA3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:39.326Z","sequence":4603,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.3.0\"\n },\n \"viaGroups\" : [ \"gateways_acta\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:39.326Z","sequence":4604,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_acta\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:39.332Z","sequence":4605,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6ab1f442-a539-4ae5-93b8-fee9cfee640c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:41.812Z","sequence":4606,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:41.813Z","sequence":4607,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 0008004C80F4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:41.819Z","sequence":4608,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-76f9ddf2-0a24-4095-a562-657f33ff8939, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:46.103Z","sequence":4609,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:46.103Z","sequence":4610,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B53] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:46.109Z","sequence":4611,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:46.109Z","sequence":4612,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:46.115Z","sequence":4613,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-565f7199-c53b-4086-86fb-7a1ea41b065c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:47.507Z","sequence":4614,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/acta:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:47.507Z","sequence":4615,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: acta, device-id: 35363335003A0032] for gateway [0008004AAAA3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:47.514Z","sequence":4616,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_acta\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:47.514Z","sequence":4617,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_acta\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:47.516Z","sequence":4618,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5049a3e2-6413-4665-8244-a90d71d2ebcf, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:48.669Z","sequence":4619,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:48.669Z","sequence":4620,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: flint]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:48.676Z","sequence":4621,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-288be9ec-05b2-4eae-863f-e1c8497b9abe, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:48.678Z","sequence":4622,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/flint:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:48.678Z","sequence":4623,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: flint, type: hashed-password, auth-id: auth-flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:48.689Z","sequence":4624,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-56ded2db-eff5-40b7-98fd-cf9e44c1e471, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:48.808Z","sequence":4625,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:48.808Z","sequence":4626,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000848] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:48.815Z","sequence":4627,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:48.815Z","sequence":4628,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:48.819Z","sequence":4629,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-45688a94-2ec4-4a22-86ba-6d6eef51b3d7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:54.225Z","sequence":4630,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/conditionall:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:54.226Z","sequence":4631,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: conditionall, device-id: 70B3D57BB1000226] for gateway [0008004B512D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:54.232Z","sequence":4632,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_conditionall\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:54.232Z","sequence":4633,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_conditionall\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:54.235Z","sequence":4634,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1b75ec8d-6252-45a5-9547-359f896cfeb1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:54.252Z","sequence":4635,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oiltanking:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:54.253Z","sequence":4636,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oiltanking, device-id: 0008004BB60F]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:54.261Z","sequence":4637,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-81194552-9139-440c-b768-1adedc88f464, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:54.264Z","sequence":4638,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:54.264Z","sequence":4639,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oiltanking]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:54.268Z","sequence":4640,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-7277e30e-f48e-448e-a81e-9217737c2804, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:56.516Z","sequence":4641,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:56.517Z","sequence":4642,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019F3] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:56.523Z","sequence":4643,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:56.523Z","sequence":4644,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:31:56.53Z","sequence":4645,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7d0d77fa-5796-4e96-bf8f-154ea0ec9fca, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:32:01.713Z","sequence":4646,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:32:01.713Z","sequence":4647,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: terega]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:32:01.72Z","sequence":4648,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-a65d52aa-4761-4f4d-acc6-a4c69e0dd389, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:32:01.722Z","sequence":4649,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/terega:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:32:01.722Z","sequence":4650,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: terega, type: hashed-password, auth-id: auth-gateway_terega_network_27]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:32:01.733Z","sequence":4651,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-d2e730e5-3598-4c8d-a47e-229312ecd33c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:32:01.856Z","sequence":4652,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/terega:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:32:01.857Z","sequence":4653,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: terega, device-id: 70B3D57BB1000091] for gateway [gateway_terega_network_27]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:32:01.858Z","sequence":4654,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/terega:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:32:01.858Z","sequence":4655,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: terega, device-id: gateway_terega_network_27]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:32:01.864Z","sequence":4656,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_terega\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:32:01.864Z","sequence":4657,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_terega\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:32:01.865Z","sequence":4658,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d2f8a21c-14c6-403e-8ab8-ba0152893b06, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:32:01.867Z","sequence":4659,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-28ae8d8c-525b-4c25-89f2-2c664134687b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:32:02.451Z","sequence":4660,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:32:02.452Z","sequence":4661,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oci]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:32:02.457Z","sequence":4662,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-d103f492-b76c-4f96-9472-389f73879832, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:32:02.46Z","sequence":4663,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:32:02.46Z","sequence":4664,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001E1] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:32:02.461Z","sequence":4665,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:32:02.461Z","sequence":4666,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001E1] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:32:02.47Z","sequence":4667,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:32:02.47Z","sequence":4668,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:32:02.471Z","sequence":4669,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:32:02.471Z","sequence":4670,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:32:02.476Z","sequence":4671,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-20caa38e-f2c3-44c5-8159-d420e756d516, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:32:02.478Z","sequence":4672,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-907c0139-b4dd-47c6-b31d-0d0772620244, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:32:15.152Z","sequence":4673,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:32:15.152Z","sequence":4674,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001915] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:32:15.157Z","sequence":4675,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:32:15.157Z","sequence":4676,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:32:15.164Z","sequence":4677,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2e60ef6e-122d-43b9-864c-e29ebb38acc0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:32:16.899Z","sequence":4678,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:32:16.899Z","sequence":4679,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: ineos]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:32:16.904Z","sequence":4680,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-2159789b-d6d1-4709-88c4-bf751ec5ac0c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:32:16.906Z","sequence":4681,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:32:16.906Z","sequence":4682,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB1000A91] for gateway [0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:32:16.913Z","sequence":4683,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:32:16.913Z","sequence":4684,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:32:16.917Z","sequence":4685,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c1a896d1-8b61-4f2b-afaf-5ddf2f6842f3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:32:20.203Z","sequence":4686,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:32:20.203Z","sequence":4687,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100016B] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:32:20.21Z","sequence":4688,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:32:20.21Z","sequence":4689,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:32:20.213Z","sequence":4690,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5f079a4f-7ef2-48e2-811f-6864083f5ca3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:32:20.25Z","sequence":4691,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:32:20.251Z","sequence":4692,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100016B] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:32:20.257Z","sequence":4693,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:32:20.257Z","sequence":4694,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:32:20.26Z","sequence":4695,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-eb303e46-67fe-4d55-9645-d294f1fcc8bc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:32:21.147Z","sequence":4696,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:32:21.147Z","sequence":4697,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B67] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:32:21.153Z","sequence":4698,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:32:21.153Z","sequence":4699,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:32:21.16Z","sequence":4700,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b834f112-29cb-4793-ab21-e1177d6cfbd9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:32:28.187Z","sequence":4701,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:32:28.187Z","sequence":4702,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006A3] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:32:28.193Z","sequence":4703,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:32:28.193Z","sequence":4704,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:32:28.2Z","sequence":4705,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6ec023b7-31d6-40b6-8ba1-569e0fc3f72f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:32:29.367Z","sequence":4706,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:32:29.368Z","sequence":4707,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10008A3] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:32:29.374Z","sequence":4708,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:32:29.374Z","sequence":4709,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:32:29.379Z","sequence":4710,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-34825a77-59c5-483f-937e-dbe6684cb278, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:32:29.44Z","sequence":4711,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:32:29.44Z","sequence":4712,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AE2] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:32:29.446Z","sequence":4713,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:32:29.446Z","sequence":4714,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:32:29.452Z","sequence":4715,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-187037df-7477-476c-b390-a2a40b5a0861, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:32:40.69Z","sequence":4716,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/aloxy:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:32:40.69Z","sequence":4717,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: aloxy, device-id: 0008004A8F68]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:32:40.697Z","sequence":4718,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f2ad19db-75c3-4345-b06f-b572414ef47c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:32:40.7Z","sequence":4719,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:32:40.7Z","sequence":4720,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: aloxy]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:32:40.703Z","sequence":4721,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-04791e60-46e3-444e-b5cd-13a08e0b689f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:32:49.638Z","sequence":4722,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:32:49.638Z","sequence":4723,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BB613]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:32:49.645Z","sequence":4724,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-427a4cf2-a0c2-4dfb-a8f8-bacd1ade36e7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:32:50.337Z","sequence":4725,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:32:50.338Z","sequence":4726,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001900] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:32:50.357Z","sequence":4727,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:32:50.357Z","sequence":4728,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:32:50.371Z","sequence":4729,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-232444db-5149-4171-92d8-626f5233ad8c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:32:57.313Z","sequence":4730,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/acta:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:32:57.313Z","sequence":4731,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: acta, device-id: 0008004AAAA3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:32:57.319Z","sequence":4732,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7719560d-559e-4fd1-9e38-f76b96e8d0fa, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:02.504Z","sequence":4733,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:02.504Z","sequence":4734,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10018FC] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:02.525Z","sequence":4735,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:02.525Z","sequence":4736,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:02.537Z","sequence":4737,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c78538b5-772b-481a-8c25-c1a91c89e86c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:04.293Z","sequence":4738,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_190912]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"71ba391411c378f4","parentId":"b89bebce7f2543f3","traceId":"0000000000000000690fa8c7becb0367","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:04.323Z","sequence":4739,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_190912, resource-version: 84658e17-b64b-4e8f-9c82-240c57b36125]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"71ba391411c378f4","parentId":"b89bebce7f2543f3","traceId":"0000000000000000690fa8c7becb0367","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:04.33Z","sequence":4740,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190912, resource-version: 832f3180-56f5-4b7b-8265-65e81db7d314]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"71ba391411c378f4","parentId":"b89bebce7f2543f3","traceId":"0000000000000000690fa8c7becb0367","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:04.334Z","sequence":4741,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_190912]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4542040d0b651f21","parentId":"702e67d5c1225f69","traceId":"0000000000000000690fa8c7becb0367","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:04.487Z","sequence":4742,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190912]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4542040d0b651f21","parentId":"702e67d5c1225f69","traceId":"0000000000000000690fa8c7becb0367","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:05.658Z","sequence":4743,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF960384A41068F]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"54a1d6b955821e05","parentId":"0ac59df72b4a0745","traceId":"00000000000000009d0dcbc53c454406","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:05.674Z","sequence":4744,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF960384A41068F, resource-version: 6c550495-edc5-4a65-a1ee-fe29eaa67653]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"54a1d6b955821e05","parentId":"0ac59df72b4a0745","traceId":"00000000000000009d0dcbc53c454406","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:05.681Z","sequence":4745,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF960384A41068F, resource-version: 482e2b4c-4d64-4887-8424-f7dcfc726202]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"54a1d6b955821e05","parentId":"0ac59df72b4a0745","traceId":"00000000000000009d0dcbc53c454406","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:06.751Z","sequence":4746,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:06.751Z","sequence":4747,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:06.754Z","sequence":4748,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-df93d6cc-baa1-459d-9bb8-d1eed33e512c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:06.759Z","sequence":4749,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:06.759Z","sequence":4750,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_190912]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:06.769Z","sequence":4751,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-88e20d76-831c-4954-81c4-3fc7db4b9f2b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:06.888Z","sequence":4752,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:06.888Z","sequence":4753,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF960384A41068F] for gateway [gateway_integrationtest_network_190912]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:06.889Z","sequence":4754,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:06.889Z","sequence":4755,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_190912]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:06.894Z","sequence":4756,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:06.894Z","sequence":4757,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:06.895Z","sequence":4758,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7fbdb028-1e07-4b0a-90b7-b8161247873a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:07.1Z","sequence":4759,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ab63b325-2e14-4315-a5f4-9a67ee862b82, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:09.751Z","sequence":4760,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:09.751Z","sequence":4761,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000516] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:09.756Z","sequence":4762,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:09.756Z","sequence":4763,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:09.763Z","sequence":4764,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c09992a7-5908-4e87-8690-32c4be233ffd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:12.919Z","sequence":4765,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:12.919Z","sequence":4766,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10018FD] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:12.925Z","sequence":4767,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:12.925Z","sequence":4768,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:12.932Z","sequence":4769,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-339e0f7d-214b-41f4-b1d2-6acc01351981, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:14.148Z","sequence":4770,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:14.148Z","sequence":4771,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001FD] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:14.154Z","sequence":4772,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:14.154Z","sequence":4773,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:14.157Z","sequence":4774,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-fe105313-2a7d-4cbc-b2ee-9d127bbfa099, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:14.231Z","sequence":4775,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:14.231Z","sequence":4776,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:14.238Z","sequence":4777,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f0dbac28-8c31-437e-8da1-ecf971bf3b5a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:14.242Z","sequence":4778,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:14.242Z","sequence":4779,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001FD] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:14.247Z","sequence":4780,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:14.247Z","sequence":4781,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:14.25Z","sequence":4782,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a3bbfba8-a8e0-4563-907c-424ad14e34b5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:16.517Z","sequence":4783,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF960384A41068F]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"18d85890767bfb2d","parentId":"57b0f13309882299","traceId":"0000000000000000848fb7da1edecca4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:16.534Z","sequence":4784,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF960384A41068F]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"18d85890767bfb2d","parentId":"57b0f13309882299","traceId":"0000000000000000848fb7da1edecca4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:17.082Z","sequence":4785,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_190912]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c206be17265f92f3","parentId":"40f1fbf8ff33d2e9","traceId":"000000000000000000abf2e636e28215","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:17.101Z","sequence":4786,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190912]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c206be17265f92f3","parentId":"40f1fbf8ff33d2e9","traceId":"000000000000000000abf2e636e28215","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:17.178Z","sequence":4787,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [command-router@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:17.178Z","sequence":4788,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oiltanking]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:17.181Z","sequence":4789,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-85b83ef2-7f39-48c6-8382-07f3c0b2fe0c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:17.184Z","sequence":4790,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [command-router@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:17.184Z","sequence":4791,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: lanxess]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:17.187Z","sequence":4792,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-2ab17964-72f9-474f-a3d8-be154001686f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:17.189Z","sequence":4793,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [command-router@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:17.189Z","sequence":4794,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: ineos]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:17.193Z","sequence":4795,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-f90605b7-4942-4696-bbeb-6d6bd1c5ac5a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:17.195Z","sequence":4796,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [command-router@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:17.195Z","sequence":4797,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: aloxy]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:17.198Z","sequence":4798,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-7e4d8d33-cab0-4de8-8b18-cb7406452808, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:17.2Z","sequence":4799,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [command-router@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:17.2Z","sequence":4800,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: dow]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:17.203Z","sequence":4801,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-a9186786-9695-45ff-926b-667537209720, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:17.246Z","sequence":4802,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [command-router@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:17.246Z","sequence":4803,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: acta]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:17.25Z","sequence":4804,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-621381b2-1889-47fd-8fae-378eb5ba3285, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:17.252Z","sequence":4805,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [command-router@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:17.252Z","sequence":4806,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: arkema]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:17.255Z","sequence":4807,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-31eeac51-550f-42a1-a995-20e9fbf6becf, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:17.896Z","sequence":4808,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: F381344FAA00]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"82d5ad88019a7e26","parentId":"d491b1dc7484e457","traceId":"0000000000000000db99c4ce17938bb5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:17.913Z","sequence":4809,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: F381344FAA00, resource-version: 4bb1c048-f8d6-42ca-a239-f7e8c1074d30]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"82d5ad88019a7e26","parentId":"d491b1dc7484e457","traceId":"0000000000000000db99c4ce17938bb5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:17.919Z","sequence":4810,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: F381344FAA00, resource-version: 0e39c78f-2589-40ad-921a-9af385dc9fdf]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"82d5ad88019a7e26","parentId":"d491b1dc7484e457","traceId":"0000000000000000db99c4ce17938bb5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:17.923Z","sequence":4811,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: F381344FAA00]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"eb220d4a022f54b8","parentId":"558b488867889175","traceId":"0000000000000000db99c4ce17938bb5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:18.11Z","sequence":4812,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: F381344FAA00]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"eb220d4a022f54b8","parentId":"558b488867889175","traceId":"0000000000000000db99c4ce17938bb5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:18.221Z","sequence":4813,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:18.221Z","sequence":4814,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10018FF] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:18.229Z","sequence":4815,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:18.229Z","sequence":4816,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:18.242Z","sequence":4817,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a738a819-2217-4eb7-8d03-ac9e6a630306, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:19.072Z","sequence":4818,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFE260E3ED37717]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4811292eca0c5dcc","parentId":"5b58cd6655b0801e","traceId":"0000000000000000e57967dfd3479202","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:19.091Z","sequence":4819,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFE260E3ED37717, resource-version: 6cb31b02-ee13-4afc-9eae-92ee0cefa864]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4811292eca0c5dcc","parentId":"5b58cd6655b0801e","traceId":"0000000000000000e57967dfd3479202","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:19.097Z","sequence":4820,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFE260E3ED37717, resource-version: 571a3f18-33ef-4ed3-b594-ba8aa8169313]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4811292eca0c5dcc","parentId":"5b58cd6655b0801e","traceId":"0000000000000000e57967dfd3479202","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:19.522Z","sequence":4821,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:19.522Z","sequence":4822,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019ED] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:19.527Z","sequence":4823,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:19.527Z","sequence":4824,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:19.533Z","sequence":4825,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a9802f12-dfde-4c1c-908e-021fd32d9f4a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:20.215Z","sequence":4826,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:20.216Z","sequence":4827,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:20.219Z","sequence":4828,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-f879ccbd-ce0c-41c5-8c4d-981a811fb13f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:20.223Z","sequence":4829,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:20.224Z","sequence":4830,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-F381344FAA00]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:20.233Z","sequence":4831,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-cfab9ccd-4f1a-423c-b8c4-f4a415b694f7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:20.411Z","sequence":4832,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:20.411Z","sequence":4833,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: F381344FAA00]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:20.424Z","sequence":4834,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-65bd338c-b22b-4795-8d77-0c5cf04efaef, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:20.429Z","sequence":4835,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:20.429Z","sequence":4836,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFE260E3ED37717] for gateway [F381344FAA00]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:20.434Z","sequence":4837,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:20.435Z","sequence":4838,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:20.718Z","sequence":4839,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-987b8f16-467d-49dc-a2f5-dab57b6e38a2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:23.792Z","sequence":4840,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:23.792Z","sequence":4841,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001912] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:23.798Z","sequence":4842,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:23.798Z","sequence":4843,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:23.804Z","sequence":4844,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-90d422f8-e6f0-40c9-aabc-92b3ec50bc50, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:23.998Z","sequence":4845,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:23.998Z","sequence":4846,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100191D] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:24.008Z","sequence":4847,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:24.008Z","sequence":4848,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:24.017Z","sequence":4849,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f42f134a-bbfb-4cf4-8a2a-a1a9a44b0d8c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:24.627Z","sequence":4850,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:24.627Z","sequence":4851,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000214] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:24.632Z","sequence":4852,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:24.633Z","sequence":4853,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:24.636Z","sequence":4854,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8582d432-13dc-478f-ad8f-c5e042d127b6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:24.782Z","sequence":4855,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:24.782Z","sequence":4856,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000214] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:24.787Z","sequence":4857,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:24.787Z","sequence":4858,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:24.792Z","sequence":4859,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-aa9cdc89-36a2-45f3-aa60-c1880b2433cf, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:25.602Z","sequence":4860,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:25.602Z","sequence":4861,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB1000A7A] for gateway [0008004B5135]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:25.608Z","sequence":4862,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:25.608Z","sequence":4863,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:25.61Z","sequence":4864,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-430de4b5-46dc-40f8-8bde-314c0719e601, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:32.029Z","sequence":4865,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFE260E3ED37717]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1d39ba6ec992b2ea","parentId":"ac5b7e00782e5aeb","traceId":"000000000000000058bd2c85186f2ad3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:32.048Z","sequence":4866,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFE260E3ED37717]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1d39ba6ec992b2ea","parentId":"ac5b7e00782e5aeb","traceId":"000000000000000058bd2c85186f2ad3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:32.388Z","sequence":4867,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: F381344FAA00]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"234e2b07452b4b54","parentId":"ac2b708bb10bc8c1","traceId":"0000000000000000dec0e05aebda978f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:32.407Z","sequence":4868,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: F381344FAA00]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"234e2b07452b4b54","parentId":"ac2b708bb10bc8c1","traceId":"0000000000000000dec0e05aebda978f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:33.583Z","sequence":4869,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:33.583Z","sequence":4870,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:33.592Z","sequence":4871,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d24ad47d-c155-44b1-9c19-23fa8bf8c98b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:35.804Z","sequence":4872,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:35.805Z","sequence":4873,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000168] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:35.81Z","sequence":4874,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:35.81Z","sequence":4875,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:35.814Z","sequence":4876,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4bae3c81-3966-4266-9a9e-f4fa7b7e9b71, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:35.92Z","sequence":4877,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:35.92Z","sequence":4878,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000168] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:35.926Z","sequence":4879,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:35.926Z","sequence":4880,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:35.93Z","sequence":4881,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0b0acc15-f847-4b5d-b370-9be8bdf402e0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:37.522Z","sequence":4882,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:37.522Z","sequence":4883,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006C4] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:37.53Z","sequence":4884,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:37.53Z","sequence":4885,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:37.537Z","sequence":4886,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d764abbf-a55a-4980-9c4e-dd0f24931d1b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:38.993Z","sequence":4887,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:38.993Z","sequence":4888,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006C2] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:39.001Z","sequence":4889,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:39.001Z","sequence":4890,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:39.007Z","sequence":4891,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3a110707-6a5f-42a4-9099-ffd1c3bb6c79, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:39.102Z","sequence":4892,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:39.102Z","sequence":4893,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019FF] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:39.108Z","sequence":4894,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:39.108Z","sequence":4895,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:39.114Z","sequence":4896,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-fe93a6b5-f874-4070-9c27-a1e8c78f6616, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:41.084Z","sequence":4897,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:41.085Z","sequence":4898,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001EA] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:41.09Z","sequence":4899,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:41.09Z","sequence":4900,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:41.093Z","sequence":4901,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6e136b67-b938-459d-a4d0-70cf0e79b5b5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:41.109Z","sequence":4902,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:41.109Z","sequence":4903,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001EA] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:41.119Z","sequence":4904,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:41.119Z","sequence":4905,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:41.121Z","sequence":4906,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d6b9a418-f4ab-4b10-b3a5-1d69a299c46f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:43.617Z","sequence":4907,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:43.618Z","sequence":4908,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001921] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:43.626Z","sequence":4909,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:43.627Z","sequence":4910,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:43.633Z","sequence":4911,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f66d7fa3-83fd-4b5e-bf4c-736556174488, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:43.675Z","sequence":4912,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/repsol:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:43.675Z","sequence":4913,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: repsol, device-id: 0008004A37FF]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:43.683Z","sequence":4914,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-905f305a-236e-47d0-9f2c-fd01680c5984, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:43.686Z","sequence":4915,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:43.686Z","sequence":4916,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: repsol]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:43.69Z","sequence":4917,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-fe274e3a-1a4b-45c0-83bf-75a1131d825c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:45.225Z","sequence":4918,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:45.225Z","sequence":4919,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10018D3] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:45.256Z","sequence":4920,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:45.257Z","sequence":4921,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:45.273Z","sequence":4922,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f0399533-f53b-4901-a82a-a024a701871b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:45.579Z","sequence":4923,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:45.579Z","sequence":4924,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10008A5] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:45.58Z","sequence":4925,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:45.58Z","sequence":4926,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:45.599Z","sequence":4927,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0d796139-241c-4380-b500-0f5893ff3876, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:45.6Z","sequence":4928,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:45.6Z","sequence":4929,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:45.605Z","sequence":4930,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-48ef5c5d-bd28-4646-86a3-338de21e35b8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:45.765Z","sequence":4931,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:45.766Z","sequence":4932,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB1000A8A] for gateway [0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:45.773Z","sequence":4933,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:45.773Z","sequence":4934,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:45.777Z","sequence":4935,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-175f0cd6-13ab-4580-8daa-e2b26b95573c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:47.384Z","sequence":4936,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:47.384Z","sequence":4937,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB100052B] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:47.39Z","sequence":4938,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:47.39Z","sequence":4939,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:47.394Z","sequence":4940,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1ce85865-7eb4-403b-8a81-ed34cb56c84c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:51.481Z","sequence":4941,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:51.481Z","sequence":4942,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001907] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:51.492Z","sequence":4943,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:51.493Z","sequence":4944,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:51.5Z","sequence":4945,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2f1f0374-f6c2-4b52-852e-42b0ecb3ea4b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:52.354Z","sequence":4946,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:52.354Z","sequence":4947,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10018B7] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:52.361Z","sequence":4948,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:52.361Z","sequence":4949,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:33:52.368Z","sequence":4950,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-cf1c09eb-76c4-471d-8f1d-1e98667af063, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:34:02.92Z","sequence":4951,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:34:02.921Z","sequence":4952,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 0008004B51D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:34:02.927Z","sequence":4953,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-90df9c9d-4d22-4060-b0ae-2d4db153fa55, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:34:02.93Z","sequence":4954,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:34:02.93Z","sequence":4955,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: dow]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:34:02.933Z","sequence":4956,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-b6e30129-d58c-4a4b-b3e4-8da709f1cd5d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:34:05.891Z","sequence":4957,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:34:05.891Z","sequence":4958,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019E5] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:34:05.908Z","sequence":4959,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:34:05.908Z","sequence":4960,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:34:05.915Z","sequence":4961,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c004d1dd-21b6-4fd8-9b2e-b3c8f1c4c74e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:34:08.71Z","sequence":4962,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:34:08.71Z","sequence":4963,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019E9] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:34:08.716Z","sequence":4964,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:34:08.717Z","sequence":4965,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:34:08.723Z","sequence":4966,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c0ef0979-690b-4f69-b753-448d28a09f6a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:34:11.385Z","sequence":4967,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:34:11.386Z","sequence":4968,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000218] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:34:11.391Z","sequence":4969,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:34:11.391Z","sequence":4970,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:34:11.394Z","sequence":4971,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5d56d95e-f831-4d22-9fa3-e0fa1fd7a4c2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:34:11.441Z","sequence":4972,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:34:11.441Z","sequence":4973,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000218] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:34:11.446Z","sequence":4974,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:34:11.446Z","sequence":4975,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:34:11.45Z","sequence":4976,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e43da954-a3cc-4389-964e-7c761affa1a7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:34:12.029Z","sequence":4977,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:34:12.029Z","sequence":4978,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A13] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:34:12.037Z","sequence":4979,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:34:12.037Z","sequence":4980,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:34:12.044Z","sequence":4981,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-999d2d35-d7a8-43da-89d1-816a76d1ceff, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:34:15.65Z","sequence":4982,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:34:15.651Z","sequence":4983,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006C8] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:34:15.658Z","sequence":4984,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:34:15.658Z","sequence":4985,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:34:15.667Z","sequence":4986,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-36c47f63-3b6e-4773-88a7-858298479462, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:34:17.843Z","sequence":4987,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/terega:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:34:17.843Z","sequence":4988,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: terega, device-id: 70B3D57BB10000C4] for gateway [gateway_terega_network_27]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:34:17.849Z","sequence":4989,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_terega\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:34:17.852Z","sequence":4990,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_terega\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:34:17.855Z","sequence":4991,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ce9b752f-9f54-4d94-982b-526b58d0383b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:34:19.445Z","sequence":4992,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:34:19.445Z","sequence":4993,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100190E] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:34:19.451Z","sequence":4994,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:34:19.451Z","sequence":4995,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:34:19.464Z","sequence":4996,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7f09b97d-d915-4710-abd7-6598cae89c0f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:34:23.923Z","sequence":4997,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:34:23.923Z","sequence":4998,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006BE] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:34:23.929Z","sequence":4999,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:34:23.929Z","sequence":5000,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:34:23.94Z","sequence":5001,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-22bea202-70d3-4228-a672-695073a92e81, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:34:29.074Z","sequence":5002,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:34:29.074Z","sequence":5003,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: shell]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:34:29.077Z","sequence":5004,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-a7969b32-3063-4c42-82ee-35ac0fe6f78c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:34:29.079Z","sequence":5005,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/shell:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:34:29.08Z","sequence":5006,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: shell, type: hashed-password, auth-id: auth-gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:34:29.088Z","sequence":5007,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-24ad2c6e-4991-4d3b-9f40-8558710777f8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:34:32.902Z","sequence":5008,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:34:32.902Z","sequence":5009,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000208] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:34:32.908Z","sequence":5010,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:34:32.908Z","sequence":5011,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:34:32.911Z","sequence":5012,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d85229a1-091f-4b96-b186-081cdaabc16a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:34:32.969Z","sequence":5013,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:34:32.969Z","sequence":5014,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000208] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:34:32.974Z","sequence":5015,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:34:32.974Z","sequence":5016,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:34:32.977Z","sequence":5017,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a34dfaa2-e37c-4ef5-a2be-9df128bd2c2a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:34:36.784Z","sequence":5018,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:34:36.784Z","sequence":5019,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001914] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:34:36.785Z","sequence":5020,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:34:36.785Z","sequence":5021,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:34:36.79Z","sequence":5022,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:34:36.79Z","sequence":5023,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:34:36.79Z","sequence":5024,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e0972672-0533-447d-a2b1-700c974ff308, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:34:36.797Z","sequence":5025,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7994da17-66be-4910-a149-48aefa0b1ed5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:34:41.204Z","sequence":5026,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/conditionall:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:34:41.204Z","sequence":5027,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: conditionall, device-id: 0008004B512D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:34:41.211Z","sequence":5028,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7289e318-7918-4cdb-9108-d06631a179f9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:34:41.214Z","sequence":5029,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:34:41.214Z","sequence":5030,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: conditionall]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:34:41.217Z","sequence":5031,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-6f54ff95-681a-4d4a-9df1-f18d0b7b48ce, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:34:43.281Z","sequence":5032,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:34:43.281Z","sequence":5033,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10018AF] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:34:43.293Z","sequence":5034,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:34:43.293Z","sequence":5035,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:34:43.302Z","sequence":5036,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-932584f3-6d0b-488e-b1de-6419515a4bfd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:34:49.593Z","sequence":5037,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:34:49.594Z","sequence":5038,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B59] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:34:49.6Z","sequence":5039,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:34:49.6Z","sequence":5040,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:34:49.606Z","sequence":5041,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-25acc82f-5e1d-4f4f-b89d-e72c4b108dcd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:34:50.329Z","sequence":5042,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:34:50.33Z","sequence":5043,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A18] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:34:50.364Z","sequence":5044,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:34:50.365Z","sequence":5045,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:34:50.38Z","sequence":5046,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9a9d92b7-9755-4533-9ae1-493b8f143852, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:34:51.995Z","sequence":5047,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:34:51.995Z","sequence":5048,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10008CC] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:34:52.003Z","sequence":5049,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:34:52.005Z","sequence":5050,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:34:52.011Z","sequence":5051,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7f8e91be-6c1d-4598-93bf-b5b63c057a9f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:34:52.609Z","sequence":5052,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/repsol:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:34:52.609Z","sequence":5053,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: repsol, device-id: 70B3D57BB1000187] for gateway [0008004A37FF]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:34:52.632Z","sequence":5054,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:0.4.1\"\n },\n \"viaGroups\" : [ \"gateways_repsol\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:34:52.633Z","sequence":5055,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_repsol\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:34:52.652Z","sequence":5056,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-343f6ac5-5643-491a-932f-32b8d7ef267a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:03.617Z","sequence":5057,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:03.617Z","sequence":5058,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A14] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:03.624Z","sequence":5059,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:03.624Z","sequence":5060,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:03.631Z","sequence":5061,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ddf08a32-44c7-49f3-a9f2-fec3bf26b27b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:04.227Z","sequence":5062,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_190914]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"816bad8cb041af99","parentId":"429ef0745f2ba981","traceId":"0000000000000000508591c3923cc952","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:04.246Z","sequence":5063,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_190914, resource-version: 4bf4321c-0654-4c0b-aee4-0ad5ccff487d]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"816bad8cb041af99","parentId":"429ef0745f2ba981","traceId":"0000000000000000508591c3923cc952","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:04.255Z","sequence":5064,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190914, resource-version: 73e044b8-b49a-47b7-984f-e9dd4d8ff8ef]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"816bad8cb041af99","parentId":"429ef0745f2ba981","traceId":"0000000000000000508591c3923cc952","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:04.258Z","sequence":5065,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_190914]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f5dd8d2f81c93a25","parentId":"2df3d961de77a650","traceId":"0000000000000000508591c3923cc952","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:04.445Z","sequence":5066,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190914]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f5dd8d2f81c93a25","parentId":"2df3d961de77a650","traceId":"0000000000000000508591c3923cc952","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:05.234Z","sequence":5067,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF8BE2EE6573A5C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f3d91fe97973899e","parentId":"8544fb972e80eaf5","traceId":"0000000000000000718295a625ff5c48","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:05.251Z","sequence":5068,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF8BE2EE6573A5C, resource-version: df5daa7e-c2c3-4318-af45-617d18519763]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f3d91fe97973899e","parentId":"8544fb972e80eaf5","traceId":"0000000000000000718295a625ff5c48","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:05.26Z","sequence":5069,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF8BE2EE6573A5C, resource-version: 0898b49e-3d51-44c5-bf4e-fb70fe3a6b43]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f3d91fe97973899e","parentId":"8544fb972e80eaf5","traceId":"0000000000000000718295a625ff5c48","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:06.367Z","sequence":5070,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:06.367Z","sequence":5071,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_190914]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:06.378Z","sequence":5072,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-57cba908-2097-43cc-a428-48e95a864190, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:06.501Z","sequence":5073,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:06.501Z","sequence":5074,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF8BE2EE6573A5C] for gateway [gateway_integrationtest_network_190914]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:06.501Z","sequence":5075,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:06.501Z","sequence":5076,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_190914]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:06.513Z","sequence":5077,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8bcd77fe-cd0b-400e-8b3d-0fa004bc142d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:06.513Z","sequence":5078,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:06.513Z","sequence":5079,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:06.852Z","sequence":5080,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-850e6b50-58b7-46a8-933a-74c709d4bc3f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:07.565Z","sequence":5081,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:07.565Z","sequence":5082,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006DC] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:07.603Z","sequence":5083,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:07.604Z","sequence":5084,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:07.618Z","sequence":5085,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5e9ded28-fe00-4862-91f5-c935df1b43f1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:08.061Z","sequence":5086,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:08.061Z","sequence":5087,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000A96] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:08.1Z","sequence":5088,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:08.1Z","sequence":5089,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:08.122Z","sequence":5090,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-02ac21ab-baee-4ec6-9b5d-79e6dffae94a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:16.645Z","sequence":5091,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:16.646Z","sequence":5092,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BB84C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:16.658Z","sequence":5093,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-296e2644-1fe4-4d22-80f3-52965db1fe0c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:16.661Z","sequence":5094,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:16.662Z","sequence":5095,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: lanxess]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:16.67Z","sequence":5096,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-bfe546cc-c42e-4152-abde-7e02f0ca8f5e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:17.847Z","sequence":5097,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF8BE2EE6573A5C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4c59b4ebd9f25aaf","parentId":"d873d006790d554a","traceId":"0000000000000000692783f40b51457c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:17.878Z","sequence":5098,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF8BE2EE6573A5C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4c59b4ebd9f25aaf","parentId":"d873d006790d554a","traceId":"0000000000000000692783f40b51457c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:18.18Z","sequence":5099,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_190914]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c702a13b37aed528","parentId":"974c51d6c256d938","traceId":"000000000000000040c4c2fa8cabb77f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:18.198Z","sequence":5100,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190914]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c702a13b37aed528","parentId":"974c51d6c256d938","traceId":"000000000000000040c4c2fa8cabb77f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:18.754Z","sequence":5101,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 3F66DA595581]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fbd418a465917ca2","parentId":"c11b9d0c0a54664d","traceId":"0000000000000000993b8554e41383ab","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:18.769Z","sequence":5102,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 3F66DA595581, resource-version: 4db846fd-f4f2-4a7c-b634-fe1d4487fdc8]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fbd418a465917ca2","parentId":"c11b9d0c0a54664d","traceId":"0000000000000000993b8554e41383ab","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:18.775Z","sequence":5103,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 3F66DA595581, resource-version: 59447fb5-25ae-42b3-8826-a401f374a8c5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fbd418a465917ca2","parentId":"c11b9d0c0a54664d","traceId":"0000000000000000993b8554e41383ab","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:18.782Z","sequence":5104,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 3F66DA595581]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bc5bbe33d643000e","parentId":"7eefa89313fbbf25","traceId":"0000000000000000993b8554e41383ab","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:18.893Z","sequence":5105,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 3F66DA595581]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bc5bbe33d643000e","parentId":"7eefa89313fbbf25","traceId":"0000000000000000993b8554e41383ab","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:19.035Z","sequence":5106,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:19.036Z","sequence":5107,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 0008004B5135]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:19.043Z","sequence":5108,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-dbd527a0-2dfd-4283-a0ea-5ca77fc03e77, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:19.047Z","sequence":5109,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:19.047Z","sequence":5110,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: ineos]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:19.049Z","sequence":5111,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-5542b4c6-b501-4231-a95c-8db4a17b807c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:19.657Z","sequence":5112,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF6EB8D5ACD4B8B]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7447976a32059673","parentId":"f8882dbe94c48377","traceId":"00000000000000004c23a09ccef3367a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:19.675Z","sequence":5113,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF6EB8D5ACD4B8B, resource-version: 8a5afd4b-70d3-4f29-bcae-0a9c9c16f433]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7447976a32059673","parentId":"f8882dbe94c48377","traceId":"00000000000000004c23a09ccef3367a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:19.681Z","sequence":5114,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF6EB8D5ACD4B8B, resource-version: 573ff953-9dc9-4a90-a3a5-e74268763935]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7447976a32059673","parentId":"f8882dbe94c48377","traceId":"00000000000000004c23a09ccef3367a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:20.413Z","sequence":5115,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:20.413Z","sequence":5116,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006A7] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:20.419Z","sequence":5117,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:20.419Z","sequence":5118,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:20.425Z","sequence":5119,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-191fc641-1bdf-4885-9642-aab710305b38, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:20.733Z","sequence":5120,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:20.733Z","sequence":5121,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-3F66DA595581]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:20.773Z","sequence":5122,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-a5daa59f-e25e-4cf4-b9b5-78a967516d24, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:20.901Z","sequence":5123,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:20.901Z","sequence":5124,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 3F66DA595581]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:20.907Z","sequence":5125,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-68bba62f-bca8-48c2-9bea-756a618e55f1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:20.912Z","sequence":5126,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:20.913Z","sequence":5127,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF6EB8D5ACD4B8B] for gateway [3F66DA595581]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:20.921Z","sequence":5128,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:20.921Z","sequence":5129,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:21.447Z","sequence":5130,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4be8448a-a692-49ef-97f8-8afdd5835504, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:21.721Z","sequence":5131,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:21.721Z","sequence":5132,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006BA] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:21.726Z","sequence":5133,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:21.726Z","sequence":5134,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:21.732Z","sequence":5135,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b4c8519f-e55e-43eb-8838-b78b2feb6b10, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:21.793Z","sequence":5136,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:21.793Z","sequence":5137,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BBD1B]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:21.801Z","sequence":5138,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-745c0ddd-0a9e-409f-bce6-0687f6c2ca04, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:23.612Z","sequence":5139,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:23.612Z","sequence":5140,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100191B] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:23.637Z","sequence":5141,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:23.637Z","sequence":5142,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:23.653Z","sequence":5143,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b53dda1c-cedc-4b79-89ee-14ae5b9af2e1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:28.232Z","sequence":5144,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/arkema:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:28.232Z","sequence":5145,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: arkema, device-id: 0008004AE119]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:28.237Z","sequence":5146,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2b209f4a-f44d-4860-8483-1b2b6d72a58f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:28.24Z","sequence":5147,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:28.24Z","sequence":5148,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: arkema]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:28.242Z","sequence":5149,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-b700c280-3ffd-4223-935a-6d756c37b34b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:32.091Z","sequence":5150,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:32.092Z","sequence":5151,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oci]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:32.095Z","sequence":5152,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-a087932c-bb08-4c26-bd2d-155dea00541e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:32.098Z","sequence":5153,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:32.098Z","sequence":5154,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001E9] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:32.145Z","sequence":5155,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:32.145Z","sequence":5156,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:32.149Z","sequence":5157,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5eca5a70-cd21-4396-bf3f-0e4838d43c9c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:32.22Z","sequence":5158,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:32.221Z","sequence":5159,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001E9] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:32.231Z","sequence":5160,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:32.231Z","sequence":5161,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:32.235Z","sequence":5162,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e7bcb0f4-0efa-432a-9076-cfe64db8ea70, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:32.32Z","sequence":5163,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF6EB8D5ACD4B8B]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"dcf79ceefe65b3a8","parentId":"7720d7e803b67083","traceId":"000000000000000072877cbfe55a5ec1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:32.349Z","sequence":5164,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF6EB8D5ACD4B8B]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"dcf79ceefe65b3a8","parentId":"7720d7e803b67083","traceId":"000000000000000072877cbfe55a5ec1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:32.678Z","sequence":5165,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 3F66DA595581]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"751016f4aa56c830","parentId":"38adf8d64bd687c1","traceId":"0000000000000000d4625653b8f1b888","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:32.759Z","sequence":5166,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 3F66DA595581]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"751016f4aa56c830","parentId":"38adf8d64bd687c1","traceId":"0000000000000000d4625653b8f1b888","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:34.882Z","sequence":5167,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:34.882Z","sequence":5168,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BE2] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:34.887Z","sequence":5169,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:34.887Z","sequence":5170,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:34.893Z","sequence":5171,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-00a0b9a2-180c-40c1-9491-96779b5e7c9c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:36.178Z","sequence":5172,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:36.178Z","sequence":5173,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006AE] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:36.183Z","sequence":5174,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:36.183Z","sequence":5175,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:36.19Z","sequence":5176,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c2ee04c9-c4a1-401d-90b2-fcd891d6df1b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:38.324Z","sequence":5177,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:38.324Z","sequence":5178,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100068C] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:38.329Z","sequence":5179,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:38.329Z","sequence":5180,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:38.335Z","sequence":5181,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-13e3d79b-8473-4d58-a52c-33460d64fe03, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:39.673Z","sequence":5182,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:39.673Z","sequence":5183,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BBD1C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:39.69Z","sequence":5184,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-fa478fa1-e074-45c8-86c6-d4059e93cbe9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:48.845Z","sequence":5185,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:48.845Z","sequence":5186,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B62] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:48.851Z","sequence":5187,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:48.852Z","sequence":5188,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:48.865Z","sequence":5189,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0b19c70a-9450-45f5-becd-f6242a31a191, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:49.959Z","sequence":5190,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:49.959Z","sequence":5191,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000A9A] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:49.967Z","sequence":5192,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:49.968Z","sequence":5193,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:49.985Z","sequence":5194,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c5ea5515-75ef-4066-a394-032fa4732228, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:50.238Z","sequence":5195,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:50.238Z","sequence":5196,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019E6] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:50.246Z","sequence":5197,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:50.247Z","sequence":5198,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:50.252Z","sequence":5199,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4d0d3d0d-d6df-405b-b262-13e163788153, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:50.777Z","sequence":5200,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:50.778Z","sequence":5201,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000202] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:50.789Z","sequence":5202,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:50.79Z","sequence":5203,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:50.798Z","sequence":5204,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d2fa521e-2772-42de-9281-5dc66c7aa0be, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:50.893Z","sequence":5205,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:50.893Z","sequence":5206,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000202] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:50.909Z","sequence":5207,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:50.909Z","sequence":5208,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:50.921Z","sequence":5209,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3e919257-9f83-41e5-8f53-75bc89c1df9d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:57.988Z","sequence":5210,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:57.988Z","sequence":5211,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AA0] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:57.995Z","sequence":5212,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:57.995Z","sequence":5213,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:58.002Z","sequence":5214,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-25aba556-26eb-4e82-a0c7-65e3daf5f6ce, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:58.936Z","sequence":5215,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:58.937Z","sequence":5216,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100016C] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:58.946Z","sequence":5217,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:58.946Z","sequence":5218,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:58.952Z","sequence":5219,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:58.953Z","sequence":5220,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100016C] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:58.954Z","sequence":5221,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0b5442d0-92b6-4098-acd3-eb798dacf3fa, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:58.959Z","sequence":5222,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:58.959Z","sequence":5223,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:35:58.962Z","sequence":5224,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a45224e1-ea42-4f67-81a4-b08d85272436, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:36:06.065Z","sequence":5225,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:36:06.065Z","sequence":5226,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006D1] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:36:06.072Z","sequence":5227,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:36:06.072Z","sequence":5228,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:36:06.104Z","sequence":5229,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-138fda27-eb4a-4251-85c0-54f370aba3c5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:36:10.929Z","sequence":5230,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:36:10.929Z","sequence":5231,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:36:10.95Z","sequence":5232,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-fefe557f-4ae6-4530-adae-53ecb37d2c8b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:36:12.128Z","sequence":5233,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:36:12.128Z","sequence":5234,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006B8] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:36:12.133Z","sequence":5235,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:36:12.133Z","sequence":5236,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:36:12.141Z","sequence":5237,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-946e86db-3c97-46ff-86b5-90bd4b6b98d4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:36:16.175Z","sequence":5238,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:36:16.175Z","sequence":5239,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006B3] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:36:16.181Z","sequence":5240,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:36:16.181Z","sequence":5241,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:36:16.188Z","sequence":5242,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-56e06143-0d22-4fd9-a6bf-acc9c48c666a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:36:17.533Z","sequence":5243,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:36:17.533Z","sequence":5244,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10008D2] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:36:17.543Z","sequence":5245,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:36:17.543Z","sequence":5246,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:36:17.55Z","sequence":5247,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-58b32a0c-04ec-482d-8c1c-747136f47b36, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:36:24.662Z","sequence":5248,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:36:24.663Z","sequence":5249,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100057A] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:36:24.669Z","sequence":5250,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:36:24.669Z","sequence":5251,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:36:24.676Z","sequence":5252,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-45f271da-dd05-4692-bf78-2375c30a4132, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:36:27.097Z","sequence":5253,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:36:27.097Z","sequence":5254,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100067B] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:36:27.103Z","sequence":5255,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:36:27.103Z","sequence":5256,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:36:27.109Z","sequence":5257,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2d5b1478-2ab1-488a-ae9a-1fd6dbac3ac3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:36:29.321Z","sequence":5258,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:36:29.321Z","sequence":5259,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006C3] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:36:29.326Z","sequence":5260,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:36:29.326Z","sequence":5261,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:36:29.332Z","sequence":5262,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d0306b41-d473-4ccc-9604-63770ef0d1d8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:36:43.537Z","sequence":5263,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:36:43.537Z","sequence":5264,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 0008004C80F4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:36:43.545Z","sequence":5265,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f94e7bab-8af8-44b2-9aaf-ffaa03bef3c9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:36:46.606Z","sequence":5266,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:36:46.606Z","sequence":5267,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BCC] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:36:46.612Z","sequence":5268,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:36:46.612Z","sequence":5269,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:36:46.626Z","sequence":5270,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3ea45d6f-0e0c-4734-a378-7f7490036255, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:36:47.225Z","sequence":5271,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:36:47.225Z","sequence":5272,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006A4] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:36:47.232Z","sequence":5273,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:36:47.232Z","sequence":5274,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:36:47.239Z","sequence":5275,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-65141cc5-0600-4e60-b73f-cb97cf223888, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:36:50.746Z","sequence":5276,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:36:50.746Z","sequence":5277,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: flint]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:36:50.751Z","sequence":5278,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-bf44ff40-4b24-4924-9e5e-06b551bc2fc6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:36:50.753Z","sequence":5279,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/flint:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:36:50.754Z","sequence":5280,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: flint, type: hashed-password, auth-id: auth-flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:36:50.765Z","sequence":5281,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-cb05238e-6056-4256-b8e9-b886c448aeb2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:36:50.887Z","sequence":5282,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:36:50.887Z","sequence":5283,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB100082E] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:36:50.893Z","sequence":5284,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:36:50.894Z","sequence":5285,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:36:50.898Z","sequence":5286,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f53afc4e-1daa-48db-938f-0319791227dc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:36:51.399Z","sequence":5287,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:36:51.399Z","sequence":5288,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10008CE] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:36:51.413Z","sequence":5289,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:36:51.413Z","sequence":5290,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:36:51.42Z","sequence":5291,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a3d7bf40-00de-4ad6-9cb3-6aa2a24b9a25, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:36:53.147Z","sequence":5292,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:36:53.147Z","sequence":5293,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B6C] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:36:53.154Z","sequence":5294,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:36:53.154Z","sequence":5295,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:36:53.16Z","sequence":5296,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-51b868b8-cb43-452c-a6aa-c19e3c2bcdaa, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:36:56.117Z","sequence":5297,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oiltanking:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:36:56.117Z","sequence":5298,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oiltanking, device-id: 0008004BB60F]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:36:56.122Z","sequence":5299,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a1ee6b1a-3939-478b-bc0c-6b926235a92b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:36:56.126Z","sequence":5300,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:36:56.126Z","sequence":5301,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oiltanking]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:36:56.129Z","sequence":5302,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-43ff9b3c-2bb7-4661-a782-d029cd1852c2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:04.525Z","sequence":5303,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_190916]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"44884617855db659","parentId":"b4db0cbeed8e8420","traceId":"0000000000000000555c8e75197d32c3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:04.545Z","sequence":5304,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_190916, resource-version: 2d3246c3-9202-4ab7-98f9-81f087fee955]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"44884617855db659","parentId":"b4db0cbeed8e8420","traceId":"0000000000000000555c8e75197d32c3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:04.552Z","sequence":5305,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190916, resource-version: 4550da26-d6af-4030-8fe8-97af011b1170]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"44884617855db659","parentId":"b4db0cbeed8e8420","traceId":"0000000000000000555c8e75197d32c3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:04.555Z","sequence":5306,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_190916]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4507321c13d9a75b","parentId":"1e5696c24b1df20a","traceId":"0000000000000000555c8e75197d32c3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:04.715Z","sequence":5307,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190916]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4507321c13d9a75b","parentId":"1e5696c24b1df20a","traceId":"0000000000000000555c8e75197d32c3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:05.574Z","sequence":5308,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF6A7A7FE097086]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1aa0e082c2925869","parentId":"79847c274c0ddcc1","traceId":"000000000000000093ae2cee41c70ca1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:05.59Z","sequence":5309,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF6A7A7FE097086, resource-version: b6860910-7106-4d63-b579-438a18c7e2e3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1aa0e082c2925869","parentId":"79847c274c0ddcc1","traceId":"000000000000000093ae2cee41c70ca1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:05.604Z","sequence":5310,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF6A7A7FE097086, resource-version: 9e08fcaf-a117-46b2-aacc-4725fc9b6c9c]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1aa0e082c2925869","parentId":"79847c274c0ddcc1","traceId":"000000000000000093ae2cee41c70ca1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:06.673Z","sequence":5311,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:06.674Z","sequence":5312,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:06.677Z","sequence":5313,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-efdcbecb-47a6-4c37-8291-f0f2cf9992ae, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:06.679Z","sequence":5314,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:06.68Z","sequence":5315,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_190916]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:06.701Z","sequence":5316,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-52aad501-2344-4dc9-ae49-2051bea42f3f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:06.824Z","sequence":5317,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:06.825Z","sequence":5318,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF6A7A7FE097086] for gateway [gateway_integrationtest_network_190916]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:06.826Z","sequence":5319,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:06.826Z","sequence":5320,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_190916]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:06.832Z","sequence":5321,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:06.832Z","sequence":5322,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:06.833Z","sequence":5323,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-cf989dfe-9b29-46ba-b31b-ea92c5739aaa, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:07.132Z","sequence":5324,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a3ade729-afff-437e-8fcd-33f3cd05c75a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:10.279Z","sequence":5325,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:10.279Z","sequence":5326,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AEC] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:10.285Z","sequence":5327,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:10.285Z","sequence":5328,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:10.292Z","sequence":5329,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4b09025a-4e47-4628-b108-de2740785e80, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:13.614Z","sequence":5330,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/conditionall:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:13.614Z","sequence":5331,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: conditionall, device-id: 70B3D57BB1000228] for gateway [0008004B512D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:13.633Z","sequence":5332,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_conditionall\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:13.633Z","sequence":5333,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_conditionall\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:13.639Z","sequence":5334,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-669bdee8-ecdb-4d1f-971a-a047ffc9f71f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:14.842Z","sequence":5335,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:14.842Z","sequence":5336,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019F5] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:14.849Z","sequence":5337,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:14.849Z","sequence":5338,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:14.857Z","sequence":5339,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2a232971-6c26-4b66-93e2-7228c7db733e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:16.425Z","sequence":5340,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF6A7A7FE097086]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"521e5be72acdcef9","parentId":"8c629e159acb4f8d","traceId":"00000000000000006e0c68ccd2eda6d3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:16.442Z","sequence":5341,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF6A7A7FE097086]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"521e5be72acdcef9","parentId":"8c629e159acb4f8d","traceId":"00000000000000006e0c68ccd2eda6d3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:16.707Z","sequence":5342,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:16.707Z","sequence":5343,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000471] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:16.714Z","sequence":5344,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:16.714Z","sequence":5345,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:16.717Z","sequence":5346,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-744d7b94-fa48-4e3a-a985-9af35286c20c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:16.764Z","sequence":5347,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_190916]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2169b7d01e356200","parentId":"1143a7588ce9ca52","traceId":"0000000000000000a63f84bbdf084580","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:16.771Z","sequence":5348,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:16.771Z","sequence":5349,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000471] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:16.776Z","sequence":5350,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:16.776Z","sequence":5351,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:16.782Z","sequence":5352,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ff4090fa-b857-488a-bfbd-778ecfb7850c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:16.785Z","sequence":5353,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190916]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2169b7d01e356200","parentId":"1143a7588ce9ca52","traceId":"0000000000000000a63f84bbdf084580","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:17.385Z","sequence":5354,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:17.386Z","sequence":5355,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100067F] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:17.392Z","sequence":5356,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:17.392Z","sequence":5357,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:17.398Z","sequence":5358,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-991fcc76-79b1-45f1-9f77-17859a947ed3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:17.705Z","sequence":5359,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: FCE642C64506]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"adeb527becffd28f","parentId":"52e54bc21d5b77f3","traceId":"0000000000000000061fa26b61231769","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:17.747Z","sequence":5360,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: FCE642C64506, resource-version: 816905db-e985-4e74-bb5d-ec55e2af07ee]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"adeb527becffd28f","parentId":"52e54bc21d5b77f3","traceId":"0000000000000000061fa26b61231769","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:17.76Z","sequence":5361,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: FCE642C64506, resource-version: 8729656c-b92c-4c4a-9b03-ba6f48434cd3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"adeb527becffd28f","parentId":"52e54bc21d5b77f3","traceId":"0000000000000000061fa26b61231769","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:17.765Z","sequence":5362,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: FCE642C64506]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ac922b8aac499d28","parentId":"e21a4b3bf87aedb6","traceId":"0000000000000000061fa26b61231769","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:18.109Z","sequence":5363,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: FCE642C64506]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ac922b8aac499d28","parentId":"e21a4b3bf87aedb6","traceId":"0000000000000000061fa26b61231769","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:18.933Z","sequence":5364,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:18.933Z","sequence":5365,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001B16] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:18.968Z","sequence":5366,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:18.969Z","sequence":5367,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:18.991Z","sequence":5368,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7d3d7e04-1824-4a6c-b4d6-be11c8209772, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:19.597Z","sequence":5369,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF9E9F8B8574949]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b24776b7e9815c10","parentId":"8532f1611539eb02","traceId":"00000000000000007c56f8bfb98bf2b6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:19.614Z","sequence":5370,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF9E9F8B8574949, resource-version: faae92ab-eb97-45c9-a497-fb890b0c77c6]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b24776b7e9815c10","parentId":"8532f1611539eb02","traceId":"00000000000000007c56f8bfb98bf2b6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:19.62Z","sequence":5371,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF9E9F8B8574949, resource-version: 2948d760-3a80-47e4-a10d-35daa170d310]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b24776b7e9815c10","parentId":"8532f1611539eb02","traceId":"00000000000000007c56f8bfb98bf2b6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:20.697Z","sequence":5372,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:20.697Z","sequence":5373,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:20.701Z","sequence":5374,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-54b033d6-1dfd-4fd7-ae6e-b21b220df7ec, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:20.707Z","sequence":5375,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:20.707Z","sequence":5376,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-FCE642C64506]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:20.718Z","sequence":5377,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-760c3cd7-9468-42ba-b545-6cd0cb17eec0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:20.837Z","sequence":5378,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:20.837Z","sequence":5379,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: FCE642C64506]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:20.844Z","sequence":5380,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8b255ba0-61a9-406e-b251-83e95e2210dd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:20.848Z","sequence":5381,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:20.848Z","sequence":5382,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF9E9F8B8574949] for gateway [FCE642C64506]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:20.853Z","sequence":5383,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:20.853Z","sequence":5384,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:21.012Z","sequence":5385,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f3315eaf-859d-4df7-b9a0-04978675855a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:24.048Z","sequence":5386,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:24.048Z","sequence":5387,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A07] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:24.06Z","sequence":5388,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:24.06Z","sequence":5389,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:24.065Z","sequence":5390,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8c7b3af9-8213-456e-8add-2fc769b7bf00, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:31.443Z","sequence":5391,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:31.443Z","sequence":5392,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: shell]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:31.446Z","sequence":5393,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-5e2e836d-9445-4186-af60-b5767ed5e5d5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:31.449Z","sequence":5394,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/shell:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:31.449Z","sequence":5395,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: shell, type: hashed-password, auth-id: auth-gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:31.461Z","sequence":5396,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-35b63f34-4607-4bfe-bbf3-599e332ee334, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:31.593Z","sequence":5397,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:31.593Z","sequence":5398,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A12] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:31.598Z","sequence":5399,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:31.598Z","sequence":5400,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:31.604Z","sequence":5401,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-12b3af48-25b1-4ee8-b89e-5f9ee5f35a17, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:33.648Z","sequence":5402,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF9E9F8B8574949]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"540fb29ce980aec3","parentId":"35d0367d2afa5c1f","traceId":"00000000000000006cf7c476f8447e73","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:33.662Z","sequence":5403,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF9E9F8B8574949]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"540fb29ce980aec3","parentId":"35d0367d2afa5c1f","traceId":"00000000000000006cf7c476f8447e73","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:34.053Z","sequence":5404,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: FCE642C64506]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3b82a45224ed18fa","parentId":"c60e071d75387ab1","traceId":"0000000000000000752b9095741c9c14","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:34.072Z","sequence":5405,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: FCE642C64506]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3b82a45224ed18fa","parentId":"c60e071d75387ab1","traceId":"0000000000000000752b9095741c9c14","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:38.803Z","sequence":5406,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:38.803Z","sequence":5407,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BE8] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:38.809Z","sequence":5408,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:38.809Z","sequence":5409,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:38.816Z","sequence":5410,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-76c4d135-9aea-4eb0-9be0-b21844550944, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:39.232Z","sequence":5411,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:39.232Z","sequence":5412,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BE4] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:39.256Z","sequence":5413,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:39.256Z","sequence":5414,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:39.263Z","sequence":5415,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-efbfa98e-9e48-4fa3-b60d-97ecdf3595ba, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:42.073Z","sequence":5416,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/aloxy:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:42.074Z","sequence":5417,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: aloxy, device-id: 0008004A8F68]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:42.079Z","sequence":5418,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8296efd8-3134-44bc-9f3e-40b2352f04e8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:42.082Z","sequence":5419,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:42.082Z","sequence":5420,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: aloxy]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:42.085Z","sequence":5421,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-4b9b81ba-9e1f-453b-85ec-8f1a472e1c01, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:51.411Z","sequence":5422,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:51.412Z","sequence":5423,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BB613]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:51.419Z","sequence":5424,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a1bdc3eb-df7c-45e8-8aba-ddf75b2a5d07, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:54.346Z","sequence":5425,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:54.346Z","sequence":5426,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100016F] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:54.353Z","sequence":5427,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:54.353Z","sequence":5428,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:54.356Z","sequence":5429,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e33dc829-4f1f-445f-ab60-34975739ff10, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:54.391Z","sequence":5430,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:54.391Z","sequence":5431,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100016F] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:54.397Z","sequence":5432,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:54.398Z","sequence":5433,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:54.401Z","sequence":5434,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9eb7c92f-c165-4070-afa0-7b28720c231b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:56.958Z","sequence":5435,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:56.958Z","sequence":5436,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001E7] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:56.971Z","sequence":5437,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:56.976Z","sequence":5438,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:56.98Z","sequence":5439,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-98be37e5-48d5-4934-aabf-55ac40cb54bc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:56.991Z","sequence":5440,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:56.991Z","sequence":5441,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001E7] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:56.997Z","sequence":5442,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:56.997Z","sequence":5443,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:57.002Z","sequence":5444,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a6431355-dabe-4ed1-91b6-cea66409adf6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:58.892Z","sequence":5445,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:58.892Z","sequence":5446,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000809] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:58.9Z","sequence":5447,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:58.9Z","sequence":5448,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:37:58.904Z","sequence":5449,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ceb8e68a-cecd-40da-b1bd-237cb16b0324, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:00.138Z","sequence":5450,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/acta:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:00.139Z","sequence":5451,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: acta, device-id: 0008004AAAA3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:00.145Z","sequence":5452,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d94ae79e-ed47-487c-a683-c6d2a7a340a7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:00.159Z","sequence":5453,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:00.16Z","sequence":5454,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: acta]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:00.162Z","sequence":5455,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-ae3eca67-b23f-4a9e-bfcf-ab0724459723, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:00.981Z","sequence":5456,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:00.982Z","sequence":5457,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AED] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:00.993Z","sequence":5458,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:00.993Z","sequence":5459,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:01Z","sequence":5460,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7d5aa647-3ca9-4edc-a39b-3663a94318db, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:03.538Z","sequence":5461,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:03.538Z","sequence":5462,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AEE] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:03.547Z","sequence":5463,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:03.552Z","sequence":5464,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:03.562Z","sequence":5465,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-32527a06-6947-45c3-9a69-734153e482d4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:09.002Z","sequence":5466,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:09.003Z","sequence":5467,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006D2] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:09.009Z","sequence":5468,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.8.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:09.01Z","sequence":5469,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:09.015Z","sequence":5470,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1719ca69-3b44-44ed-96d3-adfe098e3da5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:11.84Z","sequence":5471,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:11.84Z","sequence":5472,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006C9] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:11.846Z","sequence":5473,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:11.846Z","sequence":5474,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:11.853Z","sequence":5475,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-804b7353-393a-4afa-a961-51fd9c7ed158, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:12.917Z","sequence":5476,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:12.917Z","sequence":5477,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001B12] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:12.925Z","sequence":5478,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:12.925Z","sequence":5479,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:12.933Z","sequence":5480,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-fba0c658-2a2d-4431-8054-81a570f7ef99, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:14.94Z","sequence":5481,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:14.94Z","sequence":5482,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:14.941Z","sequence":5483,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:14.942Z","sequence":5484,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000204] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:14.945Z","sequence":5485,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d065d6b6-d07a-4f0e-8d8c-827cd55b385e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:14.947Z","sequence":5486,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:14.947Z","sequence":5487,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:14.949Z","sequence":5488,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:14.949Z","sequence":5489,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000204] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:14.95Z","sequence":5490,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8d66ca63-dfb0-4f2a-9664-6586800635bc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:14.954Z","sequence":5491,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:14.954Z","sequence":5492,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:14.956Z","sequence":5493,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2091b2d4-afda-4a12-bcd7-7d41113187c3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:16.368Z","sequence":5494,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:16.369Z","sequence":5495,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001B1A] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:16.375Z","sequence":5496,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:16.376Z","sequence":5497,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:16.381Z","sequence":5498,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-03ec87a7-90b9-4a71-8ce5-4b115e2e83cc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:24.406Z","sequence":5499,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:24.406Z","sequence":5500,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AE5] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:24.413Z","sequence":5501,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:24.413Z","sequence":5502,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:24.419Z","sequence":5503,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-46163208-52d6-4868-aca9-f107b925092f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:25.967Z","sequence":5504,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:25.967Z","sequence":5505,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006CA] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:25.974Z","sequence":5506,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.8.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:25.974Z","sequence":5507,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:25.981Z","sequence":5508,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-328c5520-5c21-47cd-ad84-a83d2ad15842, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:28.605Z","sequence":5509,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:28.605Z","sequence":5510,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001B08] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:28.61Z","sequence":5511,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:28.61Z","sequence":5512,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:28.616Z","sequence":5513,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b418aed1-e7c1-4f62-b117-09d27aef99d3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:35.401Z","sequence":5514,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:35.401Z","sequence":5515,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:35.406Z","sequence":5516,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-eab0c3cf-c3cc-47f1-939d-c6ececb48cac, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:35.41Z","sequence":5517,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:35.41Z","sequence":5518,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oci]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:35.413Z","sequence":5519,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-e772a366-4a6c-445d-88e0-29edd43bcb34, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:36.151Z","sequence":5520,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:36.151Z","sequence":5521,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001F4] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:36.157Z","sequence":5522,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:36.157Z","sequence":5523,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:36.16Z","sequence":5524,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-26ce9a2d-3e60-4b6c-8d20-d760a112c767, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:36.7Z","sequence":5525,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:36.7Z","sequence":5526,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001F4] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:36.706Z","sequence":5527,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:36.706Z","sequence":5528,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:36.71Z","sequence":5529,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f95d60a6-98e1-4404-b82b-3ca3e5adc9f4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:45.527Z","sequence":5530,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/repsol:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:45.527Z","sequence":5531,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: repsol, device-id: 0008004A37FF]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:45.532Z","sequence":5532,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0d01c857-7081-48bf-9896-ef97619b6461, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:45.535Z","sequence":5533,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:45.535Z","sequence":5534,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: repsol]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:45.538Z","sequence":5535,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-cdbcb606-43f2-486e-aa02-d7ba6bbdc234, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:50.971Z","sequence":5536,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:50.971Z","sequence":5537,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000A5C] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:50.978Z","sequence":5538,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:50.978Z","sequence":5539,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:50.988Z","sequence":5540,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5147ef4d-4953-44fe-b383-6f1126d44d7a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:51.431Z","sequence":5541,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:51.431Z","sequence":5542,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: lanxess]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:51.452Z","sequence":5543,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-e1c8c419-fa34-4ce3-8a02-2bf52051e7c2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:51.456Z","sequence":5544,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:51.457Z","sequence":5545,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 70B3D57BB1000190] for gateway [0008004BB84C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:51.481Z","sequence":5546,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_lanxess\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:51.481Z","sequence":5547,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_lanxess\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:51.493Z","sequence":5548,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e68c5ee0-c2d9-4b9e-ae9f-58d7ec385618, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:51.987Z","sequence":5549,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:51.988Z","sequence":5550,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 70B3D57BB1000190] for gateway [0008004BBD1B]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:51.997Z","sequence":5551,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_lanxess\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:51.997Z","sequence":5552,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_lanxess\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:52.005Z","sequence":5553,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4edf7e6e-300b-489c-adae-ebddd4edbfe9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:52.031Z","sequence":5554,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:52.032Z","sequence":5555,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 70B3D57BB1000190] for gateway [0008004BB613]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:52.039Z","sequence":5556,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_lanxess\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:52.04Z","sequence":5557,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_lanxess\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:52.043Z","sequence":5558,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7a59c443-e4cf-4b5e-a02d-fb2050415656, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:56.961Z","sequence":5559,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:56.961Z","sequence":5560,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: ineos]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:56.965Z","sequence":5561,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-c7950e2d-3d94-4ad5-ad16-d7833b070e11, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:56.967Z","sequence":5562,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:56.967Z","sequence":5563,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB1000A7C] for gateway [0008004B5135]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:56.972Z","sequence":5564,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:56.972Z","sequence":5565,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:38:56.975Z","sequence":5566,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e4a04fd0-663b-49ae-9408-730b71b9cdef, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:00.311Z","sequence":5567,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:00.311Z","sequence":5568,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10009C4] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:00.312Z","sequence":5569,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:00.312Z","sequence":5570,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:00.318Z","sequence":5571,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4e0d2223-71c4-4466-b3d5-0ecf6cb44650, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:00.318Z","sequence":5572,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:00.318Z","sequence":5573,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:00.323Z","sequence":5574,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-09ff2856-9a63-4c76-8e4e-17576e062542, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:04.3Z","sequence":5575,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_190918]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"28ef395a34a1bb33","parentId":"e917a422ed55e043","traceId":"0000000000000000685caedecc2aa970","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:04.496Z","sequence":5576,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_190918, resource-version: d4826a49-49d4-47a7-ac83-51bce6314d19]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"28ef395a34a1bb33","parentId":"e917a422ed55e043","traceId":"0000000000000000685caedecc2aa970","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:04.54Z","sequence":5577,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190918, resource-version: afc0e39c-4203-4c98-9364-303c35cac669]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"28ef395a34a1bb33","parentId":"e917a422ed55e043","traceId":"0000000000000000685caedecc2aa970","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:04.549Z","sequence":5578,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_190918]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a68feb546a5bcd53","parentId":"2bdbbb90c3f5f630","traceId":"0000000000000000685caedecc2aa970","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:04.803Z","sequence":5579,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190918]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a68feb546a5bcd53","parentId":"2bdbbb90c3f5f630","traceId":"0000000000000000685caedecc2aa970","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:04.822Z","sequence":5580,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:04.822Z","sequence":5581,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 0008004B51D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:04.828Z","sequence":5582,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-43047707-5702-4132-b290-773760242f4f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:04.831Z","sequence":5583,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:04.831Z","sequence":5584,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: dow]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:04.835Z","sequence":5585,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-82f49e2d-d14c-432c-95f6-041bb01d2528, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:05.785Z","sequence":5586,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFAEAFD8F544846]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c259ad421b041a76","parentId":"e75ab084e289f775","traceId":"0000000000000000182a7232cf8bb8ec","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:05.801Z","sequence":5587,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFAEAFD8F544846, resource-version: c606c36c-ac2e-4616-939c-48a3052bb6a7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c259ad421b041a76","parentId":"e75ab084e289f775","traceId":"0000000000000000182a7232cf8bb8ec","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:05.809Z","sequence":5588,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFAEAFD8F544846, resource-version: 07de048e-591a-4af6-984b-9e8000236386]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c259ad421b041a76","parentId":"e75ab084e289f775","traceId":"0000000000000000182a7232cf8bb8ec","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:06.9Z","sequence":5589,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:06.9Z","sequence":5590,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_190918]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:06.913Z","sequence":5591,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-e368327f-1b87-45e1-b09e-4a10c5befae0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:07.048Z","sequence":5592,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:07.049Z","sequence":5593,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFAEAFD8F544846] for gateway [gateway_integrationtest_network_190918]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:07.049Z","sequence":5594,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:07.049Z","sequence":5595,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_190918]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:07.055Z","sequence":5596,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-dbd9d8be-6e55-4d45-9d31-80bba620ebdf, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:07.056Z","sequence":5597,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:07.057Z","sequence":5598,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:07.445Z","sequence":5599,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e9827ec1-93ce-4a09-a861-4090dba615bd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:13.574Z","sequence":5600,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:13.574Z","sequence":5601,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB1000A8C] for gateway [0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:13.584Z","sequence":5602,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:13.584Z","sequence":5603,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:13.588Z","sequence":5604,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7e987640-d540-4b1b-bf2e-eb31b9645059, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:15.727Z","sequence":5605,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:15.727Z","sequence":5606,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10018B1] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:15.733Z","sequence":5607,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:15.733Z","sequence":5608,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:15.74Z","sequence":5609,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-46b2f04e-6a65-4438-97ab-890f1ab68c9e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:17.419Z","sequence":5610,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:17.419Z","sequence":5611,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10018DF] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:17.424Z","sequence":5612,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:17.424Z","sequence":5613,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:17.43Z","sequence":5614,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-463cf963-d196-4d3d-9d45-4c381a9d79b8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:19.321Z","sequence":5615,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFAEAFD8F544846]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3982e407d52f48b3","parentId":"edfc0355421491fe","traceId":"0000000000000000cb0bdb5ad8c2fa40","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:19.337Z","sequence":5616,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFAEAFD8F544846]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3982e407d52f48b3","parentId":"edfc0355421491fe","traceId":"0000000000000000cb0bdb5ad8c2fa40","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:19.733Z","sequence":5617,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_190918]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f928094584621990","parentId":"dea65011146b7a0e","traceId":"0000000000000000bcc51cc4e5322a40","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:19.75Z","sequence":5618,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190918]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f928094584621990","parentId":"dea65011146b7a0e","traceId":"0000000000000000bcc51cc4e5322a40","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:20.43Z","sequence":5619,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 1C40511427F2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5788a129c8430f7b","parentId":"6f8a75d60210cf20","traceId":"000000000000000016e22bd2945f3000","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:20.448Z","sequence":5620,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 1C40511427F2, resource-version: ef2d99f5-a543-44c9-9d12-6d9ec2e75369]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5788a129c8430f7b","parentId":"6f8a75d60210cf20","traceId":"000000000000000016e22bd2945f3000","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:20.455Z","sequence":5621,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 1C40511427F2, resource-version: b0b1b9ec-ec24-4fc0-b1b4-b9539cffc5a3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5788a129c8430f7b","parentId":"6f8a75d60210cf20","traceId":"000000000000000016e22bd2945f3000","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:20.459Z","sequence":5622,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 1C40511427F2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4ba233ec3ec8737e","parentId":"1a0aaf6e6e7fd6c0","traceId":"000000000000000016e22bd2945f3000","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:20.658Z","sequence":5623,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 1C40511427F2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4ba233ec3ec8737e","parentId":"1a0aaf6e6e7fd6c0","traceId":"000000000000000016e22bd2945f3000","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:21.399Z","sequence":5624,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF54BF8D58CF561]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f12cb9b0fe07fe68","parentId":"8ff59dbdf02d6df7","traceId":"00000000000000005e39c0d721dfbd80","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:21.42Z","sequence":5625,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF54BF8D58CF561, resource-version: 70c43b73-c040-4126-bb5c-a9ce3c08fddc]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f12cb9b0fe07fe68","parentId":"8ff59dbdf02d6df7","traceId":"00000000000000005e39c0d721dfbd80","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:21.428Z","sequence":5626,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF54BF8D58CF561, resource-version: 078668dc-d0de-4150-9b80-faaefaa54f9a]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f12cb9b0fe07fe68","parentId":"8ff59dbdf02d6df7","traceId":"00000000000000005e39c0d721dfbd80","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:22.472Z","sequence":5627,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:22.472Z","sequence":5628,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-1C40511427F2]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:22.485Z","sequence":5629,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-a2f136f9-31eb-441f-84c5-d372028b94a0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:22.608Z","sequence":5630,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:22.608Z","sequence":5631,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 1C40511427F2]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:22.613Z","sequence":5632,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-cdd7b9d1-2b12-493c-8d2b-54ff798820c0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:22.622Z","sequence":5633,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:22.623Z","sequence":5634,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF54BF8D58CF561] for gateway [1C40511427F2]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:22.629Z","sequence":5635,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:22.629Z","sequence":5636,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:22.941Z","sequence":5637,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4afb8050-99f6-4244-831f-a591449ed8c0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:25.638Z","sequence":5638,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:25.639Z","sequence":5639,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10018BB] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:25.644Z","sequence":5640,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:25.644Z","sequence":5641,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:25.651Z","sequence":5642,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-65954b7b-a6b0-446c-9f51-23f397cd00a5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:31.793Z","sequence":5643,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:31.793Z","sequence":5644,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001909] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:31.799Z","sequence":5645,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:31.799Z","sequence":5646,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:31.805Z","sequence":5647,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0b87fd65-6d08-4d41-95c2-2cfcd97bf319, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:34.207Z","sequence":5648,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF54BF8D58CF561]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ac8812a7dd2300ee","parentId":"7141eacaafc631e3","traceId":"000000000000000080daa9a5092b4100","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:34.226Z","sequence":5649,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF54BF8D58CF561]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ac8812a7dd2300ee","parentId":"7141eacaafc631e3","traceId":"000000000000000080daa9a5092b4100","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:34.692Z","sequence":5650,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 1C40511427F2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"140ef03466ec8d20","parentId":"b2626814d0e7a882","traceId":"0000000000000000d82b1e65c8a2e86a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:34.707Z","sequence":5651,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 1C40511427F2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"140ef03466ec8d20","parentId":"b2626814d0e7a882","traceId":"0000000000000000d82b1e65c8a2e86a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:39.653Z","sequence":5652,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:39.653Z","sequence":5653,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006A5] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:39.653Z","sequence":5654,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:39.653Z","sequence":5655,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:39.659Z","sequence":5656,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-44378fae-8cf6-4184-8bd5-55c379d3eb7e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:39.66Z","sequence":5657,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:39.66Z","sequence":5658,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:39.667Z","sequence":5659,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-50129c57-87db-4135-9fa1-1bc10f6af31e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:40.502Z","sequence":5660,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:40.502Z","sequence":5661,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10008A7] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:40.507Z","sequence":5662,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:40.507Z","sequence":5663,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:40.511Z","sequence":5664,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-caffed1f-de99-4453-bb86-99ad6a4c13a4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:42.971Z","sequence":5665,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/conditionall:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:42.972Z","sequence":5666,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: conditionall, device-id: 0008004B512D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:42.978Z","sequence":5667,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4d2ca252-8afd-4036-9cee-e9d545389efc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:42.982Z","sequence":5668,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:42.982Z","sequence":5669,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: conditionall]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:42.984Z","sequence":5670,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-fe039566-62d7-4068-bc47-0709bb04783f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:43.757Z","sequence":5671,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:43.757Z","sequence":5672,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10018AD] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:43.763Z","sequence":5673,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:43.764Z","sequence":5674,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:43.769Z","sequence":5675,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-40d0df1d-6402-4c94-9a12-511a9bd899e9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:48.902Z","sequence":5676,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:48.902Z","sequence":5677,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000571] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:48.907Z","sequence":5678,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:48.908Z","sequence":5679,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:48.914Z","sequence":5680,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-40135afb-949f-44cd-bd1e-b90402c574fa, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:52.769Z","sequence":5681,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:52.769Z","sequence":5682,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10018B0] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:52.778Z","sequence":5683,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:52.778Z","sequence":5684,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:39:52.785Z","sequence":5685,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8a5e8273-4686-469e-9c3d-a597f99d2b14, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:07.924Z","sequence":5686,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:07.924Z","sequence":5687,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: flint]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:07.928Z","sequence":5688,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-60a57f99-a4e0-4fa2-b27e-bc3ae8a2be15, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:07.931Z","sequence":5689,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/flint:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:07.931Z","sequence":5690,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: flint, type: hashed-password, auth-id: auth-flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:07.943Z","sequence":5691,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-72e0f143-0f81-4272-8f53-cb0d131e3bf3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:08.066Z","sequence":5692,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:08.066Z","sequence":5693,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000822] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:08.072Z","sequence":5694,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:08.072Z","sequence":5695,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:08.076Z","sequence":5696,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9fe46334-377a-43dd-8c8d-31a750042618, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:09.042Z","sequence":5697,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:09.043Z","sequence":5698,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10009D0] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:09.049Z","sequence":5699,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:09.05Z","sequence":5700,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:09.053Z","sequence":5701,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-61c57e9f-1ce0-4313-9dd6-067e725ccc82, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:10.131Z","sequence":5702,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:10.131Z","sequence":5703,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: terega]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:10.135Z","sequence":5704,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-5dca0eb1-3671-4dd7-91cc-b929f31d289e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:10.137Z","sequence":5705,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/terega:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:10.138Z","sequence":5706,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: terega, type: hashed-password, auth-id: auth-gateway_terega_network_27]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:10.149Z","sequence":5707,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-6d335e80-1013-4cc2-89b3-70772638cad8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:10.293Z","sequence":5708,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/terega:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:10.293Z","sequence":5709,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: terega, device-id: 70B3D57BB10000A2] for gateway [gateway_terega_network_27]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:10.294Z","sequence":5710,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/terega:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:10.294Z","sequence":5711,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: terega, device-id: gateway_terega_network_27]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:10.3Z","sequence":5712,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_terega\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:10.301Z","sequence":5713,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_terega\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:10.302Z","sequence":5714,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b783fd34-29ef-46fb-9561-cb2de72220d2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:10.306Z","sequence":5715,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-bbb34daa-30f4-4bd9-9544-dfda76273cd4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:12.16Z","sequence":5716,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:12.161Z","sequence":5717,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100191E] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:12.166Z","sequence":5718,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:12.167Z","sequence":5719,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:12.173Z","sequence":5720,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-217b1207-8f51-4c42-aaaf-06929054f290, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:18.406Z","sequence":5721,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:18.406Z","sequence":5722,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BB84C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:18.415Z","sequence":5723,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c5335a85-6875-4005-972c-2f78631aee0f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:20.343Z","sequence":5724,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:20.343Z","sequence":5725,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BD9] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:20.349Z","sequence":5726,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:20.349Z","sequence":5727,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:20.356Z","sequence":5728,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3426fcf8-c703-4661-abc4-2a886e8a4abd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:20.708Z","sequence":5729,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:20.708Z","sequence":5730,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 0008004B5135]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:20.715Z","sequence":5731,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-58fbb329-1853-4619-b6e8-fd080172c7f2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:22.233Z","sequence":5732,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:22.233Z","sequence":5733,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100194A] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:22.24Z","sequence":5734,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:22.24Z","sequence":5735,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:22.249Z","sequence":5736,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a064a346-112a-4851-95bb-505b4abdad5c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:23.565Z","sequence":5737,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:23.565Z","sequence":5738,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BBD1B]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:23.571Z","sequence":5739,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-47a91ee4-1c3e-4c2c-9d10-c7b2df0cc249, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:23.786Z","sequence":5740,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:23.786Z","sequence":5741,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10018DA] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:23.795Z","sequence":5742,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:23.795Z","sequence":5743,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:23.802Z","sequence":5744,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-cc623827-fd0d-499e-92e1-33b7de1eca5e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:29.353Z","sequence":5745,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:29.353Z","sequence":5746,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001902] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:29.358Z","sequence":5747,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:29.358Z","sequence":5748,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:29.364Z","sequence":5749,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-083ce923-59b5-48ff-9afe-d89471e4a16a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:30.038Z","sequence":5750,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/arkema:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:30.038Z","sequence":5751,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: arkema, device-id: 0008004AE119]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:30.045Z","sequence":5752,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-bf4df9a6-d200-4ff3-9e7b-52bc8805ad86, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:30.049Z","sequence":5753,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:30.049Z","sequence":5754,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: arkema]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:30.052Z","sequence":5755,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-3628b6fe-29b4-4542-ab8f-eedef3a79fc3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:31.361Z","sequence":5756,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:31.361Z","sequence":5757,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001913] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:31.373Z","sequence":5758,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:31.373Z","sequence":5759,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:31.38Z","sequence":5760,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5d5569ef-428d-48c1-875c-19f220a9d1fe, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:31.87Z","sequence":5761,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:31.87Z","sequence":5762,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: shell]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:31.875Z","sequence":5763,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-8ba839dd-eaca-42fb-9be9-d09b2b594703, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:31.877Z","sequence":5764,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/shell:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:31.877Z","sequence":5765,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: shell, type: hashed-password, auth-id: auth-gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:31.891Z","sequence":5766,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-804e0910-db7e-4a92-b30e-48e5026b9dd1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:36.466Z","sequence":5767,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:36.466Z","sequence":5768,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000179] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:36.486Z","sequence":5769,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:36.486Z","sequence":5770,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:36.491Z","sequence":5771,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-249bc29b-cca4-4b3f-aef9-3fbcda1cf598, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:36.532Z","sequence":5772,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:36.532Z","sequence":5773,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000179] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:36.54Z","sequence":5774,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:36.54Z","sequence":5775,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:36.543Z","sequence":5776,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d8c9993d-3844-4b36-8fc8-511e152e10d1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:43.089Z","sequence":5777,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:43.089Z","sequence":5778,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BBD1C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:43.096Z","sequence":5779,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d299aabc-db79-45bb-82ae-3fcc2df57618, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:43.359Z","sequence":5780,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:43.359Z","sequence":5781,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001904] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:43.369Z","sequence":5782,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:43.369Z","sequence":5783,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:43.397Z","sequence":5784,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b73599c4-d05e-4020-af54-8c9089ab0c11, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:46.893Z","sequence":5785,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:46.893Z","sequence":5786,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006CF] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:46.908Z","sequence":5787,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:46.909Z","sequence":5788,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:46.921Z","sequence":5789,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-275aa870-e5d5-41c5-93d5-dc7286fee313, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:48.053Z","sequence":5790,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:48.053Z","sequence":5791,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019F0] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:48.065Z","sequence":5792,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:48.065Z","sequence":5793,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:48.077Z","sequence":5794,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-75d6ff89-6409-4edc-8d69-040f26bab0d7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:48.595Z","sequence":5795,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:48.595Z","sequence":5796,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001920] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:48.601Z","sequence":5797,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:48.601Z","sequence":5798,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:48.609Z","sequence":5799,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ca1810e9-a2d1-4764-95b6-6b861a51c839, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:52.887Z","sequence":5800,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:52.887Z","sequence":5801,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10018AE] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:52.898Z","sequence":5802,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:52.899Z","sequence":5803,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:52.905Z","sequence":5804,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0e08f9ae-c46c-47a9-aa6b-6ebf8d00a21c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:55.85Z","sequence":5805,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:55.85Z","sequence":5806,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000F88] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:55.859Z","sequence":5807,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:55.859Z","sequence":5808,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:40:55.866Z","sequence":5809,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-164a9d54-2eff-40d6-a4bc-a61299a18170, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:00.916Z","sequence":5810,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/terega:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:00.916Z","sequence":5811,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: terega, device-id: 353438340046002D] for gateway [gateway_terega_network_27]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:00.922Z","sequence":5812,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_terega\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:00.922Z","sequence":5813,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_terega\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:00.925Z","sequence":5814,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c86d86b7-10bf-465d-95d0-e31432ce4c07, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:04.224Z","sequence":5815,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_190920]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"544db880b8ed7e9f","parentId":"110751e4887bcbc8","traceId":"00000000000000003da7be77b58d9fb2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:04.295Z","sequence":5816,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_190920, resource-version: 1353e582-4b74-4fba-b2ba-41d992e2ae78]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"544db880b8ed7e9f","parentId":"110751e4887bcbc8","traceId":"00000000000000003da7be77b58d9fb2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:04.307Z","sequence":5817,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190920, resource-version: 81981963-5830-4ec5-b88b-c7d046b1f729]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"544db880b8ed7e9f","parentId":"110751e4887bcbc8","traceId":"00000000000000003da7be77b58d9fb2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:04.311Z","sequence":5818,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_190920]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7fbc9c1d7a6174a4","parentId":"367c01fe44b56818","traceId":"00000000000000003da7be77b58d9fb2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:04.501Z","sequence":5819,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190920]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7fbc9c1d7a6174a4","parentId":"367c01fe44b56818","traceId":"00000000000000003da7be77b58d9fb2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:04.661Z","sequence":5820,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:04.661Z","sequence":5821,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100191C] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:04.669Z","sequence":5822,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:04.669Z","sequence":5823,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:04.676Z","sequence":5824,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5c023b47-aac8-4197-ae54-1d077a2fa10b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:05.208Z","sequence":5825,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/repsol:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:05.208Z","sequence":5826,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: repsol, device-id: 70B3D57BB1000229] for gateway [0008004A37FF]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:05.214Z","sequence":5827,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:0.4.1\"\n },\n \"viaGroups\" : [ \"gateways_repsol\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:05.215Z","sequence":5828,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_repsol\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:05.217Z","sequence":5829,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5b197b38-d43f-4917-9d66-61ad2a99b42c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:05.534Z","sequence":5830,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFBB0764DC93653]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d4853f9624df9fd6","parentId":"09f75af664efbccc","traceId":"0000000000000000499e33e581e598d2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:05.605Z","sequence":5831,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFBB0764DC93653, resource-version: 51fb7f96-b137-49ce-af74-2cfed49586dc]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d4853f9624df9fd6","parentId":"09f75af664efbccc","traceId":"0000000000000000499e33e581e598d2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:05.647Z","sequence":5832,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFBB0764DC93653, resource-version: 28442ab0-a010-41cd-98e1-a42476aa5d99]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d4853f9624df9fd6","parentId":"09f75af664efbccc","traceId":"0000000000000000499e33e581e598d2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:06.753Z","sequence":5833,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:06.753Z","sequence":5834,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:06.756Z","sequence":5835,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-7544850c-e9b0-41a6-a21f-8fc7e9193c16, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:06.758Z","sequence":5836,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:06.758Z","sequence":5837,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_190920]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:06.773Z","sequence":5838,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-e005e36a-c811-4bea-a8fd-dc03ee3342f4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:06.893Z","sequence":5839,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:06.893Z","sequence":5840,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFBB0764DC93653] for gateway [gateway_integrationtest_network_190920]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:06.894Z","sequence":5841,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:06.894Z","sequence":5842,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_190920]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:06.901Z","sequence":5843,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:06.901Z","sequence":5844,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:06.903Z","sequence":5845,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-40e9c78b-f27b-4d85-8611-50939c389d6e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:07.429Z","sequence":5846,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-99992112-6a80-406a-8c94-1a3a1ed4f698, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:12.751Z","sequence":5847,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:12.751Z","sequence":5848,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:12.757Z","sequence":5849,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2401d82f-ece0-4d84-af37-027f58e7e253, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:13.073Z","sequence":5850,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:13.073Z","sequence":5851,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001908] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:13.094Z","sequence":5852,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:13.094Z","sequence":5853,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:13.152Z","sequence":5854,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e8ed5e25-3d19-478d-9c4b-1985cc5d12cb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:17.715Z","sequence":5855,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:17.715Z","sequence":5856,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100078A] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:17.722Z","sequence":5857,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:17.722Z","sequence":5858,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:17.729Z","sequence":5859,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1bae73a3-07c4-4648-8b7d-48d9b2a3a53a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:18.481Z","sequence":5860,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFBB0764DC93653]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"45bc9f573ae6ef68","parentId":"3812360b0ec96a27","traceId":"00000000000000007f4f3a231d00faba","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:18.608Z","sequence":5861,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFBB0764DC93653]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"45bc9f573ae6ef68","parentId":"3812360b0ec96a27","traceId":"00000000000000007f4f3a231d00faba","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:19.047Z","sequence":5862,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_190920]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6519cbd6f7c93159","parentId":"7ecf85d139ad6643","traceId":"0000000000000000254aa63696dc0bb5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:19.113Z","sequence":5863,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190920]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6519cbd6f7c93159","parentId":"7ecf85d139ad6643","traceId":"0000000000000000254aa63696dc0bb5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:19.586Z","sequence":5864,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: F2A11FA52003]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0fa364ccb2339419","parentId":"f5076a2128ab9514","traceId":"000000000000000038a9f86805b18542","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:19.613Z","sequence":5865,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: F2A11FA52003, resource-version: a0aa3eb4-6f28-4919-a972-6b96f5171a2e]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0fa364ccb2339419","parentId":"f5076a2128ab9514","traceId":"000000000000000038a9f86805b18542","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:19.731Z","sequence":5866,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:19.731Z","sequence":5867,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000227] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:19.746Z","sequence":5868,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:19.746Z","sequence":5869,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:19.749Z","sequence":5870,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: F2A11FA52003, resource-version: 4c38a438-5cda-490d-ada6-b4c6ab3ab25c]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0fa364ccb2339419","parentId":"f5076a2128ab9514","traceId":"000000000000000038a9f86805b18542","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:19.75Z","sequence":5871,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-10b7ec2b-f32e-4c87-94e4-df3d1f5dd5b4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:19.755Z","sequence":5872,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: F2A11FA52003]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4e8b9127356e1633","parentId":"dcb657b41c2cde79","traceId":"000000000000000038a9f86805b18542","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:19.772Z","sequence":5873,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:19.773Z","sequence":5874,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000227] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:19.792Z","sequence":5875,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:19.792Z","sequence":5876,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:19.796Z","sequence":5877,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5fbcf183-79e6-4639-9920-74882a113be8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:20.003Z","sequence":5878,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: F2A11FA52003]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4e8b9127356e1633","parentId":"dcb657b41c2cde79","traceId":"000000000000000038a9f86805b18542","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:20.863Z","sequence":5879,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF858DC52D99D5E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4617edbf39970b6a","parentId":"4bf8070eda8c081d","traceId":"000000000000000068abad2bf46841e0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:20.948Z","sequence":5880,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF858DC52D99D5E, resource-version: 0bef75e3-4869-4b79-911b-5f1ad7abe3ad]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4617edbf39970b6a","parentId":"4bf8070eda8c081d","traceId":"000000000000000068abad2bf46841e0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:20.957Z","sequence":5881,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF858DC52D99D5E, resource-version: 3e4cedb2-cd15-437f-9c8d-d9642a1dd695]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4617edbf39970b6a","parentId":"4bf8070eda8c081d","traceId":"000000000000000068abad2bf46841e0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:21.537Z","sequence":5882,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:21.537Z","sequence":5883,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB1000A5D] for gateway [0008004B5135]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:21.545Z","sequence":5884,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:21.545Z","sequence":5885,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:21.549Z","sequence":5886,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-64dc1e78-a699-4544-b301-2c7ad519a805, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:22.131Z","sequence":5887,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:22.131Z","sequence":5888,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:22.169Z","sequence":5889,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-74b0f60b-183b-4819-b720-e1932547656b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:22.173Z","sequence":5890,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:22.173Z","sequence":5891,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-F2A11FA52003]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:22.221Z","sequence":5892,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-c28d0309-6f0a-434b-9f3d-f41d39af3922, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:22.345Z","sequence":5893,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:22.345Z","sequence":5894,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: F2A11FA52003]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:22.353Z","sequence":5895,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-55d686e5-4b3d-4650-9eb9-190803139628, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:22.36Z","sequence":5896,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:22.361Z","sequence":5897,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF858DC52D99D5E] for gateway [F2A11FA52003]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:22.369Z","sequence":5898,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:22.369Z","sequence":5899,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:22.835Z","sequence":5900,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-01310b1a-cb69-4923-b4fe-6e83d7511f3f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:33.203Z","sequence":5901,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:33.203Z","sequence":5902,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AE6] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:33.247Z","sequence":5903,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:33.247Z","sequence":5904,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:33.298Z","sequence":5905,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3be49077-5b20-4142-b5ae-d653f01885a8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:33.833Z","sequence":5906,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF858DC52D99D5E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f09f5e9dee970efa","parentId":"22ceff33c7990098","traceId":"0000000000000000ac7ea652f507524f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:33.849Z","sequence":5907,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF858DC52D99D5E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f09f5e9dee970efa","parentId":"22ceff33c7990098","traceId":"0000000000000000ac7ea652f507524f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:34.168Z","sequence":5908,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: F2A11FA52003]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"799e07b498d5523a","parentId":"a6cbbcdfa74238c6","traceId":"000000000000000092b4cf6cafdc36c0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:34.209Z","sequence":5909,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: F2A11FA52003]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"799e07b498d5523a","parentId":"a6cbbcdfa74238c6","traceId":"000000000000000092b4cf6cafdc36c0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:34.416Z","sequence":5910,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:34.416Z","sequence":5911,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000A94] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:34.426Z","sequence":5912,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:34.426Z","sequence":5913,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:34.432Z","sequence":5914,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3cc45650-7c38-43fe-8771-b97f73355090, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:39.048Z","sequence":5915,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:39.048Z","sequence":5916,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BC4] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:39.054Z","sequence":5917,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:39.054Z","sequence":5918,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:39.06Z","sequence":5919,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9746d4ae-dca4-4923-b1e5-6259062af314, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:42.845Z","sequence":5920,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:42.846Z","sequence":5921,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 70B3D57BB10001A5] for gateway [0008004BB84C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:42.851Z","sequence":5922,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:0.4.1\"\n },\n \"viaGroups\" : [ \"gateways_lanxess\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:42.852Z","sequence":5923,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_lanxess\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:42.856Z","sequence":5924,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8d44492f-3418-4020-af08-fc17eb8d55a9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:45.237Z","sequence":5925,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:45.238Z","sequence":5926,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 0008004C80F4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:45.247Z","sequence":5927,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c484bf5e-e9f4-49d9-97c0-335a69990a51, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:55.574Z","sequence":5928,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/terega:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:55.574Z","sequence":5929,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: terega, device-id: 3938383700390044] for gateway [gateway_terega_network_27]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:55.593Z","sequence":5930,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_terega\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:55.593Z","sequence":5931,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_terega\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:55.597Z","sequence":5932,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-755cbf9e-8fe7-4bef-8e0c-4974999c588e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:57.974Z","sequence":5933,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oiltanking:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:57.974Z","sequence":5934,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oiltanking, device-id: 0008004BB60F]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:57.993Z","sequence":5935,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-34c7481b-156f-4704-bb7e-1c16e84a9354, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:57.996Z","sequence":5936,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:57.997Z","sequence":5937,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oiltanking]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:58.002Z","sequence":5938,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-faef7bbe-943e-49f5-956b-7d0a98ad4920, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:58.588Z","sequence":5939,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:58.588Z","sequence":5940,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10007F7] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:58.598Z","sequence":5941,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:58.598Z","sequence":5942,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:41:58.606Z","sequence":5943,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ee3dc00f-1dbd-4ce2-ad93-a05a8dd94ba9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:42:01.956Z","sequence":5944,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:42:01.957Z","sequence":5945,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB100084C] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:42:02.011Z","sequence":5946,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:42:02.011Z","sequence":5947,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:42:02.015Z","sequence":5948,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-98405046-6cf8-4028-ae9b-aa8791d6355a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:42:04.832Z","sequence":5949,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:42:04.832Z","sequence":5950,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100191A] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:42:04.846Z","sequence":5951,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:42:04.846Z","sequence":5952,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:42:04.895Z","sequence":5953,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9796b5eb-ccf4-4bf3-bd7a-9cf948b954bd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:42:10.985Z","sequence":5954,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:42:10.986Z","sequence":5955,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B90] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:42:10.992Z","sequence":5956,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:42:10.992Z","sequence":5957,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:42:10.999Z","sequence":5958,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-bcc0f8a0-5b4a-4a51-8ca6-29f6a9414370, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:42:22.561Z","sequence":5959,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:42:22.561Z","sequence":5960,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B9D] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:42:22.599Z","sequence":5961,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:42:22.599Z","sequence":5962,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:42:22.649Z","sequence":5963,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0e231a48-b224-4048-af84-e659e8d85ebc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:42:28.748Z","sequence":5964,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:42:28.748Z","sequence":5965,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AE9] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:42:28.753Z","sequence":5966,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:42:28.754Z","sequence":5967,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:42:28.795Z","sequence":5968,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2b987820-9426-48c2-afa9-4cd3e8881e92, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:42:30.173Z","sequence":5969,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:42:30.174Z","sequence":5970,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oci]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:42:30.177Z","sequence":5971,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-c7087742-bc53-4829-aac7-5824f79d321e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:42:30.179Z","sequence":5972,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:42:30.179Z","sequence":5973,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000173] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:42:30.183Z","sequence":5974,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:42:30.184Z","sequence":5975,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:42:30.198Z","sequence":5976,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b99e4e03-b67b-408e-ac34-2fd8795bb172, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:42:30.271Z","sequence":5977,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:42:30.271Z","sequence":5978,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000173] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:42:30.277Z","sequence":5979,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:42:30.277Z","sequence":5980,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:42:30.28Z","sequence":5981,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-69598b0a-5640-4b99-9a19-63abebb68e08, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:42:31.057Z","sequence":5982,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/conditionall:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:42:31.057Z","sequence":5983,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: conditionall, device-id: 70B3D57BB1000211] for gateway [0008004B512D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:42:31.101Z","sequence":5984,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_conditionall\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:42:31.101Z","sequence":5985,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_conditionall\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:42:31.107Z","sequence":5986,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7c9136d2-1554-4180-be9f-562bd78215d7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:42:43.885Z","sequence":5987,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/aloxy:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:42:43.885Z","sequence":5988,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: aloxy, device-id: 0008004A8F68]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:42:43.903Z","sequence":5989,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b09a80b7-f152-46cf-be5a-8802b0acf064, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:42:43.906Z","sequence":5990,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:42:43.907Z","sequence":5991,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: aloxy]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:42:43.91Z","sequence":5992,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-61c719bc-0e08-4a19-9ecd-836efd9719f1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:42:52.175Z","sequence":5993,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:42:52.175Z","sequence":5994,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000154] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:42:52.201Z","sequence":5995,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:42:52.201Z","sequence":5996,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:42:52.208Z","sequence":5997,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-560b5ec5-34e9-487c-a9d6-ee114ff39f23, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:42:52.221Z","sequence":5998,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:42:52.221Z","sequence":5999,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000154] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:42:52.228Z","sequence":6000,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:42:52.229Z","sequence":6001,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:42:52.232Z","sequence":6002,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b67f63ae-e129-4e8d-8f88-ad7a664583bc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:42:53.157Z","sequence":6003,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:42:53.157Z","sequence":6004,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BB613]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:42:53.19Z","sequence":6005,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d2110ecd-d4f9-4e2a-aa6b-97588611d556, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:42:53.198Z","sequence":6006,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:42:53.198Z","sequence":6007,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: lanxess]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:42:53.205Z","sequence":6008,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-9940ebd5-6140-4c07-aa2d-d9b7490bcfe0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:43:02.981Z","sequence":6009,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/acta:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:43:02.982Z","sequence":6010,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: acta, device-id: 0008004AAAA3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:43:03.013Z","sequence":6011,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8d91b732-da81-4943-95df-75ad04feba06, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:43:03.016Z","sequence":6012,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:43:03.016Z","sequence":6013,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: acta]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:43:03.019Z","sequence":6014,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-2a8100ec-3116-4311-b933-1086716be4fa, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:43:04.606Z","sequence":6015,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_190922]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c78203287b82d7a0","parentId":"02675ae2f51cdb7e","traceId":"0000000000000000eab45101180c55f1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:43:04.632Z","sequence":6016,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_190922, resource-version: f6873742-11e3-4605-8cf0-6a656574e926]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c78203287b82d7a0","parentId":"02675ae2f51cdb7e","traceId":"0000000000000000eab45101180c55f1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:43:04.639Z","sequence":6017,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190922, resource-version: 2c707014-0305-405b-8d98-51a37fb5af53]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c78203287b82d7a0","parentId":"02675ae2f51cdb7e","traceId":"0000000000000000eab45101180c55f1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:43:04.642Z","sequence":6018,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_190922]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4a82c13d2677f33a","parentId":"1951f079162f15e5","traceId":"0000000000000000eab45101180c55f1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:43:04.764Z","sequence":6019,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190922]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4a82c13d2677f33a","parentId":"1951f079162f15e5","traceId":"0000000000000000eab45101180c55f1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:43:05.666Z","sequence":6020,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF812EA92998DC3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a8ee582a935f4842","parentId":"c94cec416be44613","traceId":"0000000000000000388282aeec5cc942","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:43:05.683Z","sequence":6021,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF812EA92998DC3, resource-version: 67131647-3fff-4687-8186-dbad679c7abe]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a8ee582a935f4842","parentId":"c94cec416be44613","traceId":"0000000000000000388282aeec5cc942","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:43:05.689Z","sequence":6022,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF812EA92998DC3, resource-version: acee44fa-2200-44c0-834c-39889e311c40]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a8ee582a935f4842","parentId":"c94cec416be44613","traceId":"0000000000000000388282aeec5cc942","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:43:06.759Z","sequence":6023,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:43:06.76Z","sequence":6024,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_190922]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:43:06.773Z","sequence":6025,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-8ff3be45-a0bf-49a7-b055-436783ca7572, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:43:06.9Z","sequence":6026,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:43:06.9Z","sequence":6027,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF812EA92998DC3] for gateway [gateway_integrationtest_network_190922]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:43:06.901Z","sequence":6028,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:43:06.902Z","sequence":6029,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_190922]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:43:06.905Z","sequence":6030,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:43:06.906Z","sequence":6031,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:43:06.907Z","sequence":6032,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4cf98df2-05fd-4403-8ca3-fcb73b36f99f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:43:07.163Z","sequence":6033,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-546e8d41-4a47-401f-b952-715cd7a17d1e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:43:07.164Z","sequence":6034,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:43:07.164Z","sequence":6035,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100020C] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:43:07.17Z","sequence":6036,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:43:07.17Z","sequence":6037,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:43:07.182Z","sequence":6038,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-66bb6b3f-8996-405b-9bfd-d616d21220ab, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:43:12.225Z","sequence":6039,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:43:12.225Z","sequence":6040,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100021A] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:43:12.257Z","sequence":6041,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:0.4.1\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:43:12.257Z","sequence":6042,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:43:12.291Z","sequence":6043,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c25c796d-88de-4863-bff4-d89ecf26ab67, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:43:17.688Z","sequence":6044,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF812EA92998DC3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8e3cc6f296f80f0d","parentId":"a203f15bc6fda7a4","traceId":"00000000000000006af238629e3a1138","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:43:17.705Z","sequence":6045,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF812EA92998DC3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8e3cc6f296f80f0d","parentId":"a203f15bc6fda7a4","traceId":"00000000000000006af238629e3a1138","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:43:17.981Z","sequence":6046,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_190922]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"69694e6b124f3342","parentId":"aa3c411db6a5ec36","traceId":"000000000000000015cc8ea50305de1a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:43:18.002Z","sequence":6047,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190922]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"69694e6b124f3342","parentId":"aa3c411db6a5ec36","traceId":"000000000000000015cc8ea50305de1a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:43:18.721Z","sequence":6048,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 502F816AFB49]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b7776c359999526e","parentId":"473f9fa9dc48b3bd","traceId":"0000000000000000604e109e7fdbabb6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:43:18.74Z","sequence":6049,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 502F816AFB49, resource-version: eacea1af-677d-4731-945f-a0065c8fbba6]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b7776c359999526e","parentId":"473f9fa9dc48b3bd","traceId":"0000000000000000604e109e7fdbabb6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:43:18.75Z","sequence":6050,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 502F816AFB49, resource-version: e910782c-8933-4fcf-bbad-e29b0f2ccdbb]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b7776c359999526e","parentId":"473f9fa9dc48b3bd","traceId":"0000000000000000604e109e7fdbabb6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:43:18.753Z","sequence":6051,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 502F816AFB49]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3c0903ab535f0597","parentId":"ad1cadf448b2e43f","traceId":"0000000000000000604e109e7fdbabb6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:43:18.912Z","sequence":6052,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 502F816AFB49]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3c0903ab535f0597","parentId":"ad1cadf448b2e43f","traceId":"0000000000000000604e109e7fdbabb6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:43:19.29Z","sequence":6053,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/arkema:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:43:19.29Z","sequence":6054,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: arkema, device-id: 70B3D57BB100045E] for gateway [0008004AE119]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:43:19.296Z","sequence":6055,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_arkema\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:43:19.296Z","sequence":6056,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_arkema\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:43:19.299Z","sequence":6057,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-111b71df-0f6d-423f-a075-fcbd4e450dc0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:43:19.676Z","sequence":6058,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFC292C651E7C5E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"046f1e3f2ca74f75","parentId":"97d3be740a0f49fa","traceId":"00000000000000007382fd81792ac243","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:43:19.753Z","sequence":6059,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFC292C651E7C5E, resource-version: 693b2b38-3364-41e5-8c68-7ff754c3ba8d]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"046f1e3f2ca74f75","parentId":"97d3be740a0f49fa","traceId":"00000000000000007382fd81792ac243","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:43:19.805Z","sequence":6060,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFC292C651E7C5E, resource-version: 2204ba62-3dc7-41fb-96e9-a1db21015537]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"046f1e3f2ca74f75","parentId":"97d3be740a0f49fa","traceId":"00000000000000007382fd81792ac243","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:43:20.91Z","sequence":6061,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:43:20.91Z","sequence":6062,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-502F816AFB49]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:43:20.92Z","sequence":6063,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-f4d777bc-672c-4cd2-9a5d-c66c99485fc2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:43:21.086Z","sequence":6064,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:43:21.086Z","sequence":6065,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 502F816AFB49]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:43:21.092Z","sequence":6066,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-cb51e324-24df-4ccd-a688-7292fed462ba, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:43:21.096Z","sequence":6067,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:43:21.097Z","sequence":6068,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFC292C651E7C5E] for gateway [502F816AFB49]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:43:21.102Z","sequence":6069,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:43:21.103Z","sequence":6070,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:43:21.27Z","sequence":6071,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0cb7381a-6180-469b-af4f-54a6438d6194, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:43:29.253Z","sequence":6072,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:43:29.253Z","sequence":6073,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B9C] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:43:29.259Z","sequence":6074,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:43:29.259Z","sequence":6075,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:43:29.302Z","sequence":6076,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-21c3c761-6eb8-4ae7-a383-818658957e33, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:43:30.433Z","sequence":6077,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:43:30.433Z","sequence":6078,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000A9C] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:43:30.441Z","sequence":6079,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:43:30.441Z","sequence":6080,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:43:30.447Z","sequence":6081,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5f459e30-be41-40e2-8432-2d9ba9c72168, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:43:33.602Z","sequence":6082,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFC292C651E7C5E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"60062254896749cc","parentId":"5a1e6ac10080838a","traceId":"000000000000000065d0b114c32ad0a5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:43:33.656Z","sequence":6083,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFC292C651E7C5E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"60062254896749cc","parentId":"5a1e6ac10080838a","traceId":"000000000000000065d0b114c32ad0a5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:43:33.958Z","sequence":6084,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 502F816AFB49]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3cfa5a98ef725449","parentId":"3fe6065ddba95a1e","traceId":"000000000000000053bd0e890cbbb915","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:43:34.009Z","sequence":6085,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 502F816AFB49]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3cfa5a98ef725449","parentId":"3fe6065ddba95a1e","traceId":"000000000000000053bd0e890cbbb915","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:43:37.201Z","sequence":6086,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:43:37.201Z","sequence":6087,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: shell]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:43:37.204Z","sequence":6088,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-f434ee9c-9b1d-46f7-a394-670d8f82bb7c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:43:37.206Z","sequence":6089,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/shell:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:43:37.206Z","sequence":6090,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: shell, type: hashed-password, auth-id: auth-gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:43:37.218Z","sequence":6091,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-c6d37d81-30b7-408d-ba53-429c5a6e447c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:43:37.335Z","sequence":6092,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:43:37.335Z","sequence":6093,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000F8A] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:43:37.34Z","sequence":6094,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:43:37.341Z","sequence":6095,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:43:37.348Z","sequence":6096,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e8c138f4-9227-4230-b1bf-6e7c92317110, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:43:37.931Z","sequence":6097,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:43:37.931Z","sequence":6098,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:43:37.937Z","sequence":6099,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-be53575f-839c-43a7-b3f1-62861b0ab7fc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:43:44.043Z","sequence":6100,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:43:44.043Z","sequence":6101,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BDD] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:43:44.057Z","sequence":6102,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:43:44.058Z","sequence":6103,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:43:44.065Z","sequence":6104,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ac51196f-275d-45e9-aa29-3ab14fe9d9ac, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:43:47.237Z","sequence":6105,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/repsol:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:43:47.237Z","sequence":6106,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: repsol, device-id: 0008004A37FF]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:43:47.242Z","sequence":6107,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-740a2d1b-ca41-4ba7-bdce-4e0123ddd8ef, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:43:47.245Z","sequence":6108,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:43:47.246Z","sequence":6109,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: repsol]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:43:47.248Z","sequence":6110,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-7a8c52dc-9b54-4aee-a46e-0446ac16bdae, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:43:59.649Z","sequence":6111,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:43:59.649Z","sequence":6112,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000ACA] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:43:59.677Z","sequence":6113,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:43:59.677Z","sequence":6114,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:43:59.693Z","sequence":6115,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-27cafd1c-2d1a-4a71-ac94-6a18e22566f1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:43:59.828Z","sequence":6116,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:43:59.828Z","sequence":6117,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001916] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:43:59.842Z","sequence":6118,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:43:59.842Z","sequence":6119,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:43:59.848Z","sequence":6120,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d0ee8726-9d0d-4435-97e3-375706dbf071, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:44:02.554Z","sequence":6121,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:44:02.555Z","sequence":6122,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000166] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:44:02.56Z","sequence":6123,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:44:02.56Z","sequence":6124,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:44:02.563Z","sequence":6125,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ec0073b5-eae6-4808-9490-f8fbae8e6da9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:44:02.609Z","sequence":6126,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:44:02.609Z","sequence":6127,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:44:02.615Z","sequence":6128,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-108e1a49-0403-41ef-9f7f-4476b3bb42f7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:44:02.618Z","sequence":6129,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:44:02.619Z","sequence":6130,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000166] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:44:02.628Z","sequence":6131,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:44:02.628Z","sequence":6132,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:44:02.631Z","sequence":6133,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4362b9c8-5609-4e55-8f4d-8e73ecd1e57c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:44:04.594Z","sequence":6134,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/acta:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:44:04.594Z","sequence":6135,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: acta, device-id: 353438340047002F] for gateway [0008004AAAA3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:44:04.601Z","sequence":6136,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.3.0\"\n },\n \"viaGroups\" : [ \"gateways_acta\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:44:04.602Z","sequence":6137,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_acta\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:44:04.604Z","sequence":6138,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2895dcbb-7e87-4231-bf50-d7c51a777b8c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:44:06.681Z","sequence":6139,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:44:06.682Z","sequence":6140,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 0008004B51D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:44:06.687Z","sequence":6141,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2b4747e1-b31f-4249-91f2-db0331249f15, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:44:06.69Z","sequence":6142,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:44:06.691Z","sequence":6143,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: dow]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:44:06.693Z","sequence":6144,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-555e62b9-4b79-4353-bce3-4a22293419a2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:44:13.572Z","sequence":6145,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:44:13.572Z","sequence":6146,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: ineos]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:44:13.575Z","sequence":6147,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-3682b51e-38b7-4eac-a140-feb3fa6fec68, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:44:13.577Z","sequence":6148,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:44:13.577Z","sequence":6149,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB1000A80] for gateway [0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:44:13.583Z","sequence":6150,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:44:13.583Z","sequence":6151,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:44:13.587Z","sequence":6152,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a23a423a-e964-45c9-bbe8-e13e97c1b7a2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:44:18.648Z","sequence":6153,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:44:18.648Z","sequence":6154,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B8F] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:44:18.654Z","sequence":6155,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:44:18.654Z","sequence":6156,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:44:18.66Z","sequence":6157,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-fa044bb9-9438-4b0f-93c5-b76e835d637c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:44:21.106Z","sequence":6158,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:44:21.106Z","sequence":6159,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: flint]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:44:21.11Z","sequence":6160,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-41792160-cbc5-4454-a392-8b9ec81d9549, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:44:21.113Z","sequence":6161,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/flint:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:44:21.113Z","sequence":6162,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: flint, type: hashed-password, auth-id: auth-flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:44:21.124Z","sequence":6163,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-56a77673-0e39-486c-bbdd-d9eb536397ed, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:44:21.25Z","sequence":6164,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:44:21.25Z","sequence":6165,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000817] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:44:21.25Z","sequence":6166,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:44:21.25Z","sequence":6167,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:44:21.255Z","sequence":6168,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:44:21.255Z","sequence":6169,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:44:21.256Z","sequence":6170,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b67e2f1e-342e-45f3-93c5-1818f8f9816d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:44:21.259Z","sequence":6171,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-38b77a20-90d5-4d08-86f9-f975e269609b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:44:21.616Z","sequence":6172,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:44:21.617Z","sequence":6173,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: terega]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:44:21.621Z","sequence":6174,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-8ea1a092-de46-4333-a18b-cf807eabb64f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:44:21.623Z","sequence":6175,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/terega:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:44:21.623Z","sequence":6176,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: terega, type: hashed-password, auth-id: auth-gateway_terega_network_27]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:44:21.639Z","sequence":6177,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-5289ad96-82c2-479e-a2dc-16ce191e64fa, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:44:21.76Z","sequence":6178,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/terega:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:44:21.76Z","sequence":6179,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: terega, device-id: 39383837002F0033] for gateway [gateway_terega_network_27]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:44:21.764Z","sequence":6180,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_terega\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:44:21.764Z","sequence":6181,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_terega\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:44:21.767Z","sequence":6182,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3c32936b-8232-4f33-97f9-7b5efb6bbbdd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:44:26.139Z","sequence":6183,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:44:26.139Z","sequence":6184,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001C0] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:44:26.145Z","sequence":6185,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:44:26.145Z","sequence":6186,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:44:26.148Z","sequence":6187,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-02ad5bc5-7b33-4b06-bda8-befcb2866449, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:44:26.221Z","sequence":6188,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:44:26.221Z","sequence":6189,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001C0] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:44:26.233Z","sequence":6190,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:44:26.233Z","sequence":6191,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:44:26.236Z","sequence":6192,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b8f5560e-a895-4016-b300-c8cf53499a05, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:44:29.882Z","sequence":6193,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:44:29.883Z","sequence":6194,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B8B] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:44:29.89Z","sequence":6195,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:44:29.89Z","sequence":6196,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:44:29.896Z","sequence":6197,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c4a467a8-1ff1-49aa-8cac-d24ca9c97d3a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:44:31.839Z","sequence":6198,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:44:31.839Z","sequence":6199,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000169] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:44:31.845Z","sequence":6200,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:44:31.845Z","sequence":6201,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:44:31.848Z","sequence":6202,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1497cba2-18e4-4901-ad63-12f4885bdd19, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:44:31.852Z","sequence":6203,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:44:31.852Z","sequence":6204,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000169] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:44:31.857Z","sequence":6205,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:44:31.857Z","sequence":6206,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:44:31.86Z","sequence":6207,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-04a67795-11df-4aad-9c26-721fa0405a2e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:44:44.737Z","sequence":6208,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/conditionall:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:44:44.74Z","sequence":6209,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: conditionall, device-id: 0008004B512D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:44:44.788Z","sequence":6210,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d740b656-41ce-4080-a0b2-112044e65b37, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:44:44.793Z","sequence":6211,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:44:44.793Z","sequence":6212,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: conditionall]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:44:44.817Z","sequence":6213,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-2de0f1d4-29a9-4c9f-a912-b918a3931207, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:44:49.556Z","sequence":6214,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:44:49.556Z","sequence":6215,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10007FE] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:44:49.562Z","sequence":6216,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:44:49.563Z","sequence":6217,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:44:49.566Z","sequence":6218,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-dc83db0e-d4d3-4a18-8c34-1d413b8aee84, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:00.007Z","sequence":6219,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:00.007Z","sequence":6220,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10007A0] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:00.007Z","sequence":6221,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:00.008Z","sequence":6222,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:00.014Z","sequence":6223,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-16dcb0ef-9110-4681-8840-021ef268da4a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:00.015Z","sequence":6224,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:00.015Z","sequence":6225,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:00.021Z","sequence":6226,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8a2d5c98-06af-4853-bc84-1c8dbef19028, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:01.257Z","sequence":6227,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:01.257Z","sequence":6228,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 70B3D57BB10001AE] for gateway [0008004BB84C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:01.266Z","sequence":6229,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:0.4.0\"\n },\n \"viaGroups\" : [ \"gateways_lanxess\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:01.266Z","sequence":6230,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_lanxess\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:01.269Z","sequence":6231,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-23b59929-899c-486e-91d8-8990969b7bb6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:01.546Z","sequence":6232,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:01.547Z","sequence":6233,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001E8] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:01.555Z","sequence":6234,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:01.556Z","sequence":6235,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:01.562Z","sequence":6236,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-27ef45c9-ef27-42b9-8bdc-8f17f5ffaddc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:01.592Z","sequence":6237,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:01.596Z","sequence":6238,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001E8] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:01.606Z","sequence":6239,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:01.606Z","sequence":6240,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:01.613Z","sequence":6241,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-63a6f4d9-cdae-48d1-9254-917f43c61540, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:02.313Z","sequence":6242,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:02.313Z","sequence":6243,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006E0] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:02.325Z","sequence":6244,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:02.325Z","sequence":6245,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:02.332Z","sequence":6246,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2cfe9b1e-267e-4a25-a6c3-90f6e85c6fd0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:04.252Z","sequence":6247,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_190924]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ec97101c53007fea","parentId":"f0d333d71b6e9e3b","traceId":"00000000000000009e53365aa2563a44","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:04.281Z","sequence":6248,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_190924, resource-version: 092076a7-8dda-4cb2-b531-21696e9c0b9f]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ec97101c53007fea","parentId":"f0d333d71b6e9e3b","traceId":"00000000000000009e53365aa2563a44","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:04.287Z","sequence":6249,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190924, resource-version: 550e68b0-a239-40f7-9b93-26d9a1af24b2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ec97101c53007fea","parentId":"f0d333d71b6e9e3b","traceId":"00000000000000009e53365aa2563a44","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:04.291Z","sequence":6250,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_190924]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"98e55bd44c7e2165","parentId":"ba5e5afc54af5633","traceId":"00000000000000009e53365aa2563a44","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:04.449Z","sequence":6251,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190924]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"98e55bd44c7e2165","parentId":"ba5e5afc54af5633","traceId":"00000000000000009e53365aa2563a44","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:04.795Z","sequence":6252,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:04.796Z","sequence":6253,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000804] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:04.804Z","sequence":6254,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:04.804Z","sequence":6255,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:04.808Z","sequence":6256,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f18f8da2-1fde-4c2b-bf67-5879b65ddd7c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:05.456Z","sequence":6257,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFED966ACC9E519]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4b108ad4bc454af1","parentId":"b6e0dd0b4ecbf321","traceId":"00000000000000000dfe9a853eaf7f62","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:05.478Z","sequence":6258,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFED966ACC9E519, resource-version: b48fa3a0-2ecc-4e26-9c0d-39c1b99d61a7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4b108ad4bc454af1","parentId":"b6e0dd0b4ecbf321","traceId":"00000000000000000dfe9a853eaf7f62","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:05.485Z","sequence":6259,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFED966ACC9E519, resource-version: 0f7c0e94-90f5-4088-bbc2-b829d1e72b82]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4b108ad4bc454af1","parentId":"b6e0dd0b4ecbf321","traceId":"00000000000000000dfe9a853eaf7f62","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:06.621Z","sequence":6260,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:06.621Z","sequence":6261,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:06.629Z","sequence":6262,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-640406ba-1243-453b-8f0d-cba7ef32042d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:06.632Z","sequence":6263,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:06.632Z","sequence":6264,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_190924]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:06.643Z","sequence":6265,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-1388cfb7-c08d-47d9-804d-f20e82e6bba3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:06.767Z","sequence":6266,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:06.767Z","sequence":6267,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFED966ACC9E519] for gateway [gateway_integrationtest_network_190924]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:06.768Z","sequence":6268,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:06.769Z","sequence":6269,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_190924]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:06.773Z","sequence":6270,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:06.774Z","sequence":6271,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:06.775Z","sequence":6272,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c8477095-ce36-4d9b-b249-232b87aeb542, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:07.125Z","sequence":6273,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-da04b9c2-2a3b-42e1-8c07-7c3d019c3595, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:09.978Z","sequence":6274,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:09.979Z","sequence":6275,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019F6] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:09.984Z","sequence":6276,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:09.984Z","sequence":6277,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:09.99Z","sequence":6278,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-228d7520-a83c-4ab1-8ead-bdcdf748fe4a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:17.805Z","sequence":6279,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:17.805Z","sequence":6280,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019F9] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:17.817Z","sequence":6281,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:17.817Z","sequence":6282,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:17.822Z","sequence":6283,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-198ec035-8ff1-4f79-be89-8d2e01e74beb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:20.185Z","sequence":6284,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:20.185Z","sequence":6285,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BB84C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:20.22Z","sequence":6286,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-287784b5-5e25-4589-89d1-89cf8427ca40, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:20.927Z","sequence":6287,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFED966ACC9E519]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4492f817da8f9e75","parentId":"2ca47455ebc770ae","traceId":"000000000000000042b5df359c7866cd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:20.944Z","sequence":6288,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFED966ACC9E519]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4492f817da8f9e75","parentId":"2ca47455ebc770ae","traceId":"000000000000000042b5df359c7866cd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:21.096Z","sequence":6289,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_190924]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"208f5dfffdf55f41","parentId":"0816b0a3c4e3afe8","traceId":"00000000000000008f9825c2550fd5a2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:21.113Z","sequence":6290,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190924]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"208f5dfffdf55f41","parentId":"0816b0a3c4e3afe8","traceId":"00000000000000008f9825c2550fd5a2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:21.349Z","sequence":6291,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:21.349Z","sequence":6292,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000579] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:21.355Z","sequence":6293,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:21.355Z","sequence":6294,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:21.361Z","sequence":6295,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6bb5b8c9-3068-4030-a29b-616c3a0c8add, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:21.628Z","sequence":6296,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 58D75D60863F]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"163b4be92f23d490","parentId":"d6e5e549ede53748","traceId":"000000000000000085847bca10cf6978","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:21.653Z","sequence":6297,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 58D75D60863F, resource-version: 0f63bdf0-86a1-432d-b930-2413e6ff7627]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"163b4be92f23d490","parentId":"d6e5e549ede53748","traceId":"000000000000000085847bca10cf6978","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:21.661Z","sequence":6298,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 58D75D60863F, resource-version: 75ccdbdd-2de0-4676-8114-1888a448678c]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"163b4be92f23d490","parentId":"d6e5e549ede53748","traceId":"000000000000000085847bca10cf6978","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:21.664Z","sequence":6299,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 58D75D60863F]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"18a1438122bdca2f","parentId":"181e4d665048777d","traceId":"000000000000000085847bca10cf6978","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:21.811Z","sequence":6300,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 58D75D60863F]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"18a1438122bdca2f","parentId":"181e4d665048777d","traceId":"000000000000000085847bca10cf6978","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:22.414Z","sequence":6301,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF1F9AE9269B045]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"96c927281b93fb60","parentId":"089058cbeebf287c","traceId":"000000000000000091e96ede89ebb09e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:22.433Z","sequence":6302,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF1F9AE9269B045, resource-version: 3ab16bda-9b13-49c7-be1d-640505345599]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"96c927281b93fb60","parentId":"089058cbeebf287c","traceId":"000000000000000091e96ede89ebb09e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:22.439Z","sequence":6303,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:22.439Z","sequence":6304,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 0008004B5135]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:22.441Z","sequence":6305,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF1F9AE9269B045, resource-version: 360b5b5c-de06-47c2-868b-e4428cdaa55e]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"96c927281b93fb60","parentId":"089058cbeebf287c","traceId":"000000000000000091e96ede89ebb09e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:22.444Z","sequence":6306,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b4959134-9f2b-4d86-b3b4-fb39fbaa8993, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:23.504Z","sequence":6307,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:23.504Z","sequence":6308,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:23.507Z","sequence":6309,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-70cc5d4f-0638-452c-8be4-8d0063b769be, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:23.509Z","sequence":6310,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:23.51Z","sequence":6311,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-58D75D60863F]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:23.519Z","sequence":6312,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-e5db6ef3-08ca-4bdd-a64a-e5c9fb73d925, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:23.644Z","sequence":6313,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:23.644Z","sequence":6314,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 58D75D60863F]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:23.652Z","sequence":6315,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-515db4ac-94fb-426f-a80f-c157dbe98cd8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:23.658Z","sequence":6316,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:23.658Z","sequence":6317,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF1F9AE9269B045] for gateway [58D75D60863F]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:23.666Z","sequence":6318,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:23.666Z","sequence":6319,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:23.827Z","sequence":6320,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8e870138-d954-430f-abbf-487cd643fc73, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:25.933Z","sequence":6321,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:25.933Z","sequence":6322,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BBD1B]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:25.941Z","sequence":6323,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7354c921-1de3-47ea-8f2b-e8f55060b65d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:31.89Z","sequence":6324,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/arkema:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:31.89Z","sequence":6325,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: arkema, device-id: 0008004AE119]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:31.896Z","sequence":6326,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-661768e2-17d8-4412-b841-7874c63ce7df, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:31.9Z","sequence":6327,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:31.9Z","sequence":6328,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: arkema]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:31.903Z","sequence":6329,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-bd09a636-2328-4612-80bf-b33299b29dd1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:32.968Z","sequence":6330,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:32.968Z","sequence":6331,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB1000A71] for gateway [0008004B5135]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:32.973Z","sequence":6332,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:32.973Z","sequence":6333,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:32.976Z","sequence":6334,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0f8e8315-95c7-4571-8efd-249784187d12, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:34.005Z","sequence":6335,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:34.005Z","sequence":6336,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B95] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:34.01Z","sequence":6337,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:34.01Z","sequence":6338,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:34.024Z","sequence":6339,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ddb6a71a-9cb8-42b0-9d7f-01d1b6b97c83, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:34.85Z","sequence":6340,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:34.85Z","sequence":6341,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B97] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:34.856Z","sequence":6342,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:34.856Z","sequence":6343,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:34.862Z","sequence":6344,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-93bd6c5b-1d07-434b-9bc0-4852d736f276, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:35.131Z","sequence":6345,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF1F9AE9269B045]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5da5662b6bdef77a","parentId":"79e5252536a363c7","traceId":"00000000000000003bf6bb7132660c0f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:35.152Z","sequence":6346,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF1F9AE9269B045]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5da5662b6bdef77a","parentId":"79e5252536a363c7","traceId":"00000000000000003bf6bb7132660c0f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:35.459Z","sequence":6347,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 58D75D60863F]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e25f25c76018dd3c","parentId":"fb3f201899fd7808","traceId":"0000000000000000298ab527f320016a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:35.474Z","sequence":6348,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 58D75D60863F]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e25f25c76018dd3c","parentId":"fb3f201899fd7808","traceId":"0000000000000000298ab527f320016a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:39.211Z","sequence":6349,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:39.211Z","sequence":6350,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000827] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:39.217Z","sequence":6351,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:39.217Z","sequence":6352,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:39.22Z","sequence":6353,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c78eaaed-92d5-4569-b3f5-8d7015386230, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:39.625Z","sequence":6354,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:39.626Z","sequence":6355,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oci]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:39.645Z","sequence":6356,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-a00225a9-37cf-445d-abb0-f7dd01c67fd1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:39.65Z","sequence":6357,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:39.65Z","sequence":6358,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001F2] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:39.665Z","sequence":6359,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:39.665Z","sequence":6360,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:39.669Z","sequence":6361,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-50221e84-845e-4e5e-83e3-fed80e69666b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:39.67Z","sequence":6362,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:39.67Z","sequence":6363,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001F2] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:39.676Z","sequence":6364,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:39.677Z","sequence":6365,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:39.679Z","sequence":6366,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f9b2e606-2fad-4c90-9396-4de4ea592252, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:41.017Z","sequence":6367,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:41.017Z","sequence":6368,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10013DB] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:41.024Z","sequence":6369,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:41.024Z","sequence":6370,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:41.03Z","sequence":6371,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1ea029d7-708c-4bde-afb3-ea4d031c05ce, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:41.805Z","sequence":6372,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:41.805Z","sequence":6373,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A15] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:41.812Z","sequence":6374,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:41.812Z","sequence":6375,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:41.818Z","sequence":6376,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3b015f4f-3487-49ef-8505-c289ebab8abe, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:44.03Z","sequence":6377,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:44.031Z","sequence":6378,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000F94] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:44.063Z","sequence":6379,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:44.063Z","sequence":6380,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:44.075Z","sequence":6381,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b557878a-bac3-46c7-b605-6726b7b4b307, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:46.277Z","sequence":6382,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:46.277Z","sequence":6383,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BBD1C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:46.285Z","sequence":6384,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:46.285Z","sequence":6385,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019DB] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:46.286Z","sequence":6386,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ba6a9486-a1b3-4ecb-943c-5239a4765a7f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:46.29Z","sequence":6387,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:46.291Z","sequence":6388,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:46.297Z","sequence":6389,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4f29d1ab-0cc9-4255-b3c6-7a7284843bbb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:50.108Z","sequence":6390,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:50.108Z","sequence":6391,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019EE] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:50.114Z","sequence":6392,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:50.114Z","sequence":6393,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:50.121Z","sequence":6394,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-015baa21-e4df-444f-899c-aa97bdfb7804, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:50.321Z","sequence":6395,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:50.321Z","sequence":6396,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: shelldev]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:50.325Z","sequence":6397,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-fae33415-5f90-4bd2-bfbb-b19aa20ac7b0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:50.327Z","sequence":6398,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/shelldev:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:50.327Z","sequence":6399,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: shelldev, type: hashed-password, auth-id: auth-AZUREFUNCTION-DEV]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:50.337Z","sequence":6400,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-3f5490a1-e37c-4ad8-9449-7f17c4d6c364, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:50.465Z","sequence":6401,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shelldev:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:50.465Z","sequence":6402,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shelldev, device-id: 70B3D57BB10014BB] for gateway [AZUREFUNCTION-DEV]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:50.466Z","sequence":6403,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shelldev:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:50.466Z","sequence":6404,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shelldev, device-id: AZUREFUNCTION-DEV]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:50.477Z","sequence":6405,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDao","level":"DEBUG","message":"error retrieving device [tenantId: shelldev, deviceId: 70B3D57BB10014BB]: org.eclipse.hono.client.ClientErrorException: device not found","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:50.478Z","sequence":6406,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"no such device","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:50.478Z","sequence":6407,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1425f18e-8f22-4af9-bde3-4d283db6c969, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:50.479Z","sequence":6408,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2e65acb0-9e17-4655-a76a-4f124cc54a19, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:54.539Z","sequence":6409,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:54.54Z","sequence":6410,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001927] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:54.549Z","sequence":6411,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:54.549Z","sequence":6412,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:54.56Z","sequence":6413,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d5e271ac-5c78-4b8a-a015-14777fd22ffb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:59.49Z","sequence":6414,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:59.491Z","sequence":6415,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000ABD] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:59.496Z","sequence":6416,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:59.497Z","sequence":6417,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:45:59.503Z","sequence":6418,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0249759f-5e2a-493c-9df9-37a23480157b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:46:00.666Z","sequence":6419,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shelldev:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:46:00.666Z","sequence":6420,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shelldev, device-id: 70B3D57BB10014BB] for gateway [AZUREFUNCTION-DEV]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:46:00.671Z","sequence":6421,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDao","level":"DEBUG","message":"error retrieving device [tenantId: shelldev, deviceId: 70B3D57BB10014BB]: org.eclipse.hono.client.ClientErrorException: device not found","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:46:00.672Z","sequence":6422,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"no such device","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:46:00.672Z","sequence":6423,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-db4d4778-0986-4d48-8979-4ea93575a2d7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:46:00.867Z","sequence":6424,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:46:00.867Z","sequence":6425,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019F7] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:46:00.873Z","sequence":6426,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:46:00.873Z","sequence":6427,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:46:00.879Z","sequence":6428,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b00e3eac-26ed-439c-ab1c-4b941971b093, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:46:08.865Z","sequence":6429,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:46:08.865Z","sequence":6430,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10008D8] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:46:08.871Z","sequence":6431,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:46:08.872Z","sequence":6432,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:46:08.879Z","sequence":6433,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e5ac965f-ff75-45d1-8cc6-183ab45ac1a1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:46:10.965Z","sequence":6434,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shelldev:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:46:10.965Z","sequence":6435,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shelldev, device-id: 70B3D57BB10014BB] for gateway [AZUREFUNCTION-DEV]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:46:10.972Z","sequence":6436,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDao","level":"DEBUG","message":"error retrieving device [tenantId: shelldev, deviceId: 70B3D57BB10014BB]: org.eclipse.hono.client.ClientErrorException: device not found","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:46:10.972Z","sequence":6437,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"no such device","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:46:10.972Z","sequence":6438,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-919eb7a5-0e82-4099-a6f2-2495f7064d7f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:46:11.134Z","sequence":6439,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:46:11.134Z","sequence":6440,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019F4] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:46:11.139Z","sequence":6441,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:46:11.139Z","sequence":6442,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:46:11.145Z","sequence":6443,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b590f03b-b7f1-4423-b246-1676b509e826, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:46:11.97Z","sequence":6444,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:46:11.971Z","sequence":6445,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019F8] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:46:11.976Z","sequence":6446,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:46:11.977Z","sequence":6447,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:46:11.983Z","sequence":6448,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f9d3405c-5e7f-4c3a-96ec-28cd503dd2c1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:46:14.493Z","sequence":6449,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:46:14.493Z","sequence":6450,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:46:14.517Z","sequence":6451,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8d097eff-1548-4b25-83a4-ce8b9a9b7776, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:46:17.776Z","sequence":6452,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:46:17.776Z","sequence":6453,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000514] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:46:17.782Z","sequence":6454,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:46:17.782Z","sequence":6455,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:46:17.785Z","sequence":6456,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3555623a-7d94-4876-a372-e0d37a81bf86, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:46:21.175Z","sequence":6457,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shelldev:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:46:21.176Z","sequence":6458,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shelldev, device-id: 70B3D57BB10014BB] for gateway [AZUREFUNCTION-DEV]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:46:21.181Z","sequence":6459,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDao","level":"DEBUG","message":"error retrieving device [tenantId: shelldev, deviceId: 70B3D57BB10014BB]: org.eclipse.hono.client.ClientErrorException: device not found","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:46:21.181Z","sequence":6460,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"no such device","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:46:21.182Z","sequence":6461,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0083c90a-3053-435b-9fc4-c731cfb3d746, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:46:26.455Z","sequence":6462,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:46:26.456Z","sequence":6463,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006D6] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:46:26.461Z","sequence":6464,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.8.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:46:26.461Z","sequence":6465,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:46:26.467Z","sequence":6466,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5c215085-c980-4843-8903-be1047b8216d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:46:28.433Z","sequence":6467,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:46:28.433Z","sequence":6468,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10013E8] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:46:28.439Z","sequence":6469,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:46:28.439Z","sequence":6470,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:46:28.445Z","sequence":6471,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b396469f-5e69-4d5c-84d3-b612648733ca, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:46:32.833Z","sequence":6472,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:46:32.833Z","sequence":6473,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006A1] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:46:32.839Z","sequence":6474,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:46:32.839Z","sequence":6475,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:46:32.845Z","sequence":6476,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-19804885-be8e-42d1-8507-8642f3b0ad71, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:46:35.043Z","sequence":6477,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:46:35.043Z","sequence":6478,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AAA] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:46:35.048Z","sequence":6479,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:46:35.048Z","sequence":6480,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:46:35.054Z","sequence":6481,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-49bd35a0-0981-450f-b5b5-6a6ff7835d25, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:46:35.525Z","sequence":6482,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:46:35.525Z","sequence":6483,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB100082A] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:46:35.53Z","sequence":6484,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:46:35.531Z","sequence":6485,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:46:35.534Z","sequence":6486,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-593ae6d9-47c7-4db5-ae38-ccd82c57f2f9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:46:35.827Z","sequence":6487,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:46:35.828Z","sequence":6488,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000A9F] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:46:35.833Z","sequence":6489,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:46:35.833Z","sequence":6490,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:46:35.838Z","sequence":6491,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-695a419b-d2d6-41af-8818-9da617c63f5b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:46:38.181Z","sequence":6492,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:46:38.181Z","sequence":6493,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: shell]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:46:38.184Z","sequence":6494,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-9acb3f0d-ee10-44ba-bab2-42dad63ca86c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:46:38.186Z","sequence":6495,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/shell:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:46:38.186Z","sequence":6496,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: shell, type: hashed-password, auth-id: auth-gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:46:38.197Z","sequence":6497,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-cbc8f8af-eebb-4b70-960a-f128fbb4207f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:46:42.561Z","sequence":6498,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:46:42.561Z","sequence":6499,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019FD] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:46:42.568Z","sequence":6500,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:46:42.568Z","sequence":6501,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:46:42.574Z","sequence":6502,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-263b0235-2be0-4cf7-948b-42bc6cc58082, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:46:45.697Z","sequence":6503,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:46:45.697Z","sequence":6504,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000203] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:46:45.713Z","sequence":6505,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:46:45.713Z","sequence":6506,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:46:45.725Z","sequence":6507,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ed50b199-bdcb-412d-9465-82e2ab983d00, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:46:45.752Z","sequence":6508,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:46:45.753Z","sequence":6509,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000203] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:46:45.769Z","sequence":6510,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:46:45.769Z","sequence":6511,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:46:45.781Z","sequence":6512,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a93118fa-a10a-4b02-b162-7d7d022dc462, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:46:47.076Z","sequence":6513,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:46:47.076Z","sequence":6514,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 0008004C80F4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:46:47.082Z","sequence":6515,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-302d636c-dbd9-4bf4-bf98-5a96673b05e2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:46:53.385Z","sequence":6516,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:46:53.385Z","sequence":6517,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10007F4] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:46:53.391Z","sequence":6518,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:46:53.391Z","sequence":6519,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:46:53.395Z","sequence":6520,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-eb5f82bf-7900-4345-966f-f2c255786975, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:00.589Z","sequence":6521,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oiltanking:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:00.589Z","sequence":6522,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oiltanking, device-id: 0008004BB60F]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:00.594Z","sequence":6523,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a30ed766-d657-4649-91a7-abb31a0b3cfe, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:00.597Z","sequence":6524,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:00.597Z","sequence":6525,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oiltanking]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:00.601Z","sequence":6526,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-b0c3de75-b07d-45a4-b031-c78a211ddc95, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:01.196Z","sequence":6527,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:01.196Z","sequence":6528,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: acta]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:01.2Z","sequence":6529,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-6e504221-1a04-4712-bf42-f8acc7c6ac3e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:01.203Z","sequence":6530,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/acta:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:01.203Z","sequence":6531,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: acta, device-id: 35343834001F0046] for gateway [0008004AAAA3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:01.208Z","sequence":6532,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.3.0\"\n },\n \"viaGroups\" : [ \"gateways_acta\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:01.209Z","sequence":6533,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_acta\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:01.211Z","sequence":6534,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-af91fd82-6205-4532-a39c-587e74a85f5f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:03.202Z","sequence":6535,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:03.202Z","sequence":6536,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019F2] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:03.208Z","sequence":6537,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:03.208Z","sequence":6538,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:03.215Z","sequence":6539,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2253a332-e2a9-4775-ad0d-9b265f99a147, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:04.467Z","sequence":6540,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFBAF3C0D2AF9B8]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e7b8d9ff3ce00efd","parentId":"33787307a3b7e452","traceId":"00000000000000004cd65f1e0ae9f9f4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:04.491Z","sequence":6541,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFBAF3C0D2AF9B8]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e7b8d9ff3ce00efd","parentId":"33787307a3b7e452","traceId":"00000000000000004cd65f1e0ae9f9f4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:04.496Z","sequence":6542,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFB1E769F6A77D6]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e02ae17d31193b02","parentId":"f4717c188db032d7","traceId":"00000000000000004745233ef0f09b83","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:04.52Z","sequence":6543,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFB1E769F6A77D6]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e02ae17d31193b02","parentId":"f4717c188db032d7","traceId":"00000000000000004745233ef0f09b83","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:04.77Z","sequence":6544,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFB424C56FD0BF2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"35ab7978965767c0","parentId":"6561e2d2fbb23a09","traceId":"00000000000000006ab262ee5c30d8e6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:04.79Z","sequence":6545,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFB424C56FD0BF2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"35ab7978965767c0","parentId":"6561e2d2fbb23a09","traceId":"00000000000000006ab262ee5c30d8e6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:04.885Z","sequence":6546,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF9AA40F7549E4C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7042e6e1233a891c","parentId":"e5e383b1c7f8dd3e","traceId":"0000000000000000b1a0aff7994524a5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:04.906Z","sequence":6547,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF9AA40F7549E4C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7042e6e1233a891c","parentId":"e5e383b1c7f8dd3e","traceId":"0000000000000000b1a0aff7994524a5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:05.681Z","sequence":6548,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_190878]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4807739032962497","parentId":"c97bfecfe1dfd72d","traceId":"0000000000000000fef6a836b5bdcc4a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:05.703Z","sequence":6549,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDao","level":"DEBUG","message":"error deleting device [tenantId: integrationtest, deviceId: gateway_integrationtest_network_190878]: org.eclipse.hono.client.ClientErrorException: no such object","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4807739032962497","parentId":"c97bfecfe1dfd72d","traceId":"0000000000000000fef6a836b5bdcc4a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:05.703Z","sequence":6550,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"error processing request","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4807739032962497","parentId":"c97bfecfe1dfd72d","traceId":"0000000000000000fef6a836b5bdcc4a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72,"exception":{"refId":1,"exceptionType":"org.eclipse.hono.client.ClientErrorException","message":"no such object","frames":[{"class":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDao","method":"checkForVersionMismatchAndFail","line":479},{"class":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","method":"lambda$delete$24","line":423},{"class":"io.vertx.core.impl.future.Composition","method":"onSuccess","line":38},{"class":"io.vertx.core.impl.future.FutureBase","method":"lambda$emitSuccess$0","line":54},{"class":"io.netty.util.concurrent.AbstractEventExecutor","method":"runTask","line":174},{"class":"io.netty.util.concurrent.AbstractEventExecutor","method":"safeExecute","line":167},{"class":"io.netty.util.concurrent.SingleThreadEventExecutor","method":"runAllTasks","line":470},{"class":"io.netty.channel.nio.NioEventLoop","method":"run","line":569},{"class":"io.netty.util.concurrent.SingleThreadEventExecutor$4","method":"run","line":997},{"class":"io.netty.util.internal.ThreadExecutorMap$2","method":"run","line":74},{"class":"io.netty.util.concurrent.FastThreadLocalRunnable","method":"run","line":30},{"class":"java.lang.Thread","method":"run","line":833},{"class":"com.oracle.svm.core.thread.PlatformThreads","method":"threadStartRoutine","line":775},{"class":"com.oracle.svm.core.posix.thread.PosixPlatformThreads","method":"pthreadStartRoutine","line":203}]}} +{"timestamp":"2023-07-25T02:47:05.703Z","sequence":6551,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.http.DefaultFailureHandler","level":"DEBUG","message":"handling failed route for request [method: DELETE, URI: http://aloxy-hono-service-device-registry:8080/v1/devices/integrationtest/gateway_integrationtest_network_190878, status: 404]; error: org.eclipse.hono.client.ClientErrorException: no such object","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4807739032962497","parentId":"c97bfecfe1dfd72d","traceId":"0000000000000000fef6a836b5bdcc4a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:05.707Z","sequence":6552,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_190878]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0fe119e7bfb58ded","parentId":"1a2dfbde78c85ffd","traceId":"0000000000000000fef6a836b5bdcc4a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:05.709Z","sequence":6553,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDao","level":"DEBUG","message":"error retrieving device [tenantId: integrationtest, deviceId: gateway_integrationtest_network_190878]: org.eclipse.hono.client.ClientErrorException: device not found","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:05.716Z","sequence":6554,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDao","level":"DEBUG","message":"error deleting device [tenantId: integrationtest, deviceId: gateway_integrationtest_network_190878]: org.eclipse.hono.client.ClientErrorException: no such object","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0fe119e7bfb58ded","parentId":"1a2dfbde78c85ffd","traceId":"0000000000000000fef6a836b5bdcc4a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:05.717Z","sequence":6555,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"error processing request","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0fe119e7bfb58ded","parentId":"1a2dfbde78c85ffd","traceId":"0000000000000000fef6a836b5bdcc4a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72,"exception":{"refId":1,"exceptionType":"org.eclipse.hono.client.ClientErrorException","message":"no such object","frames":[{"class":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDao","method":"checkForVersionMismatchAndFail","line":479},{"class":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","method":"lambda$delete$24","line":423},{"class":"io.vertx.core.impl.future.Composition","method":"onSuccess","line":38},{"class":"io.vertx.core.impl.future.FutureBase","method":"lambda$emitSuccess$0","line":54},{"class":"io.netty.util.concurrent.AbstractEventExecutor","method":"runTask","line":174},{"class":"io.netty.util.concurrent.AbstractEventExecutor","method":"safeExecute","line":167},{"class":"io.netty.util.concurrent.SingleThreadEventExecutor","method":"runAllTasks","line":470},{"class":"io.netty.channel.nio.NioEventLoop","method":"run","line":569},{"class":"io.netty.util.concurrent.SingleThreadEventExecutor$4","method":"run","line":997},{"class":"io.netty.util.internal.ThreadExecutorMap$2","method":"run","line":74},{"class":"io.netty.util.concurrent.FastThreadLocalRunnable","method":"run","line":30},{"class":"java.lang.Thread","method":"run","line":833},{"class":"com.oracle.svm.core.thread.PlatformThreads","method":"threadStartRoutine","line":775},{"class":"com.oracle.svm.core.posix.thread.PosixPlatformThreads","method":"pthreadStartRoutine","line":203}]}} +{"timestamp":"2023-07-25T02:47:05.717Z","sequence":6556,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.http.DefaultFailureHandler","level":"DEBUG","message":"handling failed route for request [method: DELETE, URI: http://aloxy-hono-service-device-registry:8080/v1/devices/integrationtest/gateway_integrationtest_network_190878, status: 404]; error: org.eclipse.hono.client.ClientErrorException: no such object","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0fe119e7bfb58ded","parentId":"1a2dfbde78c85ffd","traceId":"0000000000000000fef6a836b5bdcc4a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:05.719Z","sequence":6557,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDao","level":"DEBUG","message":"error retrieving device [tenantId: integrationtest, deviceId: gateway_integrationtest_network_190878]: org.eclipse.hono.client.ClientErrorException: device not found","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:05.91Z","sequence":6558,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_190878]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6435dcd6394b07b2","parentId":"f5af103151c18240","traceId":"0000000000000000fef6a836b5bdcc4a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:05.92Z","sequence":6559,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDao","level":"DEBUG","message":"error deleting device [tenantId: integrationtest, deviceId: gateway_integrationtest_network_190878]: org.eclipse.hono.client.ClientErrorException: no such object","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6435dcd6394b07b2","parentId":"f5af103151c18240","traceId":"0000000000000000fef6a836b5bdcc4a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:05.921Z","sequence":6560,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"error processing request","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6435dcd6394b07b2","parentId":"f5af103151c18240","traceId":"0000000000000000fef6a836b5bdcc4a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72,"exception":{"refId":1,"exceptionType":"org.eclipse.hono.client.ClientErrorException","message":"no such object","frames":[{"class":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDao","method":"checkForVersionMismatchAndFail","line":479},{"class":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","method":"lambda$delete$24","line":423},{"class":"io.vertx.core.impl.future.Composition","method":"onSuccess","line":38},{"class":"io.vertx.core.impl.future.FutureBase","method":"lambda$emitSuccess$0","line":54},{"class":"io.netty.util.concurrent.AbstractEventExecutor","method":"runTask","line":174},{"class":"io.netty.util.concurrent.AbstractEventExecutor","method":"safeExecute","line":167},{"class":"io.netty.util.concurrent.SingleThreadEventExecutor","method":"runAllTasks","line":470},{"class":"io.netty.channel.nio.NioEventLoop","method":"run","line":569},{"class":"io.netty.util.concurrent.SingleThreadEventExecutor$4","method":"run","line":997},{"class":"io.netty.util.internal.ThreadExecutorMap$2","method":"run","line":74},{"class":"io.netty.util.concurrent.FastThreadLocalRunnable","method":"run","line":30},{"class":"java.lang.Thread","method":"run","line":833},{"class":"com.oracle.svm.core.thread.PlatformThreads","method":"threadStartRoutine","line":775},{"class":"com.oracle.svm.core.posix.thread.PosixPlatformThreads","method":"pthreadStartRoutine","line":203}]}} +{"timestamp":"2023-07-25T02:47:05.921Z","sequence":6561,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.http.DefaultFailureHandler","level":"DEBUG","message":"handling failed route for request [method: DELETE, URI: http://aloxy-hono-service-device-registry:8080/v1/devices/integrationtest/gateway_integrationtest_network_190878, status: 404]; error: org.eclipse.hono.client.ClientErrorException: no such object","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6435dcd6394b07b2","parentId":"f5af103151c18240","traceId":"0000000000000000fef6a836b5bdcc4a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:05.923Z","sequence":6562,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDao","level":"DEBUG","message":"error retrieving device [tenantId: integrationtest, deviceId: gateway_integrationtest_network_190878]: org.eclipse.hono.client.ClientErrorException: device not found","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:05.942Z","sequence":6563,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_190878]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7c96f481cb4251d6","parentId":"f823d35e0832806d","traceId":"0000000000000000fef6a836b5bdcc4a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:05.962Z","sequence":6564,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDao","level":"DEBUG","message":"error deleting device [tenantId: integrationtest, deviceId: gateway_integrationtest_network_190878]: org.eclipse.hono.client.ClientErrorException: no such object","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7c96f481cb4251d6","parentId":"f823d35e0832806d","traceId":"0000000000000000fef6a836b5bdcc4a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:05.962Z","sequence":6565,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"error processing request","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7c96f481cb4251d6","parentId":"f823d35e0832806d","traceId":"0000000000000000fef6a836b5bdcc4a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72,"exception":{"refId":1,"exceptionType":"org.eclipse.hono.client.ClientErrorException","message":"no such object","frames":[{"class":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDao","method":"checkForVersionMismatchAndFail","line":479},{"class":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","method":"lambda$delete$24","line":423},{"class":"io.vertx.core.impl.future.Composition","method":"onSuccess","line":38},{"class":"io.vertx.core.impl.future.FutureBase","method":"lambda$emitSuccess$0","line":54},{"class":"io.netty.util.concurrent.AbstractEventExecutor","method":"runTask","line":174},{"class":"io.netty.util.concurrent.AbstractEventExecutor","method":"safeExecute","line":167},{"class":"io.netty.util.concurrent.SingleThreadEventExecutor","method":"runAllTasks","line":470},{"class":"io.netty.channel.nio.NioEventLoop","method":"run","line":569},{"class":"io.netty.util.concurrent.SingleThreadEventExecutor$4","method":"run","line":997},{"class":"io.netty.util.internal.ThreadExecutorMap$2","method":"run","line":74},{"class":"io.netty.util.concurrent.FastThreadLocalRunnable","method":"run","line":30},{"class":"java.lang.Thread","method":"run","line":833},{"class":"com.oracle.svm.core.thread.PlatformThreads","method":"threadStartRoutine","line":775},{"class":"com.oracle.svm.core.posix.thread.PosixPlatformThreads","method":"pthreadStartRoutine","line":203}]}} +{"timestamp":"2023-07-25T02:47:05.962Z","sequence":6566,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.http.DefaultFailureHandler","level":"DEBUG","message":"handling failed route for request [method: DELETE, URI: http://aloxy-hono-service-device-registry:8080/v1/devices/integrationtest/gateway_integrationtest_network_190878, status: 404]; error: org.eclipse.hono.client.ClientErrorException: no such object","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7c96f481cb4251d6","parentId":"f823d35e0832806d","traceId":"0000000000000000fef6a836b5bdcc4a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:05.964Z","sequence":6567,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDao","level":"DEBUG","message":"error retrieving device [tenantId: integrationtest, deviceId: gateway_integrationtest_network_190878]: org.eclipse.hono.client.ClientErrorException: device not found","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:09.477Z","sequence":6568,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_190926]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6e2500b85f158e5c","parentId":"b96212f67a8788b5","traceId":"000000000000000087c560182b146116","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:09.504Z","sequence":6569,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_190926, resource-version: 21c8df34-ca94-46e1-ac23-fd2e2069ffcc]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6e2500b85f158e5c","parentId":"b96212f67a8788b5","traceId":"000000000000000087c560182b146116","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:09.511Z","sequence":6570,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190926, resource-version: 47b8e5c1-8a04-4194-bdbb-3d8bce97be64]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6e2500b85f158e5c","parentId":"b96212f67a8788b5","traceId":"000000000000000087c560182b146116","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:09.517Z","sequence":6571,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_190926]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"59963fdf43cc5aac","parentId":"31c4da3ae5bb7b77","traceId":"000000000000000087c560182b146116","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:09.724Z","sequence":6572,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190926]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"59963fdf43cc5aac","parentId":"31c4da3ae5bb7b77","traceId":"000000000000000087c560182b146116","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:10.528Z","sequence":6573,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF0841A10C7885C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c7e6f79bfe40bb17","parentId":"35e09a5863238210","traceId":"000000000000000074a5db4d983590eb","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:10.544Z","sequence":6574,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF0841A10C7885C, resource-version: c2e2eded-c302-4c3a-b718-673b43fea214]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c7e6f79bfe40bb17","parentId":"35e09a5863238210","traceId":"000000000000000074a5db4d983590eb","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:10.554Z","sequence":6575,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF0841A10C7885C, resource-version: 2d196b77-a81a-4bcc-a8ac-71069f87551b]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c7e6f79bfe40bb17","parentId":"35e09a5863238210","traceId":"000000000000000074a5db4d983590eb","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:11.216Z","sequence":6576,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF0841A10C7885C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c6ec93bef8d9092f","parentId":"97792d0bd046ffee","traceId":"000000000000000084c3f20debfcaacf","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:11.233Z","sequence":6577,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF0841A10C7885C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c6ec93bef8d9092f","parentId":"97792d0bd046ffee","traceId":"000000000000000084c3f20debfcaacf","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:11.371Z","sequence":6578,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_190926]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3d0a261c03493c52","parentId":"1db00ea2b2a959c6","traceId":"00000000000000006d92b7bdce9cef9a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:11.391Z","sequence":6579,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190926]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3d0a261c03493c52","parentId":"1db00ea2b2a959c6","traceId":"00000000000000006d92b7bdce9cef9a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:12.717Z","sequence":6580,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:12.718Z","sequence":6581,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000A98] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:12.723Z","sequence":6582,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:12.723Z","sequence":6583,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:12.733Z","sequence":6584,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c4c5c9ea-6709-4157-980b-abd3480fcf9f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:12.863Z","sequence":6585,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:12.863Z","sequence":6586,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: dow]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:12.866Z","sequence":6587,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-6ed90a44-2bcd-4224-9fc0-702c69a59dc0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:12.868Z","sequence":6588,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/dow:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:12.869Z","sequence":6589,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: dow, type: hashed-password, auth-id: auth-gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:12.88Z","sequence":6590,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-814e33a3-4886-4ac4-a216-b8c2695d5f37, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:13.281Z","sequence":6591,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:13.281Z","sequence":6592,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 70B3D57BB100127A] for gateway [gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:13.282Z","sequence":6593,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:13.282Z","sequence":6594,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:13.308Z","sequence":6595,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a85f2bb0-6036-402c-b0b9-51c02e64b6db, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:13.309Z","sequence":6596,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:13.309Z","sequence":6597,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:13.327Z","sequence":6598,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0eeafe72-a256-4afb-b189-9def1b578e66, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:13.377Z","sequence":6599,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:13.377Z","sequence":6600,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10018B8] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:13.385Z","sequence":6601,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:13.385Z","sequence":6602,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:13.393Z","sequence":6603,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-81dbc8c0-7dc7-4910-84ae-667c74ba4531, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:14.178Z","sequence":6604,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:14.178Z","sequence":6605,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000159] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:14.193Z","sequence":6606,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:14.193Z","sequence":6607,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:14.198Z","sequence":6608,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f06aeebf-d28e-4824-9117-fe6339e22a76, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:14.22Z","sequence":6609,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:14.22Z","sequence":6610,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000159] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:14.242Z","sequence":6611,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:14.242Z","sequence":6612,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:14.257Z","sequence":6613,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d1ee350b-f015-4070-9bf8-8d8493448eec, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:19.166Z","sequence":6614,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_190927]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"75ff7ca1f453bbdb","parentId":"334184eb798b82b2","traceId":"000000000000000006d8f17086cf4f17","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:19.19Z","sequence":6615,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_190927, resource-version: a530431c-6762-4990-bbf3-302af44658e8]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"75ff7ca1f453bbdb","parentId":"334184eb798b82b2","traceId":"000000000000000006d8f17086cf4f17","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:19.197Z","sequence":6616,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190927, resource-version: 33a1bb55-8b44-40ca-9e7f-9e53b551a4a2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"75ff7ca1f453bbdb","parentId":"334184eb798b82b2","traceId":"000000000000000006d8f17086cf4f17","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:19.205Z","sequence":6617,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_190927]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"67feebd81f229b24","parentId":"13428af54b623911","traceId":"000000000000000006d8f17086cf4f17","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:19.361Z","sequence":6618,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190927]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"67feebd81f229b24","parentId":"13428af54b623911","traceId":"000000000000000006d8f17086cf4f17","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:20.161Z","sequence":6619,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF4A0C5632F26EF]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e5ac055e2076a134","parentId":"5f027382139a2fc0","traceId":"00000000000000006044d53550837897","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:20.179Z","sequence":6620,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF4A0C5632F26EF, resource-version: 811c508f-0381-42ec-9dcb-9a2bd31681b2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e5ac055e2076a134","parentId":"5f027382139a2fc0","traceId":"00000000000000006044d53550837897","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:20.185Z","sequence":6621,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF4A0C5632F26EF, resource-version: f7d70b04-305f-4ade-b1ba-7d23eec999bf]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e5ac055e2076a134","parentId":"5f027382139a2fc0","traceId":"00000000000000006044d53550837897","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:21.264Z","sequence":6622,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:21.264Z","sequence":6623,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_190927]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:21.274Z","sequence":6624,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-dbf939cf-c27a-449c-9bc8-c3321371d93d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:21.393Z","sequence":6625,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:21.393Z","sequence":6626,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF4A0C5632F26EF] for gateway [gateway_integrationtest_network_190927]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:21.394Z","sequence":6627,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:21.394Z","sequence":6628,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_190927]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:21.4Z","sequence":6629,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c7a89da0-acb6-4268-b3b3-5b900c9bacde, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:21.4Z","sequence":6630,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:21.4Z","sequence":6631,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:21.577Z","sequence":6632,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-183d9ac9-0727-44fb-889e-44a2dc16b1d7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:21.649Z","sequence":6633,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"retrieving device [tenant: integrationtest, device-id: 0EF4A0C5632F26EF]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e704d8e2af3619d1","parentId":"480af3ec282dd67e","traceId":"8c57964ba7e3d07d8d05c2e1b1d0f47a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:28.145Z","sequence":6634,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:28.145Z","sequence":6635,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000A9E] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:28.151Z","sequence":6636,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:28.151Z","sequence":6637,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:28.158Z","sequence":6638,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-14406860-89cd-4871-86b2-1a035252b536, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:29.472Z","sequence":6639,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:29.472Z","sequence":6640,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001405] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:29.477Z","sequence":6641,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:29.477Z","sequence":6642,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:29.483Z","sequence":6643,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-345fc968-b4ed-41ff-ad3a-f7020b5fc274, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:31.064Z","sequence":6644,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:31.064Z","sequence":6645,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 70B3D57BB1001272] for gateway [gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:31.069Z","sequence":6646,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:31.069Z","sequence":6647,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:31.073Z","sequence":6648,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2d896433-0885-410f-901e-67c4042d850e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:34.496Z","sequence":6649,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF4A0C5632F26EF]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6ab15040635f0971","parentId":"b9e2829a53e2fa80","traceId":"0000000000000000b05005391aa878d4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:34.517Z","sequence":6650,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF4A0C5632F26EF]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6ab15040635f0971","parentId":"b9e2829a53e2fa80","traceId":"0000000000000000b05005391aa878d4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:34.646Z","sequence":6651,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_190927]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"faafdab20fea54a8","parentId":"2b2d38a84cd3d5a4","traceId":"0000000000000000e9791364b0748a8e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:34.661Z","sequence":6652,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190927]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"faafdab20fea54a8","parentId":"2b2d38a84cd3d5a4","traceId":"0000000000000000e9791364b0748a8e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:35.125Z","sequence":6653,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 5BA8E06C29F7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4298c3a39d1d4419","parentId":"5d3054db4ffe0010","traceId":"00000000000000005cc63d86b592083d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:35.142Z","sequence":6654,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 5BA8E06C29F7, resource-version: ebf75dc3-28a7-419c-82a2-0a1556e52c0c]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4298c3a39d1d4419","parentId":"5d3054db4ffe0010","traceId":"00000000000000005cc63d86b592083d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:35.148Z","sequence":6655,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 5BA8E06C29F7, resource-version: 2e579575-7209-49f4-bd73-e9cdf45dfc71]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4298c3a39d1d4419","parentId":"5d3054db4ffe0010","traceId":"00000000000000005cc63d86b592083d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:35.151Z","sequence":6656,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 5BA8E06C29F7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0546e00f826dbb5f","parentId":"5c0af3cdc67a128a","traceId":"00000000000000005cc63d86b592083d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:35.273Z","sequence":6657,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 5BA8E06C29F7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0546e00f826dbb5f","parentId":"5c0af3cdc67a128a","traceId":"00000000000000005cc63d86b592083d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:35.763Z","sequence":6658,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFE93715423E9D2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6af7eba5f59ae8db","parentId":"c1855d7089b8f566","traceId":"000000000000000040baa024f403b612","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:35.78Z","sequence":6659,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFE93715423E9D2, resource-version: 5d732512-03b6-49f6-bbd1-d67827e7c561]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6af7eba5f59ae8db","parentId":"c1855d7089b8f566","traceId":"000000000000000040baa024f403b612","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:35.786Z","sequence":6660,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFE93715423E9D2, resource-version: d088e62b-a4d9-4eeb-b2d9-a87b1f769508]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6af7eba5f59ae8db","parentId":"c1855d7089b8f566","traceId":"000000000000000040baa024f403b612","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:36.102Z","sequence":6661,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:36.102Z","sequence":6662,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001406] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:36.111Z","sequence":6663,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:36.111Z","sequence":6664,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:36.119Z","sequence":6665,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b43ddc7b-3d14-4b25-9a06-c72bb7a2618b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:36.871Z","sequence":6666,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:36.871Z","sequence":6667,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-5BA8E06C29F7]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:36.881Z","sequence":6668,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-472db34a-503c-4045-9f11-a04759ba5258, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:37.014Z","sequence":6669,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:37.014Z","sequence":6670,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 5BA8E06C29F7]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:37.019Z","sequence":6671,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-193cd04e-3ee3-421b-a658-373ca60be017, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:37.024Z","sequence":6672,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:37.024Z","sequence":6673,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFE93715423E9D2] for gateway [5BA8E06C29F7]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:37.029Z","sequence":6674,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:37.029Z","sequence":6675,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:37.188Z","sequence":6676,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-091c5555-61d8-41e6-b8b0-2783e47c372a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:45.965Z","sequence":6677,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/aloxy:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:45.965Z","sequence":6678,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: aloxy, device-id: 0008004A8F68]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:45.972Z","sequence":6679,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0f51cbde-4d86-44c5-8b26-39cce9d10f4a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:45.975Z","sequence":6680,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:45.976Z","sequence":6681,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: aloxy]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:45.98Z","sequence":6682,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-315637a3-67a6-44ac-a1ca-b235949a4942, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:50.731Z","sequence":6683,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:50.732Z","sequence":6684,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 70B3D57BB1001257] for gateway [gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:50.741Z","sequence":6685,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:50.741Z","sequence":6686,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:50.746Z","sequence":6687,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c5c0d886-4992-4984-97dd-e9469ffbc5f9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:50.857Z","sequence":6688,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:50.857Z","sequence":6689,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10018B9] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:50.866Z","sequence":6690,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:50.867Z","sequence":6691,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:50.881Z","sequence":6692,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-30ede9cb-0508-4da5-bba7-9da0a860976e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:51.155Z","sequence":6693,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFE93715423E9D2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5f30fe33c0223f08","parentId":"50718284f89096ce","traceId":"0000000000000000114c26748ba61bfd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:51.203Z","sequence":6694,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFE93715423E9D2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5f30fe33c0223f08","parentId":"50718284f89096ce","traceId":"0000000000000000114c26748ba61bfd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:52.194Z","sequence":6695,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 5BA8E06C29F7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6405446bbd1cacad","parentId":"166c197d0f9411da","traceId":"00000000000000007d9191e8a637132d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:52.213Z","sequence":6696,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 5BA8E06C29F7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6405446bbd1cacad","parentId":"166c197d0f9411da","traceId":"00000000000000007d9191e8a637132d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:54.904Z","sequence":6697,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:54.905Z","sequence":6698,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BB613]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:54.911Z","sequence":6699,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3ae759cf-014b-4698-b580-6a799599c362, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:54.914Z","sequence":6700,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:54.915Z","sequence":6701,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: lanxess]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:54.918Z","sequence":6702,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-b9db2540-c1c2-4a2f-9de3-d03c9033003f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:56.016Z","sequence":6703,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: BDC34FDD793A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fcc73fa0b0f7d7c3","parentId":"0064ef67e46c7cf8","traceId":"0000000000000000d958dafef20b14ef","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:56.031Z","sequence":6704,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: BDC34FDD793A, resource-version: 3f315e02-cc52-40e5-8094-512ce57a8867]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fcc73fa0b0f7d7c3","parentId":"0064ef67e46c7cf8","traceId":"0000000000000000d958dafef20b14ef","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:56.037Z","sequence":6705,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: BDC34FDD793A, resource-version: a6428934-9f21-4b89-8bfb-8166cc8d13bb]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fcc73fa0b0f7d7c3","parentId":"0064ef67e46c7cf8","traceId":"0000000000000000d958dafef20b14ef","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:56.043Z","sequence":6706,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: BDC34FDD793A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f8cc659df17dd5da","parentId":"8ac8a5db7aa33e0d","traceId":"0000000000000000d958dafef20b14ef","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:56.146Z","sequence":6707,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:56.146Z","sequence":6708,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 70B3D57BB1001286] for gateway [gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:56.159Z","sequence":6709,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:56.16Z","sequence":6710,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:56.17Z","sequence":6711,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0581c93c-4e3e-4169-9f31-a24b9b343e11, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:56.272Z","sequence":6712,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: BDC34FDD793A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f8cc659df17dd5da","parentId":"8ac8a5db7aa33e0d","traceId":"0000000000000000d958dafef20b14ef","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:57.199Z","sequence":6713,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF926883C2D6850]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ea2aa740b2d12662","parentId":"c88e913b7fb987d1","traceId":"00000000000000000383a5b762a93ee7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:57.215Z","sequence":6714,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF926883C2D6850, resource-version: 88c7b4eb-136b-41a7-b6c5-4cbd6c254014]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ea2aa740b2d12662","parentId":"c88e913b7fb987d1","traceId":"00000000000000000383a5b762a93ee7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:57.222Z","sequence":6715,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF926883C2D6850, resource-version: fa02d9a7-da6f-4b9d-b5a3-e6b81607ff62]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ea2aa740b2d12662","parentId":"c88e913b7fb987d1","traceId":"00000000000000000383a5b762a93ee7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:57.66Z","sequence":6716,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF926883C2D6850]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"95ea30677244791c","parentId":"2760f3f9d5fef140","traceId":"000000000000000052844822fc3dab3c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:57.679Z","sequence":6717,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF926883C2D6850]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"95ea30677244791c","parentId":"2760f3f9d5fef140","traceId":"000000000000000052844822fc3dab3c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:57.993Z","sequence":6718,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: BDC34FDD793A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"778abc5b740abd76","parentId":"d0a8f0a8119cd722","traceId":"0000000000000000525e018f3abc6bd4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:58.012Z","sequence":6719,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: BDC34FDD793A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"778abc5b740abd76","parentId":"d0a8f0a8119cd722","traceId":"0000000000000000525e018f3abc6bd4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:58.107Z","sequence":6720,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:58.107Z","sequence":6721,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10018A8] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:58.125Z","sequence":6722,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:58.125Z","sequence":6723,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:47:58.131Z","sequence":6724,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3e1ea0e4-aae3-4042-a7db-e31640f2f97d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:04.177Z","sequence":6725,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 8BB48F373A97]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9b596545bdaced1d","parentId":"7e8b960a45ab9a89","traceId":"0000000000000000a2e04cfb3731f2db","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:04.237Z","sequence":6726,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 8BB48F373A97, resource-version: 966fc543-d9ef-4d03-a43f-dfaadae707b0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9b596545bdaced1d","parentId":"7e8b960a45ab9a89","traceId":"0000000000000000a2e04cfb3731f2db","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:04.253Z","sequence":6727,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 8BB48F373A97, resource-version: c8dcad5f-ef9a-422c-9436-39e1b5b92333]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9b596545bdaced1d","parentId":"7e8b960a45ab9a89","traceId":"0000000000000000a2e04cfb3731f2db","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:04.257Z","sequence":6728,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 8BB48F373A97]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4f5c363a83d47291","parentId":"37ab49975abdbce7","traceId":"0000000000000000a2e04cfb3731f2db","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:04.446Z","sequence":6729,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 8BB48F373A97]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4f5c363a83d47291","parentId":"37ab49975abdbce7","traceId":"0000000000000000a2e04cfb3731f2db","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:05.495Z","sequence":6730,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:05.495Z","sequence":6731,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10018BA] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:05.517Z","sequence":6732,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:05.517Z","sequence":6733,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:05.524Z","sequence":6734,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c3de9342-07bd-4310-af14-229debc321f7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:05.833Z","sequence":6735,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/acta:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:05.833Z","sequence":6736,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: acta, device-id: 0008004AAAA3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:05.84Z","sequence":6737,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0c40c477-b689-4fc1-a4ea-7215a135cd56, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:05.859Z","sequence":6738,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF9201EDA7B0072]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e6a550fa325cd228","parentId":"d5a4af833e0eebc9","traceId":"000000000000000093599a8bdde72048","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:05.894Z","sequence":6739,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF9201EDA7B0072, resource-version: 9ae9c9da-b210-4a40-8242-9261a5f5748f]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e6a550fa325cd228","parentId":"d5a4af833e0eebc9","traceId":"000000000000000093599a8bdde72048","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:05.906Z","sequence":6740,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF9201EDA7B0072, resource-version: 0db87f0f-48a4-4141-b58e-feb0b3fc20a0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e6a550fa325cd228","parentId":"d5a4af833e0eebc9","traceId":"000000000000000093599a8bdde72048","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:06.229Z","sequence":6741,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:06.229Z","sequence":6742,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AA9] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:06.241Z","sequence":6743,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:06.241Z","sequence":6744,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:06.249Z","sequence":6745,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-aac42f4a-3eb8-440a-bf53-44f0e933d37f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:06.965Z","sequence":6746,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:06.965Z","sequence":6747,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-8BB48F373A97]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:06.989Z","sequence":6748,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-15c51926-4e10-4a4f-908a-5ec84207fab7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:07.108Z","sequence":6749,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:07.108Z","sequence":6750,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 8BB48F373A97]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:07.121Z","sequence":6751,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-bee4907b-c10e-498c-8da9-baea69d7c413, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:07.127Z","sequence":6752,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:07.127Z","sequence":6753,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF9201EDA7B0072] for gateway [8BB48F373A97]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:07.137Z","sequence":6754,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.5.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:07.137Z","sequence":6755,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:07.753Z","sequence":6756,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-db250b9f-2a38-454d-bee0-e6fef1538f9a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:09.216Z","sequence":6757,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:09.216Z","sequence":6758,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-00GWALP120IT]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:09.233Z","sequence":6759,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-473523aa-50c8-420a-a797-eb06e0c14f3f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:09.388Z","sequence":6760,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:09.388Z","sequence":6761,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 00GWALP120IT]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:09.405Z","sequence":6762,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-26f53729-309a-40be-a969-cbcb98a6cf70, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:09.415Z","sequence":6763,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:09.415Z","sequence":6764,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 4A38383700300023] for gateway [00GWALP120IT]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:09.423Z","sequence":6765,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:0.3.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:09.423Z","sequence":6766,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7\",\n \"upstream-message-mapper\" : \"upstream_dash7\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:10.027Z","sequence":6767,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0292fbf0-073a-4c88-b0b7-30480c209664, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:11.666Z","sequence":6768,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:11.666Z","sequence":6769,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001407] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:11.672Z","sequence":6770,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:11.672Z","sequence":6771,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:11.678Z","sequence":6772,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1cfb2010-1f8c-4b73-b367-b7c6f9692f82, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:13.516Z","sequence":6773,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:13.516Z","sequence":6774,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100136C] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:13.54Z","sequence":6775,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:13.54Z","sequence":6776,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:13.546Z","sequence":6777,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-03d48844-c82e-4873-b19f-c4e7b46956c5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:13.61Z","sequence":6778,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:13.61Z","sequence":6779,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100136C] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:13.616Z","sequence":6780,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:13.616Z","sequence":6781,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:13.619Z","sequence":6782,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-26f9cafc-e192-44dc-be9e-3a45512fd5ed, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:16.244Z","sequence":6783,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF9201EDA7B0072]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bdcb502228d8b5f6","parentId":"bcaaec63411759c7","traceId":"0000000000000000ad85140a5acd248c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:16.283Z","sequence":6784,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF9201EDA7B0072]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bdcb502228d8b5f6","parentId":"bcaaec63411759c7","traceId":"0000000000000000ad85140a5acd248c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:16.522Z","sequence":6785,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:16.522Z","sequence":6786,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100021F] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:16.545Z","sequence":6787,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:0.4.1\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:16.545Z","sequence":6788,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:16.561Z","sequence":6789,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-97d629fd-f0b2-4e55-8380-2dc91e4f9414, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:16.749Z","sequence":6790,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 8BB48F373A97]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b2919ce2cfa64a55","parentId":"a14c8de48d9deef8","traceId":"000000000000000087b23a2e229bbab7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:16.805Z","sequence":6791,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 8BB48F373A97]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b2919ce2cfa64a55","parentId":"a14c8de48d9deef8","traceId":"000000000000000087b23a2e229bbab7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:20.625Z","sequence":6792,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_190931]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a19dc7108f10bc6d","parentId":"e70de6c2a09c93f8","traceId":"0000000000000000574405ff0409e396","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:20.654Z","sequence":6793,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_190931, resource-version: a68dda03-6f41-4915-8509-c362712e5280]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a19dc7108f10bc6d","parentId":"e70de6c2a09c93f8","traceId":"0000000000000000574405ff0409e396","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:20.666Z","sequence":6794,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190931, resource-version: 2792dcb2-0d8d-474c-939f-b30c5787d5de]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a19dc7108f10bc6d","parentId":"e70de6c2a09c93f8","traceId":"0000000000000000574405ff0409e396","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:20.669Z","sequence":6795,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_190931]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ea3c9c24a07877f5","parentId":"95d9da484cd30dfc","traceId":"0000000000000000574405ff0409e396","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:20.845Z","sequence":6796,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190931]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ea3c9c24a07877f5","parentId":"95d9da484cd30dfc","traceId":"0000000000000000574405ff0409e396","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:21.538Z","sequence":6797,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFD18F25B62210C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"64e4a5c1875c8048","parentId":"2a97517cf6205bdf","traceId":"00000000000000005b6b46e740958727","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:21.554Z","sequence":6798,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFD18F25B62210C, resource-version: 200f62b3-36f3-45ac-a48f-38e9b7cf6cc0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"64e4a5c1875c8048","parentId":"2a97517cf6205bdf","traceId":"00000000000000005b6b46e740958727","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:21.56Z","sequence":6799,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFD18F25B62210C, resource-version: 453238dc-4b32-44f5-9be8-f4a0aa38cd1b]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"64e4a5c1875c8048","parentId":"2a97517cf6205bdf","traceId":"00000000000000005b6b46e740958727","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:22.539Z","sequence":6800,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:22.539Z","sequence":6801,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10018AB] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:22.545Z","sequence":6802,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:22.545Z","sequence":6803,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:22.552Z","sequence":6804,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4059c189-ce53-44f7-8101-b3c89a593764, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:22.673Z","sequence":6805,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:22.673Z","sequence":6806,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:22.677Z","sequence":6807,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-8bf5ee11-7497-42be-82b4-311baba38885, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:22.679Z","sequence":6808,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:22.68Z","sequence":6809,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_190931]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:22.69Z","sequence":6810,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-16c89e1d-d876-474b-a565-c60e8483a2cb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:22.814Z","sequence":6811,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:22.814Z","sequence":6812,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD18F25B62210C] for gateway [gateway_integrationtest_network_190931]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:22.814Z","sequence":6813,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:22.814Z","sequence":6814,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_190931]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:22.82Z","sequence":6815,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.7.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:22.821Z","sequence":6816,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:22.822Z","sequence":6817,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-bb9c728b-4f5e-4874-b0a4-7704f9e34f9b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:23.138Z","sequence":6818,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f61c956c-4a89-43d4-90d7-174e7b017a39, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:26.02Z","sequence":6819,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 76DF4079435D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c626f67b734f1597","parentId":"d97c40563c47fad3","traceId":"0000000000000000925e61ed055b9b42","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:26.039Z","sequence":6820,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 76DF4079435D, resource-version: dc0d7a3c-834b-4338-ad85-f3fd453032f0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c626f67b734f1597","parentId":"d97c40563c47fad3","traceId":"0000000000000000925e61ed055b9b42","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:26.045Z","sequence":6821,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 76DF4079435D, resource-version: 36a11023-0fbf-4030-a5f0-6c276d8df451]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c626f67b734f1597","parentId":"d97c40563c47fad3","traceId":"0000000000000000925e61ed055b9b42","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:26.049Z","sequence":6822,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 76DF4079435D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e193af3f2fd9161c","parentId":"efdb20f54f47601f","traceId":"0000000000000000925e61ed055b9b42","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:26.17Z","sequence":6823,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 76DF4079435D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e193af3f2fd9161c","parentId":"efdb20f54f47601f","traceId":"0000000000000000925e61ed055b9b42","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:26.609Z","sequence":6824,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFE91A48231CEB5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"23f189c014fb50cd","parentId":"f3d243d23526c68c","traceId":"00000000000000003d04b86fda64649c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:26.629Z","sequence":6825,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFE91A48231CEB5, resource-version: 2a0298d2-7b1d-4e35-a941-52451e535d39]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"23f189c014fb50cd","parentId":"f3d243d23526c68c","traceId":"00000000000000003d04b86fda64649c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:26.635Z","sequence":6826,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFE91A48231CEB5, resource-version: de503bf9-b705-4789-a4ff-7eabdb108ab1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"23f189c014fb50cd","parentId":"f3d243d23526c68c","traceId":"00000000000000003d04b86fda64649c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:27.689Z","sequence":6827,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:27.689Z","sequence":6828,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:27.693Z","sequence":6829,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-525fcbaa-d7ce-4ba8-81e6-a99910675d0f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:27.695Z","sequence":6830,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:27.695Z","sequence":6831,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-76DF4079435D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:27.704Z","sequence":6832,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-6e5a1e71-22e2-4ae5-a434-dab5b9a7e131, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:27.822Z","sequence":6833,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:27.822Z","sequence":6834,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 76DF4079435D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:27.827Z","sequence":6835,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-18637646-6636-4918-9443-71670f1d083f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:27.832Z","sequence":6836,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:27.832Z","sequence":6837,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFE91A48231CEB5] for gateway [76DF4079435D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:27.836Z","sequence":6838,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.5.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:27.836Z","sequence":6839,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:27.998Z","sequence":6840,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-204933e7-d9bb-47a6-ad26-0e56ae7a3543, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:30.011Z","sequence":6841,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:30.011Z","sequence":6842,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AA3] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:30.017Z","sequence":6843,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:30.017Z","sequence":6844,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:30.023Z","sequence":6845,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-bf8133be-cc7e-4618-84aa-bd52ab5856e4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:36.652Z","sequence":6846,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFD18F25B62210C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"32ac5d78fc1b8502","parentId":"249715df22b197e3","traceId":"000000000000000006d89eb9b3b546bc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:36.667Z","sequence":6847,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFD18F25B62210C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"32ac5d78fc1b8502","parentId":"249715df22b197e3","traceId":"000000000000000006d89eb9b3b546bc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:36.819Z","sequence":6848,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_190931]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1438b1b1dc2994cc","parentId":"6a5c52bbe0732b3b","traceId":"00000000000000005511c1112ccfe280","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:36.837Z","sequence":6849,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190931]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1438b1b1dc2994cc","parentId":"6a5c52bbe0732b3b","traceId":"00000000000000005511c1112ccfe280","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:37.418Z","sequence":6850,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFE91A48231CEB5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8a125f45a8472e2c","parentId":"57968118b2f28f22","traceId":"0000000000000000419dc05525b5a791","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:37.436Z","sequence":6851,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFE91A48231CEB5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8a125f45a8472e2c","parentId":"57968118b2f28f22","traceId":"0000000000000000419dc05525b5a791","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:37.529Z","sequence":6852,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 76DF4079435D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b11a4e29bad461d5","parentId":"db685971f8e5020e","traceId":"0000000000000000f1b70988a073ef9a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:37.545Z","sequence":6853,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 76DF4079435D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b11a4e29bad461d5","parentId":"db685971f8e5020e","traceId":"0000000000000000f1b70988a073ef9a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:37.595Z","sequence":6854,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 1BE837C991FB]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"581752354d52a313","parentId":"50009f1109f9169a","traceId":"00000000000000008590d7158e511e6c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:37.622Z","sequence":6855,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 1BE837C991FB, resource-version: 62dda2cd-3da5-4856-94c6-edfa8a5e000d]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"581752354d52a313","parentId":"50009f1109f9169a","traceId":"00000000000000008590d7158e511e6c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:37.63Z","sequence":6856,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 1BE837C991FB, resource-version: 6af32ea8-c605-49a0-9f93-155548250214]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"581752354d52a313","parentId":"50009f1109f9169a","traceId":"00000000000000008590d7158e511e6c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:37.634Z","sequence":6857,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 1BE837C991FB]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"37f0a87c33070e1c","parentId":"0482e25403142092","traceId":"00000000000000008590d7158e511e6c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:37.757Z","sequence":6858,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 1BE837C991FB]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"37f0a87c33070e1c","parentId":"0482e25403142092","traceId":"00000000000000008590d7158e511e6c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:38.057Z","sequence":6859,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_190934]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cb458d2bb15b0e92","parentId":"75a11767dc4af007","traceId":"00000000000000002e00be9aa8e9e1d5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:38.073Z","sequence":6860,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_190934, resource-version: 9552abd8-45c1-4226-a1ba-52fc789606b5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cb458d2bb15b0e92","parentId":"75a11767dc4af007","traceId":"00000000000000002e00be9aa8e9e1d5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:38.079Z","sequence":6861,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190934, resource-version: bfa51560-d4e5-4874-babd-6b4be2d36ab7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cb458d2bb15b0e92","parentId":"75a11767dc4af007","traceId":"00000000000000002e00be9aa8e9e1d5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:38.082Z","sequence":6862,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_190934]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"63233636e91a4c38","parentId":"9056a6035f71cd57","traceId":"00000000000000002e00be9aa8e9e1d5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:38.201Z","sequence":6863,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190934]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"63233636e91a4c38","parentId":"9056a6035f71cd57","traceId":"00000000000000002e00be9aa8e9e1d5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:38.246Z","sequence":6864,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFB6A2FA9C498D9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"066f6e0d532ba7c0","parentId":"ccbdd64e1dd90b3b","traceId":"00000000000000004e46bf31a956c3fd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:38.271Z","sequence":6865,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFB6A2FA9C498D9, resource-version: fb6a1eb7-3d9a-45f5-b2cc-ff8fc20343b9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"066f6e0d532ba7c0","parentId":"ccbdd64e1dd90b3b","traceId":"00000000000000004e46bf31a956c3fd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:38.278Z","sequence":6866,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFB6A2FA9C498D9, resource-version: 0d1e8cf5-7853-401a-be66-0decf26e7174]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"066f6e0d532ba7c0","parentId":"ccbdd64e1dd90b3b","traceId":"00000000000000004e46bf31a956c3fd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:38.641Z","sequence":6867,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF5C23D52FD8EE3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"322b2ab75a6376f4","parentId":"936aea2eb1ed14be","traceId":"00000000000000007d8e7fd737ddf1e7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:38.659Z","sequence":6868,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF5C23D52FD8EE3, resource-version: 0bc43a33-0abc-4d15-8452-ec266f2d8439]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"322b2ab75a6376f4","parentId":"936aea2eb1ed14be","traceId":"00000000000000007d8e7fd737ddf1e7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:38.666Z","sequence":6869,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF5C23D52FD8EE3, resource-version: da05053c-48ed-48aa-9729-b678966bd6b4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"322b2ab75a6376f4","parentId":"936aea2eb1ed14be","traceId":"00000000000000007d8e7fd737ddf1e7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:39.319Z","sequence":6870,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:39.319Z","sequence":6871,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-1BE837C991FB]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:39.329Z","sequence":6872,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-65ca118f-9a4d-4d2f-8c9c-cead2bd3de75, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:39.448Z","sequence":6873,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:39.448Z","sequence":6874,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 1BE837C991FB]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:39.453Z","sequence":6875,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-535397da-46bb-4284-ad4f-8c8d9d45787d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:39.458Z","sequence":6876,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:39.458Z","sequence":6877,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFB6A2FA9C498D9] for gateway [1BE837C991FB]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:39.464Z","sequence":6878,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:39.464Z","sequence":6879,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:39.626Z","sequence":6880,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ce04399d-7c20-48d8-a718-30e300336a77, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:39.627Z","sequence":6881,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:39.627Z","sequence":6882,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:39.633Z","sequence":6883,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-22f20bea-3f8e-40b6-a11a-e2db6c64469c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:39.705Z","sequence":6884,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:39.706Z","sequence":6885,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_190934]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:39.721Z","sequence":6886,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-74dea0b3-497c-4c25-bf89-33f00098e538, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:39.845Z","sequence":6887,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:39.845Z","sequence":6888,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF5C23D52FD8EE3] for gateway [gateway_integrationtest_network_190934]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:39.846Z","sequence":6889,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:39.846Z","sequence":6890,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_190934]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:39.851Z","sequence":6891,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-54a4b494-9fe8-41c2-b21b-2a05718e3ada, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:39.852Z","sequence":6892,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:39.852Z","sequence":6893,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:40.033Z","sequence":6894,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ce518239-81f0-44e7-b7cf-5dfb5c86208c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:41.098Z","sequence":6895,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:41.099Z","sequence":6896,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oci]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:41.103Z","sequence":6897,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-5984b822-7767-481f-a8f7-183467234950, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:43.624Z","sequence":6898,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:43.624Z","sequence":6899,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001905] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:43.657Z","sequence":6900,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:43.657Z","sequence":6901,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:43.673Z","sequence":6902,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c196f854-134e-4110-99ee-f2637b83d457, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:45.225Z","sequence":6903,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:45.225Z","sequence":6904,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 70B3D57BB100128B] for gateway [gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:45.231Z","sequence":6905,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:45.231Z","sequence":6906,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:45.235Z","sequence":6907,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0251f2be-a2c1-4d1e-9e58-76c71828fe69, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:45.458Z","sequence":6908,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:45.458Z","sequence":6909,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 70B3D57BB1000196] for gateway [0008004BB84C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:45.467Z","sequence":6910,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:0.4.1\"\n },\n \"viaGroups\" : [ \"gateways_lanxess\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:45.467Z","sequence":6911,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_lanxess\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:45.471Z","sequence":6912,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-175ce381-3cc0-4031-90b3-8fb47cbe6ad5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:47.989Z","sequence":6913,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFB6A2FA9C498D9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b6921822f88f9175","parentId":"a138e80a5637a011","traceId":"000000000000000064e757c1d4889914","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:48.01Z","sequence":6914,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFB6A2FA9C498D9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b6921822f88f9175","parentId":"a138e80a5637a011","traceId":"000000000000000064e757c1d4889914","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:48.408Z","sequence":6915,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 1BE837C991FB]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e59e51953859ae44","parentId":"2ef7b06dbbbef6ef","traceId":"0000000000000000c42e0f54a1055967","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:48.43Z","sequence":6916,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 1BE837C991FB]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e59e51953859ae44","parentId":"2ef7b06dbbbef6ef","traceId":"0000000000000000c42e0f54a1055967","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:48.949Z","sequence":6917,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/repsol:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:48.949Z","sequence":6918,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: repsol, device-id: 0008004A37FF]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:48.956Z","sequence":6919,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2581620a-c008-46a1-8677-5a78d0e47e70, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:48.96Z","sequence":6920,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:48.96Z","sequence":6921,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: repsol]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:48.964Z","sequence":6922,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-b88c6813-a48f-4661-b149-269891aeb3ce, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:54.149Z","sequence":6923,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF5C23D52FD8EE3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fd73b7d141ee9a8c","parentId":"3808d90c886d9305","traceId":"00000000000000001a9e8be32a2d7032","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:54.2Z","sequence":6924,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF5C23D52FD8EE3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fd73b7d141ee9a8c","parentId":"3808d90c886d9305","traceId":"00000000000000001a9e8be32a2d7032","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:54.792Z","sequence":6925,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_190934]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d04eed421e561e98","parentId":"1efefaa8b638fd20","traceId":"00000000000000000e3a887f47ad49b8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:54.814Z","sequence":6926,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190934]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d04eed421e561e98","parentId":"1efefaa8b638fd20","traceId":"00000000000000000e3a887f47ad49b8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:56.684Z","sequence":6927,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:56.684Z","sequence":6928,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: flint]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:56.697Z","sequence":6929,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-0a1a805a-6015-448f-9f20-378ffc1ba00b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:56.699Z","sequence":6930,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/flint:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:56.7Z","sequence":6931,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: flint, type: hashed-password, auth-id: auth-flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:56.7Z","sequence":6932,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/flint:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:56.701Z","sequence":6933,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: flint, type: hashed-password, auth-id: auth-flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:56.715Z","sequence":6934,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-f00c8f9a-235f-43b7-b231-ac3b75a3b7e1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:56.716Z","sequence":6935,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-0a443b53-9803-46bd-b3f8-1ebbc4bbfdd2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:57.062Z","sequence":6936,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:57.062Z","sequence":6937,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000235] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:57.069Z","sequence":6938,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:57.069Z","sequence":6939,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:57.074Z","sequence":6940,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8dd80467-796b-49e8-972a-9615b758c5d6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:57.132Z","sequence":6941,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:57.132Z","sequence":6942,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10008B8] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:57.137Z","sequence":6943,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:57.137Z","sequence":6944,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:48:57.144Z","sequence":6945,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-97fa74e7-fa6b-4c91-98ad-5d2d55b3e5cc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:00.442Z","sequence":6946,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_190935]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9746d2da7d1d003a","parentId":"0fe3cce5c3f01a4c","traceId":"000000000000000068fa8b302cbdb138","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:00.471Z","sequence":6947,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_190935, resource-version: a5198c7f-e03a-44f0-b157-a56b65ed9137]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9746d2da7d1d003a","parentId":"0fe3cce5c3f01a4c","traceId":"000000000000000068fa8b302cbdb138","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:00.477Z","sequence":6948,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190935, resource-version: 24546f4e-1d7f-46e5-bd41-96ecc2ecdcf4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9746d2da7d1d003a","parentId":"0fe3cce5c3f01a4c","traceId":"000000000000000068fa8b302cbdb138","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:00.48Z","sequence":6949,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_190935]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3508728414391258","parentId":"15222df45b6dee8b","traceId":"000000000000000068fa8b302cbdb138","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:00.748Z","sequence":6950,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190935]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3508728414391258","parentId":"15222df45b6dee8b","traceId":"000000000000000068fa8b302cbdb138","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:01.229Z","sequence":6951,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:01.229Z","sequence":6952,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10018EA] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:01.236Z","sequence":6953,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:01.236Z","sequence":6954,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:01.242Z","sequence":6955,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a23abf17-8edc-4a64-9080-64c1ddab3865, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:01.309Z","sequence":6956,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF07E72FE9F1B3E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ffdbb1b8c0d714d7","parentId":"6c6ef171a7670dbe","traceId":"000000000000000056cf186503180c7e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:01.325Z","sequence":6957,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF07E72FE9F1B3E, resource-version: 33887e3f-e1fd-4d61-97c6-739cd6a3f17b]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ffdbb1b8c0d714d7","parentId":"6c6ef171a7670dbe","traceId":"000000000000000056cf186503180c7e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:01.331Z","sequence":6958,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF07E72FE9F1B3E, resource-version: ddd1d282-522c-4933-b6e6-da4de6b0e5f9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ffdbb1b8c0d714d7","parentId":"6c6ef171a7670dbe","traceId":"000000000000000056cf186503180c7e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:02.531Z","sequence":6959,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:02.531Z","sequence":6960,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_190935]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:02.542Z","sequence":6961,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-6c5dd0b6-8a42-4efc-b045-a354bc70efc2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:02.778Z","sequence":6962,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:02.778Z","sequence":6963,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF07E72FE9F1B3E] for gateway [gateway_integrationtest_network_190935]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:02.779Z","sequence":6964,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:02.779Z","sequence":6965,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_190935]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:02.783Z","sequence":6966,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:connect:0.1.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:02.783Z","sequence":6967,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:02.784Z","sequence":6968,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e18682e7-73bb-40d5-8d8e-5553104f4aa8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:02.786Z","sequence":6969,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:02.786Z","sequence":6970,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF07E72FE9F1B3E] for gateway [gateway_integrationtest_network_190935]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:02.787Z","sequence":6971,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:02.787Z","sequence":6972,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_190935]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:02.802Z","sequence":6973,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:connect:0.1.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:02.802Z","sequence":6974,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:02.803Z","sequence":6975,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ce0484fc-5e4a-43fb-8bc0-f409f29301a6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:02.974Z","sequence":6976,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-21ec6a97-dc45-4175-a236-e768f63e3307, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:03.202Z","sequence":6977,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7c633320-4755-4a9b-b510-f75cefd07039, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:03.621Z","sequence":6978,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_190936]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c1a2f9192cc7472e","parentId":"faf9ead24864a916","traceId":"000000000000000015ea41d92f10f76e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:03.637Z","sequence":6979,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_190936, resource-version: 55b5a03d-9d44-44f6-85ef-2906b043dfdc]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c1a2f9192cc7472e","parentId":"faf9ead24864a916","traceId":"000000000000000015ea41d92f10f76e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:03.644Z","sequence":6980,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190936, resource-version: 04c2be95-89b6-459d-b2bd-add6259d0965]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c1a2f9192cc7472e","parentId":"faf9ead24864a916","traceId":"000000000000000015ea41d92f10f76e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:03.647Z","sequence":6981,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_190936]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"39ae20b2ef6d0aae","parentId":"a6cbf4179581236b","traceId":"000000000000000015ea41d92f10f76e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:03.789Z","sequence":6982,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190936]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"39ae20b2ef6d0aae","parentId":"a6cbf4179581236b","traceId":"000000000000000015ea41d92f10f76e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:04.747Z","sequence":6983,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFECF46826E908E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f1a46b57c1d2d88d","parentId":"12596b722f6156c5","traceId":"000000000000000072147ad639d25153","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:04.764Z","sequence":6984,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFECF46826E908E, resource-version: 3b3e6fcb-59e0-4f10-8edb-6ddaff2d3f8d]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f1a46b57c1d2d88d","parentId":"12596b722f6156c5","traceId":"000000000000000072147ad639d25153","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:04.781Z","sequence":6985,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFECF46826E908E, resource-version: 3a2147d9-8dee-4eda-90e2-358a29f6e365]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f1a46b57c1d2d88d","parentId":"12596b722f6156c5","traceId":"000000000000000072147ad639d25153","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:04.932Z","sequence":6986,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0B59EE741FEA]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c2780d71a10c91e2","parentId":"53754a5958090710","traceId":"00000000000000002bd9e9e354862a40","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:04.951Z","sequence":6987,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0B59EE741FEA, resource-version: 7f50072f-5882-40a3-bdf5-656bd76a4414]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c2780d71a10c91e2","parentId":"53754a5958090710","traceId":"00000000000000002bd9e9e354862a40","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:04.958Z","sequence":6988,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0B59EE741FEA, resource-version: 69dfbb73-0fe7-4500-8d20-957ba0889b9d]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c2780d71a10c91e2","parentId":"53754a5958090710","traceId":"00000000000000002bd9e9e354862a40","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:04.962Z","sequence":6989,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 0B59EE741FEA]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f89081c1d164a279","parentId":"307a2e5551e7b2c6","traceId":"00000000000000002bd9e9e354862a40","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:05.118Z","sequence":6990,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 0B59EE741FEA]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f89081c1d164a279","parentId":"307a2e5551e7b2c6","traceId":"00000000000000002bd9e9e354862a40","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:05.273Z","sequence":6991,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFECF46826E908E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7a364a7383062d71","parentId":"595992a17316bf9a","traceId":"0000000000000000f36fb1f2716379ee","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:05.289Z","sequence":6992,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFECF46826E908E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7a364a7383062d71","parentId":"595992a17316bf9a","traceId":"0000000000000000f36fb1f2716379ee","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:05.551Z","sequence":6993,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_190936]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"862f14aecb457a61","parentId":"a4c5d572353a651d","traceId":"00000000000000003cd42c1067330656","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:05.568Z","sequence":6994,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190936]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"862f14aecb457a61","parentId":"a4c5d572353a651d","traceId":"00000000000000003cd42c1067330656","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:05.766Z","sequence":6995,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_190938]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4f028e04536891fb","parentId":"961743c50cf7e51f","traceId":"000000000000000068ae373311d353cd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:05.789Z","sequence":6996,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_190938, resource-version: dd39601e-079b-4870-a45c-deb3260a325b]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4f028e04536891fb","parentId":"961743c50cf7e51f","traceId":"000000000000000068ae373311d353cd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:05.797Z","sequence":6997,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190938, resource-version: 3ef9a10b-65d9-4204-a186-c11a3211c878]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4f028e04536891fb","parentId":"961743c50cf7e51f","traceId":"000000000000000068ae373311d353cd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:05.801Z","sequence":6998,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_190938]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"07f2a148891a24b4","parentId":"0b61f5a772c9013a","traceId":"000000000000000068ae373311d353cd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:05.989Z","sequence":6999,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190938]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"07f2a148891a24b4","parentId":"0b61f5a772c9013a","traceId":"000000000000000068ae373311d353cd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:06.061Z","sequence":7000,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF9E379782335D8]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9b68009e5d346306","parentId":"1943f7b96191cf47","traceId":"00000000000000001ecebc69346a14c3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:06.085Z","sequence":7001,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF9E379782335D8, resource-version: 728da20a-5266-4241-8413-eed0fbba9011]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9b68009e5d346306","parentId":"1943f7b96191cf47","traceId":"00000000000000001ecebc69346a14c3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:06.092Z","sequence":7002,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF9E379782335D8, resource-version: 7db22df4-33e0-4151-a6f0-46afb59451ce]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9b68009e5d346306","parentId":"1943f7b96191cf47","traceId":"00000000000000001ecebc69346a14c3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:06.881Z","sequence":7003,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFDBF1E0C6B0B66]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a36a3ebe90f5e020","parentId":"90542d55d1d8891a","traceId":"0000000000000000902654ef972e48e2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:06.9Z","sequence":7004,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFDBF1E0C6B0B66, resource-version: e85c8242-bcd7-4146-a5a0-c4c79bd726db]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a36a3ebe90f5e020","parentId":"90542d55d1d8891a","traceId":"0000000000000000902654ef972e48e2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:06.907Z","sequence":7005,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFDBF1E0C6B0B66, resource-version: c2a0cbf5-b47d-4f8f-8029-61bc183f1215]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a36a3ebe90f5e020","parentId":"90542d55d1d8891a","traceId":"0000000000000000902654ef972e48e2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:07.237Z","sequence":7006,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:07.237Z","sequence":7007,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-0B59EE741FEA]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:07.257Z","sequence":7008,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-c172713c-834b-445d-9d1c-029bb7fe5071, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:07.372Z","sequence":7009,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:07.372Z","sequence":7010,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0B59EE741FEA]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:07.377Z","sequence":7011,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2c7ec3d4-b924-407b-83ad-d91f4d97fe4d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:07.381Z","sequence":7012,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:07.381Z","sequence":7013,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF9E379782335D8] for gateway [0B59EE741FEA]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:07.386Z","sequence":7014,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:07.386Z","sequence":7015,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:07.687Z","sequence":7016,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6fcaacee-bcf4-4cc4-aef2-ea09e072fd55, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:07.967Z","sequence":7017,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:07.967Z","sequence":7018,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_190938]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:07.979Z","sequence":7019,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-67479357-f36b-4979-bd2a-6d59b599d229, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:08.118Z","sequence":7020,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:08.119Z","sequence":7021,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDBF1E0C6B0B66] for gateway [gateway_integrationtest_network_190938]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:08.12Z","sequence":7022,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:08.12Z","sequence":7023,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_190938]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:08.124Z","sequence":7024,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.3.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:08.125Z","sequence":7025,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:08.126Z","sequence":7026,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-da6e3462-602a-4544-ae05-5acf1e4e2bd3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:08.561Z","sequence":7027,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f0caa127-a953-4f27-a6bb-363bc3c9ed28, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:08.593Z","sequence":7028,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:08.593Z","sequence":7029,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 0008004B51D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:08.622Z","sequence":7030,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-47934711-2f24-4fcb-9fb7-96fe3ccebea5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:08.628Z","sequence":7031,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:08.628Z","sequence":7032,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: dow]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:08.633Z","sequence":7033,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-03b39250-ad53-432b-b42e-a60ff8d5a4a0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:11.717Z","sequence":7034,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF9E379782335D8]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3274866572b5bd95","parentId":"96110b1d54024692","traceId":"00000000000000004e26b0a42a9aa1e1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:11.751Z","sequence":7035,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF9E379782335D8]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3274866572b5bd95","parentId":"96110b1d54024692","traceId":"00000000000000004e26b0a42a9aa1e1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:12.36Z","sequence":7036,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF07E72FE9F1B3E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"db43ec25157712f4","parentId":"6402cd4870d523c7","traceId":"00000000000000007eb66d511d00495d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:12.384Z","sequence":7037,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF07E72FE9F1B3E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"db43ec25157712f4","parentId":"6402cd4870d523c7","traceId":"00000000000000007eb66d511d00495d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:12.705Z","sequence":7038,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_190935]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9316b9678478dd84","parentId":"337e774be317390e","traceId":"00000000000000000e1d92c4bd091c58","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:12.753Z","sequence":7039,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190935]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9316b9678478dd84","parentId":"337e774be317390e","traceId":"00000000000000000e1d92c4bd091c58","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:12.82Z","sequence":7040,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0B59EE741FEA]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"be045801243e3151","parentId":"730992a1efd0f636","traceId":"0000000000000000ce90cfb4d7150eba","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:12.836Z","sequence":7041,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0B59EE741FEA]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"be045801243e3151","parentId":"730992a1efd0f636","traceId":"0000000000000000ce90cfb4d7150eba","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:13.678Z","sequence":7042,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: C118ACB4D443]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"dc52d55878257d30","parentId":"d67d35e17ca0ffac","traceId":"0000000000000000c5cddda1b98a39bd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:13.694Z","sequence":7043,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: C118ACB4D443, resource-version: 7bf08c5c-70a2-4dd4-95c6-8536379520e8]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"dc52d55878257d30","parentId":"d67d35e17ca0ffac","traceId":"0000000000000000c5cddda1b98a39bd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:13.702Z","sequence":7044,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: C118ACB4D443, resource-version: 321e7abe-45d2-47b5-bd65-3d8dfa2af84c]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"dc52d55878257d30","parentId":"d67d35e17ca0ffac","traceId":"0000000000000000c5cddda1b98a39bd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:13.705Z","sequence":7045,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: C118ACB4D443]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b084955a1a5208a9","parentId":"0e4c7116be55b522","traceId":"0000000000000000c5cddda1b98a39bd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:14.056Z","sequence":7046,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: C118ACB4D443]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b084955a1a5208a9","parentId":"0e4c7116be55b522","traceId":"0000000000000000c5cddda1b98a39bd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:15.593Z","sequence":7047,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFDA4336B384133]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e3f65b0145393d6e","parentId":"15c5adb128d87e7c","traceId":"00000000000000007eb5e38926aecf21","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:15.616Z","sequence":7048,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFDA4336B384133, resource-version: 45f2a293-91f7-451d-a7e7-a4005df5f9ed]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e3f65b0145393d6e","parentId":"15c5adb128d87e7c","traceId":"00000000000000007eb5e38926aecf21","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:15.625Z","sequence":7049,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFDA4336B384133, resource-version: 010692b8-3ab5-490f-84ae-9fb89ad3a183]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e3f65b0145393d6e","parentId":"15c5adb128d87e7c","traceId":"00000000000000007eb5e38926aecf21","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:16.787Z","sequence":7050,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:16.787Z","sequence":7051,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-C118ACB4D443]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:16.797Z","sequence":7052,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-68723bd1-e0a5-4ecb-97a9-f2beb5c0d9a2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:16.92Z","sequence":7053,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:16.92Z","sequence":7054,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: C118ACB4D443]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:16.926Z","sequence":7055,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-bd1cbaab-9952-4ea4-9afa-c1363c7907f0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:16.93Z","sequence":7056,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:16.93Z","sequence":7057,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDA4336B384133] for gateway [C118ACB4D443]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:16.936Z","sequence":7058,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:16.936Z","sequence":7059,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:17.264Z","sequence":7060,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-87e35969-e6a4-4357-aed3-b41974d71445, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:17.265Z","sequence":7061,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:17.266Z","sequence":7062,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001918] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:17.274Z","sequence":7063,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:17.274Z","sequence":7064,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:17.28Z","sequence":7065,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f85d3cee-53a8-41c9-87ae-300ab0e7e80e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:17.885Z","sequence":7066,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFDBF1E0C6B0B66]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"505568bcb0e2640e","parentId":"2cbb818600fa583c","traceId":"0000000000000000128dd5be1f191e2c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:17.909Z","sequence":7067,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFDBF1E0C6B0B66]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"505568bcb0e2640e","parentId":"2cbb818600fa583c","traceId":"0000000000000000128dd5be1f191e2c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:18.377Z","sequence":7068,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_190938]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5c9f83c4c5f8a891","parentId":"8c763a7a00cad313","traceId":"0000000000000000a8d4d91fe4c355de","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:18.397Z","sequence":7069,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190938]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5c9f83c4c5f8a891","parentId":"8c763a7a00cad313","traceId":"0000000000000000a8d4d91fe4c355de","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:19.198Z","sequence":7070,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: A4CD390FB2A4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b1869d1c993cfd47","parentId":"d32ea26af4a049d8","traceId":"00000000000000002639333db364d6bc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:19.218Z","sequence":7071,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: A4CD390FB2A4, resource-version: 896555ab-4c31-4c01-aaa0-4dbde8b2761c]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b1869d1c993cfd47","parentId":"d32ea26af4a049d8","traceId":"00000000000000002639333db364d6bc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:19.225Z","sequence":7072,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: A4CD390FB2A4, resource-version: e03288f1-199c-40b1-8886-61ec7ec37f97]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b1869d1c993cfd47","parentId":"d32ea26af4a049d8","traceId":"00000000000000002639333db364d6bc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:19.229Z","sequence":7073,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: A4CD390FB2A4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"70a14f22613fa113","parentId":"3e9b56b639e48c47","traceId":"00000000000000002639333db364d6bc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:19.28Z","sequence":7074,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:19.28Z","sequence":7075,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-00GWALP120IT]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:19.297Z","sequence":7076,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-4d99cd67-245a-4ea8-911e-35b01d4325e6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:19.419Z","sequence":7077,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:19.419Z","sequence":7078,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: C0FFEE2C0DE00000] for gateway [00GWALP120IT]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:19.426Z","sequence":7079,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: A4CD390FB2A4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"70a14f22613fa113","parentId":"3e9b56b639e48c47","traceId":"00000000000000002639333db364d6bc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:19.429Z","sequence":7080,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:0.3.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:19.429Z","sequence":7081,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7\",\n \"upstream-message-mapper\" : \"upstream_dash7\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:19.991Z","sequence":7082,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ffa450a9-7b40-4e61-b5bf-c170dd217aff, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:20.543Z","sequence":7083,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF353D8D9D255B4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2d041fc2e5704577","parentId":"a7769add6fd8dadb","traceId":"00000000000000005eca798ad5fb1d41","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:20.564Z","sequence":7084,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF353D8D9D255B4, resource-version: 41de4f0f-26d3-41e2-96b6-24640434d2b5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2d041fc2e5704577","parentId":"a7769add6fd8dadb","traceId":"00000000000000005eca798ad5fb1d41","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:20.571Z","sequence":7085,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF353D8D9D255B4, resource-version: 40cb64ab-8c95-4250-b852-9642b0aae8a2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2d041fc2e5704577","parentId":"a7769add6fd8dadb","traceId":"00000000000000005eca798ad5fb1d41","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:21.619Z","sequence":7086,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:21.619Z","sequence":7087,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-A4CD390FB2A4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:21.629Z","sequence":7088,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-bd2868e6-05b4-4a1a-9c07-2a0eb520afed, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:21.748Z","sequence":7089,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:21.748Z","sequence":7090,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: A4CD390FB2A4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:21.754Z","sequence":7091,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a62263b7-5cd0-4208-aa3d-f561ddb91d8f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:21.76Z","sequence":7092,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:21.76Z","sequence":7093,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF353D8D9D255B4] for gateway [A4CD390FB2A4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:21.765Z","sequence":7094,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:21.766Z","sequence":7095,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:22.195Z","sequence":7096,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a24a753a-72c4-49ab-a753-567971905e47, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:22.195Z","sequence":7097,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:22.195Z","sequence":7098,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: ineos]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:22.209Z","sequence":7099,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-27b90dd2-f7ca-4bf2-a571-0536feb4039f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:22.212Z","sequence":7100,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:22.213Z","sequence":7101,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB1000A90] for gateway [0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:22.236Z","sequence":7102,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:22.239Z","sequence":7103,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:22.245Z","sequence":7104,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d24a1953-874b-4ff8-8b79-df2e24791107, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:26.37Z","sequence":7105,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF353D8D9D255B4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9efc947a7b7c67c5","parentId":"3bcb5c5df7210677","traceId":"0000000000000000ed41e11ef09a782a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:26.397Z","sequence":7106,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF353D8D9D255B4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9efc947a7b7c67c5","parentId":"3bcb5c5df7210677","traceId":"0000000000000000ed41e11ef09a782a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:27.449Z","sequence":7107,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: A4CD390FB2A4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7d2fe05c360e974c","parentId":"fa222f1249268fb6","traceId":"0000000000000000e5b9570a847e15dc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:27.491Z","sequence":7108,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: A4CD390FB2A4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7d2fe05c360e974c","parentId":"fa222f1249268fb6","traceId":"0000000000000000e5b9570a847e15dc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:28.078Z","sequence":7109,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:28.078Z","sequence":7110,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10018BC] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:28.085Z","sequence":7111,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:28.085Z","sequence":7112,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:28.097Z","sequence":7113,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-bf3976d5-ea5b-4830-96dd-a96eb2110349, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:28.357Z","sequence":7114,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 129B311A41C4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5e14d541614f690b","parentId":"1d602dffee45b105","traceId":"00000000000000009eabb53932bba2a6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:28.389Z","sequence":7115,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 129B311A41C4, resource-version: 404cf916-8cdb-467e-aa56-3488c0290cf1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5e14d541614f690b","parentId":"1d602dffee45b105","traceId":"00000000000000009eabb53932bba2a6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:28.397Z","sequence":7116,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 129B311A41C4, resource-version: 9b4e9253-aa9a-4f87-bdf7-ce51dabbff8b]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5e14d541614f690b","parentId":"1d602dffee45b105","traceId":"00000000000000009eabb53932bba2a6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:28.4Z","sequence":7117,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 129B311A41C4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5b3bd2cbb1b25ab1","parentId":"8ae787e5131c6d0c","traceId":"00000000000000009eabb53932bba2a6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:28.593Z","sequence":7118,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 129B311A41C4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5b3bd2cbb1b25ab1","parentId":"8ae787e5131c6d0c","traceId":"00000000000000009eabb53932bba2a6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:29.333Z","sequence":7119,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF749A895D5F4C5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5d39777c66878628","parentId":"b1a032f28d739527","traceId":"00000000000000001f847fe68caa729b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:29.367Z","sequence":7120,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF749A895D5F4C5, resource-version: 7f561b7f-c2c6-43f0-b46a-9ed16a12c716]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5d39777c66878628","parentId":"b1a032f28d739527","traceId":"00000000000000001f847fe68caa729b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:29.372Z","sequence":7121,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF749A895D5F4C5, resource-version: 911d850b-8d82-4742-8a4a-0dad16865fda]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5d39777c66878628","parentId":"b1a032f28d739527","traceId":"00000000000000001f847fe68caa729b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:30.441Z","sequence":7122,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:30.441Z","sequence":7123,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-129B311A41C4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:30.452Z","sequence":7124,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-f4c38ba7-859a-4140-b94a-1ffe57220a97, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:30.46Z","sequence":7125,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:30.46Z","sequence":7126,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000ABC] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:30.465Z","sequence":7127,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:30.465Z","sequence":7128,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:30.471Z","sequence":7129,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-288d04a0-36f4-4144-83a0-9f8b71c31bf0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:30.598Z","sequence":7130,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:30.598Z","sequence":7131,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 129B311A41C4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:30.604Z","sequence":7132,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-93b57c08-5177-490f-a421-607910656f64, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:30.614Z","sequence":7133,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:30.614Z","sequence":7134,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF749A895D5F4C5] for gateway [129B311A41C4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:30.62Z","sequence":7135,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:30.62Z","sequence":7136,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:30.939Z","sequence":7137,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-304aa0b2-6b53-48da-ba9e-d599dfd843bb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:31.416Z","sequence":7138,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/acta:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:31.42Z","sequence":7139,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: acta, device-id: 353633350017002B] for gateway [0008004AAAA3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:31.433Z","sequence":7140,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_acta\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:31.433Z","sequence":7141,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_acta\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:31.441Z","sequence":7142,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c36c59b7-f823-4d29-bfa3-12ffe463ff05, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:34.157Z","sequence":7143,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFDA4336B384133]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3f2116310fa5ff78","parentId":"9e40093b99d0574e","traceId":"0000000000000000ab70d71c9704ac11","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:34.176Z","sequence":7144,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFDA4336B384133]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3f2116310fa5ff78","parentId":"9e40093b99d0574e","traceId":"0000000000000000ab70d71c9704ac11","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:34.496Z","sequence":7145,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: C118ACB4D443]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"202e176f5735aca2","parentId":"9fe936be55717530","traceId":"0000000000000000bc8bcb6ffb8c96d0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:34.512Z","sequence":7146,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: C118ACB4D443]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"202e176f5735aca2","parentId":"9fe936be55717530","traceId":"0000000000000000bc8bcb6ffb8c96d0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:34.771Z","sequence":7147,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_190942]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5fe39be3014b60f2","parentId":"26e66584f7729ef0","traceId":"0000000000000000370f09ae80e21aad","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:34.789Z","sequence":7148,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_190942, resource-version: 1c7925ae-470c-4962-9f9e-7ea41e0f5fe6]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5fe39be3014b60f2","parentId":"26e66584f7729ef0","traceId":"0000000000000000370f09ae80e21aad","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:34.796Z","sequence":7149,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190942, resource-version: 0ad2a89b-318c-4d5e-b03f-84a0472ce9ed]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5fe39be3014b60f2","parentId":"26e66584f7729ef0","traceId":"0000000000000000370f09ae80e21aad","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:34.799Z","sequence":7150,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_190942]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"859ae76948fcab3f","parentId":"fa2c391d7882299f","traceId":"0000000000000000370f09ae80e21aad","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:34.937Z","sequence":7151,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190942]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"859ae76948fcab3f","parentId":"fa2c391d7882299f","traceId":"0000000000000000370f09ae80e21aad","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:35.084Z","sequence":7152,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:35.084Z","sequence":7153,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000508] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:35.089Z","sequence":7154,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:35.089Z","sequence":7155,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:35.095Z","sequence":7156,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-22f9f8f6-56dd-4a17-8549-c942ee4c8dd2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:35.704Z","sequence":7157,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFC5CD8F0FE2642]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6ebdf4b65f4cadf3","parentId":"8249427ec4c92e3b","traceId":"000000000000000059ae7c1891c5859a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:35.72Z","sequence":7158,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFC5CD8F0FE2642, resource-version: 149c74c0-8df1-477b-af6b-01743e56ef92]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6ebdf4b65f4cadf3","parentId":"8249427ec4c92e3b","traceId":"000000000000000059ae7c1891c5859a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:35.729Z","sequence":7159,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFC5CD8F0FE2642, resource-version: 92e4d9d7-ff73-4f28-8748-8a75d86cac46]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6ebdf4b65f4cadf3","parentId":"8249427ec4c92e3b","traceId":"000000000000000059ae7c1891c5859a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:37.038Z","sequence":7160,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:37.038Z","sequence":7161,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_190942]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:37.052Z","sequence":7162,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-88e0d19a-459a-4dc4-a3fa-c5c16fa781af, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:37.18Z","sequence":7163,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:37.181Z","sequence":7164,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFC5CD8F0FE2642] for gateway [gateway_integrationtest_network_190942]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:37.181Z","sequence":7165,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:37.181Z","sequence":7166,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_190942]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:37.187Z","sequence":7167,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:37.187Z","sequence":7168,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:37.188Z","sequence":7169,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9eeb3ed5-036a-4518-adad-2a7b722d9a11, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:37.501Z","sequence":7170,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-df1b74f1-93b7-42f5-875b-4d43f95f04e3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:39.169Z","sequence":7171,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: C2A4B3E449CA]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0ac13945a8e8d329","parentId":"94fa2563c2cafa3d","traceId":"000000000000000066c27f814010b130","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:39.185Z","sequence":7172,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: C2A4B3E449CA, resource-version: affe280e-7350-4950-87da-a468b16fcd29]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0ac13945a8e8d329","parentId":"94fa2563c2cafa3d","traceId":"000000000000000066c27f814010b130","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:39.193Z","sequence":7173,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: C2A4B3E449CA, resource-version: 82e3299a-84d6-4920-b65e-c58422645db3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0ac13945a8e8d329","parentId":"94fa2563c2cafa3d","traceId":"000000000000000066c27f814010b130","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:39.196Z","sequence":7174,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: C2A4B3E449CA]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5769935ac4c8bab5","parentId":"2aa05fd34a24c3c0","traceId":"000000000000000066c27f814010b130","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:39.361Z","sequence":7175,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: C2A4B3E449CA]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5769935ac4c8bab5","parentId":"2aa05fd34a24c3c0","traceId":"000000000000000066c27f814010b130","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:39.887Z","sequence":7176,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF56E988814C48F]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0939c95e9db84fa7","parentId":"53ac1493528810cb","traceId":"00000000000000000a9b3160cc190f50","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:39.906Z","sequence":7177,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF56E988814C48F, resource-version: bf916e9a-d745-4fc2-8359-5eab3708bccc]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0939c95e9db84fa7","parentId":"53ac1493528810cb","traceId":"00000000000000000a9b3160cc190f50","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:39.912Z","sequence":7178,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF56E988814C48F, resource-version: 56c1f7a7-eb12-4c48-99ff-0925e1df3d13]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0939c95e9db84fa7","parentId":"53ac1493528810cb","traceId":"00000000000000000a9b3160cc190f50","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:40.809Z","sequence":7179,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:40.809Z","sequence":7180,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: shell]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:40.812Z","sequence":7181,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-9a388c80-3509-42ca-b7a3-9d4dfbb474bc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:40.814Z","sequence":7182,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/shell:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:40.814Z","sequence":7183,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: shell, type: hashed-password, auth-id: auth-gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:40.827Z","sequence":7184,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-d78eaf2c-e8d6-481a-8c5a-6e6a3fcc1075, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:40.951Z","sequence":7185,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:40.951Z","sequence":7186,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AE9] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:40.957Z","sequence":7187,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:40.958Z","sequence":7188,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:40.964Z","sequence":7189,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c2e405b1-1e54-41d3-89bc-488c20d08762, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:40.966Z","sequence":7190,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:40.966Z","sequence":7191,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-C2A4B3E449CA]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:40.976Z","sequence":7192,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-e63da9a3-86eb-44f5-914c-e972bd726461, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:41.117Z","sequence":7193,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:41.117Z","sequence":7194,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: C2A4B3E449CA]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:41.133Z","sequence":7195,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-474cb110-39b8-4249-b341-cbb440bb8381, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:41.14Z","sequence":7196,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:41.141Z","sequence":7197,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF56E988814C48F] for gateway [C2A4B3E449CA]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:41.155Z","sequence":7198,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:41.155Z","sequence":7199,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:41.462Z","sequence":7200,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3f225879-56b0-4573-92d7-484efbd4c292, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:41.515Z","sequence":7201,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF749A895D5F4C5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"07657fedfe16a8bc","parentId":"0b5545d44586560a","traceId":"0000000000000000c4c91c0ae8b729ca","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:41.538Z","sequence":7202,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF749A895D5F4C5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"07657fedfe16a8bc","parentId":"0b5545d44586560a","traceId":"0000000000000000c4c91c0ae8b729ca","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:41.833Z","sequence":7203,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 129B311A41C4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5e5e44ec31221fc4","parentId":"db253babc8ca5530","traceId":"00000000000000005b51153800e3148e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:41.853Z","sequence":7204,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 129B311A41C4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5e5e44ec31221fc4","parentId":"db253babc8ca5530","traceId":"00000000000000005b51153800e3148e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:42.525Z","sequence":7205,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:42.525Z","sequence":7206,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B91] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:42.53Z","sequence":7207,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:42.53Z","sequence":7208,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:42.536Z","sequence":7209,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-bd40cde1-ff2b-4eea-a1ce-9e4cf1a26b57, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:44.073Z","sequence":7210,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:44.074Z","sequence":7211,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000524] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:44.08Z","sequence":7212,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:44.08Z","sequence":7213,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:44.086Z","sequence":7214,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4ba3e273-9004-4566-b07e-8d7e2d4a755b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:46.504Z","sequence":7215,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/conditionall:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:46.504Z","sequence":7216,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: conditionall, device-id: 0008004B512D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:46.51Z","sequence":7217,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-af0c9333-df37-449e-b882-c69036035ae0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:46.513Z","sequence":7218,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:46.513Z","sequence":7219,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: conditionall]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:46.519Z","sequence":7220,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-9da1a393-b24f-4519-950b-c0ce9d85a7b7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:48.9Z","sequence":7221,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFC5CD8F0FE2642]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"31e406b8d062689b","parentId":"f8fbde10a8029167","traceId":"000000000000000069a099055bddeb69","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:48.917Z","sequence":7222,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFC5CD8F0FE2642]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"31e406b8d062689b","parentId":"f8fbde10a8029167","traceId":"000000000000000069a099055bddeb69","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:49.28Z","sequence":7223,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_190942]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e90ae014a542830f","parentId":"e16af85809f8fb15","traceId":"00000000000000003ad3465f3f8e4bc0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:49.298Z","sequence":7224,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190942]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e90ae014a542830f","parentId":"e16af85809f8fb15","traceId":"00000000000000003ad3465f3f8e4bc0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:52.03Z","sequence":7225,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:52.031Z","sequence":7226,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:52.039Z","sequence":7227,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3a44409a-027a-47a6-974d-ecca792dbb82, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:53.195Z","sequence":7228,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF56E988814C48F]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ca0c0930ff594776","parentId":"71bed5039b030ed0","traceId":"0000000000000000221f5dab97b292eb","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:53.214Z","sequence":7229,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF56E988814C48F]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ca0c0930ff594776","parentId":"71bed5039b030ed0","traceId":"0000000000000000221f5dab97b292eb","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:53.682Z","sequence":7230,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: C2A4B3E449CA]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4af81be9f61504dd","parentId":"ef11ad446e2c9fc5","traceId":"0000000000000000b1b9f9867fc64e89","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:53.703Z","sequence":7231,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: C2A4B3E449CA]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4af81be9f61504dd","parentId":"ef11ad446e2c9fc5","traceId":"0000000000000000b1b9f9867fc64e89","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:59.987Z","sequence":7232,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:59.987Z","sequence":7233,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10018AA] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:59.993Z","sequence":7234,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:59.993Z","sequence":7235,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:49:59.999Z","sequence":7236,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3114b5d3-07c9-4d22-8506-6b953a1c5e99, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:50:05.921Z","sequence":7237,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:50:05.921Z","sequence":7238,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100052A] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:50:05.922Z","sequence":7239,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:50:05.922Z","sequence":7240,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:50:05.929Z","sequence":7241,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:50:05.929Z","sequence":7242,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:50:05.93Z","sequence":7243,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-bf777778-e357-43c0-a935-8e390e3aeb62, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:50:05.937Z","sequence":7244,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3a3932b4-3b4b-449f-b779-f2678fff1482, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:50:21.939Z","sequence":7245,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:50:21.939Z","sequence":7246,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BB84C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:50:21.944Z","sequence":7247,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9ce5451d-929c-481f-ac51-831250296ae7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:50:24.208Z","sequence":7248,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:50:24.208Z","sequence":7249,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 0008004B5135]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:50:24.214Z","sequence":7250,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-249d56b1-1535-4845-930d-b4c69af4673f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:50:25.944Z","sequence":7251,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:50:25.944Z","sequence":7252,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000164] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:50:25.949Z","sequence":7253,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:50:25.949Z","sequence":7254,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:50:25.955Z","sequence":7255,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ff92d7b0-02a3-4585-892f-fcfdd072bdc8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:50:25.99Z","sequence":7256,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:50:25.99Z","sequence":7257,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000164] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:50:25.996Z","sequence":7258,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:50:25.996Z","sequence":7259,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:50:26Z","sequence":7260,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f76702b5-4f13-415e-8543-28bc8b2dfacd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:50:27.862Z","sequence":7261,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:50:27.863Z","sequence":7262,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BBD1B]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:50:27.868Z","sequence":7263,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4af93515-b067-4b6d-9361-0ea31757cd6d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:50:33.752Z","sequence":7264,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/arkema:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:50:33.752Z","sequence":7265,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: arkema, device-id: 0008004AE119]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:50:33.758Z","sequence":7266,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-44a2c643-a4a4-4541-ab45-fbe8e2edd038, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:50:33.761Z","sequence":7267,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:50:33.761Z","sequence":7268,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: arkema]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:50:33.764Z","sequence":7269,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-9ddb1847-90de-4cd2-8fa9-5df3e1ed3e17, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:50:37.289Z","sequence":7270,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:50:37.289Z","sequence":7271,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: acta]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:50:37.293Z","sequence":7272,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-a2ff419d-80aa-4581-809f-afae943af573, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:50:37.295Z","sequence":7273,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/acta:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:50:37.295Z","sequence":7274,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: acta, device-id: 39383837002B0047] for gateway [0008004AAAA3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:50:37.301Z","sequence":7275,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.3.0\"\n },\n \"viaGroups\" : [ \"gateways_acta\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:50:37.301Z","sequence":7276,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_acta\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:50:37.304Z","sequence":7277,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1cd74af5-7918-4b39-82d5-4f1e95c1483b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:50:38.814Z","sequence":7278,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:50:38.814Z","sequence":7279,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: chevron]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:50:38.824Z","sequence":7280,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-8fd7f3ba-b2a7-4dbd-96da-e180d3630e8f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:50:38.826Z","sequence":7281,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/chevron:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:50:38.826Z","sequence":7282,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: chevron, type: hashed-password, auth-id: auth-CHEVRON-ORBIWISE-EL-SEGUNDO]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:50:38.874Z","sequence":7283,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-3f4318bb-29f4-4cfd-a7f9-f9dfeaa8373a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:50:38.993Z","sequence":7284,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/chevron:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:50:38.993Z","sequence":7285,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: chevron, device-id: 70B3D57BB1000662] for gateway [CHEVRON-ORBIWISE-EL-SEGUNDO]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:50:38.994Z","sequence":7286,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/chevron:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:50:38.994Z","sequence":7287,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: chevron, device-id: CHEVRON-ORBIWISE-EL-SEGUNDO]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:50:39.005Z","sequence":7288,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1424297d-446b-491d-9b63-3f3098d7daa8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:50:39.006Z","sequence":7289,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_chevron\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:50:39.006Z","sequence":7290,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_chevron\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:50:39.016Z","sequence":7291,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0ca151dd-5b41-46fa-a296-ab1872008ed3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:50:45.575Z","sequence":7292,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:50:45.575Z","sequence":7293,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10007F2] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:50:45.576Z","sequence":7294,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:50:45.576Z","sequence":7295,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:50:45.589Z","sequence":7296,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f595c309-32dc-4b8b-8e07-c27074ba65f6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:50:45.59Z","sequence":7297,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:50:45.59Z","sequence":7298,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:50:45.6Z","sequence":7299,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ec06aa90-0a6e-4701-bd65-a15c449ba6dc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:50:48.053Z","sequence":7300,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:50:48.053Z","sequence":7301,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AC6] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:50:48.065Z","sequence":7302,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:50:48.065Z","sequence":7303,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:50:48.081Z","sequence":7304,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f1bb5c60-e20a-4eee-b5b1-f0ae9000168e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:50:49.949Z","sequence":7305,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:50:49.949Z","sequence":7306,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BBD1C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:50:49.96Z","sequence":7307,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-63486699-3a19-48c9-9285-9ff873f768b2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:50:50.391Z","sequence":7308,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:50:50.392Z","sequence":7309,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006C5] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:50:50.407Z","sequence":7310,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:50:50.407Z","sequence":7311,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:50:50.42Z","sequence":7312,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-bfeccf61-652f-4386-bc68-0e76732ba095, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:50:58.205Z","sequence":7313,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:50:58.205Z","sequence":7314,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000221] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:50:58.25Z","sequence":7315,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:50:58.25Z","sequence":7316,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:50:58.308Z","sequence":7317,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3055c48e-1fd8-4ff2-9193-aed86265ab88, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:50:58.875Z","sequence":7318,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:50:58.875Z","sequence":7319,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000795] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:50:58.887Z","sequence":7320,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:50:58.888Z","sequence":7321,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:50:58.898Z","sequence":7322,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-89948bae-9118-4419-917c-b3cac4e965f3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:50:59.693Z","sequence":7323,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:50:59.693Z","sequence":7324,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001D4] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:50:59.701Z","sequence":7325,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:50:59.701Z","sequence":7326,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001D4] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:50:59.702Z","sequence":7327,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:50:59.702Z","sequence":7328,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:50:59.705Z","sequence":7329,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5ee18330-96a3-490a-87c2-64e711b60fb3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:50:59.709Z","sequence":7330,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:50:59.709Z","sequence":7331,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:50:59.713Z","sequence":7332,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-93e1b336-26b4-434e-9c27-777aae7aec19, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:00.469Z","sequence":7333,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:00.469Z","sequence":7334,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10002AC] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:00.495Z","sequence":7335,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:00.496Z","sequence":7336,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:00.517Z","sequence":7337,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c8239978-db92-48a3-962d-70e8755dbf9f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:01.787Z","sequence":7338,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/conditionall:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:01.787Z","sequence":7339,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: conditionall, device-id: 70B3D57BB10001F0] for gateway [0008004B512D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:01.841Z","sequence":7340,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_conditionall\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:01.841Z","sequence":7341,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_conditionall\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:01.845Z","sequence":7342,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ec3dda40-9e3c-4bd1-94e5-c699c74679c4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:05.742Z","sequence":7343,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: A9044E6A30EC]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b850edf8b1a3e80c","parentId":"e9a2f0850a7b6da4","traceId":"0000000000000000edf78ffc49a37ffc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:05.856Z","sequence":7344,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: A9044E6A30EC, resource-version: 0da1d2f6-2b62-4f1f-a375-38d662b8c3d5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b850edf8b1a3e80c","parentId":"e9a2f0850a7b6da4","traceId":"0000000000000000edf78ffc49a37ffc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:05.899Z","sequence":7345,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: A9044E6A30EC, resource-version: b03087b1-c810-4c08-9c18-17c22029b98c]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b850edf8b1a3e80c","parentId":"e9a2f0850a7b6da4","traceId":"0000000000000000edf78ffc49a37ffc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:05.904Z","sequence":7346,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: A9044E6A30EC]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5532eb118d41dda0","parentId":"0086ae35ba87ceec","traceId":"0000000000000000edf78ffc49a37ffc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:06.156Z","sequence":7347,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: A9044E6A30EC]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5532eb118d41dda0","parentId":"0086ae35ba87ceec","traceId":"0000000000000000edf78ffc49a37ffc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:06.963Z","sequence":7348,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFD51FD5C0E8C41]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"937579556435e5bd","parentId":"2f6fc995b899a384","traceId":"00000000000000006fe05a1d14d08d58","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:06.993Z","sequence":7349,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFD51FD5C0E8C41, resource-version: 563badf3-55c9-4dc7-b795-859c2391cb77]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"937579556435e5bd","parentId":"2f6fc995b899a384","traceId":"00000000000000006fe05a1d14d08d58","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:07.013Z","sequence":7350,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFD51FD5C0E8C41, resource-version: dfe2988e-b794-4a38-b538-ef50b0c6e166]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"937579556435e5bd","parentId":"2f6fc995b899a384","traceId":"00000000000000006fe05a1d14d08d58","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:07.066Z","sequence":7351,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:07.066Z","sequence":7352,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-A9044E6A30EC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:07.075Z","sequence":7353,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-421c097e-fbd7-4242-a22e-dd11dd8b4b80, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:07.198Z","sequence":7354,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:07.198Z","sequence":7355,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: A9044E6A30EC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:07.207Z","sequence":7356,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-090b35e4-4e22-45ae-9781-019667e3ad6d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:07.212Z","sequence":7357,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [command-router@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:07.212Z","sequence":7358,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:07.215Z","sequence":7359,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-d3e270d4-700e-4dc2-b1b6-f77b53d8139f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:08.208Z","sequence":7360,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:08.208Z","sequence":7361,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000574] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:08.249Z","sequence":7362,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:08.249Z","sequence":7363,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:08.3Z","sequence":7364,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-96cefd79-b403-4460-838f-0e7217439060, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:13.206Z","sequence":7365,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono service-command-router-Device Registration-6b43a4ef-0980-4edd-b8fb-ab7a8b085811] wants to open a link [address: Source{address='registration/integrationtest/ec6d1cb0-b864-44cf-824c-b25d116b215f', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:13.206Z","sequence":7366,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-0]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:13.206Z","sequence":7367,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@54bcf252] for replies to [registration/integrationtest/ec6d1cb0-b864-44cf-824c-b25d116b215f]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:13.209Z","sequence":7368,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono service-command-router-Device Registration-6b43a4ef-0980-4edd-b8fb-ab7a8b085811] wants to open a link [address: Target{address='registration/integrationtest', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:13.212Z","sequence":7369,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-1]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:13.212Z","sequence":7370,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:13.216Z","sequence":7371,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [command-router@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:13.216Z","sequence":7372,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD51FD5C0E8C41]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:13.728Z","sequence":7373,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-fbd38126-2f8f-4b0b-bd5f-c06e50be8ecc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:16.066Z","sequence":7374,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:16.066Z","sequence":7375,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: lanxess]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:16.069Z","sequence":7376,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-fc9ab736-7219-4c6a-bdc2-697c2068a77f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:16.071Z","sequence":7377,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:16.071Z","sequence":7378,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 70B3D57BB100018E] for gateway [0008004BB84C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:16.077Z","sequence":7379,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_lanxess\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:16.077Z","sequence":7380,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_lanxess\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:16.079Z","sequence":7381,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-019aa36a-67d4-4474-a7b8-341bd6a3af4d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:16.321Z","sequence":7382,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:16.322Z","sequence":7383,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:16.331Z","sequence":7384,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-80cdeeae-110e-47ba-bf51-24a6cbd31d30, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:18.479Z","sequence":7385,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:18.48Z","sequence":7386,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A7E] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:18.485Z","sequence":7387,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:18.486Z","sequence":7388,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:18.5Z","sequence":7389,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-18587d65-91be-4ec6-b028-c60aab9dede0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:20.711Z","sequence":7390,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:20.712Z","sequence":7391,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000219] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:20.719Z","sequence":7392,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:20.719Z","sequence":7393,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:20.722Z","sequence":7394,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b94312d3-02a7-404c-815f-74973103ba5e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:20.77Z","sequence":7395,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:20.77Z","sequence":7396,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000219] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:20.775Z","sequence":7397,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:20.776Z","sequence":7398,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:20.779Z","sequence":7399,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9a91a17e-257d-4c1e-b282-461304b16b62, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:23.309Z","sequence":7400,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:23.309Z","sequence":7401,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD51FD5C0E8C41] for gateway [A9044E6A30EC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:23.317Z","sequence":7402,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:23.317Z","sequence":7403,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:23.644Z","sequence":7404,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2f589752-74b7-4349-80a3-e15389f04f09, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:25.76Z","sequence":7405,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFD51FD5C0E8C41]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"666fdcb17f1aa0cb","parentId":"dc1f9aa4be0e9772","traceId":"00000000000000001f58960f2d89c717","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:25.776Z","sequence":7406,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFD51FD5C0E8C41]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"666fdcb17f1aa0cb","parentId":"dc1f9aa4be0e9772","traceId":"00000000000000001f58960f2d89c717","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:26.124Z","sequence":7407,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: A9044E6A30EC]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3cc4c8dd3444f29a","parentId":"26b20e8dda061e16","traceId":"0000000000000000105a77a7312c4c5c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:26.139Z","sequence":7408,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: A9044E6A30EC]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3cc4c8dd3444f29a","parentId":"26b20e8dda061e16","traceId":"0000000000000000105a77a7312c4c5c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:26.44Z","sequence":7409,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_190945]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"17fa9d86c550e389","parentId":"3a5b5fc4bf900782","traceId":"0000000000000000ebb4cbf8c7836d91","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:26.456Z","sequence":7410,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_190945, resource-version: e4067786-c58e-4c29-bab6-fbc7a926cd1e]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"17fa9d86c550e389","parentId":"3a5b5fc4bf900782","traceId":"0000000000000000ebb4cbf8c7836d91","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:26.462Z","sequence":7411,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190945, resource-version: d07dfe58-5d25-4e66-b1e0-185943a75b9a]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"17fa9d86c550e389","parentId":"3a5b5fc4bf900782","traceId":"0000000000000000ebb4cbf8c7836d91","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:26.464Z","sequence":7412,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_190945]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"56875f90d626e980","parentId":"c31e2c31dce90ffb","traceId":"0000000000000000ebb4cbf8c7836d91","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:26.599Z","sequence":7413,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190945]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"56875f90d626e980","parentId":"c31e2c31dce90ffb","traceId":"0000000000000000ebb4cbf8c7836d91","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:27.031Z","sequence":7414,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF8655FC0ADCE71]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9f224b34afa6efce","parentId":"159ba1f2a357b3f7","traceId":"0000000000000000adc35c75b71bc637","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:27.048Z","sequence":7415,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF8655FC0ADCE71, resource-version: 1914197c-af0f-4bcc-86c6-d23d34f0b05f]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9f224b34afa6efce","parentId":"159ba1f2a357b3f7","traceId":"0000000000000000adc35c75b71bc637","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:27.055Z","sequence":7416,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF8655FC0ADCE71, resource-version: b8a63ff8-e82a-485a-89a2-924a4af25a24]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9f224b34afa6efce","parentId":"159ba1f2a357b3f7","traceId":"0000000000000000adc35c75b71bc637","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:27.671Z","sequence":7417,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:27.671Z","sequence":7418,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AAC] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:27.698Z","sequence":7419,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:27.698Z","sequence":7420,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:27.705Z","sequence":7421,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-623dc2f9-58a4-4950-b74e-8b718f43beb9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:28.126Z","sequence":7422,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:28.127Z","sequence":7423,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:28.131Z","sequence":7424,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-21e2ec38-2401-4a38-aa3c-3210b3940190, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:28.133Z","sequence":7425,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:28.134Z","sequence":7426,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_190945]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:28.144Z","sequence":7427,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-1f276bcf-fd8a-4aeb-947f-4c827e0407e1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:28.265Z","sequence":7428,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:28.265Z","sequence":7429,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF8655FC0ADCE71] for gateway [gateway_integrationtest_network_190945]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:28.265Z","sequence":7430,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:28.266Z","sequence":7431,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_190945]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:28.275Z","sequence":7432,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1934fd98-dd1f-42e3-bf88-befa2693fb08, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:28.275Z","sequence":7433,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:28.275Z","sequence":7434,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:28.443Z","sequence":7435,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-44aa245d-15ee-4773-8799-8a30f0cd1d32, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:28.598Z","sequence":7436,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:28.598Z","sequence":7437,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000818] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:28.652Z","sequence":7438,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:28.652Z","sequence":7439,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:28.656Z","sequence":7440,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5650c7ba-d53a-4e4e-bd7f-66e843b014d8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:29.43Z","sequence":7441,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:29.431Z","sequence":7442,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: dow]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:29.434Z","sequence":7443,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-3efb57e4-b62a-4d88-8a5e-f77f1b42d448, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:29.437Z","sequence":7444,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/dow:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:29.437Z","sequence":7445,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: dow, type: hashed-password, auth-id: auth-gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:29.447Z","sequence":7446,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-fb37b3ad-2639-4a54-8f24-613fe52ceaba, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:29.781Z","sequence":7447,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:29.781Z","sequence":7448,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 70B3D57BB100127C] for gateway [gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:29.903Z","sequence":7449,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:29.903Z","sequence":7450,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100015B] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:29.909Z","sequence":7451,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:0.4.1\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:29.909Z","sequence":7452,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:29.915Z","sequence":7453,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d900e2e1-4cda-4d4a-8dcb-70aa3ec5074f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:29.94Z","sequence":7454,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:29.94Z","sequence":7455,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:29.944Z","sequence":7456,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b3ae4929-0766-444d-9299-6ea47331385e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:36.937Z","sequence":7457,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:36.938Z","sequence":7458,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A81] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:36.943Z","sequence":7459,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:36.943Z","sequence":7460,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:36.949Z","sequence":7461,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9bb1db98-431b-4e8e-a8d1-95b9916cdad2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:39.503Z","sequence":7462,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF8655FC0ADCE71]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"15f9631f213378ab","parentId":"8c1304e8e108f19f","traceId":"00000000000000002cc71bc6a14d7389","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:39.521Z","sequence":7463,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF8655FC0ADCE71]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"15f9631f213378ab","parentId":"8c1304e8e108f19f","traceId":"00000000000000002cc71bc6a14d7389","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:39.655Z","sequence":7464,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_190945]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"00201e220ef66e39","parentId":"da2cc3ee0c38c96a","traceId":"0000000000000000707c18218337e30a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:39.672Z","sequence":7465,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190945]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"00201e220ef66e39","parentId":"da2cc3ee0c38c96a","traceId":"0000000000000000707c18218337e30a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:39.793Z","sequence":7466,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_190946]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3e9f8a9f93853310","parentId":"47f573985a582e1f","traceId":"00000000000000007f5f034ae5717e8b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:39.81Z","sequence":7467,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_190946, resource-version: 56109a39-71fd-496d-9226-1ada74f4bfe6]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3e9f8a9f93853310","parentId":"47f573985a582e1f","traceId":"00000000000000007f5f034ae5717e8b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:39.817Z","sequence":7468,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190946, resource-version: 118e636e-2326-4c1b-913f-e0029b4f327f]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3e9f8a9f93853310","parentId":"47f573985a582e1f","traceId":"00000000000000007f5f034ae5717e8b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:39.82Z","sequence":7469,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_190946]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b95f07b110e080e0","parentId":"339a8577f5651ea7","traceId":"00000000000000007f5f034ae5717e8b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:39.936Z","sequence":7470,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190946]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b95f07b110e080e0","parentId":"339a8577f5651ea7","traceId":"00000000000000007f5f034ae5717e8b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:40.416Z","sequence":7471,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFAF63FAA99BBFB]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b9cf125e66ca1249","parentId":"b9910a609f1cfadc","traceId":"000000000000000019b9be7dea8fc8d3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:40.433Z","sequence":7472,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFAF63FAA99BBFB, resource-version: f01f9521-e63b-4304-ba32-f4e845faca48]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b9cf125e66ca1249","parentId":"b9910a609f1cfadc","traceId":"000000000000000019b9be7dea8fc8d3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:40.439Z","sequence":7473,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFAF63FAA99BBFB, resource-version: 4f326f68-de5f-416a-a1fd-7c779e571721]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b9cf125e66ca1249","parentId":"b9910a609f1cfadc","traceId":"000000000000000019b9be7dea8fc8d3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:40.52Z","sequence":7474,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:40.52Z","sequence":7475,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 70B3D57BB1001278] for gateway [gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:40.548Z","sequence":7476,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:40.549Z","sequence":7477,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:40.559Z","sequence":7478,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3c4d268a-07e7-4b01-bc92-ccb75105254a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:40.744Z","sequence":7479,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:40.744Z","sequence":7480,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000825] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:40.75Z","sequence":7481,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:40.75Z","sequence":7482,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:40.753Z","sequence":7483,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-349a3314-365d-4311-a978-49e0c3e0d96b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:41.509Z","sequence":7484,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:41.509Z","sequence":7485,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_190946]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:41.52Z","sequence":7486,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-864924fd-7bdf-43de-a697-7ffe91c2b745, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:41.647Z","sequence":7487,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:41.647Z","sequence":7488,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFAF63FAA99BBFB] for gateway [gateway_integrationtest_network_190946]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:41.648Z","sequence":7489,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:41.648Z","sequence":7490,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_190946]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:41.653Z","sequence":7491,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:41.653Z","sequence":7492,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:41.653Z","sequence":7493,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-53e65fee-d589-4244-8de5-bfc95baca1d6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:41.821Z","sequence":7494,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-dd9a6153-698f-4a6a-b17e-d91966c0c3b3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:42.827Z","sequence":7495,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:42.827Z","sequence":7496,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100190A] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:42.832Z","sequence":7497,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:42.832Z","sequence":7498,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:42.839Z","sequence":7499,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-bdb22785-6d84-4a8e-8a0d-8d0e27d2ead0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:46.391Z","sequence":7500,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:46.392Z","sequence":7501,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A90] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:46.397Z","sequence":7502,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:46.398Z","sequence":7503,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:46.404Z","sequence":7504,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c1e84391-bb6d-4c9d-8e56-c375b6038ebc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:48.129Z","sequence":7505,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:48.129Z","sequence":7506,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019E4] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:48.135Z","sequence":7507,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:48.135Z","sequence":7508,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:48.14Z","sequence":7509,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-60df35e2-aee0-4b44-8124-564a7c372037, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:48.754Z","sequence":7510,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:48.755Z","sequence":7511,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 0008004C80F4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:48.76Z","sequence":7512,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d7483572-400d-425e-80f0-1a998d267828, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:52.658Z","sequence":7513,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/acta:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:52.658Z","sequence":7514,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: acta, device-id: 3232393200220029] for gateway [0008004AAAA3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:52.664Z","sequence":7515,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_acta\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:52.664Z","sequence":7516,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_acta\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:52.667Z","sequence":7517,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9e56cba5-7699-450d-94de-1ef3e84fe28e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:54.207Z","sequence":7518,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFAF63FAA99BBFB]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"089058fa0d201b07","parentId":"ff33b5d0bedee6f8","traceId":"000000000000000046e822db99a8df9f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:54.227Z","sequence":7519,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFAF63FAA99BBFB]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"089058fa0d201b07","parentId":"ff33b5d0bedee6f8","traceId":"000000000000000046e822db99a8df9f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:54.861Z","sequence":7520,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_190946]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f83947aa0ab67dd0","parentId":"d045a47cee3451b6","traceId":"00000000000000003c9f73f1ef0257be","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:54.877Z","sequence":7521,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190946]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f83947aa0ab67dd0","parentId":"d045a47cee3451b6","traceId":"00000000000000003c9f73f1ef0257be","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:55.024Z","sequence":7522,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_190947]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"959b16c9c71ad6e9","parentId":"9772b19f0ebf216a","traceId":"00000000000000005fd167ceb7429ccf","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:55.04Z","sequence":7523,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_190947, resource-version: 72e910f9-0738-4990-bb30-89981742e652]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"959b16c9c71ad6e9","parentId":"9772b19f0ebf216a","traceId":"00000000000000005fd167ceb7429ccf","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:55.046Z","sequence":7524,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190947, resource-version: 5908972e-1b63-462f-a91a-6d1c9942a147]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"959b16c9c71ad6e9","parentId":"9772b19f0ebf216a","traceId":"00000000000000005fd167ceb7429ccf","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:55.049Z","sequence":7525,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_190947]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fb140e11d0c70fb9","parentId":"d2bf0c7b2b657a91","traceId":"00000000000000005fd167ceb7429ccf","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:55.265Z","sequence":7526,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190947]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fb140e11d0c70fb9","parentId":"d2bf0c7b2b657a91","traceId":"00000000000000005fd167ceb7429ccf","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:55.99Z","sequence":7527,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:55.991Z","sequence":7528,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A8C] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:55.997Z","sequence":7529,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:55.997Z","sequence":7530,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:56.005Z","sequence":7531,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0f818409-2a2c-4fe6-bc73-155f5a68d0af, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:56.075Z","sequence":7532,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF985CB3F69F6A9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"52926ef96cab9f1d","parentId":"a03cf08b096e6988","traceId":"0000000000000000314aaeef654b2c48","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:56.091Z","sequence":7533,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF985CB3F69F6A9, resource-version: 4b5b4f62-20ae-46da-95d7-4fc852e974f2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"52926ef96cab9f1d","parentId":"a03cf08b096e6988","traceId":"0000000000000000314aaeef654b2c48","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:56.097Z","sequence":7534,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF985CB3F69F6A9, resource-version: 2df3bbde-3402-4ef1-8999-6fae2dad51ba]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"52926ef96cab9f1d","parentId":"a03cf08b096e6988","traceId":"0000000000000000314aaeef654b2c48","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:57.188Z","sequence":7535,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:57.188Z","sequence":7536,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_190947]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:57.199Z","sequence":7537,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-3efb7aa3-c64d-4646-b8a5-a4148d84b916, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:57.317Z","sequence":7538,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:57.317Z","sequence":7539,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF985CB3F69F6A9] for gateway [gateway_integrationtest_network_190947]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:57.317Z","sequence":7540,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:57.317Z","sequence":7541,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_190947]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:57.322Z","sequence":7542,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:57.322Z","sequence":7543,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:57.324Z","sequence":7544,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c72bcd27-6425-4808-b6f5-eee95b547444, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:51:57.701Z","sequence":7545,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4922dca6-cb64-4952-8167-aea562ebbedc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:00.196Z","sequence":7546,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:00.196Z","sequence":7547,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: flint]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:00.199Z","sequence":7548,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-82226e3e-d661-4707-b49b-36a847413500, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:00.202Z","sequence":7549,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/flint:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:00.202Z","sequence":7550,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: flint, type: hashed-password, auth-id: auth-flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:00.225Z","sequence":7551,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-9b247b45-0331-46e5-91e8-506b81ca910e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:00.345Z","sequence":7552,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:00.345Z","sequence":7553,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10009C2] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:00.351Z","sequence":7554,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:00.356Z","sequence":7555,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:00.361Z","sequence":7556,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5030baf5-f171-45a1-b3a2-a35ff230220e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:02.412Z","sequence":7557,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oiltanking:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:02.413Z","sequence":7558,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oiltanking, device-id: 0008004BB60F]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:02.419Z","sequence":7559,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-cbd30805-24ec-4965-93b7-b551abee2561, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:02.422Z","sequence":7560,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:02.423Z","sequence":7561,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oiltanking]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:02.427Z","sequence":7562,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-1981fcb6-3558-48ba-919e-ed335ad626cc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:04.191Z","sequence":7563,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_190948]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"457c4cfc21c3f8b5","parentId":"fc844977ccf3f6f5","traceId":"000000000000000023581f5a3b973fa5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:04.224Z","sequence":7564,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_190948, resource-version: ac5add7c-5411-466f-b367-b20686a2086c]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"457c4cfc21c3f8b5","parentId":"fc844977ccf3f6f5","traceId":"000000000000000023581f5a3b973fa5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:04.23Z","sequence":7565,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190948, resource-version: fc146629-ac25-45be-aa0d-effc71eb893b]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"457c4cfc21c3f8b5","parentId":"fc844977ccf3f6f5","traceId":"000000000000000023581f5a3b973fa5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:04.233Z","sequence":7566,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_190948]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"eabb95fa4b066504","parentId":"d067390b8b66175f","traceId":"000000000000000023581f5a3b973fa5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:04.389Z","sequence":7567,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190948]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"eabb95fa4b066504","parentId":"d067390b8b66175f","traceId":"000000000000000023581f5a3b973fa5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:05.32Z","sequence":7568,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFD4BB74EEC1E21]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1fac21c235e853ce","parentId":"0026e53759d463f6","traceId":"0000000000000000266d20e2cd0b0ad3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:05.337Z","sequence":7569,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFD4BB74EEC1E21, resource-version: c2a82ee0-ea2f-455a-9c58-a36a041bae07]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1fac21c235e853ce","parentId":"0026e53759d463f6","traceId":"0000000000000000266d20e2cd0b0ad3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:05.344Z","sequence":7570,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFD4BB74EEC1E21, resource-version: cfd461ab-b608-4ba7-9538-435bfee6117b]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1fac21c235e853ce","parentId":"0026e53759d463f6","traceId":"0000000000000000266d20e2cd0b0ad3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:06.419Z","sequence":7571,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:06.42Z","sequence":7572,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_190948]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:06.432Z","sequence":7573,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-26ba2de5-6575-4541-b6be-b905598da63b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:06.55Z","sequence":7574,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:06.551Z","sequence":7575,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD4BB74EEC1E21] for gateway [gateway_integrationtest_network_190948]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:06.551Z","sequence":7576,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:06.551Z","sequence":7577,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_190948]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:06.557Z","sequence":7578,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-35baa526-7df3-472c-a8fd-3f4c6cc213a2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:06.558Z","sequence":7579,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.3.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:06.558Z","sequence":7580,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:06.977Z","sequence":7581,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-de455121-4ca1-417c-80f4-845786f3d378, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:07.348Z","sequence":7582,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF985CB3F69F6A9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e607d9646aec2d89","parentId":"946d0f892c2c8584","traceId":"000000000000000003af49e83f0bcf10","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:07.366Z","sequence":7583,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF985CB3F69F6A9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e607d9646aec2d89","parentId":"946d0f892c2c8584","traceId":"000000000000000003af49e83f0bcf10","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:07.614Z","sequence":7584,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_190947]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9ae98839a3ef9035","parentId":"94577ec34c0e1f19","traceId":"000000000000000057c30625282f76ac","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:07.638Z","sequence":7585,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190947]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9ae98839a3ef9035","parentId":"94577ec34c0e1f19","traceId":"000000000000000057c30625282f76ac","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:12.554Z","sequence":7586,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_190949]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e34203a0e16dc472","parentId":"2750df8d74d8e19c","traceId":"000000000000000056f2a4b90a142f0c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:12.58Z","sequence":7587,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_190949, resource-version: 442efa9e-b77d-422e-8989-52bdea84f674]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e34203a0e16dc472","parentId":"2750df8d74d8e19c","traceId":"000000000000000056f2a4b90a142f0c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:12.586Z","sequence":7588,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190949, resource-version: e31fe67d-36d1-4095-84d8-d575577347d9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e34203a0e16dc472","parentId":"2750df8d74d8e19c","traceId":"000000000000000056f2a4b90a142f0c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:12.589Z","sequence":7589,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_190949]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0f70594bfc9babf3","parentId":"db176185a861af32","traceId":"000000000000000056f2a4b90a142f0c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:12.695Z","sequence":7590,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:12.695Z","sequence":7591,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oci]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:12.699Z","sequence":7592,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-d1b6ba3e-bd7b-4903-bf41-b051dd497e4a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:12.703Z","sequence":7593,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:12.703Z","sequence":7594,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000178] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:12.708Z","sequence":7595,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:12.709Z","sequence":7596,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:12.712Z","sequence":7597,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b5d47f5f-2628-43b5-a4e8-e1c4ad27cc6f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:12.719Z","sequence":7598,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:12.719Z","sequence":7599,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000178] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:12.724Z","sequence":7600,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:12.724Z","sequence":7601,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:12.727Z","sequence":7602,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-87dd3bc2-995d-4bf7-a8ef-57c953c4c774, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:12.774Z","sequence":7603,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190949]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0f70594bfc9babf3","parentId":"db176185a861af32","traceId":"000000000000000056f2a4b90a142f0c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:13.488Z","sequence":7604,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF4D3C0E97D9BC3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ab1d88580d9e1a3c","parentId":"1d899514f8064afa","traceId":"0000000000000000dd2a410b5e6c942b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:13.544Z","sequence":7605,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF4D3C0E97D9BC3, resource-version: 402ee633-02bb-42bf-b2d0-418555f0b93c]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ab1d88580d9e1a3c","parentId":"1d899514f8064afa","traceId":"0000000000000000dd2a410b5e6c942b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:13.551Z","sequence":7606,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF4D3C0E97D9BC3, resource-version: 2cba93fe-4752-4b5b-bbdb-78334808ff04]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ab1d88580d9e1a3c","parentId":"1d899514f8064afa","traceId":"0000000000000000dd2a410b5e6c942b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:14.673Z","sequence":7607,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:14.673Z","sequence":7608,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_190949]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:14.693Z","sequence":7609,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-ad69f5d8-cfe4-41cf-881b-9e83e6718ed6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:14.813Z","sequence":7610,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:14.813Z","sequence":7611,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF4D3C0E97D9BC3] for gateway [gateway_integrationtest_network_190949]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:14.814Z","sequence":7612,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:14.814Z","sequence":7613,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_190949]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:14.829Z","sequence":7614,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:14.829Z","sequence":7615,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:14.83Z","sequence":7616,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c13afcea-64cb-4da7-9fc8-a65feeb92d45, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:15.397Z","sequence":7617,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-34d9a803-c4cc-4bb8-affd-7179d55def39, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:16.57Z","sequence":7618,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFD4BB74EEC1E21]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1be472860bba5be7","parentId":"249c70d091d90f66","traceId":"00000000000000002df8cf9ffb877560","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:16.608Z","sequence":7619,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFD4BB74EEC1E21]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1be472860bba5be7","parentId":"249c70d091d90f66","traceId":"00000000000000002df8cf9ffb877560","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:16.938Z","sequence":7620,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:16.939Z","sequence":7621,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A7F] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:16.945Z","sequence":7622,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:16.945Z","sequence":7623,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:16.951Z","sequence":7624,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7863142f-654e-444e-ab8b-24edb5e022ca, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:17.237Z","sequence":7625,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_190948]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6cc2b9c1ee1de9ff","parentId":"3015967a4559c206","traceId":"000000000000000006ff7ee5ef6ecf11","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:17.252Z","sequence":7626,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190948]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6cc2b9c1ee1de9ff","parentId":"3015967a4559c206","traceId":"000000000000000006ff7ee5ef6ecf11","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:17.803Z","sequence":7627,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_190950]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"aec3e14ced349ef4","parentId":"86564deeebffd3ff","traceId":"000000000000000082ae0e17f2fdb248","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:17.865Z","sequence":7628,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_190950, resource-version: 3ae73242-8d5e-4794-aafa-8c1b5c0ba7d4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"aec3e14ced349ef4","parentId":"86564deeebffd3ff","traceId":"000000000000000082ae0e17f2fdb248","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:17.876Z","sequence":7629,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190950, resource-version: f40e1e60-cec0-43b4-89ee-e6368f59a0d4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"aec3e14ced349ef4","parentId":"86564deeebffd3ff","traceId":"000000000000000082ae0e17f2fdb248","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:17.879Z","sequence":7630,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_190950]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9eaabfcfbef49251","parentId":"640687758fe6881e","traceId":"000000000000000082ae0e17f2fdb248","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:18.214Z","sequence":7631,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190950]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9eaabfcfbef49251","parentId":"640687758fe6881e","traceId":"000000000000000082ae0e17f2fdb248","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:19.045Z","sequence":7632,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:19.045Z","sequence":7633,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019E3] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:19.062Z","sequence":7634,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:19.063Z","sequence":7635,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:19.077Z","sequence":7636,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c604436d-6c5e-4328-8044-295a4f13ba73, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:19.386Z","sequence":7637,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFC0B3AED293697]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"be3e5a1b52da6b12","parentId":"64ad9cb37de86af8","traceId":"00000000000000001dc2089fa5f46470","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:19.404Z","sequence":7638,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFC0B3AED293697, resource-version: 5cfdbba8-195e-4973-ae6d-3268241d7887]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"be3e5a1b52da6b12","parentId":"64ad9cb37de86af8","traceId":"00000000000000001dc2089fa5f46470","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:19.411Z","sequence":7639,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFC0B3AED293697, resource-version: ce833755-fe95-473c-b659-a3b595e76207]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"be3e5a1b52da6b12","parentId":"64ad9cb37de86af8","traceId":"00000000000000001dc2089fa5f46470","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:19.533Z","sequence":7640,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF4D3C0E97D9BC3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"db64961641384a68","parentId":"374898f661f1c7b1","traceId":"000000000000000002448a4545fb7185","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:19.549Z","sequence":7641,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF4D3C0E97D9BC3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"db64961641384a68","parentId":"374898f661f1c7b1","traceId":"000000000000000002448a4545fb7185","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:20.149Z","sequence":7642,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_190949]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"05bc8defb7298ef3","parentId":"5f424d52e2828256","traceId":"0000000000000000caa4dd20e6eded9b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:20.167Z","sequence":7643,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190949]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"05bc8defb7298ef3","parentId":"5f424d52e2828256","traceId":"0000000000000000caa4dd20e6eded9b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:20.439Z","sequence":7644,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFC0B3AED293697]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ef92fee762ce4181","parentId":"fa4ff7a65e830ccb","traceId":"00000000000000008d3472f4729518a9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:20.46Z","sequence":7645,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFC0B3AED293697]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ef92fee762ce4181","parentId":"fa4ff7a65e830ccb","traceId":"00000000000000008d3472f4729518a9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:20.636Z","sequence":7646,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_190950]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d19b95b67a55173b","parentId":"5b47425dbbea4760","traceId":"000000000000000005aafc6d44dabd75","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:20.653Z","sequence":7647,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190950]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d19b95b67a55173b","parentId":"5b47425dbbea4760","traceId":"000000000000000005aafc6d44dabd75","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:20.957Z","sequence":7648,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 7A4DD0F2DA6F]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"05df1b9273f09b6e","parentId":"994d87da859f8a74","traceId":"00000000000000001db62e55c3f3f23f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:20.984Z","sequence":7649,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 7A4DD0F2DA6F, resource-version: c6d3ed1c-38ad-410f-bd10-9a7b8d58a51d]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"05df1b9273f09b6e","parentId":"994d87da859f8a74","traceId":"00000000000000001db62e55c3f3f23f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:20.991Z","sequence":7650,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 7A4DD0F2DA6F, resource-version: 7f7a8b6f-1762-41f2-8ebc-ce5a156fcb43]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"05df1b9273f09b6e","parentId":"994d87da859f8a74","traceId":"00000000000000001db62e55c3f3f23f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:20.995Z","sequence":7651,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 7A4DD0F2DA6F]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a7d356594a6e3cd2","parentId":"c0933a369114d139","traceId":"00000000000000001db62e55c3f3f23f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:21.161Z","sequence":7652,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 7A4DD0F2DA6F]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a7d356594a6e3cd2","parentId":"c0933a369114d139","traceId":"00000000000000001db62e55c3f3f23f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:21.251Z","sequence":7653,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_190952]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"20b0f16b19a2ffd8","parentId":"460a26c9cf5f007d","traceId":"0000000000000000dea530222e69e583","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:21.275Z","sequence":7654,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_190952, resource-version: 376a78bb-5db5-484a-8270-8f5c4f4ad016]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"20b0f16b19a2ffd8","parentId":"460a26c9cf5f007d","traceId":"0000000000000000dea530222e69e583","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:21.284Z","sequence":7655,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190952, resource-version: e3357a5e-c341-475d-8265-641f5fe0e2c8]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"20b0f16b19a2ffd8","parentId":"460a26c9cf5f007d","traceId":"0000000000000000dea530222e69e583","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:21.287Z","sequence":7656,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_190952]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"276ed61b3418b296","parentId":"8c0f64847400d30a","traceId":"0000000000000000dea530222e69e583","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:21.434Z","sequence":7657,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190952]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"276ed61b3418b296","parentId":"8c0f64847400d30a","traceId":"0000000000000000dea530222e69e583","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:22.081Z","sequence":7658,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFD6625575B4C6E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1f063cb6fd4339bb","parentId":"cfd5f1cb919bce6a","traceId":"0000000000000000ffc9e142cb15c55b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:22.097Z","sequence":7659,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFD6625575B4C6E, resource-version: 49e491c2-c98c-44c8-a111-8e77009d5cef]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1f063cb6fd4339bb","parentId":"cfd5f1cb919bce6a","traceId":"0000000000000000ffc9e142cb15c55b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:22.102Z","sequence":7660,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFD6625575B4C6E, resource-version: d0b0aa54-d2c1-4904-98dd-5ffe6a88bce1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1f063cb6fd4339bb","parentId":"cfd5f1cb919bce6a","traceId":"0000000000000000ffc9e142cb15c55b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:22.413Z","sequence":7661,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF237CF05665E60]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ea7b3df15e642035","parentId":"fe272861d8437c80","traceId":"00000000000000009ed3693734b680fd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:22.432Z","sequence":7662,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF237CF05665E60, resource-version: df27fba8-08ee-41bd-8af9-2d57e4fbe84d]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ea7b3df15e642035","parentId":"fe272861d8437c80","traceId":"00000000000000009ed3693734b680fd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:22.439Z","sequence":7663,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF237CF05665E60, resource-version: 470d8a02-a57c-4eff-998f-26a875506c0b]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ea7b3df15e642035","parentId":"fe272861d8437c80","traceId":"00000000000000009ed3693734b680fd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:22.453Z","sequence":7664,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:22.453Z","sequence":7665,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:22.457Z","sequence":7666,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-84a7b1af-af0f-41bd-9c32-951f43e541ce, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:22.461Z","sequence":7667,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:22.462Z","sequence":7668,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-7A4DD0F2DA6F]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:22.474Z","sequence":7669,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-7eda4323-3a27-49ba-9653-ef0ed73aba89, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:22.6Z","sequence":7670,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:22.6Z","sequence":7671,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 7A4DD0F2DA6F]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:22.609Z","sequence":7672,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-374e9679-2304-4547-879e-5a39b3f17a83, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:22.701Z","sequence":7673,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:22.701Z","sequence":7674,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 70B3D57BB1001271] for gateway [gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:22.701Z","sequence":7675,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:22.701Z","sequence":7676,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:22.707Z","sequence":7677,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:22.707Z","sequence":7678,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:22.708Z","sequence":7679,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-53f30d81-25ac-4abc-b1fb-145268ecbe93, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:22.71Z","sequence":7680,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8e5a5434-7248-496c-80e0-33ed2df1921f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:23.5Z","sequence":7681,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:23.501Z","sequence":7682,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_190952]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:23.512Z","sequence":7683,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-25d6f7a3-727e-47f7-bbdf-7b631762c3e5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:23.629Z","sequence":7684,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:23.629Z","sequence":7685,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF237CF05665E60] for gateway [gateway_integrationtest_network_190952]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:23.63Z","sequence":7686,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:23.63Z","sequence":7687,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_190952]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:23.636Z","sequence":7688,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3954a115-1729-46ca-8dbb-2c49c8ed1e0f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:23.636Z","sequence":7689,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:23.636Z","sequence":7690,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:23.812Z","sequence":7691,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-73cd4f08-b7c0-4485-b319-772ec1742e58, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:26.364Z","sequence":7692,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/acta:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:26.364Z","sequence":7693,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: acta, device-id: 35343834003C0033] for gateway [0008004AAAA3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:26.369Z","sequence":7694,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.3.0\"\n },\n \"viaGroups\" : [ \"gateways_acta\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:26.369Z","sequence":7695,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_acta\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:26.372Z","sequence":7696,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3f73e314-656f-48ec-984f-301e85991032, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:26.791Z","sequence":7697,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:26.791Z","sequence":7698,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A8A] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:26.797Z","sequence":7699,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:26.797Z","sequence":7700,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:26.802Z","sequence":7701,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-75e3382d-eaba-4a01-b684-1a9ade4f6617, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:27.762Z","sequence":7702,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:27.763Z","sequence":7703,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10013F0] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:27.768Z","sequence":7704,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:27.768Z","sequence":7705,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:27.774Z","sequence":7706,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-de01b74f-3ac0-4c5e-a4c4-ab533fe2e577, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:28.943Z","sequence":7707,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:28.943Z","sequence":7708,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AD9] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:28.949Z","sequence":7709,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:28.949Z","sequence":7710,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:28.955Z","sequence":7711,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5a2d9a10-2283-4374-8ac0-8eed8dd17966, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:30.085Z","sequence":7712,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:30.085Z","sequence":7713,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10001DE] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:30.09Z","sequence":7714,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:0.4.1\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:30.09Z","sequence":7715,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:30.096Z","sequence":7716,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-474ab6ae-f033-4897-a2d1-2ba4787a3066, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:31.669Z","sequence":7717,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:31.669Z","sequence":7718,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 70B3D57BB1001281] for gateway [gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:31.677Z","sequence":7719,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:31.677Z","sequence":7720,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:31.682Z","sequence":7721,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-50892fdd-9edd-4c56-96de-9bdc474fe122, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:31.771Z","sequence":7722,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:31.771Z","sequence":7723,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006B9] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:31.777Z","sequence":7724,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:31.777Z","sequence":7725,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:31.784Z","sequence":7726,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6104d993-8a6b-4851-b389-78f69c4f1437, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:34.988Z","sequence":7727,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:34.988Z","sequence":7728,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AD8] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:34.994Z","sequence":7729,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:34.994Z","sequence":7730,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:35Z","sequence":7731,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b76736a5-ef4e-4bf2-8e10-6b6c97295887, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:36.439Z","sequence":7732,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF237CF05665E60]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"76a3240f259bd559","parentId":"bcf27eaeb872afb8","traceId":"0000000000000000eab037c2618bc8e0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:36.46Z","sequence":7733,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF237CF05665E60]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"76a3240f259bd559","parentId":"bcf27eaeb872afb8","traceId":"0000000000000000eab037c2618bc8e0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:39.169Z","sequence":7734,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:39.169Z","sequence":7735,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C0A] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:39.175Z","sequence":7736,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:39.175Z","sequence":7737,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:39.181Z","sequence":7738,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-aeb43b9e-4bf9-4790-8158-5811a203b404, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:39.29Z","sequence":7739,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:39.29Z","sequence":7740,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: ineos]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:39.293Z","sequence":7741,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-2a5f7e8f-711c-46e2-a942-f61f5c275ae0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:39.297Z","sequence":7742,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:39.297Z","sequence":7743,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB1000A76] for gateway [0008004B5135]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:39.302Z","sequence":7744,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:39.302Z","sequence":7745,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:39.305Z","sequence":7746,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-cfcd2318-ee3f-499e-99db-44737c01e447, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:41.501Z","sequence":7747,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:41.501Z","sequence":7748,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: shell]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:41.505Z","sequence":7749,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-fef82a6a-f62a-48f0-a920-ea10a7584d0f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:41.508Z","sequence":7750,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/shell:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:41.508Z","sequence":7751,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: shell, type: hashed-password, auth-id: auth-gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:41.518Z","sequence":7752,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-000c88ec-b65b-4c39-a5de-e05adae37dfb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:41.637Z","sequence":7753,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:41.637Z","sequence":7754,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A83] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:41.643Z","sequence":7755,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:41.643Z","sequence":7756,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:41.649Z","sequence":7757,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b75b4890-abbf-4aae-87ef-661227a4d0e6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:47.708Z","sequence":7758,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/aloxy:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:47.708Z","sequence":7759,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: aloxy, device-id: 0008004A8F68]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:47.715Z","sequence":7760,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4a36a51c-acb2-466b-9910-205a1c1443b6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:47.718Z","sequence":7761,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:47.718Z","sequence":7762,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: aloxy]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:47.721Z","sequence":7763,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-dc36ad69-6a9a-4852-abec-457583725e9f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:52.067Z","sequence":7764,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:52.067Z","sequence":7765,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 70B3D57BB1001270] for gateway [gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:52.073Z","sequence":7766,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:52.073Z","sequence":7767,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:52.077Z","sequence":7768,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-92626dac-175b-4049-8056-50385bc41d2d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:55.355Z","sequence":7769,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:55.355Z","sequence":7770,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000830] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:55.381Z","sequence":7771,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:55.381Z","sequence":7772,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:55.387Z","sequence":7773,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c8b6e60d-c43d-4654-877e-396ef779320e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:55.524Z","sequence":7774,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:55.524Z","sequence":7775,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A84] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:55.533Z","sequence":7776,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:55.533Z","sequence":7777,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:55.539Z","sequence":7778,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-061b7adc-b8e7-4376-a2d7-cb200521012a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:55.645Z","sequence":7779,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:55.645Z","sequence":7780,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000814] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:55.667Z","sequence":7781,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:55.668Z","sequence":7782,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:55.681Z","sequence":7783,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-29c83f90-71fd-4921-ad79-f0835ebc1b0d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:56.693Z","sequence":7784,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:56.693Z","sequence":7785,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BB613]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:56.723Z","sequence":7786,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7bfdc20b-487f-40a3-a635-0371a64136d8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:57.609Z","sequence":7787,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_190953]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7f31ae29e878f750","parentId":"68f3694a770c6937","traceId":"000000000000000073500e8c9fe9b108","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:57.626Z","sequence":7788,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_190953, resource-version: d13aad66-9303-4fdb-ae8a-a653bc0018f4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7f31ae29e878f750","parentId":"68f3694a770c6937","traceId":"000000000000000073500e8c9fe9b108","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:57.636Z","sequence":7789,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190953, resource-version: 7381aae8-a14d-48a2-bff7-6f97fbd9e509]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7f31ae29e878f750","parentId":"68f3694a770c6937","traceId":"000000000000000073500e8c9fe9b108","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:57.641Z","sequence":7790,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_190953]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2b6889a07ee4f7f9","parentId":"95ab0b594bcbbf8f","traceId":"000000000000000073500e8c9fe9b108","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:52:57.786Z","sequence":7791,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190953]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2b6889a07ee4f7f9","parentId":"95ab0b594bcbbf8f","traceId":"000000000000000073500e8c9fe9b108","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:00.084Z","sequence":7792,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:00.084Z","sequence":7793,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 70B3D57BB100127D] for gateway [gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:00.09Z","sequence":7794,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:00.09Z","sequence":7795,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:00.094Z","sequence":7796,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-39aedeb2-4207-4f46-a2e5-d1e24cc5e96c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:02.218Z","sequence":7797,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:02.218Z","sequence":7798,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10008B0] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:02.225Z","sequence":7799,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:02.225Z","sequence":7800,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:02.231Z","sequence":7801,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-608c78f4-4425-49e4-8d77-8ad0307d3b7c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:08.626Z","sequence":7802,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/acta:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:08.626Z","sequence":7803,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: acta, device-id: 0008004AAAA3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:08.633Z","sequence":7804,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8f9dda58-1dad-4219-aae5-065fa66f182f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:26.606Z","sequence":7805,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:26.606Z","sequence":7806,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019C7] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:26.612Z","sequence":7807,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:26.613Z","sequence":7808,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:26.619Z","sequence":7809,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b04052be-accd-4d38-a490-01c977387ca0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:27.121Z","sequence":7810,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:27.121Z","sequence":7811,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100016A] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:27.126Z","sequence":7812,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:27.127Z","sequence":7813,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:27.129Z","sequence":7814,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-edaa2502-f4d1-44ce-ad00-1241389a851d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:27.212Z","sequence":7815,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:27.212Z","sequence":7816,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100016A] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:27.217Z","sequence":7817,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:27.217Z","sequence":7818,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:27.219Z","sequence":7819,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-193abc9f-4d18-469f-9bf9-30f4b7114afd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:28.51Z","sequence":7820,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_190952]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c2a02b03a6f9aefd","parentId":"509565903e6ffa25","traceId":"00000000000000002393cb6621fe4ed3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:28.536Z","sequence":7821,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190952]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c2a02b03a6f9aefd","parentId":"509565903e6ffa25","traceId":"00000000000000002393cb6621fe4ed3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:28.643Z","sequence":7822,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 611B2CE2CB32]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ddb18855c5799df3","parentId":"3243f8a6c6fe5e97","traceId":"00000000000000003534e62fbac4a750","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:28.679Z","sequence":7823,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 611B2CE2CB32, resource-version: 850d64d2-f920-4a0a-a0a6-7754e23ea50c]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ddb18855c5799df3","parentId":"3243f8a6c6fe5e97","traceId":"00000000000000003534e62fbac4a750","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:28.688Z","sequence":7824,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 611B2CE2CB32, resource-version: f7199a4d-61fc-4edc-b671-79148010e871]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ddb18855c5799df3","parentId":"3243f8a6c6fe5e97","traceId":"00000000000000003534e62fbac4a750","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:28.692Z","sequence":7825,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 611B2CE2CB32]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e68fa9ac430b35c3","parentId":"114636e10c90e8c3","traceId":"00000000000000003534e62fbac4a750","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:28.83Z","sequence":7826,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 611B2CE2CB32]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e68fa9ac430b35c3","parentId":"114636e10c90e8c3","traceId":"00000000000000003534e62fbac4a750","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:28.934Z","sequence":7827,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: B6406F436BC9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c3795b79b6015523","parentId":"e6f7c851a19e0001","traceId":"00000000000000005cf0d0f3e83c1b52","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:28.954Z","sequence":7828,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: B6406F436BC9, resource-version: fd912b8a-b4a7-454e-9959-304a771d83a0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c3795b79b6015523","parentId":"e6f7c851a19e0001","traceId":"00000000000000005cf0d0f3e83c1b52","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:28.962Z","sequence":7829,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: B6406F436BC9, resource-version: 8a9cd365-c56b-42cd-a29c-88af1f4fe8ea]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c3795b79b6015523","parentId":"e6f7c851a19e0001","traceId":"00000000000000005cf0d0f3e83c1b52","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:28.965Z","sequence":7830,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: B6406F436BC9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5259d9098d4bbfe5","parentId":"f0e5c011a516e427","traceId":"00000000000000005cf0d0f3e83c1b52","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:29.093Z","sequence":7831,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: B6406F436BC9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5259d9098d4bbfe5","parentId":"f0e5c011a516e427","traceId":"00000000000000005cf0d0f3e83c1b52","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:29.354Z","sequence":7832,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:29.354Z","sequence":7833,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A8B] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:29.366Z","sequence":7834,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:29.366Z","sequence":7835,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:29.372Z","sequence":7836,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e82468bf-f1ea-4293-bdee-016c7a061f87, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:29.447Z","sequence":7837,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF34EE4420D9962]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"241327619e8df579","parentId":"3b5df9674352e2b8","traceId":"00000000000000002f108a951feace5a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:29.466Z","sequence":7838,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF34EE4420D9962, resource-version: c8b10753-b4a1-4445-8eef-f56ec9a1cf75]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"241327619e8df579","parentId":"3b5df9674352e2b8","traceId":"00000000000000002f108a951feace5a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:29.472Z","sequence":7839,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF34EE4420D9962, resource-version: 58ced8a5-810c-4b4f-9339-ffcd99c0f986]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"241327619e8df579","parentId":"3b5df9674352e2b8","traceId":"00000000000000002f108a951feace5a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:29.696Z","sequence":7840,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFD8FDFFF1BAA1F]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"41202d391aecede4","parentId":"85b273ee89454f5d","traceId":"00000000000000008ea1e39928011e0b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:29.721Z","sequence":7841,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFD8FDFFF1BAA1F, resource-version: 258ede0d-c0dd-40ae-bacf-73f2d41a79f3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"41202d391aecede4","parentId":"85b273ee89454f5d","traceId":"00000000000000008ea1e39928011e0b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:29.727Z","sequence":7842,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFD8FDFFF1BAA1F, resource-version: 337b2a44-f3bc-4aee-b0c4-5c76441fceec]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"41202d391aecede4","parentId":"85b273ee89454f5d","traceId":"00000000000000008ea1e39928011e0b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:30.519Z","sequence":7843,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:30.519Z","sequence":7844,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-B6406F436BC9]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:30.529Z","sequence":7845,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-40888e18-d59d-4d66-b561-d0a457d94a1f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:30.653Z","sequence":7846,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:30.653Z","sequence":7847,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: B6406F436BC9]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:30.658Z","sequence":7848,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b0cfb0a4-c067-46ee-8561-fa59e861fba9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:30.665Z","sequence":7849,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:30.665Z","sequence":7850,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF34EE4420D9962] for gateway [B6406F436BC9]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:30.671Z","sequence":7851,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.7.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:30.671Z","sequence":7852,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:30.86Z","sequence":7853,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-82864922-016d-4a39-a5b4-e71988778bda, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:31.088Z","sequence":7854,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:31.088Z","sequence":7855,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-611B2CE2CB32]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:31.109Z","sequence":7856,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-27beac6f-3013-49fa-82d7-9696ea25c8d5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:31.227Z","sequence":7857,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:31.227Z","sequence":7858,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 611B2CE2CB32]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:31.236Z","sequence":7859,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-bcd53f1c-4f60-4a54-96b9-edc60798e984, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:31.24Z","sequence":7860,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:31.24Z","sequence":7861,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD8FDFFF1BAA1F] for gateway [611B2CE2CB32]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:31.245Z","sequence":7862,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:31.245Z","sequence":7863,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:31.599Z","sequence":7864,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2a2816ea-01ce-40f1-bbfc-5bafc775be69, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:31.766Z","sequence":7865,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_190956]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"77f36dbb33ff0f55","parentId":"fc7b758d4e1e4b35","traceId":"00000000000000002ade6ecc62910a81","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:31.811Z","sequence":7866,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_190956, resource-version: 4f003e8a-b0c3-4cb1-8db9-471ec8ddc144]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"77f36dbb33ff0f55","parentId":"fc7b758d4e1e4b35","traceId":"00000000000000002ade6ecc62910a81","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:31.837Z","sequence":7867,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190956, resource-version: 2c72a4fe-bee4-431a-809b-e4d2b6030b9b]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"77f36dbb33ff0f55","parentId":"fc7b758d4e1e4b35","traceId":"00000000000000002ade6ecc62910a81","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:31.84Z","sequence":7868,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_190956]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4c00ecc06795fde3","parentId":"88b46fccff91f780","traceId":"00000000000000002ade6ecc62910a81","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:32.047Z","sequence":7869,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190956]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4c00ecc06795fde3","parentId":"88b46fccff91f780","traceId":"00000000000000002ade6ecc62910a81","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:32.915Z","sequence":7870,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFDE3CA3273402C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"924b6455266a3434","parentId":"47b50e15b660a8c1","traceId":"0000000000000000ac03a12b79fce50b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:32.955Z","sequence":7871,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFDE3CA3273402C, resource-version: b034d152-0080-4d36-a7d5-7686736307cf]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"924b6455266a3434","parentId":"47b50e15b660a8c1","traceId":"0000000000000000ac03a12b79fce50b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:33.046Z","sequence":7872,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFDE3CA3273402C, resource-version: ce97fd00-1022-4009-8971-2fa51c116222]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"924b6455266a3434","parentId":"47b50e15b660a8c1","traceId":"0000000000000000ac03a12b79fce50b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:34.098Z","sequence":7873,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:34.098Z","sequence":7874,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000170] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:34.104Z","sequence":7875,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:34.104Z","sequence":7876,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:34.107Z","sequence":7877,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-45b3af6a-dec5-4f64-9315-f804ab9f29b1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:34.112Z","sequence":7878,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:34.112Z","sequence":7879,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000170] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:34.12Z","sequence":7880,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:34.12Z","sequence":7881,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:34.123Z","sequence":7882,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-673041c8-0fb2-449a-b100-868e8efa0d88, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:34.169Z","sequence":7883,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:34.169Z","sequence":7884,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_190956]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:34.184Z","sequence":7885,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-0b646f69-0eea-42c6-a5b6-9d657645f9c8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:34.309Z","sequence":7886,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:34.309Z","sequence":7887,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDE3CA3273402C] for gateway [gateway_integrationtest_network_190956]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:34.31Z","sequence":7888,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:34.31Z","sequence":7889,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_190956]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:34.316Z","sequence":7890,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:34.316Z","sequence":7891,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:34.319Z","sequence":7892,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-81cd3d1f-cbff-47fd-8b3a-89b35e845e23, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:34.661Z","sequence":7893,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9cd67ffd-25f5-4dd8-94d3-baa53ebc83aa, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:34.664Z","sequence":7894,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oiltanking:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:34.664Z","sequence":7895,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oiltanking, device-id: 30333336001B0034] for gateway [0008004BB60F]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:34.664Z","sequence":7896,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:34.665Z","sequence":7897,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000F93] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:34.676Z","sequence":7898,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_oiltanking\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:34.676Z","sequence":7899,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oiltanking\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:34.676Z","sequence":7900,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:34.676Z","sequence":7901,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:34.683Z","sequence":7902,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a9d9d564-fb44-46fa-88ab-82868d2cd542, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:34.684Z","sequence":7903,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6f96cd3c-ba43-416b-81d2-86286a7b2f47, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:35.112Z","sequence":7904,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF34EE4420D9962]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5d32ed5a24e0af35","parentId":"ab8ed160b7b6504e","traceId":"0000000000000000f8d0438baf969be6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:35.133Z","sequence":7905,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF34EE4420D9962]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5d32ed5a24e0af35","parentId":"ab8ed160b7b6504e","traceId":"0000000000000000f8d0438baf969be6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:35.506Z","sequence":7906,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: B6406F436BC9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"77bf511df7e367d4","parentId":"44d7dcfbc38a4607","traceId":"0000000000000000ca8724530c87fd33","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:35.521Z","sequence":7907,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: B6406F436BC9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"77bf511df7e367d4","parentId":"44d7dcfbc38a4607","traceId":"0000000000000000ca8724530c87fd33","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:35.857Z","sequence":7908,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_190957]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"816c5f5e06825341","parentId":"7efabc1e9f34d4e0","traceId":"00000000000000000ee63db4dfbab7af","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:35.882Z","sequence":7909,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_190957, resource-version: 6c482eb0-2a26-48eb-865c-9063c9700e73]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"816c5f5e06825341","parentId":"7efabc1e9f34d4e0","traceId":"00000000000000000ee63db4dfbab7af","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:35.888Z","sequence":7910,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190957, resource-version: 679b0964-1108-4de6-92e5-912ab64a6bf3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"816c5f5e06825341","parentId":"7efabc1e9f34d4e0","traceId":"00000000000000000ee63db4dfbab7af","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:35.891Z","sequence":7911,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_190957]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"716c913e4ab3b8b3","parentId":"b03237788faee804","traceId":"00000000000000000ee63db4dfbab7af","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:36.095Z","sequence":7912,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190957]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"716c913e4ab3b8b3","parentId":"b03237788faee804","traceId":"00000000000000000ee63db4dfbab7af","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:36.645Z","sequence":7913,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFDB036BB72FBED]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"81ed81dd047ba9e0","parentId":"14684d9197549c48","traceId":"00000000000000005b560427a9d58cca","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:36.671Z","sequence":7914,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFDB036BB72FBED, resource-version: 2c6bef08-9e8f-428b-a501-c55e0a5ebf8c]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"81ed81dd047ba9e0","parentId":"14684d9197549c48","traceId":"00000000000000005b560427a9d58cca","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:36.68Z","sequence":7915,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFDB036BB72FBED, resource-version: 270114d9-f9ab-4097-be08-e4276f35a410]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"81ed81dd047ba9e0","parentId":"14684d9197549c48","traceId":"00000000000000005b560427a9d58cca","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:37.026Z","sequence":7916,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFDB036BB72FBED]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"32f01d1a0e969c18","parentId":"47cbb0a373bc2658","traceId":"0000000000000000d7c8bd79cd58fb84","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:37.05Z","sequence":7917,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFDB036BB72FBED]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"32f01d1a0e969c18","parentId":"47cbb0a373bc2658","traceId":"0000000000000000d7c8bd79cd58fb84","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:37.15Z","sequence":7918,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_190957]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"94b75635853b090e","parentId":"a116d676ca1b3144","traceId":"000000000000000030e05fd98b47d0e3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:37.17Z","sequence":7919,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190957]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"94b75635853b090e","parentId":"a116d676ca1b3144","traceId":"000000000000000030e05fd98b47d0e3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:39.897Z","sequence":7920,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:39.897Z","sequence":7921,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:39.902Z","sequence":7922,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e737df4f-6b21-4a9c-9673-5423e9e0af1a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:39.905Z","sequence":7923,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:39.905Z","sequence":7924,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100018D] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:39.91Z","sequence":7925,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:39.91Z","sequence":7926,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:39.913Z","sequence":7927,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ef6c1a01-b907-4a7e-a7b0-2e8175adb2d2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:39.931Z","sequence":7928,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:39.931Z","sequence":7929,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100018D] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:39.937Z","sequence":7930,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:39.937Z","sequence":7931,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:39.94Z","sequence":7932,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7642fa50-a3d6-4be6-a1f9-ac4e2fa49189, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:42.538Z","sequence":7933,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: B5CD98E3888A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9151846016aea2cc","parentId":"912b78fa28d493c3","traceId":"00000000000000008e00cc8e464cd3ce","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:42.556Z","sequence":7934,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: B5CD98E3888A, resource-version: a200be55-5fd9-4b59-8e68-eed46b112560]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9151846016aea2cc","parentId":"912b78fa28d493c3","traceId":"00000000000000008e00cc8e464cd3ce","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:42.562Z","sequence":7935,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: B5CD98E3888A, resource-version: 44c17899-9ae2-4449-8cf3-8a32d580a3c5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9151846016aea2cc","parentId":"912b78fa28d493c3","traceId":"00000000000000008e00cc8e464cd3ce","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:42.566Z","sequence":7936,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: B5CD98E3888A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d700bd12cb02a7a8","parentId":"480e29987313b017","traceId":"00000000000000008e00cc8e464cd3ce","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:42.701Z","sequence":7937,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: B5CD98E3888A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d700bd12cb02a7a8","parentId":"480e29987313b017","traceId":"00000000000000008e00cc8e464cd3ce","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:43.331Z","sequence":7938,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF4DBDAF6075479]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a0f00cec972d83b7","parentId":"e16169073378c1e7","traceId":"00000000000000002841407899aeb5b9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:43.369Z","sequence":7939,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF4DBDAF6075479, resource-version: a66bba55-d5d3-49ef-9f34-da7d96f7a980]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a0f00cec972d83b7","parentId":"e16169073378c1e7","traceId":"00000000000000002841407899aeb5b9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:43.376Z","sequence":7940,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF4DBDAF6075479, resource-version: b2661ef1-c858-4e13-9d1b-5e2661f8a114]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a0f00cec972d83b7","parentId":"e16169073378c1e7","traceId":"00000000000000002841407899aeb5b9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:43.832Z","sequence":7941,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF4DBDAF6075479]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3775ac47d328ab4e","parentId":"2b9d53914ab05e2a","traceId":"00000000000000003e6c82183e07c3af","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:43.851Z","sequence":7942,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF4DBDAF6075479]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3775ac47d328ab4e","parentId":"2b9d53914ab05e2a","traceId":"00000000000000003e6c82183e07c3af","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:44.089Z","sequence":7943,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFD8FDFFF1BAA1F]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c5151b19400a0750","parentId":"da5100a790c79f66","traceId":"0000000000000000fe4ab1391b47d590","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:44.133Z","sequence":7944,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFD8FDFFF1BAA1F]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c5151b19400a0750","parentId":"da5100a790c79f66","traceId":"0000000000000000fe4ab1391b47d590","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:44.232Z","sequence":7945,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 611B2CE2CB32]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6266e863279ae5a9","parentId":"c11061ea1e44f5c0","traceId":"000000000000000078eeac31974aec0b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:44.259Z","sequence":7946,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 611B2CE2CB32]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6266e863279ae5a9","parentId":"c11061ea1e44f5c0","traceId":"000000000000000078eeac31974aec0b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:44.697Z","sequence":7947,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: B5CD98E3888A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"39eff5139fec4b28","parentId":"e4707903855ae65e","traceId":"000000000000000017be6cb20d1c1767","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:44.731Z","sequence":7948,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: B5CD98E3888A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"39eff5139fec4b28","parentId":"e4707903855ae65e","traceId":"000000000000000017be6cb20d1c1767","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:46.329Z","sequence":7949,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: DDD32D235467]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6612de9dd775c234","parentId":"72bffe9532f111c5","traceId":"0000000000000000c62fa3ddb4b79fee","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:46.365Z","sequence":7950,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: DDD32D235467, resource-version: 334f3b03-6007-4f80-b893-3f3a203d577c]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6612de9dd775c234","parentId":"72bffe9532f111c5","traceId":"0000000000000000c62fa3ddb4b79fee","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:46.373Z","sequence":7951,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: DDD32D235467, resource-version: 7e5559f5-3793-4b7f-83bd-7ce9fa756b8a]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6612de9dd775c234","parentId":"72bffe9532f111c5","traceId":"0000000000000000c62fa3ddb4b79fee","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:46.378Z","sequence":7952,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: DDD32D235467]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"73c676af3a3af0a9","parentId":"6be1d31817fcb338","traceId":"0000000000000000c62fa3ddb4b79fee","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:46.753Z","sequence":7953,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: DDD32D235467]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"73c676af3a3af0a9","parentId":"6be1d31817fcb338","traceId":"0000000000000000c62fa3ddb4b79fee","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:46.861Z","sequence":7954,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:46.861Z","sequence":7955,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000816] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:46.869Z","sequence":7956,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:46.869Z","sequence":7957,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:46.877Z","sequence":7958,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-53a18e09-f5ef-42e8-b2f2-aa57c165eb23, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:47.638Z","sequence":7959,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFDE3CA3273402C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c1b0f3958e8a9f0e","parentId":"bd9b3aee3b85331d","traceId":"0000000000000000fbc4b80ce0f95629","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:47.659Z","sequence":7960,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFDE3CA3273402C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c1b0f3958e8a9f0e","parentId":"bd9b3aee3b85331d","traceId":"0000000000000000fbc4b80ce0f95629","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:48.263Z","sequence":7961,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_190956]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5c699793135dc288","parentId":"7058e4ec69fc7502","traceId":"000000000000000002170aa799e57aee","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:48.286Z","sequence":7962,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190956]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5c699793135dc288","parentId":"7058e4ec69fc7502","traceId":"000000000000000002170aa799e57aee","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:48.32Z","sequence":7963,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 9A4AE1361E7A1511]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2b02feca6c81534a","parentId":"dded634047113935","traceId":"00000000000000006674c6d9f09b9073","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:48.347Z","sequence":7964,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 9A4AE1361E7A1511, resource-version: c8293431-c816-4b8a-b8cb-b6d80461a822]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2b02feca6c81534a","parentId":"dded634047113935","traceId":"00000000000000006674c6d9f09b9073","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:48.357Z","sequence":7965,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 9A4AE1361E7A1511, resource-version: fce1dc43-8453-41d6-bbec-e6cfbab7e1c7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2b02feca6c81534a","parentId":"dded634047113935","traceId":"00000000000000006674c6d9f09b9073","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:49.544Z","sequence":7966,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 2A3091FF67E3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b4bc0891e545c38b","parentId":"e6e0f58069b2fc31","traceId":"00000000000000006a787232dcb02952","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:49.561Z","sequence":7967,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 2A3091FF67E3, resource-version: 73c62fe7-3759-4b55-8529-34f101266a3c]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b4bc0891e545c38b","parentId":"e6e0f58069b2fc31","traceId":"00000000000000006a787232dcb02952","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:49.568Z","sequence":7968,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 2A3091FF67E3, resource-version: e5bcf81b-a5b1-45a8-8f3b-bf328d5a6393]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b4bc0891e545c38b","parentId":"e6e0f58069b2fc31","traceId":"00000000000000006a787232dcb02952","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:49.571Z","sequence":7969,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 2A3091FF67E3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"92c2037fbc317538","parentId":"0bc85bdf4ed92c62","traceId":"00000000000000006a787232dcb02952","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:49.785Z","sequence":7970,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 2A3091FF67E3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"92c2037fbc317538","parentId":"0bc85bdf4ed92c62","traceId":"00000000000000006a787232dcb02952","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:50.2Z","sequence":7971,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:50.201Z","sequence":7972,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-00GWALP120IT]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:50.212Z","sequence":7973,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-e3f1092a-e4e6-4b2d-8718-c4f0708ca21e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:50.349Z","sequence":7974,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:50.349Z","sequence":7975,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 00GWALP120IT]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:50.355Z","sequence":7976,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5df03ef0-c2d5-486f-9e46-a88d8dc1f151, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:50.451Z","sequence":7977,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF3F3614A9D4BDF]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"87792ad64b4d2353","parentId":"d20f22a6fa940d0a","traceId":"00000000000000002961a2b79a5c88cc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:50.469Z","sequence":7978,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF3F3614A9D4BDF, resource-version: 513980f5-f38a-4869-9a63-21275900eaf8]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"87792ad64b4d2353","parentId":"d20f22a6fa940d0a","traceId":"00000000000000002961a2b79a5c88cc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:50.477Z","sequence":7979,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF3F3614A9D4BDF, resource-version: c4a94162-1192-49f8-8c62-37a2de601050]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"87792ad64b4d2353","parentId":"d20f22a6fa940d0a","traceId":"00000000000000002961a2b79a5c88cc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:50.55Z","sequence":7980,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:50.55Z","sequence":7981,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-2A3091FF67E3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:50.566Z","sequence":7982,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-2c87d51a-bc85-4aca-8481-e57bfe0c44ce, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:50.687Z","sequence":7983,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:50.687Z","sequence":7984,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 2A3091FF67E3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:50.689Z","sequence":7985,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/repsol:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:50.689Z","sequence":7986,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: repsol, device-id: 0008004A37FF]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:50.693Z","sequence":7987,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3bbb924f-d30d-4253-9f5d-31e6e3cb6c5c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:50.694Z","sequence":7988,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-66071256-d9e3-4b94-a908-9e88b1c5d5d5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:50.7Z","sequence":7989,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:50.7Z","sequence":7990,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: repsol]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:50.703Z","sequence":7991,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-2e04f00d-ae12-460b-afe3-160907024f78, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:50.819Z","sequence":7992,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:50.819Z","sequence":7993,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-DDD32D235467]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:50.82Z","sequence":7994,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:50.829Z","sequence":7995,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-DDD32D235467]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:50.843Z","sequence":7996,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-2f25ec64-4717-42a0-8c23-de7393c00431, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:50.846Z","sequence":7997,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-9b214056-7fc8-47ca-818b-1eacdf7601fd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:51.102Z","sequence":7998,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:51.103Z","sequence":7999,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: DDD32D235467]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:51.112Z","sequence":8000,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-69342ab8-66f2-49f8-a898-4cc135ebb2cd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:51.113Z","sequence":8001,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:51.113Z","sequence":8002,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: DDD32D235467]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:51.116Z","sequence":8003,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:51.116Z","sequence":8004,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 9A4AE1361E7A1511] for gateway [DDD32D235467]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:51.119Z","sequence":8005,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b4a2f814-8c69-4cfc-b2f4-407972d0f725, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:51.122Z","sequence":8006,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:connect:0.1.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:51.122Z","sequence":8007,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:51.123Z","sequence":8008,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:51.123Z","sequence":8009,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 9A4AE1361E7A1511] for gateway [DDD32D235467]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:51.138Z","sequence":8010,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:connect:0.1.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:51.138Z","sequence":8011,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:51.5Z","sequence":8012,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ed1333ab-0a68-49a7-84da-aafe95e67711, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:51.771Z","sequence":8013,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-339a289f-428c-432e-ba9d-db4db86aed03, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:56.75Z","sequence":8014,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [command-router@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:56.75Z","sequence":8015,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF3F3614A9D4BDF]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:57.122Z","sequence":8016,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f361767c-dff6-4219-a7bb-d1fa214825c9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:57.127Z","sequence":8017,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:57.127Z","sequence":8018,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000575] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:57.133Z","sequence":8019,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:57.133Z","sequence":8020,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:53:57.14Z","sequence":8021,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-725d9336-a0b7-4a56-a52a-14fddc4fffc4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:03.685Z","sequence":8022,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:03.685Z","sequence":8023,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006CE] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:03.697Z","sequence":8024,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.8.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:03.697Z","sequence":8025,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:03.705Z","sequence":8026,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ed4e3080-7ef6-40e0-9f47-e3a9c1841015, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:04.818Z","sequence":8027,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:04.819Z","sequence":8028,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-DDD32D235467]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:04.819Z","sequence":8029,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:04.819Z","sequence":8030,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-DDD32D235467]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:04.834Z","sequence":8031,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-abafc90a-f852-415d-9f10-da5414d6b115, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:04.834Z","sequence":8032,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-53e31093-34b2-4683-a36b-dd5e1b781811, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:05.745Z","sequence":8033,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:05.745Z","sequence":8034,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100015F] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:05.751Z","sequence":8035,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:05.751Z","sequence":8036,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:05.755Z","sequence":8037,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f80a79d7-d188-497c-ba2e-eb985e870f56, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:05.872Z","sequence":8038,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:05.873Z","sequence":8039,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100015F] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:05.878Z","sequence":8040,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:05.878Z","sequence":8041,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:05.881Z","sequence":8042,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ebf0445f-347d-4476-94d2-5243e1f5604b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:07.025Z","sequence":8043,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:07.025Z","sequence":8044,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-2A3091FF67E3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:07.045Z","sequence":8045,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-126bff65-5e45-4e00-9359-ed2c356aed9a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:07.172Z","sequence":8046,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:07.172Z","sequence":8047,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF3F3614A9D4BDF] for gateway [2A3091FF67E3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:07.18Z","sequence":8048,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:07.18Z","sequence":8049,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:07.736Z","sequence":8050,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-aab646b4-865a-4d28-8706-4c445bc4797d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:08.679Z","sequence":8051,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_190961]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c38a2220d5c298c4","parentId":"dd87b2690f696db0","traceId":"0000000000000000781bf30e798319b3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:08.698Z","sequence":8052,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_190961, resource-version: b1d92849-6e37-4117-acec-f200bbe94ab1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c38a2220d5c298c4","parentId":"dd87b2690f696db0","traceId":"0000000000000000781bf30e798319b3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:08.703Z","sequence":8053,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190961, resource-version: 49b91869-0b1b-4f14-967b-9122c1828590]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c38a2220d5c298c4","parentId":"dd87b2690f696db0","traceId":"0000000000000000781bf30e798319b3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:08.708Z","sequence":8054,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_190961]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a50e4355a08bc34b","parentId":"a68fee03ea1edf3f","traceId":"0000000000000000781bf30e798319b3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:08.869Z","sequence":8055,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190961]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a50e4355a08bc34b","parentId":"a68fee03ea1edf3f","traceId":"0000000000000000781bf30e798319b3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:09.547Z","sequence":8056,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF7F46381F6F4C2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"09754ec73f10f8b1","parentId":"6483227c093666a1","traceId":"0000000000000000086706a511e16d90","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:09.566Z","sequence":8057,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF7F46381F6F4C2, resource-version: 9bee15eb-28e2-46ec-a6e3-5e93f150429b]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"09754ec73f10f8b1","parentId":"6483227c093666a1","traceId":"0000000000000000086706a511e16d90","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:09.572Z","sequence":8058,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF7F46381F6F4C2, resource-version: 134cc513-7028-495d-b3c1-bab512507fd7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"09754ec73f10f8b1","parentId":"6483227c093666a1","traceId":"0000000000000000086706a511e16d90","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:09.981Z","sequence":8059,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF3F3614A9D4BDF]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b058b40dba40f0cd","parentId":"dccff8b577ded01d","traceId":"0000000000000000564347ba3c8885f8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:09.996Z","sequence":8060,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF3F3614A9D4BDF]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b058b40dba40f0cd","parentId":"dccff8b577ded01d","traceId":"0000000000000000564347ba3c8885f8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:10.361Z","sequence":8061,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 2A3091FF67E3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6bc4a8fed04ef11f","parentId":"f4afdb1c8a5c0619","traceId":"0000000000000000ff416cdf20511347","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:10.381Z","sequence":8062,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 2A3091FF67E3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6bc4a8fed04ef11f","parentId":"f4afdb1c8a5c0619","traceId":"0000000000000000ff416cdf20511347","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:10.497Z","sequence":8063,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:10.497Z","sequence":8064,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 0008004B51D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:10.509Z","sequence":8065,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3ad624a1-1fa6-43a6-9526-52d8df89b7e3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:10.513Z","sequence":8066,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:10.513Z","sequence":8067,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: dow]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:10.519Z","sequence":8068,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-73ac1c06-bd5a-4f14-9de0-629721b8023f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:10.661Z","sequence":8069,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:10.662Z","sequence":8070,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_190961]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:10.673Z","sequence":8071,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-d83f4d68-8051-4e03-8665-6bf56169fca0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:10.726Z","sequence":8072,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 9A4AE1361E7A1511]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c89c6725d4c63fd4","parentId":"9573b90d7d96973e","traceId":"00000000000000004705d3d7420d4f59","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:10.742Z","sequence":8073,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 9A4AE1361E7A1511]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c89c6725d4c63fd4","parentId":"9573b90d7d96973e","traceId":"00000000000000004705d3d7420d4f59","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:10.873Z","sequence":8074,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:10.873Z","sequence":8075,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF7F46381F6F4C2] for gateway [gateway_integrationtest_network_190961]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:10.874Z","sequence":8076,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:10.874Z","sequence":8077,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_190961]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:10.883Z","sequence":8078,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-fb084859-a4b9-4690-8085-57d59a9009f2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:10.884Z","sequence":8079,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:10.884Z","sequence":8080,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:11.125Z","sequence":8081,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-fe63dde0-e58b-4b60-9539-20f69b8011b2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:11.126Z","sequence":8082,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:11.126Z","sequence":8083,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BDF] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:11.133Z","sequence":8084,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:11.133Z","sequence":8085,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:11.149Z","sequence":8086,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1ac93793-16ae-4b2f-a1c7-63c50849f6d7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:11.577Z","sequence":8087,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:11.577Z","sequence":8088,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001B09] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:11.597Z","sequence":8089,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:11.597Z","sequence":8090,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:11.603Z","sequence":8091,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c79668ec-0369-44a9-a3ce-b654d46e41d9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:11.883Z","sequence":8092,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 4DB047E2C3A3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"17d27f098b6dcd79","parentId":"0740e5190e2bf0d9","traceId":"00000000000000006c0e3c1c8bfc660d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:11.905Z","sequence":8093,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 4DB047E2C3A3, resource-version: 2383ce0e-4b78-4ed3-b871-fac9902d12ed]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"17d27f098b6dcd79","parentId":"0740e5190e2bf0d9","traceId":"00000000000000006c0e3c1c8bfc660d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:11.915Z","sequence":8094,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 4DB047E2C3A3, resource-version: af0fc9cd-f707-455e-9fc5-70594d2dd899]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"17d27f098b6dcd79","parentId":"0740e5190e2bf0d9","traceId":"00000000000000006c0e3c1c8bfc660d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:11.919Z","sequence":8095,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 4DB047E2C3A3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b04721db0e51b030","parentId":"f61e91db8712f5cc","traceId":"00000000000000006c0e3c1c8bfc660d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:11.978Z","sequence":8096,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: DDD32D235467]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5df26dd1e9874cff","parentId":"f51feb99ec2c154a","traceId":"00000000000000004dc74f9c167335c6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:12.007Z","sequence":8097,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: DDD32D235467]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5df26dd1e9874cff","parentId":"f51feb99ec2c154a","traceId":"00000000000000004dc74f9c167335c6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:12.277Z","sequence":8098,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 4DB047E2C3A3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b04721db0e51b030","parentId":"f61e91db8712f5cc","traceId":"00000000000000006c0e3c1c8bfc660d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:13.117Z","sequence":8099,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF20FAEE1A38F36]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"00f736aaf86fc8a8","parentId":"4958e21634a7236e","traceId":"0000000000000000112031a8c831395b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:13.145Z","sequence":8100,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF20FAEE1A38F36, resource-version: 224273fb-c5b0-4639-888e-a74e9c7f0011]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"00f736aaf86fc8a8","parentId":"4958e21634a7236e","traceId":"0000000000000000112031a8c831395b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:13.155Z","sequence":8101,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF20FAEE1A38F36, resource-version: 7d114868-b6ec-4990-947b-1718142a706d]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"00f736aaf86fc8a8","parentId":"4958e21634a7236e","traceId":"0000000000000000112031a8c831395b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:14.647Z","sequence":8102,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:14.647Z","sequence":8103,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-4DB047E2C3A3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:14.658Z","sequence":8104,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-bd132829-2460-4748-aad8-57f1bbd53078, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:14.801Z","sequence":8105,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:14.802Z","sequence":8106,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 4DB047E2C3A3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:14.828Z","sequence":8107,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a61beafe-010e-459f-9c95-f217641bcd3c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:14.836Z","sequence":8108,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:14.836Z","sequence":8109,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF20FAEE1A38F36] for gateway [4DB047E2C3A3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:14.85Z","sequence":8110,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:14.85Z","sequence":8111,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:15.286Z","sequence":8112,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6059ce85-ac1b-46ee-99ad-eac8cbcc8b22, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:22.658Z","sequence":8113,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 26B8EB3EF744]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0c859e8c9ea5769c","parentId":"f72345e4c1457eb3","traceId":"000000000000000070a4617296557bc7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:22.699Z","sequence":8114,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 26B8EB3EF744, resource-version: 55c6904b-44f1-4db1-b250-f6df95ea2d89]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0c859e8c9ea5769c","parentId":"f72345e4c1457eb3","traceId":"000000000000000070a4617296557bc7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:22.706Z","sequence":8115,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 26B8EB3EF744, resource-version: b29407e8-f0f3-4c8d-8cd2-e4528948c0ce]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0c859e8c9ea5769c","parentId":"f72345e4c1457eb3","traceId":"000000000000000070a4617296557bc7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:22.711Z","sequence":8116,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 26B8EB3EF744]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"831f701d45c2b74b","parentId":"b72b00ec54d72743","traceId":"000000000000000070a4617296557bc7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:22.865Z","sequence":8117,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 26B8EB3EF744]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"831f701d45c2b74b","parentId":"b72b00ec54d72743","traceId":"000000000000000070a4617296557bc7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:23.275Z","sequence":8118,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_190964]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5e150d8bce9d12f5","parentId":"8befed7b726acf89","traceId":"0000000000000000c303e3b0ca5f13a4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:23.295Z","sequence":8119,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_190964, resource-version: ecb4492f-4fda-4bcb-b266-964ddeab496f]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5e150d8bce9d12f5","parentId":"8befed7b726acf89","traceId":"0000000000000000c303e3b0ca5f13a4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:23.31Z","sequence":8120,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190964, resource-version: 5f2da7c9-6867-4e12-8acd-a1061a2a27dd]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5e150d8bce9d12f5","parentId":"8befed7b726acf89","traceId":"0000000000000000c303e3b0ca5f13a4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:23.314Z","sequence":8121,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_190964]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"75904f8fc65aad4f","parentId":"9718286092922ad2","traceId":"0000000000000000c303e3b0ca5f13a4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:23.484Z","sequence":8122,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190964]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"75904f8fc65aad4f","parentId":"9718286092922ad2","traceId":"0000000000000000c303e3b0ca5f13a4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:23.522Z","sequence":8123,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF3AE602AE6545E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fecc1d6cc605c215","parentId":"73b442e9581bf770","traceId":"0000000000000000040c7d292418d6e5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:23.545Z","sequence":8124,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF3AE602AE6545E, resource-version: 29cbc853-ac72-4653-969b-87dd20ae5fcb]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fecc1d6cc605c215","parentId":"73b442e9581bf770","traceId":"0000000000000000040c7d292418d6e5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:23.553Z","sequence":8125,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF3AE602AE6545E, resource-version: 21af5334-67cc-4753-9704-f307fc2f9b52]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fecc1d6cc605c215","parentId":"73b442e9581bf770","traceId":"0000000000000000040c7d292418d6e5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:23.806Z","sequence":8126,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF7F46381F6F4C2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e47ab248a216f252","parentId":"d26ce7f5be5a7b5b","traceId":"0000000000000000c98fba7ebca4f7cd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:23.829Z","sequence":8127,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF7F46381F6F4C2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e47ab248a216f252","parentId":"d26ce7f5be5a7b5b","traceId":"0000000000000000c98fba7ebca4f7cd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:23.965Z","sequence":8128,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF72AF848FFE4D6]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b74edb40c59eda89","parentId":"7f952f1a5549e044","traceId":"0000000000000000d341242b26d08091","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:23.983Z","sequence":8129,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF72AF848FFE4D6, resource-version: 6428545a-2d88-4333-939b-d72f8b62c470]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b74edb40c59eda89","parentId":"7f952f1a5549e044","traceId":"0000000000000000d341242b26d08091","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:23.99Z","sequence":8130,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF72AF848FFE4D6, resource-version: 46f6be10-69d8-4012-ac7b-45ff418f0427]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b74edb40c59eda89","parentId":"7f952f1a5549e044","traceId":"0000000000000000d341242b26d08091","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:24.137Z","sequence":8131,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_190961]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c3c9f196041a2367","parentId":"5b02d894dec0e4e3","traceId":"00000000000000009612d8ca5c939094","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:24.157Z","sequence":8132,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190961]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c3c9f196041a2367","parentId":"5b02d894dec0e4e3","traceId":"00000000000000009612d8ca5c939094","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:24.627Z","sequence":8133,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:24.627Z","sequence":8134,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-26B8EB3EF744]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:24.638Z","sequence":8135,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-dc1de100-fbad-48f3-9123-c0fa8596a712, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:24.765Z","sequence":8136,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:24.765Z","sequence":8137,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 26B8EB3EF744]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:24.773Z","sequence":8138,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e2a6d785-ac14-4eed-9974-ffef01590b57, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:24.785Z","sequence":8139,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:24.785Z","sequence":8140,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF3AE602AE6545E] for gateway [26B8EB3EF744]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:24.793Z","sequence":8141,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:24.793Z","sequence":8142,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:25.121Z","sequence":8143,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF20FAEE1A38F36]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6e8a947014927ea4","parentId":"01833c33d9873ed9","traceId":"00000000000000004aceb8fcc570bc6d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:25.126Z","sequence":8144,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4d75d412-192d-4cc1-a1a2-6197a707fb1b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:25.159Z","sequence":8145,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF20FAEE1A38F36]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6e8a947014927ea4","parentId":"01833c33d9873ed9","traceId":"00000000000000004aceb8fcc570bc6d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:25.167Z","sequence":8146,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:25.167Z","sequence":8147,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_190964]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:25.177Z","sequence":8148,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-f6a7b107-75d7-4987-9773-b48abe36714d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:25.3Z","sequence":8149,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:25.3Z","sequence":8150,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF72AF848FFE4D6] for gateway [gateway_integrationtest_network_190964]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:25.301Z","sequence":8151,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:25.301Z","sequence":8152,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_190964]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:25.305Z","sequence":8153,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.3.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:25.306Z","sequence":8154,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:25.306Z","sequence":8155,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d6fd77ba-a19b-4feb-8f05-274becde6291, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:25.98Z","sequence":8156,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-35b54415-c7de-42c4-8e69-511be333808c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:26.283Z","sequence":8157,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 4DB047E2C3A3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6a5f517b3d99e7c5","parentId":"b28e88fb4bdf0af8","traceId":"000000000000000026d16172c071eb68","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:26.309Z","sequence":8158,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 4DB047E2C3A3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6a5f517b3d99e7c5","parentId":"b28e88fb4bdf0af8","traceId":"000000000000000026d16172c071eb68","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:28.235Z","sequence":8159,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:28.235Z","sequence":8160,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:28.239Z","sequence":8161,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-8d243380-fa3d-4d6b-ae36-3c2eafa1a0e5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:29.034Z","sequence":8162,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF3AE602AE6545E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c0875ce339b39f13","parentId":"49e8e8066cb93407","traceId":"0000000000000000bd108cbe696bbc42","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:29.055Z","sequence":8163,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF3AE602AE6545E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c0875ce339b39f13","parentId":"49e8e8066cb93407","traceId":"0000000000000000bd108cbe696bbc42","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:29.148Z","sequence":8164,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 38483A5DFAD1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0d7181690d10b1f8","parentId":"5937676598d8d99e","traceId":"000000000000000085973e11aece53c4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:29.178Z","sequence":8165,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 38483A5DFAD1, resource-version: 1b4fa23a-2227-472e-9eb1-28c3ada80627]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0d7181690d10b1f8","parentId":"5937676598d8d99e","traceId":"000000000000000085973e11aece53c4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:29.188Z","sequence":8166,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 38483A5DFAD1, resource-version: 30425a1b-4b93-4022-b692-0fbea76e0f47]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0d7181690d10b1f8","parentId":"5937676598d8d99e","traceId":"000000000000000085973e11aece53c4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:29.192Z","sequence":8167,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 38483A5DFAD1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"306798a6bf5598f9","parentId":"3c15af421a6f3998","traceId":"000000000000000085973e11aece53c4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:29.347Z","sequence":8168,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 38483A5DFAD1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"306798a6bf5598f9","parentId":"3c15af421a6f3998","traceId":"000000000000000085973e11aece53c4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:29.573Z","sequence":8169,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFCC3D460ED0346]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b5c8d28c894b1bbd","parentId":"bb1c072791d50c82","traceId":"0000000000000000167526239d456b9d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:29.59Z","sequence":8170,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFCC3D460ED0346, resource-version: 045124c1-8d34-4c16-a0e0-f9e249f6396c]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b5c8d28c894b1bbd","parentId":"bb1c072791d50c82","traceId":"0000000000000000167526239d456b9d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:29.599Z","sequence":8171,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFCC3D460ED0346, resource-version: 894a37a2-e3af-415d-8466-9a352677622c]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b5c8d28c894b1bbd","parentId":"bb1c072791d50c82","traceId":"0000000000000000167526239d456b9d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:29.61Z","sequence":8172,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 26B8EB3EF744]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7b3be92384e7eef1","parentId":"e0f4bbdba9ce7d5c","traceId":"000000000000000012f02f0b1d6699e6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:29.641Z","sequence":8173,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 26B8EB3EF744]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7b3be92384e7eef1","parentId":"e0f4bbdba9ce7d5c","traceId":"000000000000000012f02f0b1d6699e6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:29.661Z","sequence":8174,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:29.661Z","sequence":8175,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-38483A5DFAD1]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:29.679Z","sequence":8176,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-b44391e8-dd15-4523-87dd-73e47da9291c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:29.803Z","sequence":8177,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:29.803Z","sequence":8178,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 38483A5DFAD1]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:29.81Z","sequence":8179,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-72ac5241-9f13-4581-99d5-beb9cee21ffc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:29.814Z","sequence":8180,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [command-router@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:29.814Z","sequence":8181,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:29.817Z","sequence":8182,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-548d767e-ef86-46b3-ade7-3e0e97364dfa, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:30.255Z","sequence":8183,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_190966]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4236b56d4e198a5e","parentId":"7597772bba627e08","traceId":"00000000000000000a867bc06c94d26f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:30.272Z","sequence":8184,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_190966, resource-version: 9af7b690-6eb6-4419-858b-eb88827d8884]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4236b56d4e198a5e","parentId":"7597772bba627e08","traceId":"00000000000000000a867bc06c94d26f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:30.277Z","sequence":8185,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190966, resource-version: 43f9d048-c87f-4336-b674-3d44bbca9fa5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4236b56d4e198a5e","parentId":"7597772bba627e08","traceId":"00000000000000000a867bc06c94d26f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:30.28Z","sequence":8186,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_190966]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fc019c5ac60236b8","parentId":"8bb2980177fa4a9a","traceId":"00000000000000000a867bc06c94d26f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:30.393Z","sequence":8187,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190966]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fc019c5ac60236b8","parentId":"8bb2980177fa4a9a","traceId":"00000000000000000a867bc06c94d26f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:31.31Z","sequence":8188,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: BAFC240EBE03]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b7872fdc0949cc54","parentId":"e33be7684948a7fa","traceId":"000000000000000094b0220d869f26e3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:31.337Z","sequence":8189,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: BAFC240EBE03, resource-version: fc7f380c-0b04-4a47-906b-2ee1c603911e]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b7872fdc0949cc54","parentId":"e33be7684948a7fa","traceId":"000000000000000094b0220d869f26e3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:31.344Z","sequence":8190,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: BAFC240EBE03, resource-version: ab36f4ec-9290-4629-8f8f-3f28413be431]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b7872fdc0949cc54","parentId":"e33be7684948a7fa","traceId":"000000000000000094b0220d869f26e3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:31.347Z","sequence":8191,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: BAFC240EBE03]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d85fed7a492f4cbf","parentId":"60e4e218ec53adfe","traceId":"000000000000000094b0220d869f26e3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:31.473Z","sequence":8192,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: BAFC240EBE03]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d85fed7a492f4cbf","parentId":"60e4e218ec53adfe","traceId":"000000000000000094b0220d869f26e3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:31.783Z","sequence":8193,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFB7B7FA13A4943]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"545f310d8ab4f145","parentId":"da951d8233c7c1bb","traceId":"000000000000000061489b7cbde6c908","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:31.801Z","sequence":8194,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFB7B7FA13A4943, resource-version: 1c441e85-d078-47dd-bbf1-4d3cbdd3803c]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"545f310d8ab4f145","parentId":"da951d8233c7c1bb","traceId":"000000000000000061489b7cbde6c908","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:31.807Z","sequence":8195,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFB7B7FA13A4943, resource-version: 90d2f04e-98a2-4885-b5af-fdf16d9ceeb1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"545f310d8ab4f145","parentId":"da951d8233c7c1bb","traceId":"000000000000000061489b7cbde6c908","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:31.903Z","sequence":8196,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:31.903Z","sequence":8197,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_190966]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:31.913Z","sequence":8198,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-efc9246f-1375-4df7-b3fa-0f6498e0db8e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:31.993Z","sequence":8199,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFD829105E2CEE9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8b64955085ad8ebd","parentId":"ad9ebbcee7d77c23","traceId":"0000000000000000aedba58d82cbcf67","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:32.013Z","sequence":8200,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFD829105E2CEE9, resource-version: 1aa42c9c-7293-4efa-982d-84e414f93ecb]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8b64955085ad8ebd","parentId":"ad9ebbcee7d77c23","traceId":"0000000000000000aedba58d82cbcf67","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:32.019Z","sequence":8201,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFD829105E2CEE9, resource-version: 40c7df78-3123-4a84-bcf7-82040cb39542]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8b64955085ad8ebd","parentId":"ad9ebbcee7d77c23","traceId":"0000000000000000aedba58d82cbcf67","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:32.385Z","sequence":8202,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:32.385Z","sequence":8203,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFB7B7FA13A4943] for gateway [gateway_integrationtest_network_190966]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:32.385Z","sequence":8204,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:32.385Z","sequence":8205,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_190966]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:32.392Z","sequence":8206,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:32.392Z","sequence":8207,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:32.392Z","sequence":8208,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ea68953a-cac4-4e3e-a53d-9f9824e2fe34, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:32.601Z","sequence":8209,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7c062b81-cd1f-4446-977b-ce400890403f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:32.602Z","sequence":8210,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:32.602Z","sequence":8211,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFB7B7FA13A4943] for gateway [gateway_integrationtest_network_190966]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:32.602Z","sequence":8212,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:32.602Z","sequence":8213,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFB7B7FA13A4943] for gateway [gateway_integrationtest_network_190966]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:32.603Z","sequence":8214,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:32.603Z","sequence":8215,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFB7B7FA13A4943] for gateway [gateway_integrationtest_network_190966]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:32.611Z","sequence":8216,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:32.611Z","sequence":8217,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:32.611Z","sequence":8218,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:32.611Z","sequence":8219,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:32.76Z","sequence":8220,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:32.76Z","sequence":8221,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:33.187Z","sequence":8222,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e0421b85-eb44-4495-ac09-3cb65ebcfa6a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:33.549Z","sequence":8223,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1cabfa2a-8a64-4fb3-bcad-4a2977fd89a9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:33.839Z","sequence":8224,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3e052602-3178-492b-b6df-45fa8b1f0ab0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:33.84Z","sequence":8225,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:33.84Z","sequence":8226,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-BAFC240EBE03]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:33.87Z","sequence":8227,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-a598e1f8-83d7-48a7-87c4-ac9294b07e7c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:34.021Z","sequence":8228,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:34.021Z","sequence":8229,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: BAFC240EBE03]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:34.027Z","sequence":8230,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0385e7a2-a982-43bc-a643-12d696e2fad3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:34.031Z","sequence":8231,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:34.031Z","sequence":8232,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD829105E2CEE9] for gateway [BAFC240EBE03]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:34.041Z","sequence":8233,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:34.041Z","sequence":8234,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:34.326Z","sequence":8235,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d4ef3df1-0f55-438b-81b9-7610739699f2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:34.594Z","sequence":8236,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:34.594Z","sequence":8237,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AC4] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:34.6Z","sequence":8238,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:34.6Z","sequence":8239,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:34.606Z","sequence":8240,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3628bc56-04d7-4b96-92b2-432c9b10b615, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:39.685Z","sequence":8241,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:39.685Z","sequence":8242,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C22] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:39.709Z","sequence":8243,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:39.709Z","sequence":8244,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:39.716Z","sequence":8245,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8c23a067-a0d1-49ea-8a06-de19399652ac, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:40.011Z","sequence":8246,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF72AF848FFE4D6]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9b5d77931dfab9e6","parentId":"e7dd651392599293","traceId":"00000000000000006f2695c88b7294dd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:40.028Z","sequence":8247,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF72AF848FFE4D6]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9b5d77931dfab9e6","parentId":"e7dd651392599293","traceId":"00000000000000006f2695c88b7294dd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:42.669Z","sequence":8248,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFD829105E2CEE9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6590afd406dc46d4","parentId":"49be958cc39ebe04","traceId":"00000000000000005f7ec73724c1cb4f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:42.682Z","sequence":8249,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFD829105E2CEE9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6590afd406dc46d4","parentId":"49be958cc39ebe04","traceId":"00000000000000005f7ec73724c1cb4f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:48.241Z","sequence":8250,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/conditionall:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:48.241Z","sequence":8251,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: conditionall, device-id: 0008004B512D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:48.256Z","sequence":8252,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4fb9c0e5-3478-4e48-8769-ba7a835fa8e2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:48.261Z","sequence":8253,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:48.261Z","sequence":8254,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: conditionall]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:48.273Z","sequence":8255,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-4f6d82fd-7c19-4d8d-a570-45478a0cbf84, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:48.751Z","sequence":8256,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:48.751Z","sequence":8257,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB1000A67] for gateway [0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:48.768Z","sequence":8258,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:48.768Z","sequence":8259,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:48.777Z","sequence":8260,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-75d39bed-4248-4627-8fee-bc559ab44c4e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:51.549Z","sequence":8261,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:51.55Z","sequence":8262,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019CE] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:51.581Z","sequence":8263,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:51.581Z","sequence":8264,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:51.598Z","sequence":8265,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9b7d4280-9576-4a4d-b9b7-2f591daa7051, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:52.625Z","sequence":8266,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:52.625Z","sequence":8267,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001B01] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:52.652Z","sequence":8268,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:52.653Z","sequence":8269,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:52.665Z","sequence":8270,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e3252d06-2aa9-4528-861d-7ddd8bb8dfcb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:53.745Z","sequence":8271,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:53.745Z","sequence":8272,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:53.775Z","sequence":8273,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-77e54869-8c4c-48b6-beac-c4eb26072a9e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:55.605Z","sequence":8274,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:55.605Z","sequence":8275,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006B7] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:55.621Z","sequence":8276,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:55.622Z","sequence":8277,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:55.633Z","sequence":8278,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-122992b6-c165-47f8-b7fa-15c91b18258b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:59.001Z","sequence":8279,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFB7B7FA13A4943]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fe5ec1fa2767d26c","parentId":"cd638d20f34b7d6b","traceId":"00000000000000000a0ff024d10c2932","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:54:59.045Z","sequence":8280,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFB7B7FA13A4943]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fe5ec1fa2767d26c","parentId":"cd638d20f34b7d6b","traceId":"00000000000000000a0ff024d10c2932","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:02.457Z","sequence":8281,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:02.457Z","sequence":8282,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BD0] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:02.48Z","sequence":8283,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:02.481Z","sequence":8284,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:02.489Z","sequence":8285,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a8a8b975-61f3-447c-a866-0a3a49d5936b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:05.657Z","sequence":8286,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:05.657Z","sequence":8287,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BDE] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:05.684Z","sequence":8288,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:05.685Z","sequence":8289,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:05.701Z","sequence":8290,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-69a3e5ee-83f2-4d71-8644-74dc1abd69fa, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:12.729Z","sequence":8291,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: BAFC240EBE03]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ba5b51c9d131c3df","parentId":"eed95c2f2ec987f2","traceId":"00000000000000000e7722f5e93fb0c8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:12.765Z","sequence":8292,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: BAFC240EBE03]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ba5b51c9d131c3df","parentId":"eed95c2f2ec987f2","traceId":"00000000000000000e7722f5e93fb0c8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:13.469Z","sequence":8293,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:13.469Z","sequence":8294,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006D0] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:13.47Z","sequence":8295,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:13.47Z","sequence":8296,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:13.477Z","sequence":8297,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:13.477Z","sequence":8298,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:13.478Z","sequence":8299,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a5c212aa-fe21-48c3-b339-d3241839f5e4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:13.483Z","sequence":8300,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3367114a-1634-44a2-8171-fe87874c2d80, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:15.087Z","sequence":8301,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:15.087Z","sequence":8302,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oci]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:15.091Z","sequence":8303,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-0e05698e-64f3-4702-bc80-98a4b8fd0bce, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:15.093Z","sequence":8304,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:15.093Z","sequence":8305,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100016D] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:15.093Z","sequence":8306,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:15.093Z","sequence":8307,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100016D] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:15.101Z","sequence":8308,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:15.101Z","sequence":8309,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:15.102Z","sequence":8310,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:15.102Z","sequence":8311,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:15.104Z","sequence":8312,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4097991d-ca28-441f-bbad-a32aced676aa, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:15.105Z","sequence":8313,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ea8cd93a-a8f1-446e-b2ce-fb8bf034f533, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:15.755Z","sequence":8314,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:15.756Z","sequence":8315,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB1000215] for gateway [0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:15.77Z","sequence":8316,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:15.77Z","sequence":8317,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:15.773Z","sequence":8318,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f674d90b-f168-4f1c-a4e6-64c174a3a456, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:17.383Z","sequence":8319,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:17.383Z","sequence":8320,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001EB] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:17.399Z","sequence":8321,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:17.399Z","sequence":8322,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:17.404Z","sequence":8323,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-388fa60b-f331-4798-bb55-04044d4d7a08, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:17.432Z","sequence":8324,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:17.433Z","sequence":8325,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001EB] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:17.44Z","sequence":8326,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:17.44Z","sequence":8327,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:17.444Z","sequence":8328,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-03e9b2fd-0a94-481d-8dd3-9b6974d7e148, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:21.34Z","sequence":8329,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:21.34Z","sequence":8330,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B55] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:21.347Z","sequence":8331,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:21.347Z","sequence":8332,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:21.353Z","sequence":8333,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6008371a-d7c7-41fd-832c-f72fc7785f5f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:23.716Z","sequence":8334,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:23.717Z","sequence":8335,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BB84C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:23.733Z","sequence":8336,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0fb94b8e-a985-49a6-a21d-abf72a9d59b7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:23.737Z","sequence":8337,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:23.737Z","sequence":8338,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: lanxess]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:23.744Z","sequence":8339,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-c0f3938e-50ee-4831-b964-54cd0fd3bc55, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:24.735Z","sequence":8340,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:24.735Z","sequence":8341,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10013F9] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:24.747Z","sequence":8342,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:24.748Z","sequence":8343,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:24.757Z","sequence":8344,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4f68aecd-e6e2-4100-98ae-214be13d4d47, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:25.975Z","sequence":8345,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:25.975Z","sequence":8346,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 0008004B5135]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:26Z","sequence":8347,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b3e7d097-6cfa-4572-80d9-16c0b9b118e0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:29.945Z","sequence":8348,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:29.946Z","sequence":8349,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BBD1B]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:29.969Z","sequence":8350,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8b11c9d2-1405-476c-b9a6-bb5b1f116913, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:30.777Z","sequence":8351,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:30.777Z","sequence":8352,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AA1] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:30.797Z","sequence":8353,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:30.797Z","sequence":8354,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:30.809Z","sequence":8355,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-69d68443-ef55-434e-9754-2dd74fadad6e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:32.333Z","sequence":8356,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_190969]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"60c56972e2d5c074","parentId":"3f2fc936a20a803c","traceId":"0000000000000000a774d819bfbdf8c0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:32.392Z","sequence":8357,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_190969, resource-version: dd0e6012-d324-4d65-9836-b05c5a80d4ac]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"60c56972e2d5c074","parentId":"3f2fc936a20a803c","traceId":"0000000000000000a774d819bfbdf8c0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:32.409Z","sequence":8358,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190969, resource-version: d8991846-206a-4803-9742-a658776ae979]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"60c56972e2d5c074","parentId":"3f2fc936a20a803c","traceId":"0000000000000000a774d819bfbdf8c0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:32.415Z","sequence":8359,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_190969]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"abf625935393bed7","parentId":"88d046124d40ab39","traceId":"0000000000000000a774d819bfbdf8c0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:32.796Z","sequence":8360,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190969]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"abf625935393bed7","parentId":"88d046124d40ab39","traceId":"0000000000000000a774d819bfbdf8c0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:35.185Z","sequence":8361,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:35.185Z","sequence":8362,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100087C] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:35.192Z","sequence":8363,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:35.192Z","sequence":8364,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:35.198Z","sequence":8365,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-409a6dd1-ec71-4e9e-8067-01154f90160a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:35.577Z","sequence":8366,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/arkema:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:35.578Z","sequence":8367,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: arkema, device-id: 0008004AE119]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:35.583Z","sequence":8368,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d697d06f-3db1-4bc9-9d0e-3fefd9ccc3b7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:35.588Z","sequence":8369,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:35.588Z","sequence":8370,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: arkema]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:35.591Z","sequence":8371,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-90d91b44-9793-4864-a81d-696c0dc527c5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:35.747Z","sequence":8372,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_190964]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e5eb09c63b0e6aa2","parentId":"909db3b5d6d86d65","traceId":"0000000000000000d0f527cef65d0f27","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:35.756Z","sequence":8373,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_190966]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"33057b4b7e28dde2","parentId":"a4c94713613e328d","traceId":"0000000000000000e7fa85576122932d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:35.764Z","sequence":8374,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190964]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e5eb09c63b0e6aa2","parentId":"909db3b5d6d86d65","traceId":"0000000000000000d0f527cef65d0f27","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:35.78Z","sequence":8375,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190966]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"33057b4b7e28dde2","parentId":"a4c94713613e328d","traceId":"0000000000000000e7fa85576122932d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:36.103Z","sequence":8376,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_190971]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"72e0d3fddbb0bf67","parentId":"75f5cad87e11cf39","traceId":"0000000000000000b6dab83697e2dc99","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:36.131Z","sequence":8377,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_190971, resource-version: 11ea0918-fa0a-41bd-9aac-ea8394c1e37f]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"72e0d3fddbb0bf67","parentId":"75f5cad87e11cf39","traceId":"0000000000000000b6dab83697e2dc99","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:36.134Z","sequence":8378,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_190972]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"af0d575f364cac4d","parentId":"1d00e6a096708d34","traceId":"000000000000000074bfa50cc2fe841d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:36.138Z","sequence":8379,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190971, resource-version: 5b3e04bf-f318-4c87-95f4-32f14a20b1dd]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"72e0d3fddbb0bf67","parentId":"75f5cad87e11cf39","traceId":"0000000000000000b6dab83697e2dc99","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:36.141Z","sequence":8380,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_190971]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d813d3ce71ac6947","parentId":"3d8bef2f23334498","traceId":"0000000000000000b6dab83697e2dc99","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:36.161Z","sequence":8381,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_190972, resource-version: 0190d3c6-bd4b-4d0c-a18c-d83bc32107dd]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"af0d575f364cac4d","parentId":"1d00e6a096708d34","traceId":"000000000000000074bfa50cc2fe841d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:36.167Z","sequence":8382,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190972, resource-version: ef62345e-a751-41aa-b246-9c97583480e9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"af0d575f364cac4d","parentId":"1d00e6a096708d34","traceId":"000000000000000074bfa50cc2fe841d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:36.172Z","sequence":8383,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_190972]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b9c4f7b2e0d650c8","parentId":"e488ec00e781273b","traceId":"000000000000000074bfa50cc2fe841d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:36.192Z","sequence":8384,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 7543150136F1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c4080860140193a6","parentId":"5d2da0cf5f22fac4","traceId":"0000000000000000e4896d543280bebe","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:36.208Z","sequence":8385,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 7543150136F1, resource-version: 7c2d31c6-3811-45a8-900c-e779944986c2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c4080860140193a6","parentId":"5d2da0cf5f22fac4","traceId":"0000000000000000e4896d543280bebe","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:36.214Z","sequence":8386,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 7543150136F1, resource-version: b4f4feaf-7093-4469-a65e-c152a2d26973]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c4080860140193a6","parentId":"5d2da0cf5f22fac4","traceId":"0000000000000000e4896d543280bebe","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:36.219Z","sequence":8387,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 7543150136F1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7f4c60f63aef981a","parentId":"4c5093699c8fdaf1","traceId":"0000000000000000e4896d543280bebe","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:36.227Z","sequence":8388,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF7260F36492E13]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"92572d7493159797","parentId":"fe8cd669585f26b3","traceId":"0000000000000000a6c483b73d3dab64","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:36.247Z","sequence":8389,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF7260F36492E13, resource-version: ba532c1e-b58d-4b64-9e7a-3e16f0cd2317]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"92572d7493159797","parentId":"fe8cd669585f26b3","traceId":"0000000000000000a6c483b73d3dab64","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:36.254Z","sequence":8390,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF7260F36492E13, resource-version: c8b54d19-3f72-46a8-8bbc-8b641eebdd9b]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"92572d7493159797","parentId":"fe8cd669585f26b3","traceId":"0000000000000000a6c483b73d3dab64","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:36.293Z","sequence":8391,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190971]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d813d3ce71ac6947","parentId":"3d8bef2f23334498","traceId":"0000000000000000b6dab83697e2dc99","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:36.408Z","sequence":8392,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190972]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b9c4f7b2e0d650c8","parentId":"e488ec00e781273b","traceId":"000000000000000074bfa50cc2fe841d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:36.537Z","sequence":8393,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 7543150136F1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7f4c60f63aef981a","parentId":"4c5093699c8fdaf1","traceId":"0000000000000000e4896d543280bebe","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:36.845Z","sequence":8394,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF30AF5C765CFE1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cd11c04bca4ba40d","parentId":"3462cb3334e30e67","traceId":"0000000000000000c83e2189ae7de034","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:36.866Z","sequence":8395,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF30AF5C765CFE1, resource-version: b32430fe-9be4-4eea-a220-9cf2add49006]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cd11c04bca4ba40d","parentId":"3462cb3334e30e67","traceId":"0000000000000000c83e2189ae7de034","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:36.873Z","sequence":8396,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF30AF5C765CFE1, resource-version: 9a17c153-c9c7-4a55-b8a2-2515addbcf17]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cd11c04bca4ba40d","parentId":"3462cb3334e30e67","traceId":"0000000000000000c83e2189ae7de034","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:37.27Z","sequence":8397,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF0AEAB62E3142A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ba26101261a14dd6","parentId":"49ee40885728506d","traceId":"000000000000000018dd9776d56bfe7a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:37.288Z","sequence":8398,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF0AEAB62E3142A, resource-version: 5ca09f8f-0b39-43b2-9463-eca766806f3f]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ba26101261a14dd6","parentId":"49ee40885728506d","traceId":"000000000000000018dd9776d56bfe7a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:37.296Z","sequence":8399,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF0AEAB62E3142A, resource-version: 27a91519-4fde-493f-b249-688df0be6920]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ba26101261a14dd6","parentId":"49ee40885728506d","traceId":"000000000000000018dd9776d56bfe7a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:37.344Z","sequence":8400,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:37.344Z","sequence":8401,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_190969]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:37.358Z","sequence":8402,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-3ee89396-f526-4cc7-8579-85fa37b3b4de, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:37.492Z","sequence":8403,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:37.493Z","sequence":8404,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF7260F36492E13] for gateway [gateway_integrationtest_network_190969]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:37.493Z","sequence":8405,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:37.493Z","sequence":8406,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_190969]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:37.498Z","sequence":8407,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-848a708d-6613-45d8-bdae-90e75a49ca17, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:37.498Z","sequence":8408,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:37.498Z","sequence":8409,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:37.59Z","sequence":8410,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF0AEAB62E3142A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e7d2abbb2615d9e7","parentId":"41106e1d4a5e08ff","traceId":"00000000000000003d0fcc5a5bfec4c3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:37.608Z","sequence":8411,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF0AEAB62E3142A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e7d2abbb2615d9e7","parentId":"41106e1d4a5e08ff","traceId":"00000000000000003d0fcc5a5bfec4c3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:37.729Z","sequence":8412,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-420d801a-f13c-48e1-87b5-6d5442911cc1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:37.94Z","sequence":8413,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:37.941Z","sequence":8414,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_190972]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:37.958Z","sequence":8415,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-c96bf584-1e22-427c-b0e4-19eb2b09b9e0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:38.007Z","sequence":8416,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_190971]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2638998d3f6b4458","parentId":"7fecef733aa45471","traceId":"0000000000000000c055e5313907862c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:38.01Z","sequence":8417,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF8862F34F9ED14]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ed93c28cb5cf1c5a","parentId":"4c08e5ecbec63be2","traceId":"0000000000000000a2931c9f01befb26","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:38.024Z","sequence":8418,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190971]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2638998d3f6b4458","parentId":"7fecef733aa45471","traceId":"0000000000000000c055e5313907862c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:38.026Z","sequence":8419,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF8862F34F9ED14, resource-version: e7ef281f-b02d-4d73-b0a7-9d682f319aeb]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ed93c28cb5cf1c5a","parentId":"4c08e5ecbec63be2","traceId":"0000000000000000a2931c9f01befb26","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:38.033Z","sequence":8420,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF8862F34F9ED14, resource-version: f647eaa4-0f7e-41c8-bb4b-fdcc7c1b58f8]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ed93c28cb5cf1c5a","parentId":"4c08e5ecbec63be2","traceId":"0000000000000000a2931c9f01befb26","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:38.085Z","sequence":8421,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:38.086Z","sequence":8422,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF30AF5C765CFE1] for gateway [gateway_integrationtest_network_190972]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:38.087Z","sequence":8423,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:38.087Z","sequence":8424,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_190972]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:38.093Z","sequence":8425,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d80c017b-fd08-41e0-b2eb-c31a99e43bb6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:38.093Z","sequence":8426,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.8.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:38.093Z","sequence":8427,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:38.103Z","sequence":8428,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:38.103Z","sequence":8429,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:38.11Z","sequence":8430,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-29d884f4-98d1-427f-8048-61445d20354c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:38.114Z","sequence":8431,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:38.114Z","sequence":8432,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-7543150136F1]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:38.453Z","sequence":8433,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-cb64cc78-4285-4e26-bae5-2d836a896207, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:38.454Z","sequence":8434,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-3b91c2a5-b77a-473e-90ed-5fae886dba0f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:38.601Z","sequence":8435,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:38.601Z","sequence":8436,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 7543150136F1]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:38.607Z","sequence":8437,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b09b3297-202e-4736-a535-9402604ab6f5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:39.56Z","sequence":8438,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: D320F166B0ED]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3e4613c391f5ff3c","parentId":"85adcd9496790876","traceId":"0000000000000000d379b306aecc9f26","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:39.594Z","sequence":8439,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: D320F166B0ED, resource-version: bab13c68-9b86-4713-ad33-072a37ac4a26]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3e4613c391f5ff3c","parentId":"85adcd9496790876","traceId":"0000000000000000d379b306aecc9f26","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:39.604Z","sequence":8440,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: D320F166B0ED, resource-version: 635c176c-fbfd-43b1-af89-c0f9317f736c]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3e4613c391f5ff3c","parentId":"85adcd9496790876","traceId":"0000000000000000d379b306aecc9f26","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:39.609Z","sequence":8441,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: D320F166B0ED]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1fbeeab1c76bbbaf","parentId":"a97f538246601510","traceId":"0000000000000000d379b306aecc9f26","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:39.868Z","sequence":8442,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: D320F166B0ED]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1fbeeab1c76bbbaf","parentId":"a97f538246601510","traceId":"0000000000000000d379b306aecc9f26","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:40.437Z","sequence":8443,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF7BCD81C606CC6]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9f925e6ec86900f1","parentId":"4f1efe15f38922fe","traceId":"00000000000000005a28540468761d81","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:40.459Z","sequence":8444,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF7BCD81C606CC6, resource-version: bc334d93-37f9-4e81-a033-3937dbb99f5f]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9f925e6ec86900f1","parentId":"4f1efe15f38922fe","traceId":"00000000000000005a28540468761d81","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:40.466Z","sequence":8445,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF7BCD81C606CC6, resource-version: be25c82f-da8c-40b1-8c0a-69d8814bc6f2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9f925e6ec86900f1","parentId":"4f1efe15f38922fe","traceId":"00000000000000005a28540468761d81","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:41.997Z","sequence":8446,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:41.997Z","sequence":8447,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-D320F166B0ED]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:42.01Z","sequence":8448,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-91df5e3c-fa16-404d-b35b-b1c9be524caa, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:42.131Z","sequence":8449,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:42.131Z","sequence":8450,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: D320F166B0ED]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:42.136Z","sequence":8451,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6088f87f-9b16-420d-963c-97622b030f36, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:42.14Z","sequence":8452,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:42.14Z","sequence":8453,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF7BCD81C606CC6] for gateway [D320F166B0ED]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:42.146Z","sequence":8454,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:42.146Z","sequence":8455,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:42.362Z","sequence":8456,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6a6809e6-b45a-4407-9b78-d3c56471bb60, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:42.417Z","sequence":8457,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF30AF5C765CFE1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"53c274978b8ca2a7","parentId":"20860f56b309f817","traceId":"00000000000000003e8909bc81d364dc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:42.433Z","sequence":8458,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF30AF5C765CFE1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"53c274978b8ca2a7","parentId":"20860f56b309f817","traceId":"00000000000000003e8909bc81d364dc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:42.666Z","sequence":8459,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_190972]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"96b1507535c772f9","parentId":"c1a1e4779bef8f5f","traceId":"000000000000000091f032486e3ad1b2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:42.683Z","sequence":8460,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190972]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"96b1507535c772f9","parentId":"c1a1e4779bef8f5f","traceId":"000000000000000091f032486e3ad1b2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:42.826Z","sequence":8461,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: F1420E2BC619]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c870f3cb74872641","parentId":"d79c5cd1fdf889de","traceId":"0000000000000000dd990fb2ff4c13e4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:42.844Z","sequence":8462,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: F1420E2BC619, resource-version: 7f2ff352-c146-4b59-9c81-b7cf2481f9ec]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c870f3cb74872641","parentId":"d79c5cd1fdf889de","traceId":"0000000000000000dd990fb2ff4c13e4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:42.851Z","sequence":8463,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: F1420E2BC619, resource-version: 371e026b-5cba-46b2-ba84-f545e22751d5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c870f3cb74872641","parentId":"d79c5cd1fdf889de","traceId":"0000000000000000dd990fb2ff4c13e4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:42.857Z","sequence":8464,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: F1420E2BC619]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"79b8d47c6938c80f","parentId":"bb71fae71ff63795","traceId":"0000000000000000dd990fb2ff4c13e4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:43.018Z","sequence":8465,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: F1420E2BC619]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"79b8d47c6938c80f","parentId":"bb71fae71ff63795","traceId":"0000000000000000dd990fb2ff4c13e4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:43.334Z","sequence":8466,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFED9FA1715A76B]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3279a8bf290accd4","parentId":"da29f51918226a73","traceId":"00000000000000002c9d363d743060cc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:43.361Z","sequence":8467,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFED9FA1715A76B, resource-version: 77c9960e-6b61-4bc7-ad92-390769cc1cdd]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3279a8bf290accd4","parentId":"da29f51918226a73","traceId":"00000000000000002c9d363d743060cc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:43.372Z","sequence":8468,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFED9FA1715A76B, resource-version: 519bc9b1-0907-4e70-b54c-b9999b3195cf]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3279a8bf290accd4","parentId":"da29f51918226a73","traceId":"00000000000000002c9d363d743060cc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:44.308Z","sequence":8469,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFED9FA1715A76B]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f6735d24b725c926","parentId":"ecc9c740656f0b08","traceId":"00000000000000008f5e8b3375b14136","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:44.326Z","sequence":8470,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 89CAB3CCA2D7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"da6297828ce134a6","parentId":"74bd99f1f8936c94","traceId":"0000000000000000dbe0e0b5e0662f58","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:44.339Z","sequence":8471,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFED9FA1715A76B]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f6735d24b725c926","parentId":"ecc9c740656f0b08","traceId":"00000000000000008f5e8b3375b14136","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:44.368Z","sequence":8472,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 89CAB3CCA2D7, resource-version: 483cd9dc-0a50-4944-acf2-151a3b490953]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"da6297828ce134a6","parentId":"74bd99f1f8936c94","traceId":"0000000000000000dbe0e0b5e0662f58","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:44.387Z","sequence":8473,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [command-router@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:44.387Z","sequence":8474,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF8862F34F9ED14]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:44.39Z","sequence":8475,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 89CAB3CCA2D7, resource-version: 3836cd74-e11a-44f3-9f80-1d6f238255c1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"da6297828ce134a6","parentId":"74bd99f1f8936c94","traceId":"0000000000000000dbe0e0b5e0662f58","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:44.397Z","sequence":8476,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 89CAB3CCA2D7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e9d062418a04d288","parentId":"b4704dcd7a7bab3f","traceId":"0000000000000000dbe0e0b5e0662f58","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:45.197Z","sequence":8477,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 89CAB3CCA2D7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e9d062418a04d288","parentId":"b4704dcd7a7bab3f","traceId":"0000000000000000dbe0e0b5e0662f58","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:45.397Z","sequence":8478,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: F1420E2BC619]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3b30ea97292997d0","parentId":"f04ec9affb8fa90b","traceId":"00000000000000006ab9e33642904d01","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:45.448Z","sequence":8479,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: F1420E2BC619]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3b30ea97292997d0","parentId":"f04ec9affb8fa90b","traceId":"00000000000000006ab9e33642904d01","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:45.467Z","sequence":8480,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-448fb289-1437-43fc-a89e-2430c0afe189, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:46.097Z","sequence":8481,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF916A5DB3DF0B5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"208104b94b026154","parentId":"fcc453cdc23e1f35","traceId":"00000000000000006b732035d0a50d75","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:46.157Z","sequence":8482,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF916A5DB3DF0B5, resource-version: fd5ae1ec-0e7a-4daa-b56e-f89a00c16f4a]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"208104b94b026154","parentId":"fcc453cdc23e1f35","traceId":"00000000000000006b732035d0a50d75","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:46.165Z","sequence":8483,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF916A5DB3DF0B5, resource-version: c6b7cbe2-5b01-41d3-ba06-57a98f73dcfd]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"208104b94b026154","parentId":"fcc453cdc23e1f35","traceId":"00000000000000006b732035d0a50d75","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:46.529Z","sequence":8484,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF7BCD81C606CC6]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a65cb95aba6dd660","parentId":"c3dc8dec7c88ac2e","traceId":"000000000000000073b66f897c23c44d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:46.553Z","sequence":8485,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF7BCD81C606CC6]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a65cb95aba6dd660","parentId":"c3dc8dec7c88ac2e","traceId":"000000000000000073b66f897c23c44d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:46.683Z","sequence":8486,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF916A5DB3DF0B5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d2f7442fcc108d6f","parentId":"dcccafd9ee8ea624","traceId":"0000000000000000dffce7639c88387c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:46.687Z","sequence":8487,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: D320F166B0ED]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"942c58fba2871fa7","parentId":"59d869bf7a3f7d48","traceId":"0000000000000000fff3ac0f5e2ab9e1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:46.704Z","sequence":8488,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF916A5DB3DF0B5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d2f7442fcc108d6f","parentId":"dcccafd9ee8ea624","traceId":"0000000000000000dffce7639c88387c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:46.704Z","sequence":8489,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: D320F166B0ED]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"942c58fba2871fa7","parentId":"59d869bf7a3f7d48","traceId":"0000000000000000fff3ac0f5e2ab9e1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:46.985Z","sequence":8490,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 737847257EF7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9c2d6dd4ee4b9101","parentId":"b477340d540807d6","traceId":"0000000000000000b6f80715769cd18e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:47.005Z","sequence":8491,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 737847257EF7, resource-version: bb4f16f2-e068-4a8d-ad2d-68647ad64c71]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9c2d6dd4ee4b9101","parentId":"b477340d540807d6","traceId":"0000000000000000b6f80715769cd18e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:47.011Z","sequence":8492,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 737847257EF7, resource-version: a04a1433-20a8-4162-9054-d8559ce56380]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9c2d6dd4ee4b9101","parentId":"b477340d540807d6","traceId":"0000000000000000b6f80715769cd18e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:47.013Z","sequence":8493,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 737847257EF7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"db1a754c8ffc75b7","parentId":"20d315d27d259389","traceId":"0000000000000000b6f80715769cd18e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:47.057Z","sequence":8494,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 89CAB3CCA2D7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5726ca408ccb7057","parentId":"2559ac2903652736","traceId":"0000000000000000e2fcd0d86eebae70","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:47.079Z","sequence":8495,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 89CAB3CCA2D7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5726ca408ccb7057","parentId":"2559ac2903652736","traceId":"0000000000000000e2fcd0d86eebae70","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:47.256Z","sequence":8496,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 737847257EF7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"db1a754c8ffc75b7","parentId":"20d315d27d259389","traceId":"0000000000000000b6f80715769cd18e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:47.915Z","sequence":8497,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF7589F068E11CA]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ba0b3698a16fbe33","parentId":"1405c21784c13e44","traceId":"0000000000000000897c2d15b396277f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:47.916Z","sequence":8498,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_190977]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b942cebcd05fef26","parentId":"774f3a30c13f0c85","traceId":"0000000000000000e7a373e34891ffc3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:47.931Z","sequence":8499,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF7589F068E11CA, resource-version: b4b69913-537b-42cf-900b-314f4450a4e9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ba0b3698a16fbe33","parentId":"1405c21784c13e44","traceId":"0000000000000000897c2d15b396277f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:47.933Z","sequence":8500,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_190977, resource-version: 8e3b68d5-188d-4f7b-8360-e004a7622807]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b942cebcd05fef26","parentId":"774f3a30c13f0c85","traceId":"0000000000000000e7a373e34891ffc3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:47.938Z","sequence":8501,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF7589F068E11CA, resource-version: d59ca4f3-5814-4917-bbac-a09fab65aec0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ba0b3698a16fbe33","parentId":"1405c21784c13e44","traceId":"0000000000000000897c2d15b396277f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:47.94Z","sequence":8502,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190977, resource-version: c7c6e8b5-2007-4979-92e9-e9d4919a700a]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b942cebcd05fef26","parentId":"774f3a30c13f0c85","traceId":"0000000000000000e7a373e34891ffc3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:47.944Z","sequence":8503,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_190977]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bbd9b3892dbc6ef8","parentId":"5a6abcbe86a95eed","traceId":"0000000000000000e7a373e34891ffc3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:48.154Z","sequence":8504,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190977]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bbd9b3892dbc6ef8","parentId":"5a6abcbe86a95eed","traceId":"0000000000000000e7a373e34891ffc3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:48.786Z","sequence":8505,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFFE906169A35A0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"998964d14645f95e","parentId":"012e9c42fea90e54","traceId":"0000000000000000c4019ad4509d3b6f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:48.803Z","sequence":8506,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFFE906169A35A0, resource-version: 04d31598-e3b2-4560-ac81-c0409ce4a740]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"998964d14645f95e","parentId":"012e9c42fea90e54","traceId":"0000000000000000c4019ad4509d3b6f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:48.81Z","sequence":8507,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFFE906169A35A0, resource-version: 98169c27-cafa-472f-84c1-c6e7f9ae0841]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"998964d14645f95e","parentId":"012e9c42fea90e54","traceId":"0000000000000000c4019ad4509d3b6f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:49.024Z","sequence":8508,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFFE906169A35A0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"95a0cd987e418f9f","parentId":"b3b74da80db8193e","traceId":"00000000000000002675d5ab6229d8e0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:49.053Z","sequence":8509,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFFE906169A35A0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"95a0cd987e418f9f","parentId":"b3b74da80db8193e","traceId":"00000000000000002675d5ab6229d8e0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:49.097Z","sequence":8510,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:49.097Z","sequence":8511,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-737847257EF7]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:49.122Z","sequence":8512,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-4924aafa-e09a-4eed-a3cc-7e09dee6d815, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:49.247Z","sequence":8513,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:49.247Z","sequence":8514,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 737847257EF7]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:49.254Z","sequence":8515,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1dad6bc6-a983-4e70-ba09-0e62848e97e7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:49.26Z","sequence":8516,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:49.26Z","sequence":8517,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF7589F068E11CA] for gateway [737847257EF7]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:49.269Z","sequence":8518,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.3.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:49.269Z","sequence":8519,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:49.289Z","sequence":8520,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_190977]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a8a35eb0def3851a","parentId":"b13419f278804517","traceId":"000000000000000012b801e78455858c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:49.356Z","sequence":8521,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190977]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a8a35eb0def3851a","parentId":"b13419f278804517","traceId":"000000000000000012b801e78455858c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:49.826Z","sequence":8522,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8606785e-2ddd-44dc-a4e2-1c12419177a6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:49.834Z","sequence":8523,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_190978]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cd4f2dbe9b751adf","parentId":"36e467883fbf4825","traceId":"0000000000000000b577c7aad84a3e86","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:49.874Z","sequence":8524,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_190978, resource-version: 3910b68f-b626-4219-a9e2-3e949b82185d]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cd4f2dbe9b751adf","parentId":"36e467883fbf4825","traceId":"0000000000000000b577c7aad84a3e86","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:49.897Z","sequence":8525,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190978, resource-version: de21bd55-ef3a-4fcc-8bf4-4c942df4f50c]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cd4f2dbe9b751adf","parentId":"36e467883fbf4825","traceId":"0000000000000000b577c7aad84a3e86","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:49.901Z","sequence":8526,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_190978]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"51a7957eb197d035","parentId":"49600ee97fd396c5","traceId":"0000000000000000b577c7aad84a3e86","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:50.169Z","sequence":8527,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190978]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"51a7957eb197d035","parentId":"49600ee97fd396c5","traceId":"0000000000000000b577c7aad84a3e86","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:50.981Z","sequence":8528,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:50.981Z","sequence":8529,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: dow]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:50.985Z","sequence":8530,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-cb43ef0e-5e41-48ec-8efa-0a7418ab0294, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:50.992Z","sequence":8531,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/dow:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:50.993Z","sequence":8532,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: dow, type: hashed-password, auth-id: auth-gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:51.025Z","sequence":8533,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-ba919a68-1833-4e87-8b61-02cd70b65ef9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:51.124Z","sequence":8534,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF984C260B199E8]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7022cb5973a04c5f","parentId":"aefb95c6091f57cb","traceId":"000000000000000029ca0d31507bedf5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:51.148Z","sequence":8535,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF984C260B199E8, resource-version: 00f5d393-8607-4b86-89eb-6bb8af53ddc3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7022cb5973a04c5f","parentId":"aefb95c6091f57cb","traceId":"000000000000000029ca0d31507bedf5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:51.155Z","sequence":8536,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF984C260B199E8, resource-version: e886c7b9-c8f7-4b48-ba32-570685b8ff63]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7022cb5973a04c5f","parentId":"aefb95c6091f57cb","traceId":"000000000000000029ca0d31507bedf5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:51.352Z","sequence":8537,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:51.356Z","sequence":8538,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 70B3D57BB100127F] for gateway [gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:51.369Z","sequence":8539,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:51.369Z","sequence":8540,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:51.377Z","sequence":8541,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e36c0235-a0bf-4880-80a0-97507ed3ba71, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:52.186Z","sequence":8542,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF7260F36492E13]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"278aa0aa34a9c37c","parentId":"27e0a7bf2553fb4f","traceId":"0000000000000000bf4450b7ea87640f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:52.225Z","sequence":8543,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF7260F36492E13]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"278aa0aa34a9c37c","parentId":"27e0a7bf2553fb4f","traceId":"0000000000000000bf4450b7ea87640f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:52.257Z","sequence":8544,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:52.257Z","sequence":8545,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_190978]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:52.305Z","sequence":8546,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-c469d90e-2167-445c-bb9f-9a25b2ba3f1d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:52.433Z","sequence":8547,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:52.433Z","sequence":8548,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF984C260B199E8] for gateway [gateway_integrationtest_network_190978]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:52.433Z","sequence":8549,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:52.434Z","sequence":8550,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_190978]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:52.46Z","sequence":8551,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.7.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:52.461Z","sequence":8552,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:52.462Z","sequence":8553,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-34872e2e-1e39-49cd-811c-1f9f57e2db30, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:53.176Z","sequence":8554,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a0f4950a-04b4-4255-864f-b70986d2be04, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:53.179Z","sequence":8555,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:53.18Z","sequence":8556,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-00GWALP120IT]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:53.18Z","sequence":8557,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:53.181Z","sequence":8558,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BBD1C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:53.193Z","sequence":8559,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b31c96c9-4561-49bc-9609-225992e6be32, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:53.221Z","sequence":8560,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-e90620d7-4a85-4ca3-aa38-3f5f24441933, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:53.358Z","sequence":8561,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:53.358Z","sequence":8562,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 4A38383700300023] for gateway [00GWALP120IT]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:53.377Z","sequence":8563,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:0.3.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:53.377Z","sequence":8564,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7\",\n \"upstream-message-mapper\" : \"upstream_dash7\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:53.389Z","sequence":8565,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_190969]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d72618922134e5f3","parentId":"d66ccd40104d99ea","traceId":"0000000000000000ebd92e87b76bebae","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:53.45Z","sequence":8566,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190969]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d72618922134e5f3","parentId":"d66ccd40104d99ea","traceId":"0000000000000000ebd92e87b76bebae","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:53.727Z","sequence":8567,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF7589F068E11CA]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9c44a2e4ea8d9789","parentId":"d2fc03261d4f8bf6","traceId":"0000000000000000ae38803f393525fc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:53.747Z","sequence":8568,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF7589F068E11CA]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9c44a2e4ea8d9789","parentId":"d2fc03261d4f8bf6","traceId":"0000000000000000ae38803f393525fc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:54.014Z","sequence":8569,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0392261e-634a-48ff-b16d-1b4d08d0bd6d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:54.397Z","sequence":8570,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 737847257EF7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a642da93a3ace450","parentId":"8560cbfb5f16b99d","traceId":"0000000000000000df6d6c0fd7b9d7fa","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:54.421Z","sequence":8571,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 737847257EF7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a642da93a3ace450","parentId":"8560cbfb5f16b99d","traceId":"0000000000000000df6d6c0fd7b9d7fa","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:55.549Z","sequence":8572,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_190979]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5b995e8acdced0c9","parentId":"c4deb4b965adec18","traceId":"0000000000000000f8b6cd763c83be7e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:55.609Z","sequence":8573,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_190979, resource-version: 41ae9a40-8d33-4648-bf8e-308740dd4af0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5b995e8acdced0c9","parentId":"c4deb4b965adec18","traceId":"0000000000000000f8b6cd763c83be7e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:55.625Z","sequence":8574,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190979, resource-version: 5e7e76dd-62b8-421e-b5f9-0aa3d6343406]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5b995e8acdced0c9","parentId":"c4deb4b965adec18","traceId":"0000000000000000f8b6cd763c83be7e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:55.629Z","sequence":8575,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_190979]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"60c2af29138c33a5","parentId":"125035788173b1a7","traceId":"0000000000000000f8b6cd763c83be7e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:55.983Z","sequence":8576,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190979]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"60c2af29138c33a5","parentId":"125035788173b1a7","traceId":"0000000000000000f8b6cd763c83be7e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:56.519Z","sequence":8577,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_190980]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"09d65536a54a1cba","parentId":"d6ec7f6dff4fe0e7","traceId":"0000000000000000738dd52c0fb032c5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:56.539Z","sequence":8578,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_190980, resource-version: 957bb0e4-9eb4-4778-833e-ab8324b548c1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"09d65536a54a1cba","parentId":"d6ec7f6dff4fe0e7","traceId":"0000000000000000738dd52c0fb032c5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:56.546Z","sequence":8579,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190980, resource-version: bf6b4ac8-783b-4cd4-8806-881b4de7b053]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"09d65536a54a1cba","parentId":"d6ec7f6dff4fe0e7","traceId":"0000000000000000738dd52c0fb032c5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:56.549Z","sequence":8580,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_190980]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f3c80dc7d9d1c4d7","parentId":"24267cfed7cd0dc8","traceId":"0000000000000000738dd52c0fb032c5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:56.709Z","sequence":8581,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFEF42A38E6C758]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c6be57ce9d503402","parentId":"05aadbfd537e67a5","traceId":"0000000000000000c03e7f939aad7801","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:56.725Z","sequence":8582,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFEF42A38E6C758, resource-version: 844f21f7-f82a-476b-ba04-ced2cc8f08a3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c6be57ce9d503402","parentId":"05aadbfd537e67a5","traceId":"0000000000000000c03e7f939aad7801","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:56.731Z","sequence":8583,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFEF42A38E6C758, resource-version: 8a15df64-0656-4c6d-868a-a2c663e4c8d0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c6be57ce9d503402","parentId":"05aadbfd537e67a5","traceId":"0000000000000000c03e7f939aad7801","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:56.817Z","sequence":8584,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190980]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f3c80dc7d9d1c4d7","parentId":"24267cfed7cd0dc8","traceId":"0000000000000000738dd52c0fb032c5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:56.819Z","sequence":8585,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF984C260B199E8]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4c8848cc9c830d39","parentId":"8a31ac427c645246","traceId":"00000000000000004fabbad1f9f8c285","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:56.836Z","sequence":8586,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF984C260B199E8]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4c8848cc9c830d39","parentId":"8a31ac427c645246","traceId":"00000000000000004fabbad1f9f8c285","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:57.25Z","sequence":8587,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_190978]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"98e4f30a9433416e","parentId":"939a2bef92e89f59","traceId":"00000000000000003813bd481719dc20","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:57.275Z","sequence":8588,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190978]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"98e4f30a9433416e","parentId":"939a2bef92e89f59","traceId":"00000000000000003813bd481719dc20","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:57.873Z","sequence":8589,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:57.873Z","sequence":8590,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_190979]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:57.887Z","sequence":8591,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-27280f93-747f-43f4-8377-6daa5a7b7566, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:58.017Z","sequence":8592,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:58.017Z","sequence":8593,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFEF42A38E6C758] for gateway [gateway_integrationtest_network_190979]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:58.018Z","sequence":8594,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:58.018Z","sequence":8595,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_190979]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:58.027Z","sequence":8596,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.5.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:58.027Z","sequence":8597,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:58.028Z","sequence":8598,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e4f5c8d3-abab-43ca-8cbe-0cbd9d0acab1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:58.699Z","sequence":8599,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d94c1993-4c23-406f-82bd-e4c99d8a35ef, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:59.345Z","sequence":8600,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF5A0E74ECFC361]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c795509eee1f59d6","parentId":"61d2d769c48e5905","traceId":"00000000000000008858a25067adc543","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:59.369Z","sequence":8601,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF5A0E74ECFC361, resource-version: 87a6c637-31fb-4a7c-a41b-c1b593c6eeef]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c795509eee1f59d6","parentId":"61d2d769c48e5905","traceId":"00000000000000008858a25067adc543","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:55:59.375Z","sequence":8602,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF5A0E74ECFC361, resource-version: 2e815c78-a012-4729-a476-6dac34cfe5c0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c795509eee1f59d6","parentId":"61d2d769c48e5905","traceId":"00000000000000008858a25067adc543","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:01.007Z","sequence":8603,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:01.007Z","sequence":8604,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_190980]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:01.027Z","sequence":8605,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-d0c03634-5aa4-4734-85aa-9642f7e6f95a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:01.149Z","sequence":8606,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:01.149Z","sequence":8607,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF5A0E74ECFC361] for gateway [gateway_integrationtest_network_190980]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:01.15Z","sequence":8608,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:01.15Z","sequence":8609,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_190980]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:01.161Z","sequence":8610,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:01.161Z","sequence":8611,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:01.162Z","sequence":8612,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-af0e446a-a96c-45a3-94dc-64401c7482cc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:01.793Z","sequence":8613,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-84468fa6-72dc-436d-b057-93d0988d4e00, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:02.643Z","sequence":8614,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:02.643Z","sequence":8615,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: shell]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:02.657Z","sequence":8616,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-494c7d3f-0aea-4593-8c89-8619321c0997, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:02.664Z","sequence":8617,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/shell:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:02.665Z","sequence":8618,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: shell, type: hashed-password, auth-id: auth-gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:02.697Z","sequence":8619,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-60efc19e-2c26-44e4-805a-a0458c173502, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:02.814Z","sequence":8620,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:02.814Z","sequence":8621,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019DD] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:02.839Z","sequence":8622,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:02.839Z","sequence":8623,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:02.852Z","sequence":8624,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-088d0558-94d9-4a45-a29a-ab93750a80e6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:04.386Z","sequence":8625,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_190981]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cffb7adcb3439657","parentId":"fb054969d786184c","traceId":"0000000000000000f383fa500a980133","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:04.418Z","sequence":8626,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_190981, resource-version: f8c79b0a-bc64-48e5-8ea1-20020d461b06]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cffb7adcb3439657","parentId":"fb054969d786184c","traceId":"0000000000000000f383fa500a980133","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:04.431Z","sequence":8627,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190981, resource-version: 2181e601-55cd-4ec3-b9cb-a4ff54e80e7b]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cffb7adcb3439657","parentId":"fb054969d786184c","traceId":"0000000000000000f383fa500a980133","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:04.433Z","sequence":8628,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_190981]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5eec4994e41d96a1","parentId":"869cebb1c2bf95c7","traceId":"0000000000000000f383fa500a980133","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:04.647Z","sequence":8629,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190981]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5eec4994e41d96a1","parentId":"869cebb1c2bf95c7","traceId":"0000000000000000f383fa500a980133","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:05.073Z","sequence":8630,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:05.073Z","sequence":8631,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AFC] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:05.095Z","sequence":8632,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:05.095Z","sequence":8633,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:05.101Z","sequence":8634,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-261c8861-1e70-428c-9a42-20b7345017d4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:05.145Z","sequence":8635,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF793981E942B97]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"215c87ffffef97af","parentId":"c9731416e036146a","traceId":"00000000000000007fa46c1a9acd3495","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:05.166Z","sequence":8636,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF793981E942B97, resource-version: daf35212-64c7-449c-a386-ed7a462a9920]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"215c87ffffef97af","parentId":"c9731416e036146a","traceId":"00000000000000007fa46c1a9acd3495","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:05.176Z","sequence":8637,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF793981E942B97, resource-version: 2f6129a2-2ff9-4aef-b35a-a66cd000d955]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"215c87ffffef97af","parentId":"c9731416e036146a","traceId":"00000000000000007fa46c1a9acd3495","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:05.833Z","sequence":8638,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:05.833Z","sequence":8639,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-00GWALP120IT]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:05.851Z","sequence":8640,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-063899d7-cc59-48ec-b1cc-15e578e29678, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:06.76Z","sequence":8641,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:06.761Z","sequence":8642,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_190981]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:06.805Z","sequence":8643,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-ac25d1b5-f3dd-40a5-ba09-2be850d7d2ab, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:06.942Z","sequence":8644,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:06.942Z","sequence":8645,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF793981E942B97] for gateway [gateway_integrationtest_network_190981]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:06.943Z","sequence":8646,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:06.943Z","sequence":8647,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_190981]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:06.948Z","sequence":8648,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:06.948Z","sequence":8649,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:06.949Z","sequence":8650,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-496c938e-ebb3-4b70-9f43-112bcfeabd9d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:07.448Z","sequence":8651,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFEF42A38E6C758]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"27b4ae06342336f6","parentId":"5de324f5b1630fa7","traceId":"00000000000000000b1ea5f2814d5d38","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:07.607Z","sequence":8652,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFEF42A38E6C758]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"27b4ae06342336f6","parentId":"5de324f5b1630fa7","traceId":"00000000000000000b1ea5f2814d5d38","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:07.68Z","sequence":8653,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c9bfb887-a39a-4bde-8fb1-14d0ea952b8d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:07.681Z","sequence":8654,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:07.681Z","sequence":8655,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AC5] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:07.681Z","sequence":8656,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:07.682Z","sequence":8657,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: ineos]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:07.688Z","sequence":8658,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-d4dd7c51-2e18-418f-925e-28a40f8e6a77, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:07.69Z","sequence":8659,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:07.69Z","sequence":8660,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:07.695Z","sequence":8661,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:07.696Z","sequence":8662,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB1000A8E] for gateway [0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:07.697Z","sequence":8663,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6359568a-3c0a-4a04-bc64-d4224f519e48, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:07.707Z","sequence":8664,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:07.708Z","sequence":8665,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:07.718Z","sequence":8666,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-853fd116-1e22-4272-bbf1-abb449aeaf20, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:08.312Z","sequence":8667,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_190979]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bd5797fb68f16631","parentId":"ff04e8e5b1aeb61c","traceId":"0000000000000000153f7bf2ab7d1f3c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:08.333Z","sequence":8668,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190979]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bd5797fb68f16631","parentId":"ff04e8e5b1aeb61c","traceId":"0000000000000000153f7bf2ab7d1f3c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:10.749Z","sequence":8669,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 47631677B040]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f4d0c6d94873f06f","parentId":"b63c984283cde40b","traceId":"00000000000000003761d4c3ec61339b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:10.767Z","sequence":8670,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 47631677B040, resource-version: 795f9343-6e7a-48ea-93ca-717f14005fef]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f4d0c6d94873f06f","parentId":"b63c984283cde40b","traceId":"00000000000000003761d4c3ec61339b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:10.775Z","sequence":8671,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 47631677B040, resource-version: d5fe9a38-1eec-438f-98e5-dc214591f6a4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f4d0c6d94873f06f","parentId":"b63c984283cde40b","traceId":"00000000000000003761d4c3ec61339b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:10.781Z","sequence":8672,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 47631677B040]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"35a12232bcee48e2","parentId":"f252396c3a0128df","traceId":"00000000000000003761d4c3ec61339b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:10.966Z","sequence":8673,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 47631677B040]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"35a12232bcee48e2","parentId":"f252396c3a0128df","traceId":"00000000000000003761d4c3ec61339b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:11.035Z","sequence":8674,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_190983]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"207c3e7b09959330","parentId":"20b812650659ea89","traceId":"0000000000000000302d815af64c81ba","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:11.055Z","sequence":8675,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_190983, resource-version: 29e4eaa0-3b0d-464a-b3eb-8f502966f8ef]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"207c3e7b09959330","parentId":"20b812650659ea89","traceId":"0000000000000000302d815af64c81ba","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:11.062Z","sequence":8676,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190983, resource-version: 3ccd7bc5-ba8f-400e-b529-176628b7de8f]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"207c3e7b09959330","parentId":"20b812650659ea89","traceId":"0000000000000000302d815af64c81ba","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:11.072Z","sequence":8677,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_190983]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2ab320348db73dc6","parentId":"9f89037bfe513984","traceId":"0000000000000000302d815af64c81ba","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:11.23Z","sequence":8678,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190983]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2ab320348db73dc6","parentId":"9f89037bfe513984","traceId":"0000000000000000302d815af64c81ba","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:11.325Z","sequence":8679,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF5BC6758837602]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"66d0d59f63f9ac26","parentId":"59cb2e151946aa57","traceId":"00000000000000004e7de50651f79274","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:11.344Z","sequence":8680,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF5BC6758837602, resource-version: f1894518-0b9e-4053-9121-0d4e1b11076b]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"66d0d59f63f9ac26","parentId":"59cb2e151946aa57","traceId":"00000000000000004e7de50651f79274","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:11.352Z","sequence":8681,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF5BC6758837602, resource-version: 22a2a57e-7164-4e81-9d2a-93a8ee42ea2f]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"66d0d59f63f9ac26","parentId":"59cb2e151946aa57","traceId":"00000000000000004e7de50651f79274","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:11.501Z","sequence":8682,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_190984]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d342d482e4f29ccf","parentId":"a5f5dd5ee72880f3","traceId":"00000000000000009549c5b96074d38e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:11.522Z","sequence":8683,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_190984, resource-version: 025a3992-ec70-4228-9e81-8e26d2f79576]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d342d482e4f29ccf","parentId":"a5f5dd5ee72880f3","traceId":"00000000000000009549c5b96074d38e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:11.529Z","sequence":8684,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190984, resource-version: d17ed05c-6d7f-4b74-a734-6cd4122f0fc2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d342d482e4f29ccf","parentId":"a5f5dd5ee72880f3","traceId":"00000000000000009549c5b96074d38e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:11.533Z","sequence":8685,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_190984]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ac945b409361a6df","parentId":"0501e89b2c2184d8","traceId":"00000000000000009549c5b96074d38e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:11.684Z","sequence":8686,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190984]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ac945b409361a6df","parentId":"0501e89b2c2184d8","traceId":"00000000000000009549c5b96074d38e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:12.197Z","sequence":8687,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF8BDE5D387F442]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8034a41e72063949","parentId":"a357dc4fe7a54096","traceId":"0000000000000000adb80518f87ad42f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:12.237Z","sequence":8688,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF8BDE5D387F442, resource-version: 1ed5f6a1-c2dd-45ce-a163-33c36bb3f52c]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8034a41e72063949","parentId":"a357dc4fe7a54096","traceId":"0000000000000000adb80518f87ad42f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:12.245Z","sequence":8689,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF8BDE5D387F442, resource-version: 9c48c91d-de96-4ad5-a6c6-f2b95844ff76]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8034a41e72063949","parentId":"a357dc4fe7a54096","traceId":"0000000000000000adb80518f87ad42f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:12.449Z","sequence":8690,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:12.45Z","sequence":8691,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-47631677B040]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:12.451Z","sequence":8692,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:12.451Z","sequence":8693,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-47631677B040]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:12.452Z","sequence":8694,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:12.452Z","sequence":8695,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-47631677B040]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:12.461Z","sequence":8696,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF462FBBD86E189]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1e90f3ad4848a7ef","parentId":"2e20c109ec6fc616","traceId":"0000000000000000507f6321f6283262","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:12.478Z","sequence":8697,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-14d95a2f-400e-402e-af79-5d9cb86003ab, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:12.479Z","sequence":8698,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-f97c45ca-7779-4ad2-aba5-8660cd1859e1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:12.48Z","sequence":8699,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-f1eafad7-a363-4c06-b74d-3549da3387de, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:12.484Z","sequence":8700,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF462FBBD86E189, resource-version: 72951daf-2791-43ac-a458-15484f95c6e9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1e90f3ad4848a7ef","parentId":"2e20c109ec6fc616","traceId":"0000000000000000507f6321f6283262","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:12.495Z","sequence":8701,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF462FBBD86E189, resource-version: 24ecfcca-20da-4676-92bb-5fe1dfa70faa]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1e90f3ad4848a7ef","parentId":"2e20c109ec6fc616","traceId":"0000000000000000507f6321f6283262","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:12.883Z","sequence":8702,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:12.883Z","sequence":8703,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 47631677B040]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:12.889Z","sequence":8704,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:12.889Z","sequence":8705,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 47631677B040]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:12.89Z","sequence":8706,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-51a478d8-8bb7-4577-9c5b-9115ecd03a77, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:12.894Z","sequence":8707,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-47272e38-4192-4bff-90e3-e44dbf012ef9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:12.897Z","sequence":8708,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:12.897Z","sequence":8709,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF5BC6758837602] for gateway [47631677B040]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:12.902Z","sequence":8710,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:12.902Z","sequence":8711,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF5BC6758837602] for gateway [47631677B040]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:12.903Z","sequence":8712,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:12.903Z","sequence":8713,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF5BC6758837602] for gateway [47631677B040]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:12.907Z","sequence":8714,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:12.908Z","sequence":8715,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:12.917Z","sequence":8716,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:12.918Z","sequence":8717,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:12.921Z","sequence":8718,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:12.921Z","sequence":8719,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:13.331Z","sequence":8720,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8f3b769a-ac5c-42e0-8bb7-f1d713c64e98, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:13.682Z","sequence":8721,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-977c5e5e-a24b-49b9-a807-cc20d3675e1c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:14.091Z","sequence":8722,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e08fdb36-5426-4ea2-8e06-9c85671a232c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:14.092Z","sequence":8723,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:14.092Z","sequence":8724,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_190983]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:14.093Z","sequence":8725,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:14.093Z","sequence":8726,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_190984]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:14.093Z","sequence":8727,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:14.094Z","sequence":8728,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_190984]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:14.094Z","sequence":8729,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:14.095Z","sequence":8730,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: flint]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:14.097Z","sequence":8731,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-3f7db7e0-61f1-4570-a045-d85d61f581e4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:14.101Z","sequence":8732,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/flint:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:14.101Z","sequence":8733,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: flint, type: hashed-password, auth-id: auth-flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:14.103Z","sequence":8734,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-b67d1c39-e0f2-480a-875d-26237c67a0cf, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:14.104Z","sequence":8735,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-a4202e15-22ec-4671-9215-e5d568a8b983, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:14.105Z","sequence":8736,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-84312a9d-6a98-48c8-b4d3-e33548a62c4f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:14.123Z","sequence":8737,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-f532023a-6df9-470e-a3f5-a040b208a29b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:14.41Z","sequence":8738,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF5A0E74ECFC361]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d1dccb21687118cd","parentId":"99c88b0d9abbeaf5","traceId":"000000000000000078c58e42db3606f0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:14.424Z","sequence":8739,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF5A0E74ECFC361]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d1dccb21687118cd","parentId":"99c88b0d9abbeaf5","traceId":"000000000000000078c58e42db3606f0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:14.674Z","sequence":8740,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:14.674Z","sequence":8741,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF8BDE5D387F442] for gateway [gateway_integrationtest_network_190983]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:14.675Z","sequence":8742,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:14.675Z","sequence":8743,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_190983]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:14.676Z","sequence":8744,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:14.676Z","sequence":8745,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF462FBBD86E189] for gateway [gateway_integrationtest_network_190984]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:14.677Z","sequence":8746,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:14.677Z","sequence":8747,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_190984]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:14.685Z","sequence":8748,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:14.685Z","sequence":8749,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10009B9] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:14.701Z","sequence":8750,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:14.703Z","sequence":8751,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:14.704Z","sequence":8752,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2bd9425d-ebdd-4ab5-a71b-622faffc8665, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:14.705Z","sequence":8753,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.5.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:14.705Z","sequence":8754,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:14.705Z","sequence":8755,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-610cd9d3-f500-4412-8736-1562142c7325, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:14.706Z","sequence":8756,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.5.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:14.706Z","sequence":8757,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:14.706Z","sequence":8758,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:14.706Z","sequence":8759,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF462FBBD86E189] for gateway [gateway_integrationtest_network_190984]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:14.706Z","sequence":8760,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:14.706Z","sequence":8761,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_190984]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:14.738Z","sequence":8762,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6540707b-f2fd-4bb8-977b-75d9aebb7bb1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:14.742Z","sequence":8763,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.5.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:14.742Z","sequence":8764,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:14.765Z","sequence":8765,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e8de53ad-df8f-4c52-bc28-1c069be98925, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:14.934Z","sequence":8766,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_190980]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"41a018c05e551dab","parentId":"1f8271ff8c08cec1","traceId":"000000000000000022eb2d59e2b3a13d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:15.026Z","sequence":8767,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190980]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"41a018c05e551dab","parentId":"1f8271ff8c08cec1","traceId":"000000000000000022eb2d59e2b3a13d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:15.217Z","sequence":8768,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-cc7c26ef-c0a9-4728-ab60-2a1416aa7805, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:15.217Z","sequence":8769,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:15.218Z","sequence":8770,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:15.55Z","sequence":8771,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-14cfc683-1c66-48a9-8f04-b29546993435, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:15.92Z","sequence":8772,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ce553fce-2ea8-4106-9604-369444d4e490, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:15.922Z","sequence":8773,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e736a450-7d08-42be-950f-9bf2d226d138, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:15.925Z","sequence":8774,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:15.925Z","sequence":8775,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF462FBBD86E189] for gateway [gateway_integrationtest_network_190984]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:15.926Z","sequence":8776,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:15.926Z","sequence":8777,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF462FBBD86E189] for gateway [gateway_integrationtest_network_190984]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:15.953Z","sequence":8778,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.5.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:15.954Z","sequence":8779,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:15.957Z","sequence":8780,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.5.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:15.957Z","sequence":8781,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:15.997Z","sequence":8782,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_190985]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"12ccf1de0593762f","parentId":"29c003627a00b235","traceId":"00000000000000009b1acd128231fcb7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:16.09Z","sequence":8783,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_190985, resource-version: b1f83a8f-726c-4032-8462-33f2604ca3ca]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"12ccf1de0593762f","parentId":"29c003627a00b235","traceId":"00000000000000009b1acd128231fcb7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:16.144Z","sequence":8784,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190985, resource-version: dfa2eb71-9614-4edb-b532-ffddbf2dc1a1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"12ccf1de0593762f","parentId":"29c003627a00b235","traceId":"00000000000000009b1acd128231fcb7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:16.149Z","sequence":8785,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_190985]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2923afc861cfa829","parentId":"efedd52c4f8b9114","traceId":"00000000000000009b1acd128231fcb7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:16.536Z","sequence":8786,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190985]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2923afc861cfa829","parentId":"efedd52c4f8b9114","traceId":"00000000000000009b1acd128231fcb7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:16.796Z","sequence":8787,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-790dd365-acc0-4714-ae39-cb61cc15e981, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:17.237Z","sequence":8788,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-74d0e4ae-e51e-4887-ab33-2b2c2501aff1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:17.894Z","sequence":8789,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF0C6A6DAC3DCE4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"08b3655e0c118c2b","parentId":"79d08124ef0e9597","traceId":"0000000000000000264600b17a8cf081","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:17.956Z","sequence":8790,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF0C6A6DAC3DCE4, resource-version: a74ba221-752d-4338-a27c-1293d44ea131]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"08b3655e0c118c2b","parentId":"79d08124ef0e9597","traceId":"0000000000000000264600b17a8cf081","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:17.972Z","sequence":8791,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF0C6A6DAC3DCE4, resource-version: 6ff124de-79a7-4c2c-8180-e2cd657d6082]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"08b3655e0c118c2b","parentId":"79d08124ef0e9597","traceId":"0000000000000000264600b17a8cf081","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:18.177Z","sequence":8792,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:18.177Z","sequence":8793,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:18.197Z","sequence":8794,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5cbecd09-e3f4-47ed-aaf3-36af50f4cf84, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:19.085Z","sequence":8795,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:19.085Z","sequence":8796,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_190985]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:19.1Z","sequence":8797,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-ac163728-5abc-4f76-bd47-dfef3448e84c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:19.217Z","sequence":8798,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:19.217Z","sequence":8799,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF0C6A6DAC3DCE4] for gateway [gateway_integrationtest_network_190985]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:19.218Z","sequence":8800,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:19.218Z","sequence":8801,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_190985]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:19.225Z","sequence":8802,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-94cd9161-d6e7-4ec5-aab9-cf6eff982991, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:19.226Z","sequence":8803,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:19.226Z","sequence":8804,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:19.545Z","sequence":8805,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1672c8a6-1d9a-4449-9725-218b6ac61074, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:21.757Z","sequence":8806,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF793981E942B97]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"19c966d330f87ad3","parentId":"32c68d0758c177b0","traceId":"0000000000000000cfe43af059e8f656","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:21.792Z","sequence":8807,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF793981E942B97]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"19c966d330f87ad3","parentId":"32c68d0758c177b0","traceId":"0000000000000000cfe43af059e8f656","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:22.265Z","sequence":8808,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_190981]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"142540ff71b5c126","parentId":"87523af714e9c941","traceId":"0000000000000000b4a92be8c4fb2b06","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:22.305Z","sequence":8809,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190981]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"142540ff71b5c126","parentId":"87523af714e9c941","traceId":"0000000000000000b4a92be8c4fb2b06","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:23.039Z","sequence":8810,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_190986]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c1481f6c5d0cfe8d","parentId":"9f09f434fa71edcd","traceId":"000000000000000023e31094b56c6f0b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:23.065Z","sequence":8811,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_190986, resource-version: 509f85a1-07b7-4bcd-bb00-b3467860c7a8]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c1481f6c5d0cfe8d","parentId":"9f09f434fa71edcd","traceId":"000000000000000023e31094b56c6f0b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:23.072Z","sequence":8812,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190986, resource-version: 86206b1e-4bbc-4cdd-8cf0-0a104131e094]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c1481f6c5d0cfe8d","parentId":"9f09f434fa71edcd","traceId":"000000000000000023e31094b56c6f0b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:23.077Z","sequence":8813,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_190986]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4842b3a8b6376791","parentId":"70620310755cd589","traceId":"000000000000000023e31094b56c6f0b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:23.429Z","sequence":8814,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190986]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4842b3a8b6376791","parentId":"70620310755cd589","traceId":"000000000000000023e31094b56c6f0b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:25.253Z","sequence":8815,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFDE8A9ECA0A5D0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"29dd6976d5a0d0af","parentId":"deaaf0a24dbd1e65","traceId":"00000000000000009a8001259b69d51a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:25.281Z","sequence":8816,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFDE8A9ECA0A5D0, resource-version: 6646514b-bbbb-429d-bb9a-a2adeabf179a]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"29dd6976d5a0d0af","parentId":"deaaf0a24dbd1e65","traceId":"00000000000000009a8001259b69d51a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:25.296Z","sequence":8817,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFDE8A9ECA0A5D0, resource-version: bb2f52e4-493b-49b7-97b7-a37c334751d8]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"29dd6976d5a0d0af","parentId":"deaaf0a24dbd1e65","traceId":"00000000000000009a8001259b69d51a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:26.379Z","sequence":8818,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:26.379Z","sequence":8819,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_190986]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:26.391Z","sequence":8820,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-29dd7aea-e732-4caa-856d-529c93527dac, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:26.513Z","sequence":8821,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:26.513Z","sequence":8822,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDE8A9ECA0A5D0] for gateway [gateway_integrationtest_network_190986]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:26.514Z","sequence":8823,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:26.514Z","sequence":8824,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_190986]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:26.523Z","sequence":8825,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:26.524Z","sequence":8826,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:26.525Z","sequence":8827,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d8d25506-032b-4e58-aaf5-6cb6b4de97f6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:26.979Z","sequence":8828,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8728da2f-0ca0-444f-a11c-5dba9a2de53c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:29.567Z","sequence":8829,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF0C6A6DAC3DCE4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"523e999454857b67","parentId":"54dcc867f1cfc1b4","traceId":"0000000000000000af7d678206f7f08d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:29.593Z","sequence":8830,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF0C6A6DAC3DCE4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"523e999454857b67","parentId":"54dcc867f1cfc1b4","traceId":"0000000000000000af7d678206f7f08d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:30.193Z","sequence":8831,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_190985]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ef12bbc4058717b9","parentId":"0272120bbd30ab17","traceId":"00000000000000004860eedd25bcede0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:30.213Z","sequence":8832,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190985]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ef12bbc4058717b9","parentId":"0272120bbd30ab17","traceId":"00000000000000004860eedd25bcede0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:30.92Z","sequence":8833,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:30.92Z","sequence":8834,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000500] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:30.944Z","sequence":8835,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:30.945Z","sequence":8836,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:30.956Z","sequence":8837,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f9359e50-6f04-4ba8-8eb3-febeadcedd58, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:31.071Z","sequence":8838,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_190987]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d96f2a232a30abc8","parentId":"c6d3c8770f9e3626","traceId":"00000000000000008fcd7ca72fa22293","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:31.09Z","sequence":8839,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_190987, resource-version: d8b3e7ca-3ad4-4549-9457-0aaded9d3a76]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d96f2a232a30abc8","parentId":"c6d3c8770f9e3626","traceId":"00000000000000008fcd7ca72fa22293","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:31.098Z","sequence":8840,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190987, resource-version: efe119b2-c116-4b0a-be40-682f1a8f5cb9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d96f2a232a30abc8","parentId":"c6d3c8770f9e3626","traceId":"00000000000000008fcd7ca72fa22293","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:31.101Z","sequence":8841,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_190987]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"30d0952207791265","parentId":"e5c069512d30c2a4","traceId":"00000000000000008fcd7ca72fa22293","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:31.372Z","sequence":8842,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190987]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"30d0952207791265","parentId":"e5c069512d30c2a4","traceId":"00000000000000008fcd7ca72fa22293","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:32.172Z","sequence":8843,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFDBEFE45745487]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"095a190f47e6d933","parentId":"be5516e9da610142","traceId":"0000000000000000ee21386565ab4c08","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:32.191Z","sequence":8844,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFDBEFE45745487, resource-version: a76c0884-f4cc-40b6-a606-f50450beee3c]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"095a190f47e6d933","parentId":"be5516e9da610142","traceId":"0000000000000000ee21386565ab4c08","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:32.197Z","sequence":8845,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFDBEFE45745487, resource-version: 5bc0b1d2-1251-45a1-b2fc-a9538da87196]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"095a190f47e6d933","parentId":"be5516e9da610142","traceId":"0000000000000000ee21386565ab4c08","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:33.234Z","sequence":8846,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:33.234Z","sequence":8847,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_190987]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:33.245Z","sequence":8848,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-352079ed-a3c3-4cde-96d1-c396a8de2012, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:33.367Z","sequence":8849,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:33.367Z","sequence":8850,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDBEFE45745487] for gateway [gateway_integrationtest_network_190987]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:33.368Z","sequence":8851,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:33.368Z","sequence":8852,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_190987]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:33.373Z","sequence":8853,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5e6a1fd1-80cf-4cbc-ad95-4a599ebfb396, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:33.374Z","sequence":8854,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:33.374Z","sequence":8855,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:33.538Z","sequence":8856,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0d8f3682-4e12-475f-83d1-65937e285ffc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:35.195Z","sequence":8857,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFDE8A9ECA0A5D0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"da8a79f08fae231e","parentId":"2318754b8786eb41","traceId":"0000000000000000b358ae3af44cb638","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:35.226Z","sequence":8858,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFDE8A9ECA0A5D0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"da8a79f08fae231e","parentId":"2318754b8786eb41","traceId":"0000000000000000b358ae3af44cb638","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:35.368Z","sequence":8859,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_190986]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a2ad8841a6f0e8e5","parentId":"eecfe448233dff8c","traceId":"000000000000000090a779b5491b3068","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:35.4Z","sequence":8860,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190986]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a2ad8841a6f0e8e5","parentId":"eecfe448233dff8c","traceId":"000000000000000090a779b5491b3068","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:35.81Z","sequence":8861,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: B4329ECB4029]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0ff256dd0fa4a34d","parentId":"76d2e8dde3a1751e","traceId":"000000000000000089190db1e09956f5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:36.006Z","sequence":8862,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: B4329ECB4029, resource-version: 3d7cb721-766b-4bc5-9fd2-a14f99e507fe]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0ff256dd0fa4a34d","parentId":"76d2e8dde3a1751e","traceId":"000000000000000089190db1e09956f5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:36.053Z","sequence":8863,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: B4329ECB4029, resource-version: e0ab00a3-c2ac-4ed9-ae38-d611e8bcd8a4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0ff256dd0fa4a34d","parentId":"76d2e8dde3a1751e","traceId":"000000000000000089190db1e09956f5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:36.056Z","sequence":8864,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: B4329ECB4029]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e93836791eaee595","parentId":"dc52f2577d300bda","traceId":"000000000000000089190db1e09956f5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:36.146Z","sequence":8865,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:36.146Z","sequence":8866,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 70B3D57BB1001283] for gateway [gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:36.158Z","sequence":8867,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:36.158Z","sequence":8868,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:36.162Z","sequence":8869,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-935a1fdd-a30c-48fd-858b-d42354f0eb1f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:36.245Z","sequence":8870,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: B4329ECB4029]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e93836791eaee595","parentId":"dc52f2577d300bda","traceId":"000000000000000089190db1e09956f5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:36.777Z","sequence":8871,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF9EDEEF914499F]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f3213fd85b82e99b","parentId":"4040e9018bbe9978","traceId":"00000000000000009a8a6672b291307f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:36.796Z","sequence":8872,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF9EDEEF914499F, resource-version: f0d9c1fb-c651-46bf-86e2-71f9da8d827b]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f3213fd85b82e99b","parentId":"4040e9018bbe9978","traceId":"00000000000000009a8a6672b291307f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:36.804Z","sequence":8873,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF9EDEEF914499F, resource-version: 85c2fe40-8b1d-4ecc-8cd9-06333fbbbf0b]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f3213fd85b82e99b","parentId":"4040e9018bbe9978","traceId":"00000000000000009a8a6672b291307f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:36.853Z","sequence":8874,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:36.854Z","sequence":8875,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-B4329ECB4029]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:36.864Z","sequence":8876,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-3768de18-324a-4023-a96e-5fc01f0fa425, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:37.008Z","sequence":8877,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:37.008Z","sequence":8878,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: B4329ECB4029]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:37.014Z","sequence":8879,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-767e2808-5208-4b54-beb8-8fc1a5562b05, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:40.689Z","sequence":8880,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/repsol:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:40.69Z","sequence":8881,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: repsol, device-id: 70B3D57BB1000207] for gateway [0008004A37FF]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:40.696Z","sequence":8882,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:0.4.1\"\n },\n \"viaGroups\" : [ \"gateways_repsol\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:40.696Z","sequence":8883,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_repsol\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:40.698Z","sequence":8884,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7c6da1d8-736c-4c50-8c9b-1657a5480ef2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:42.383Z","sequence":8885,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:42.383Z","sequence":8886,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 70B3D57BB100127B] for gateway [gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:42.392Z","sequence":8887,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:42.392Z","sequence":8888,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:42.397Z","sequence":8889,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-351e5a79-5296-4534-820b-6401e80c9cbe, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:44.313Z","sequence":8890,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFDBEFE45745487]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6355f0a9ce250684","parentId":"ad5148495a7ba0f5","traceId":"0000000000000000f4a95966de43a28c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:44.334Z","sequence":8891,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFDBEFE45745487]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6355f0a9ce250684","parentId":"ad5148495a7ba0f5","traceId":"0000000000000000f4a95966de43a28c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:47.847Z","sequence":8892,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:47.848Z","sequence":8893,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10018E9] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:47.853Z","sequence":8894,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:47.853Z","sequence":8895,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:47.859Z","sequence":8896,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e9da1590-45e0-40c6-8d65-696997f8943e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:48.52Z","sequence":8897,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:48.52Z","sequence":8898,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10018D9] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:48.535Z","sequence":8899,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:48.535Z","sequence":8900,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:48.541Z","sequence":8901,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-60f361ca-35f9-417d-98a9-e80a1761f2eb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:48.653Z","sequence":8902,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:48.653Z","sequence":8903,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AC0] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:48.689Z","sequence":8904,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:48.689Z","sequence":8905,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:48.717Z","sequence":8906,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-28947bdb-e17a-4f4e-a826-66fef618e605, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:50.484Z","sequence":8907,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:50.484Z","sequence":8908,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 0008004C80F4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:50.49Z","sequence":8909,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4777e1ca-f082-4399-85ae-deada1ef92af, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:50.687Z","sequence":8910,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:50.687Z","sequence":8911,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB100080A] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:50.692Z","sequence":8912,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:50.693Z","sequence":8913,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:50.697Z","sequence":8914,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e9c43290-4b88-473e-8ee0-3ef1d69ae5c5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:51.532Z","sequence":8915,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:51.533Z","sequence":8916,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001C1] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:51.565Z","sequence":8917,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:51.565Z","sequence":8918,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:51.569Z","sequence":8919,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-65b6ca0e-c94c-48d4-a477-3c4a60a3642b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:51.591Z","sequence":8920,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:51.592Z","sequence":8921,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001C1] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:51.602Z","sequence":8922,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:51.602Z","sequence":8923,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:51.606Z","sequence":8924,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-36a7a3e4-888d-4690-a1df-ed57e10288c2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:56.407Z","sequence":8925,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:56.408Z","sequence":8926,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100056E] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:56.413Z","sequence":8927,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:56.414Z","sequence":8928,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:56:56.419Z","sequence":8929,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2172cbe5-60bd-44eb-8d62-e8ff7bff29d5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:00.621Z","sequence":8930,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:00.621Z","sequence":8931,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BCE] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:00.631Z","sequence":8932,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:00.631Z","sequence":8933,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:00.637Z","sequence":8934,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ef75a72b-c895-4919-9e17-41c2473bc925, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:00.985Z","sequence":8935,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:00.985Z","sequence":8936,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10018DB] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:01.008Z","sequence":8937,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:01.009Z","sequence":8938,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:01.025Z","sequence":8939,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3c70c1ad-cbd8-47dd-8a99-7371583dde55, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:03.723Z","sequence":8940,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:03.723Z","sequence":8941,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10018E8] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:03.729Z","sequence":8942,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:03.729Z","sequence":8943,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:03.735Z","sequence":8944,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e0b0f6fb-bbef-47c3-bfb7-c640bbc1f71c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:04.266Z","sequence":8945,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oiltanking:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:04.266Z","sequence":8946,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oiltanking, device-id: 0008004BB60F]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:04.272Z","sequence":8947,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2fcea296-3d60-41d3-98b7-39b685ac9945, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:04.275Z","sequence":8948,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:04.276Z","sequence":8949,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oiltanking]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:04.28Z","sequence":8950,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-3bdbf2f5-418e-4bfa-af4d-baa30ca61b19, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:04.367Z","sequence":8951,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_190989]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3ad701379a5743cb","parentId":"1cc0e85cc1a8ae8c","traceId":"00000000000000002880d96e859d9f17","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:04.394Z","sequence":8952,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_190989, resource-version: e6867527-4ba6-4bb2-b425-f1939e20f023]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3ad701379a5743cb","parentId":"1cc0e85cc1a8ae8c","traceId":"00000000000000002880d96e859d9f17","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:04.4Z","sequence":8953,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190989, resource-version: 12be0b6d-33dd-409f-86f2-f147aba556f6]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3ad701379a5743cb","parentId":"1cc0e85cc1a8ae8c","traceId":"00000000000000002880d96e859d9f17","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:04.405Z","sequence":8954,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_190989]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"52bfbc5e8ca22c3d","parentId":"7cf337d16829c7df","traceId":"00000000000000002880d96e859d9f17","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:04.665Z","sequence":8955,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190989]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"52bfbc5e8ca22c3d","parentId":"7cf337d16829c7df","traceId":"00000000000000002880d96e859d9f17","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:06.727Z","sequence":8956,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:06.727Z","sequence":8957,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 70B3D57BB1001288] for gateway [gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:06.733Z","sequence":8958,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:06.733Z","sequence":8959,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:06.737Z","sequence":8960,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-61c3fa9b-cc90-4678-ac6e-73267562b12f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:11.503Z","sequence":8961,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF462FBBD86E189]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"570e521536a1254b","parentId":"a2cda6c5f7ace643","traceId":"0000000000000000cbae6b4923d381ed","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:11.526Z","sequence":8962,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF462FBBD86E189]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"570e521536a1254b","parentId":"a2cda6c5f7ace643","traceId":"0000000000000000cbae6b4923d381ed","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:12.161Z","sequence":8963,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF9EDEEF914499F]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0b9ca3231394f9db","parentId":"fc3772bce7130826","traceId":"000000000000000078e9906fa3b1f878","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:12.185Z","sequence":8964,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF9EDEEF914499F]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0b9ca3231394f9db","parentId":"fc3772bce7130826","traceId":"000000000000000078e9906fa3b1f878","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:12.336Z","sequence":8965,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:12.336Z","sequence":8966,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10002D2] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:12.346Z","sequence":8967,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:12.346Z","sequence":8968,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:12.349Z","sequence":8969,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-dcc4d102-a8ea-4b72-a9bf-60fad29cde68, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:16.865Z","sequence":8970,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF5BC6758837602]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c13cddf528540502","parentId":"6c29be3e9a679e5c","traceId":"00000000000000002408d769083f9b85","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:16.902Z","sequence":8971,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF5BC6758837602]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c13cddf528540502","parentId":"6c29be3e9a679e5c","traceId":"00000000000000002408d769083f9b85","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:20.882Z","sequence":8972,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:20.882Z","sequence":8973,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006C7] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:20.888Z","sequence":8974,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:20.888Z","sequence":8975,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:20.894Z","sequence":8976,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-12c0e339-1761-4a91-999d-8f2f1fe9d65b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:26.98Z","sequence":8977,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:26.981Z","sequence":8978,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10018D5] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:26.988Z","sequence":8979,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:26.988Z","sequence":8980,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:26.994Z","sequence":8981,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-fce85d89-3e82-46fe-8bbf-39f4612651ab, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:28.987Z","sequence":8982,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:28.987Z","sequence":8983,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BF0] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:28.993Z","sequence":8984,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:28.993Z","sequence":8985,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:28.999Z","sequence":8986,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-66f72d37-cd50-4445-bb06-7cca520943f0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:31.696Z","sequence":8987,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:31.697Z","sequence":8988,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019E2] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:31.703Z","sequence":8989,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:31.703Z","sequence":8990,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:31.709Z","sequence":8991,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d826a172-b1d4-475f-98e3-a540486dff52, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:37.153Z","sequence":8992,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:37.153Z","sequence":8993,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 70B3D57BB1001289] for gateway [gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:37.155Z","sequence":8994,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:37.155Z","sequence":8995,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:37.161Z","sequence":8996,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1c5d73a3-c960-440f-8498-1c6c151fad4a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:37.161Z","sequence":8997,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:37.161Z","sequence":8998,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:37.165Z","sequence":8999,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-25d68ebf-fba3-4937-8fdf-151c483a3914, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:38.062Z","sequence":9000,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:38.062Z","sequence":9001,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100015E] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:38.068Z","sequence":9002,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:38.068Z","sequence":9003,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:38.07Z","sequence":9004,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-127ba59a-d9af-452d-93d1-0fed14f6eb33, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:38.083Z","sequence":9005,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:38.084Z","sequence":9006,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100015E] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:38.089Z","sequence":9007,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:38.089Z","sequence":9008,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:38.093Z","sequence":9009,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-484ed6b0-e941-44d4-8eaa-f31e033c0b6e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:40.37Z","sequence":9010,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:40.37Z","sequence":9011,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000155] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:40.377Z","sequence":9012,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:40.377Z","sequence":9013,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:40.384Z","sequence":9014,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-24791e62-b400-44c0-a239-627b972e4cb2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:42.252Z","sequence":9015,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: B4329ECB4029]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6912442ac1ef6f6b","parentId":"3afbcdb343c5a75e","traceId":"000000000000000047ff2176fea2f79f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:42.279Z","sequence":9016,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: B4329ECB4029]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6912442ac1ef6f6b","parentId":"3afbcdb343c5a75e","traceId":"000000000000000047ff2176fea2f79f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:42.878Z","sequence":9017,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_190984]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1647d629f5cf30e2","parentId":"fe4ceef7af11dea7","traceId":"0000000000000000c2323888ceb50204","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:42.886Z","sequence":9018,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_190987]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9a1ebfc1a17b9011","parentId":"da53ad5b9a0ceb98","traceId":"0000000000000000b34abc521335e534","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:42.895Z","sequence":9019,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190984]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1647d629f5cf30e2","parentId":"fe4ceef7af11dea7","traceId":"0000000000000000c2323888ceb50204","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:42.904Z","sequence":9020,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190987]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9a1ebfc1a17b9011","parentId":"da53ad5b9a0ceb98","traceId":"0000000000000000b34abc521335e534","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:43.003Z","sequence":9021,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 47631677B040]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b04f9e9469d283a5","parentId":"7d6480fa36f7f296","traceId":"0000000000000000f96699be5eb77774","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:43.013Z","sequence":9022,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: CF7D48B60113]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"dabd97b012470846","parentId":"3b897ac414da3c97","traceId":"00000000000000002d8e1251a8ee4c9e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:43.033Z","sequence":9023,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 47631677B040]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b04f9e9469d283a5","parentId":"7d6480fa36f7f296","traceId":"0000000000000000f96699be5eb77774","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:43.035Z","sequence":9024,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: CF7D48B60113, resource-version: c6ed251a-a780-41c4-8fab-0d2d5a3ed12a]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"dabd97b012470846","parentId":"3b897ac414da3c97","traceId":"00000000000000002d8e1251a8ee4c9e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:43.041Z","sequence":9025,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: CF7D48B60113, resource-version: 8fcdfb85-12f5-4248-b061-97ddc9348554]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"dabd97b012470846","parentId":"3b897ac414da3c97","traceId":"00000000000000002d8e1251a8ee4c9e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:43.044Z","sequence":9026,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: CF7D48B60113]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"af2cd857aeb41705","parentId":"afb634f72e41d51b","traceId":"00000000000000002d8e1251a8ee4c9e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:43.171Z","sequence":9027,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: CF7D48B60113]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"af2cd857aeb41705","parentId":"afb634f72e41d51b","traceId":"00000000000000002d8e1251a8ee4c9e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:43.261Z","sequence":9028,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_190991]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b399abe2e787ed98","parentId":"f28f67483fceb306","traceId":"0000000000000000caf9529780ee329e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:43.289Z","sequence":9029,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_190991, resource-version: ef1c2646-bd4d-4928-8dbc-8ca1cb15f5c2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b399abe2e787ed98","parentId":"f28f67483fceb306","traceId":"0000000000000000caf9529780ee329e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:43.303Z","sequence":9030,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190991, resource-version: fa02fe18-f4ba-4f6b-b86b-6c586de9663d]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b399abe2e787ed98","parentId":"f28f67483fceb306","traceId":"0000000000000000caf9529780ee329e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:43.309Z","sequence":9031,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_190991]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"19d51837eca9b58e","parentId":"c57a2564fae12840","traceId":"0000000000000000caf9529780ee329e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:43.465Z","sequence":9032,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFCA56EE43B5590]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"499d8ce71c2b84db","parentId":"c3d5e69bab6084fa","traceId":"00000000000000003e42e53da40b9d1a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:43.497Z","sequence":9033,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFCA56EE43B5590, resource-version: a856391e-2db7-4826-8aea-512570a07a6a]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"499d8ce71c2b84db","parentId":"c3d5e69bab6084fa","traceId":"00000000000000003e42e53da40b9d1a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:43.505Z","sequence":9034,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFCA56EE43B5590, resource-version: ddeef86e-6455-4f3a-b019-9eb17ea378df]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"499d8ce71c2b84db","parentId":"c3d5e69bab6084fa","traceId":"00000000000000003e42e53da40b9d1a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:43.513Z","sequence":9035,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190991]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"19d51837eca9b58e","parentId":"c57a2564fae12840","traceId":"0000000000000000caf9529780ee329e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:43.599Z","sequence":9036,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_190992]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"26d1a190e1c872bb","parentId":"afda995c7830cb29","traceId":"000000000000000040ea59e0708aea91","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:43.634Z","sequence":9037,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_190992, resource-version: e08b6051-d39a-4b97-a1b4-772ab8d7f025]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"26d1a190e1c872bb","parentId":"afda995c7830cb29","traceId":"000000000000000040ea59e0708aea91","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:43.645Z","sequence":9038,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190992, resource-version: 19902216-5852-4816-a077-c5ee471e8377]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"26d1a190e1c872bb","parentId":"afda995c7830cb29","traceId":"000000000000000040ea59e0708aea91","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:43.649Z","sequence":9039,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_190992]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"14a183545f8b4dac","parentId":"e9ff89ed82c88eea","traceId":"000000000000000040ea59e0708aea91","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:43.665Z","sequence":9040,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_190993]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c87663fcfdf03c2c","parentId":"1becf8b2201f971c","traceId":"0000000000000000fc58d5c50dd5ef7a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:43.723Z","sequence":9041,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_190993, resource-version: c66f2f5f-cb5a-4afa-ace8-c2075a7f4641]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c87663fcfdf03c2c","parentId":"1becf8b2201f971c","traceId":"0000000000000000fc58d5c50dd5ef7a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:43.736Z","sequence":9042,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190993, resource-version: 7e6d4beb-084f-4f82-b311-539c60cc11fe]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c87663fcfdf03c2c","parentId":"1becf8b2201f971c","traceId":"0000000000000000fc58d5c50dd5ef7a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:43.743Z","sequence":9043,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_190993]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"193924bde4727f1b","parentId":"1a12725ea1d42ae8","traceId":"0000000000000000fc58d5c50dd5ef7a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:43.88Z","sequence":9044,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190992]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"14a183545f8b4dac","parentId":"e9ff89ed82c88eea","traceId":"000000000000000040ea59e0708aea91","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:44.055Z","sequence":9045,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190993]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"193924bde4727f1b","parentId":"1a12725ea1d42ae8","traceId":"0000000000000000fc58d5c50dd5ef7a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:44.335Z","sequence":9046,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 33372E38F9B88C48]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4484d128597ab3ff","parentId":"e41cf41d02373cac","traceId":"00000000000000000251a75886370930","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:44.344Z","sequence":9047,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:44.345Z","sequence":9048,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB1000A5E] for gateway [0008004B5135]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:44.352Z","sequence":9049,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:44.352Z","sequence":9050,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:44.357Z","sequence":9051,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a2a1ea29-eaf2-4895-85b5-49bc47dfb097, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:44.36Z","sequence":9052,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 33372E38F9B88C48, resource-version: 99e8f259-0e33-4b5c-8031-10a1cc1cab83]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4484d128597ab3ff","parentId":"e41cf41d02373cac","traceId":"00000000000000000251a75886370930","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:44.371Z","sequence":9053,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 33372E38F9B88C48, resource-version: 704c713b-00d6-4a38-ae8f-246b002ae62c]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4484d128597ab3ff","parentId":"e41cf41d02373cac","traceId":"00000000000000000251a75886370930","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:44.589Z","sequence":9054,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:44.589Z","sequence":9055,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-CF7D48B60113]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:44.607Z","sequence":9056,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-433bbf1b-6b41-48b4-9ba2-cf42eb6230c9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:44.727Z","sequence":9057,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF0DE3F14507635]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"60471ba46e5e4a52","parentId":"a6c83fff6aa3cd8c","traceId":"00000000000000000daf4987dd1d726e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:44.74Z","sequence":9058,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF5E6BC8B1AA7C2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"70191fb449427768","parentId":"6a972ede432919bd","traceId":"00000000000000004192c172fa4dc83c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:44.754Z","sequence":9059,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF0DE3F14507635, resource-version: dc45bd77-6f62-4424-bd7e-e8dfa064f749]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"60471ba46e5e4a52","parentId":"a6c83fff6aa3cd8c","traceId":"00000000000000000daf4987dd1d726e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:44.762Z","sequence":9060,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF0DE3F14507635, resource-version: bba1383c-0440-43fc-a224-ea7783d68aa6]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"60471ba46e5e4a52","parentId":"a6c83fff6aa3cd8c","traceId":"00000000000000000daf4987dd1d726e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:44.764Z","sequence":9061,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:44.764Z","sequence":9062,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: CF7D48B60113]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:44.778Z","sequence":9063,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF5E6BC8B1AA7C2, resource-version: 6c7a98d2-3bb4-4648-86a6-8b94957da61d]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"70191fb449427768","parentId":"6a972ede432919bd","traceId":"00000000000000004192c172fa4dc83c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:44.801Z","sequence":9064,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d66ad26f-f7c9-4c96-aed3-6a90548102a3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:44.801Z","sequence":9065,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF5E6BC8B1AA7C2, resource-version: 2304e2b0-9851-4c1d-b62f-46a40d6d3a3c]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"70191fb449427768","parentId":"6a972ede432919bd","traceId":"00000000000000004192c172fa4dc83c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:44.805Z","sequence":9066,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:44.805Z","sequence":9067,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCA56EE43B5590] for gateway [CF7D48B60113]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:44.844Z","sequence":9068,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.7.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:44.844Z","sequence":9069,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:45.626Z","sequence":9070,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1b063f7f-566e-47e3-8296-f7abac60dc30, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:45.627Z","sequence":9071,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:45.628Z","sequence":9072,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:45.665Z","sequence":9073,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-46a68545-7f3e-42ed-a546-e8d6e43221ed, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:45.669Z","sequence":9074,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:45.669Z","sequence":9075,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_190991]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:45.685Z","sequence":9076,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-d6659c10-0682-4a15-9ece-2560f67f760e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:45.811Z","sequence":9077,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:45.811Z","sequence":9078,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 33372E38F9B88C48] for gateway [gateway_integrationtest_network_190991]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:45.813Z","sequence":9079,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:45.813Z","sequence":9080,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_190991]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:45.819Z","sequence":9081,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:raw:1.0.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:45.819Z","sequence":9082,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:45.82Z","sequence":9083,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-cd5ed3cf-a6cf-40ed-ad43-b09f4ec65fa1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:46.273Z","sequence":9084,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4a0d79b8-2ffe-4383-878f-18bf2f969869, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:46.274Z","sequence":9085,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:46.274Z","sequence":9086,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_190992]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:46.305Z","sequence":9087,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-58a0f994-95f0-4a6c-afae-d36f35c8e51d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:46.429Z","sequence":9088,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:46.429Z","sequence":9089,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF0DE3F14507635] for gateway [gateway_integrationtest_network_190992]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:46.43Z","sequence":9090,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:46.43Z","sequence":9091,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_190992]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:46.446Z","sequence":9092,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.3.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:46.446Z","sequence":9093,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:46.447Z","sequence":9094,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-cbaefcca-8a11-4fd0-a8f4-61e68e5652b0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:47.028Z","sequence":9095,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ec7aa4d4-9f8f-4fde-ad95-52203d7b0e4c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:47.029Z","sequence":9096,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:47.029Z","sequence":9097,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10009CB] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:47.052Z","sequence":9098,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:47.052Z","sequence":9099,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:47.069Z","sequence":9100,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-35143738-a09e-4bb0-a6fb-0544f676cfea, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:47.251Z","sequence":9101,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:47.251Z","sequence":9102,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_190993]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:47.269Z","sequence":9103,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-45954fdf-2a26-4041-abb6-0012528c7e3d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:47.505Z","sequence":9104,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:47.505Z","sequence":9105,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF5E6BC8B1AA7C2] for gateway [gateway_integrationtest_network_190993]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:47.505Z","sequence":9106,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:47.505Z","sequence":9107,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_190993]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:47.544Z","sequence":9108,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:47.544Z","sequence":9109,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:47.545Z","sequence":9110,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a18a2d85-0782-4057-abfd-16338b6ff614, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:48.207Z","sequence":9111,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-771aa7c7-99c1-4391-8a23-b55b9464e9bf, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:49.401Z","sequence":9112,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/aloxy:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:49.401Z","sequence":9113,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: aloxy, device-id: 0008004A8F68]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:49.427Z","sequence":9114,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0b995c0a-af5a-4a09-8d47-44843c395707, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:49.433Z","sequence":9115,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:49.433Z","sequence":9116,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: aloxy]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:49.437Z","sequence":9117,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-7cc573ee-b42e-437c-9e9c-896a65f5bb0e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:50.981Z","sequence":9118,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF0DE3F14507635]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"04cf416108e37bcc","parentId":"d351a013b6bbc935","traceId":"00000000000000001d015d2fd652128f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:51.006Z","sequence":9119,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF0DE3F14507635]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"04cf416108e37bcc","parentId":"d351a013b6bbc935","traceId":"00000000000000001d015d2fd652128f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:51.137Z","sequence":9120,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 57ABDB55F942]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8bd2dd2a93f96c29","parentId":"f9e1ef658abd565b","traceId":"00000000000000006ef7afbe488b72ae","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:51.157Z","sequence":9121,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 57ABDB55F942, resource-version: 1dc7d7c3-2bd6-4f22-b088-9133b6fe0532]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8bd2dd2a93f96c29","parentId":"f9e1ef658abd565b","traceId":"00000000000000006ef7afbe488b72ae","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:51.166Z","sequence":9122,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 57ABDB55F942, resource-version: 137f2347-fbb0-44b7-8cc3-10c32c29f8aa]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8bd2dd2a93f96c29","parentId":"f9e1ef658abd565b","traceId":"00000000000000006ef7afbe488b72ae","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:51.169Z","sequence":9123,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 57ABDB55F942]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"67aad69aa9ecbc2a","parentId":"96d0a988ec7925d2","traceId":"00000000000000006ef7afbe488b72ae","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:51.319Z","sequence":9124,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 57ABDB55F942]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"67aad69aa9ecbc2a","parentId":"96d0a988ec7925d2","traceId":"00000000000000006ef7afbe488b72ae","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:51.394Z","sequence":9125,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_190992]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5c3c378eb633ef20","parentId":"c218b7a71330b837","traceId":"00000000000000003be02ad740eaaa24","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:51.427Z","sequence":9126,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190992]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5c3c378eb633ef20","parentId":"c218b7a71330b837","traceId":"00000000000000003be02ad740eaaa24","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:52.028Z","sequence":9127,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF7F30D23BD83A8]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c5a946502365d413","parentId":"a3a067052ec01696","traceId":"0000000000000000c1946543001a63fa","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:52.056Z","sequence":9128,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF7F30D23BD83A8, resource-version: 2e92da35-c278-4576-808d-f18c6155ebf4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c5a946502365d413","parentId":"a3a067052ec01696","traceId":"0000000000000000c1946543001a63fa","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:52.065Z","sequence":9129,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF7F30D23BD83A8, resource-version: 531f4249-3f8e-411f-a9ed-9a1b0802fd1e]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c5a946502365d413","parentId":"a3a067052ec01696","traceId":"0000000000000000c1946543001a63fa","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:52.462Z","sequence":9130,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 4B328DD74A0E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"02d410786c97abb5","parentId":"ebea237edb074a78","traceId":"00000000000000007473b2124c0d6109","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:52.491Z","sequence":9131,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 4B328DD74A0E, resource-version: 371ae539-e134-46d9-addf-3ccf2a8c26e4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"02d410786c97abb5","parentId":"ebea237edb074a78","traceId":"00000000000000007473b2124c0d6109","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:52.511Z","sequence":9132,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 4B328DD74A0E, resource-version: 185d26df-1720-4b73-bab3-215b989c2e55]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"02d410786c97abb5","parentId":"ebea237edb074a78","traceId":"00000000000000007473b2124c0d6109","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:52.515Z","sequence":9133,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 4B328DD74A0E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"71639b8999110faa","parentId":"16d5e3d2dc59cc08","traceId":"00000000000000007473b2124c0d6109","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:52.782Z","sequence":9134,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 4B328DD74A0E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"71639b8999110faa","parentId":"16d5e3d2dc59cc08","traceId":"00000000000000007473b2124c0d6109","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:53.146Z","sequence":9135,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:53.146Z","sequence":9136,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-57ABDB55F942]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:53.157Z","sequence":9137,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-1e50c153-bc60-4223-bced-2f5fadd68063, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:53.292Z","sequence":9138,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:53.292Z","sequence":9139,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 57ABDB55F942]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:53.309Z","sequence":9140,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-91b00871-fff5-4929-b456-9b3cddf1396c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:53.315Z","sequence":9141,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:53.315Z","sequence":9142,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF7F30D23BD83A8] for gateway [57ABDB55F942]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:53.336Z","sequence":9143,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.8.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:53.337Z","sequence":9144,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:53.687Z","sequence":9145,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF1C1D1359962B8]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"33ef6c7e7db70731","parentId":"2c84ae67c5f8ef02","traceId":"000000000000000098070d208ee7733e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:53.694Z","sequence":9146,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9e4e98bf-54a3-4953-b8a7-41b5b765aaa3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:53.705Z","sequence":9147,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF1C1D1359962B8, resource-version: 1bfbe5f1-5d1d-42e4-928c-d3354235cb90]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"33ef6c7e7db70731","parentId":"2c84ae67c5f8ef02","traceId":"000000000000000098070d208ee7733e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:53.716Z","sequence":9148,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF1C1D1359962B8, resource-version: ee944614-4c92-4d68-bc59-b7ad26df780b]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"33ef6c7e7db70731","parentId":"2c84ae67c5f8ef02","traceId":"000000000000000098070d208ee7733e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:54.777Z","sequence":9149,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:54.777Z","sequence":9150,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-4B328DD74A0E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:54.793Z","sequence":9151,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-a0cdce55-7276-4ea8-9ab9-8dfce75e72ee, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:54.913Z","sequence":9152,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:54.913Z","sequence":9153,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 4B328DD74A0E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:54.921Z","sequence":9154,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-86b681fd-0203-4d29-959e-21d6a77b0f1e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:54.925Z","sequence":9155,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:54.926Z","sequence":9156,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF1C1D1359962B8] for gateway [4B328DD74A0E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:54.939Z","sequence":9157,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:54.939Z","sequence":9158,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:55.605Z","sequence":9159,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9fd43666-9086-4301-abd6-f74dfd3e899f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:57.181Z","sequence":9160,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFCA56EE43B5590]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f8561467ae09d82e","parentId":"41a72a40a5e14e7a","traceId":"0000000000000000891d5e588f9fd130","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:57.24Z","sequence":9161,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFCA56EE43B5590]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f8561467ae09d82e","parentId":"41a72a40a5e14e7a","traceId":"0000000000000000891d5e588f9fd130","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:57.887Z","sequence":9162,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 33372E38F9B88C48]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2a6cf7bdc1da0f02","parentId":"3b3da371c96e1983","traceId":"000000000000000044e701522b73ba06","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:57.923Z","sequence":9163,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 33372E38F9B88C48]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2a6cf7bdc1da0f02","parentId":"3b3da371c96e1983","traceId":"000000000000000044e701522b73ba06","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:58.343Z","sequence":9164,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: CF7D48B60113]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"307a5bdaf991768a","parentId":"01603a085c49a64d","traceId":"0000000000000000478d5a34a4f4f7bb","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:58.358Z","sequence":9165,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: CF7D48B60113]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"307a5bdaf991768a","parentId":"01603a085c49a64d","traceId":"0000000000000000478d5a34a4f4f7bb","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:58.401Z","sequence":9166,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF7F30D23BD83A8]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"be6c85b019e2d9da","parentId":"1e3766cbe4e740a3","traceId":"0000000000000000262735b4ce63f325","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:58.41Z","sequence":9167,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:58.41Z","sequence":9168,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BB613]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:58.416Z","sequence":9169,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-cde91d87-93da-4c19-b434-b04b37ba8bd3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:58.418Z","sequence":9170,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF7F30D23BD83A8]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"be6c85b019e2d9da","parentId":"1e3766cbe4e740a3","traceId":"0000000000000000262735b4ce63f325","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:58.478Z","sequence":9171,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_190991]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2ebf8fe5561988fe","parentId":"cd96a4f0fa24f08c","traceId":"0000000000000000c9ec599a18b3d7af","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:58.5Z","sequence":9172,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190991]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2ebf8fe5561988fe","parentId":"cd96a4f0fa24f08c","traceId":"0000000000000000c9ec599a18b3d7af","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:58.866Z","sequence":9173,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 57ABDB55F942]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f1629467450c7a1a","parentId":"29a6576cb02f9147","traceId":"000000000000000068ed479b57aa5860","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:58.914Z","sequence":9174,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 57ABDB55F942]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f1629467450c7a1a","parentId":"29a6576cb02f9147","traceId":"000000000000000068ed479b57aa5860","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:58.929Z","sequence":9175,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:58.929Z","sequence":9176,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB100081F] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:58.953Z","sequence":9177,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:58.953Z","sequence":9178,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:58.973Z","sequence":9179,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-649093d8-9a80-4f76-8a6e-a00d7d1605e2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:59.049Z","sequence":9180,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF5E6BC8B1AA7C2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f9dbc30144aee884","parentId":"f9d3ed189221ce66","traceId":"0000000000000000206297d3c9f8e29a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:59.076Z","sequence":9181,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF5E6BC8B1AA7C2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f9dbc30144aee884","parentId":"f9d3ed189221ce66","traceId":"0000000000000000206297d3c9f8e29a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:59.358Z","sequence":9182,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_190993]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d3c9afa852f34327","parentId":"ac4ac44ccac84469","traceId":"0000000000000000c9f3660107340dc4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:59.387Z","sequence":9183,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190993]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d3c9afa852f34327","parentId":"ac4ac44ccac84469","traceId":"0000000000000000c9f3660107340dc4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:59.589Z","sequence":9184,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 67A437070847]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"37d04b4d2e2f140e","parentId":"a469cf420534a084","traceId":"0000000000000000ed775392b744754c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:59.605Z","sequence":9185,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 67A437070847, resource-version: 4432c8d3-570d-4962-9f1b-42949f55a64b]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"37d04b4d2e2f140e","parentId":"a469cf420534a084","traceId":"0000000000000000ed775392b744754c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:59.612Z","sequence":9186,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 67A437070847, resource-version: 83110be1-324b-4490-8b54-5e5b2fe5a304]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"37d04b4d2e2f140e","parentId":"a469cf420534a084","traceId":"0000000000000000ed775392b744754c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:59.616Z","sequence":9187,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 67A437070847]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e087a5f86f1fccef","parentId":"c45b64e735dfe244","traceId":"0000000000000000ed775392b744754c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:59.912Z","sequence":9188,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 67A437070847]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e087a5f86f1fccef","parentId":"c45b64e735dfe244","traceId":"0000000000000000ed775392b744754c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:59.921Z","sequence":9189,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 1340DC0C321F]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3d83e64bfc4e187c","parentId":"1c35bae83cdd8044","traceId":"0000000000000000615040b4c6db1c67","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:59.944Z","sequence":9190,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 1340DC0C321F, resource-version: 8254c3fe-bd64-4f27-9a7c-9d3c61c65323]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3d83e64bfc4e187c","parentId":"1c35bae83cdd8044","traceId":"0000000000000000615040b4c6db1c67","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:59.953Z","sequence":9191,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 1340DC0C321F, resource-version: e325c958-a3b4-47b9-bc8b-a339407b4eec]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3d83e64bfc4e187c","parentId":"1c35bae83cdd8044","traceId":"0000000000000000615040b4c6db1c67","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:57:59.957Z","sequence":9192,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 1340DC0C321F]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f5fa4b0aafef43d5","parentId":"5bf012347ded6998","traceId":"0000000000000000615040b4c6db1c67","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:00.181Z","sequence":9193,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 1340DC0C321F]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f5fa4b0aafef43d5","parentId":"5bf012347ded6998","traceId":"0000000000000000615040b4c6db1c67","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:00.659Z","sequence":9194,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0F7E1DB010AF]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"625ae0253cff7d30","parentId":"e01cfb4a84cc609c","traceId":"00000000000000008ae3b054e09c75f6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:00.677Z","sequence":9195,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0F7E1DB010AF, resource-version: 1b9960a3-0ef2-47f1-b820-fb036cdf3aa4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"625ae0253cff7d30","parentId":"e01cfb4a84cc609c","traceId":"00000000000000008ae3b054e09c75f6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:00.683Z","sequence":9196,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0F7E1DB010AF, resource-version: 8281f897-b0fb-4636-a8ac-d9163ea9d35a]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"625ae0253cff7d30","parentId":"e01cfb4a84cc609c","traceId":"00000000000000008ae3b054e09c75f6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:00.686Z","sequence":9197,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 0F7E1DB010AF]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0fe649b09f79c28d","parentId":"f5f8a9b296f973e6","traceId":"00000000000000008ae3b054e09c75f6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:00.83Z","sequence":9198,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 0F7E1DB010AF]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0fe649b09f79c28d","parentId":"f5f8a9b296f973e6","traceId":"00000000000000008ae3b054e09c75f6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:00.934Z","sequence":9199,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFA6618E7509FC3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cae7cd9e0b413ad2","parentId":"62dff8bf3d008328","traceId":"0000000000000000e10393b97c0852d2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:00.952Z","sequence":9200,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFA6618E7509FC3, resource-version: f24fb04c-88bf-44eb-904d-3881a01477d8]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cae7cd9e0b413ad2","parentId":"62dff8bf3d008328","traceId":"0000000000000000e10393b97c0852d2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:00.959Z","sequence":9201,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFA6618E7509FC3, resource-version: 1ac175e4-698d-4a84-8cca-becbd4d6fe31]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cae7cd9e0b413ad2","parentId":"62dff8bf3d008328","traceId":"0000000000000000e10393b97c0852d2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:00.996Z","sequence":9202,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFECFA63B3F11B5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"df583a9100086dc7","parentId":"dafe7013a89bbd3c","traceId":"00000000000000000d6c1eb14c2a8627","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:01.036Z","sequence":9203,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFECFA63B3F11B5, resource-version: 2d0705f4-d214-4438-aa87-fff7e1fcbaa7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"df583a9100086dc7","parentId":"dafe7013a89bbd3c","traceId":"00000000000000000d6c1eb14c2a8627","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:01.044Z","sequence":9204,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFECFA63B3F11B5, resource-version: 42077113-b767-4ebb-b845-692aece79ebe]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"df583a9100086dc7","parentId":"dafe7013a89bbd3c","traceId":"00000000000000000d6c1eb14c2a8627","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:01.351Z","sequence":9205,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFECFA63B3F11B5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b8fbbf27befb5f45","parentId":"24a5c6e3a14ee9e9","traceId":"000000000000000090d99501cad039d6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:01.387Z","sequence":9206,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFECFA63B3F11B5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b8fbbf27befb5f45","parentId":"24a5c6e3a14ee9e9","traceId":"000000000000000090d99501cad039d6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:01.473Z","sequence":9207,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF9EA3142D73EA4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"53564484fcbbae38","parentId":"c77feb66a647bb5c","traceId":"00000000000000009c1f6672e732166e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:01.49Z","sequence":9208,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF9EA3142D73EA4, resource-version: 97e8fe49-d643-4289-913d-2731c829adb9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"53564484fcbbae38","parentId":"c77feb66a647bb5c","traceId":"00000000000000009c1f6672e732166e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:01.496Z","sequence":9209,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF9EA3142D73EA4, resource-version: 82f49b16-72b7-4674-b556-7b5a23f63b1c]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"53564484fcbbae38","parentId":"c77feb66a647bb5c","traceId":"00000000000000009c1f6672e732166e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:01.925Z","sequence":9210,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: ED470FBEA643]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ddb24e2eba7095fd","parentId":"c2f14d793212e0ae","traceId":"00000000000000000bbff6ace5c7bd98","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:01.945Z","sequence":9211,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: ED470FBEA643, resource-version: 3df94338-3940-4261-a739-a03d6eb4ce95]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ddb24e2eba7095fd","parentId":"c2f14d793212e0ae","traceId":"00000000000000000bbff6ace5c7bd98","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:01.952Z","sequence":9212,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: ED470FBEA643, resource-version: 56a63c3f-f302-42bb-8fe9-baa1f60e62e2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ddb24e2eba7095fd","parentId":"c2f14d793212e0ae","traceId":"00000000000000000bbff6ace5c7bd98","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:01.956Z","sequence":9213,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: ED470FBEA643]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0c6f485de5882a2f","parentId":"64690ec306fe68f7","traceId":"00000000000000000bbff6ace5c7bd98","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:02.05Z","sequence":9214,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:02.051Z","sequence":9215,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-1340DC0C321F]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:02.101Z","sequence":9216,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-9aafc3a2-cc42-4ac0-9260-c4f9dedfe258, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:02.175Z","sequence":9217,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: ED470FBEA643]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0c6f485de5882a2f","parentId":"64690ec306fe68f7","traceId":"00000000000000000bbff6ace5c7bd98","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:02.221Z","sequence":9218,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:02.221Z","sequence":9219,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 1340DC0C321F]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:02.227Z","sequence":9220,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9a0acd63-8067-46f6-b122-9b46cd831a8e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:02.233Z","sequence":9221,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:02.233Z","sequence":9222,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFA6618E7509FC3] for gateway [1340DC0C321F]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:02.238Z","sequence":9223,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:02.238Z","sequence":9224,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:02.62Z","sequence":9225,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b74e901c-9519-4422-9355-7c15dae62306, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:02.62Z","sequence":9226,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:02.621Z","sequence":9227,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-0F7E1DB010AF]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:02.637Z","sequence":9228,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-d8e150c2-74ee-47cc-b4fe-372c1de160c4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:02.789Z","sequence":9229,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:02.789Z","sequence":9230,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0F7E1DB010AF]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:02.795Z","sequence":9231,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d94f956f-5cf0-40c3-aa97-b3155f9a58d0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:02.799Z","sequence":9232,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:02.799Z","sequence":9233,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF9EA3142D73EA4] for gateway [0F7E1DB010AF]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:02.814Z","sequence":9234,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:02.814Z","sequence":9235,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:02.988Z","sequence":9236,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFB700B7EF53A10]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1a60007f1d9d451c","parentId":"89a79f95d9098ba0","traceId":"000000000000000064e284a2c0f66499","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:03.027Z","sequence":9237,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFB700B7EF53A10, resource-version: c930fcf9-64da-410f-bc3f-f9d123e36710]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1a60007f1d9d451c","parentId":"89a79f95d9098ba0","traceId":"000000000000000064e284a2c0f66499","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:03.037Z","sequence":9238,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFB700B7EF53A10, resource-version: bf32d7d5-5be7-4c1c-a284-b9cce31ca744]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1a60007f1d9d451c","parentId":"89a79f95d9098ba0","traceId":"000000000000000064e284a2c0f66499","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:03.465Z","sequence":9239,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 67A437070847]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5ff8ead9fbac1aa6","parentId":"61b6c91723848c44","traceId":"0000000000000000e43f60053d889e19","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:03.516Z","sequence":9240,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 67A437070847]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5ff8ead9fbac1aa6","parentId":"61b6c91723848c44","traceId":"0000000000000000e43f60053d889e19","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:03.66Z","sequence":9241,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8d1933c3-51bd-4bc9-8ff4-839da3bb2443, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:05.361Z","sequence":9242,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFB700B7EF53A10]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6047f2cd62d88d89","parentId":"93c3c9b10aac1a3b","traceId":"000000000000000056854ca9cf8c089e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:05.387Z","sequence":9243,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFB700B7EF53A10]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6047f2cd62d88d89","parentId":"93c3c9b10aac1a3b","traceId":"000000000000000056854ca9cf8c089e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:05.478Z","sequence":9244,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191000]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e6e5c962753ac7a1","parentId":"136ed9c4526abecb","traceId":"00000000000000004be9a9e600cadf2e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:05.512Z","sequence":9245,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191000, resource-version: e64b2260-64fa-4563-80b0-bd75de7e0085]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e6e5c962753ac7a1","parentId":"136ed9c4526abecb","traceId":"00000000000000004be9a9e600cadf2e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:05.523Z","sequence":9246,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191000, resource-version: 831343e9-f3dd-4199-8a74-8854d12080ee]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e6e5c962753ac7a1","parentId":"136ed9c4526abecb","traceId":"00000000000000004be9a9e600cadf2e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:05.526Z","sequence":9247,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191000]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"341f9b17fddae678","parentId":"7aa736e2cf7ec3b9","traceId":"00000000000000004be9a9e600cadf2e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:05.589Z","sequence":9248,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: ED470FBEA643]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"dfac8d06884b99b5","parentId":"8934d741030b8ccb","traceId":"0000000000000000a968fde6b665283b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:05.61Z","sequence":9249,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: ED470FBEA643]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"dfac8d06884b99b5","parentId":"8934d741030b8ccb","traceId":"0000000000000000a968fde6b665283b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:05.727Z","sequence":9250,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191000]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"341f9b17fddae678","parentId":"7aa736e2cf7ec3b9","traceId":"00000000000000004be9a9e600cadf2e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:06.072Z","sequence":9251,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191001]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"442be4a86f57f84e","parentId":"8982080694725ad2","traceId":"0000000000000000a3a88a6f5d8f36f8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:06.096Z","sequence":9252,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191001, resource-version: 37b26a2e-4245-4826-a1ea-bd3f3eb52f78]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"442be4a86f57f84e","parentId":"8982080694725ad2","traceId":"0000000000000000a3a88a6f5d8f36f8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:06.106Z","sequence":9253,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191001, resource-version: 51d1ae4b-c293-4bbf-899e-6190d9125c94]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"442be4a86f57f84e","parentId":"8982080694725ad2","traceId":"0000000000000000a3a88a6f5d8f36f8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:06.109Z","sequence":9254,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191001]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"07f7afd32ba14f82","parentId":"528cd0e4fc3b71e3","traceId":"0000000000000000a3a88a6f5d8f36f8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:06.281Z","sequence":9255,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF4BDDAB21C0959]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5856e61a09dd665c","parentId":"dfafd55b6ab466bb","traceId":"000000000000000007c926466fb63784","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:06.285Z","sequence":9256,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191001]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"07f7afd32ba14f82","parentId":"528cd0e4fc3b71e3","traceId":"0000000000000000a3a88a6f5d8f36f8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:06.307Z","sequence":9257,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF4BDDAB21C0959, resource-version: 8efafa80-5aab-4d93-a7b4-43d5654de3cb]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5856e61a09dd665c","parentId":"dfafd55b6ab466bb","traceId":"000000000000000007c926466fb63784","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:06.314Z","sequence":9258,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF1C1D1359962B8]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ae9ba2c7fe80ba5a","parentId":"d9b2426c14d2a4f9","traceId":"00000000000000007dd93cf33cdee80d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:06.315Z","sequence":9259,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF4BDDAB21C0959, resource-version: 2c089102-7274-4a2e-944c-b33479f217fc]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5856e61a09dd665c","parentId":"dfafd55b6ab466bb","traceId":"000000000000000007c926466fb63784","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:06.333Z","sequence":9260,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF1C1D1359962B8]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ae9ba2c7fe80ba5a","parentId":"d9b2426c14d2a4f9","traceId":"00000000000000007dd93cf33cdee80d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:06.631Z","sequence":9261,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 4B328DD74A0E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8fe3bcbafd3117d0","parentId":"fa3e2724d9655186","traceId":"0000000000000000e3e01147f14a7d8d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:06.652Z","sequence":9262,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 4B328DD74A0E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8fe3bcbafd3117d0","parentId":"fa3e2724d9655186","traceId":"0000000000000000e3e01147f14a7d8d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:07.121Z","sequence":9263,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF0998231BB230A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fc1e82a92328cf5b","parentId":"170aaf767166a1a4","traceId":"000000000000000078009a2da96cb334","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:07.14Z","sequence":9264,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF0998231BB230A, resource-version: d89fd9e5-3f0b-4008-a9a8-f5dfdfbd795d]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fc1e82a92328cf5b","parentId":"170aaf767166a1a4","traceId":"000000000000000078009a2da96cb334","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:07.147Z","sequence":9265,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF0998231BB230A, resource-version: 1aa6a7fb-0839-4571-bac4-666a86ad5328]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fc1e82a92328cf5b","parentId":"170aaf767166a1a4","traceId":"000000000000000078009a2da96cb334","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:07.475Z","sequence":9266,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:07.481Z","sequence":9267,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191000]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:07.492Z","sequence":9268,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-9fd9e3ef-4095-48fa-ac4e-7657c466f395, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:07.548Z","sequence":9269,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:07.548Z","sequence":9270,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-0F7E1DB010AF]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:07.563Z","sequence":9271,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-258e7ec9-8f75-499f-a33e-db335670999c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:07.628Z","sequence":9272,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:07.628Z","sequence":9273,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF4BDDAB21C0959] for gateway [gateway_integrationtest_network_191000]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:07.629Z","sequence":9274,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:07.629Z","sequence":9275,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191000]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:07.637Z","sequence":9276,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:07.638Z","sequence":9277,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:07.638Z","sequence":9278,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-612363f8-b1ad-4e8a-a046-b819f7497c78, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:08.121Z","sequence":9279,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-de3d386d-3459-48b5-83a7-238f8a08a2fa, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:08.491Z","sequence":9280,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:08.491Z","sequence":9281,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191001]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:08.547Z","sequence":9282,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-71f91daa-2c10-42b6-92ab-1a95fff8bdd1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:08.717Z","sequence":9283,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:08.717Z","sequence":9284,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF0998231BB230A] for gateway [gateway_integrationtest_network_191001]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:08.717Z","sequence":9285,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:08.717Z","sequence":9286,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191001]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:08.733Z","sequence":9287,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-31fb107f-9de5-4973-80d8-98d6701c98d5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:08.733Z","sequence":9288,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.8.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:08.734Z","sequence":9289,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:09.086Z","sequence":9290,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b053562d-f758-402c-8894-c5936d1bd041, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:10.813Z","sequence":9291,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:10.813Z","sequence":9292,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10018D7] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:10.82Z","sequence":9293,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:10.821Z","sequence":9294,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:10.827Z","sequence":9295,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-793a1dff-88bb-4b34-9746-4d53e3a993ed, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:11.405Z","sequence":9296,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/acta:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:11.405Z","sequence":9297,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: acta, device-id: 0008004AAAA3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:11.421Z","sequence":9298,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0ac86689-ba67-4362-835f-5b374ab4c486, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:11.429Z","sequence":9299,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:11.429Z","sequence":9300,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: acta]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:11.437Z","sequence":9301,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-79d964e4-7df2-45a1-ab6f-3fc736cf1b94, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:12.189Z","sequence":9302,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191002]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a21a578dfa614783","parentId":"58255672a051e421","traceId":"00000000000000000f8c989351f8f24a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:12.212Z","sequence":9303,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191002, resource-version: 8675ec7e-95ba-4011-bc1c-8411d18117ba]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a21a578dfa614783","parentId":"58255672a051e421","traceId":"00000000000000000f8c989351f8f24a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:12.22Z","sequence":9304,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191002, resource-version: b6493173-3b4a-4557-aed0-69b1e2962678]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a21a578dfa614783","parentId":"58255672a051e421","traceId":"00000000000000000f8c989351f8f24a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:12.227Z","sequence":9305,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191002]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"885a45c0c4abb825","parentId":"5410e0fd7e7a785e","traceId":"00000000000000000f8c989351f8f24a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:12.528Z","sequence":9306,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191002]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"885a45c0c4abb825","parentId":"5410e0fd7e7a785e","traceId":"00000000000000000f8c989351f8f24a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:12.897Z","sequence":9307,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF4BDDAB21C0959]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"38865c77287422a6","parentId":"af93e2cf9bd2a07d","traceId":"00000000000000000c97299a63e1813e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:12.916Z","sequence":9308,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF4BDDAB21C0959]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"38865c77287422a6","parentId":"af93e2cf9bd2a07d","traceId":"00000000000000000c97299a63e1813e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:13.222Z","sequence":9309,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: EC95B8B92A82]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"73e59918a6c0c628","parentId":"0dda72d525120cf6","traceId":"00000000000000000dba34f30c6b1e4e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:13.255Z","sequence":9310,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: EC95B8B92A82, resource-version: 670d3251-09f8-4e6a-aec4-e7afe3d5ffa6]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"73e59918a6c0c628","parentId":"0dda72d525120cf6","traceId":"00000000000000000dba34f30c6b1e4e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:13.265Z","sequence":9311,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: EC95B8B92A82, resource-version: 6c04512c-1c01-4278-bf32-f9ca50e8d6ea]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"73e59918a6c0c628","parentId":"0dda72d525120cf6","traceId":"00000000000000000dba34f30c6b1e4e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:13.27Z","sequence":9312,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: EC95B8B92A82]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2f18379f2a429414","parentId":"75bdc6bff5d90c29","traceId":"00000000000000000dba34f30c6b1e4e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:13.604Z","sequence":9313,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: EC95B8B92A82]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2f18379f2a429414","parentId":"75bdc6bff5d90c29","traceId":"00000000000000000dba34f30c6b1e4e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:13.749Z","sequence":9314,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191000]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"505acd45cb3a4d28","parentId":"69baf43ca7bbd007","traceId":"000000000000000055641dd4b5c9548c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:13.766Z","sequence":9315,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191000]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"505acd45cb3a4d28","parentId":"69baf43ca7bbd007","traceId":"000000000000000055641dd4b5c9548c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:14.336Z","sequence":9316,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191004]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"abb14adaed26575b","parentId":"5f588bee58ad1ce4","traceId":"00000000000000009c2a69389d517857","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:14.362Z","sequence":9317,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191004, resource-version: 6190f5d7-4d67-4643-b7c4-81895c01d5b5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"abb14adaed26575b","parentId":"5f588bee58ad1ce4","traceId":"00000000000000009c2a69389d517857","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:14.369Z","sequence":9318,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191004, resource-version: 3f490205-2dda-4998-ae09-96389c249f9a]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"abb14adaed26575b","parentId":"5f588bee58ad1ce4","traceId":"00000000000000009c2a69389d517857","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:14.372Z","sequence":9319,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191004]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"21d2c1a66e76a27a","parentId":"482b79bbc367420c","traceId":"00000000000000009c2a69389d517857","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:14.514Z","sequence":9320,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFC22D09E79457A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5dfb7f86a837544b","parentId":"c33231a45f247560","traceId":"00000000000000000994fb1ab064ab31","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:14.557Z","sequence":9321,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFC22D09E79457A, resource-version: 83f1440b-bbbc-4733-bb42-c108794aea8b]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5dfb7f86a837544b","parentId":"c33231a45f247560","traceId":"00000000000000000994fb1ab064ab31","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:14.563Z","sequence":9322,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFC22D09E79457A, resource-version: b796e433-da2c-4f9b-83de-d80f8671c4d3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5dfb7f86a837544b","parentId":"c33231a45f247560","traceId":"00000000000000000994fb1ab064ab31","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:14.607Z","sequence":9323,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF12F847B076766]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e7e7a59c205fbd97","parentId":"4992f9b66f55ee25","traceId":"000000000000000075017b81efbf3f99","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:14.618Z","sequence":9324,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191004]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"21d2c1a66e76a27a","parentId":"482b79bbc367420c","traceId":"00000000000000009c2a69389d517857","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:14.668Z","sequence":9325,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF12F847B076766, resource-version: 8517fb6e-3f18-4ef0-b8c8-1c8adc77cbbd]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e7e7a59c205fbd97","parentId":"4992f9b66f55ee25","traceId":"000000000000000075017b81efbf3f99","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:14.693Z","sequence":9326,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF12F847B076766, resource-version: be427dc5-d8cc-428f-81c7-b3bc90e953e6]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e7e7a59c205fbd97","parentId":"4992f9b66f55ee25","traceId":"000000000000000075017b81efbf3f99","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:15.436Z","sequence":9327,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFA6618E7509FC3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d8f7d04ed91cb22a","parentId":"7776dff7545352e5","traceId":"000000000000000081a1c7670f3c3f1a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:15.463Z","sequence":9328,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFA6618E7509FC3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d8f7d04ed91cb22a","parentId":"7776dff7545352e5","traceId":"000000000000000081a1c7670f3c3f1a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:15.528Z","sequence":9329,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF54B2F39E40C5A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7d5a03be298a071c","parentId":"fcf10326d4d8e2cd","traceId":"00000000000000005dc2779e33168386","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:15.543Z","sequence":9330,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF54B2F39E40C5A, resource-version: 3ee1eced-6e6e-4d96-b0a8-145712470810]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7d5a03be298a071c","parentId":"fcf10326d4d8e2cd","traceId":"00000000000000005dc2779e33168386","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:15.549Z","sequence":9331,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF54B2F39E40C5A, resource-version: f0b177b9-1627-4a0c-989a-072863d75314]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7d5a03be298a071c","parentId":"fcf10326d4d8e2cd","traceId":"00000000000000005dc2779e33168386","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:15.756Z","sequence":9332,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 1340DC0C321F]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"dbaead2d418fe8f2","parentId":"01dd4ca2cdc663e5","traceId":"00000000000000005ee1183ecba7e6f5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:15.776Z","sequence":9333,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 1340DC0C321F]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"dbaead2d418fe8f2","parentId":"01dd4ca2cdc663e5","traceId":"00000000000000005ee1183ecba7e6f5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:16.004Z","sequence":9334,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:16.005Z","sequence":9335,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191002]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:16.015Z","sequence":9336,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-2b1161f8-f9fa-407a-8b99-d8143c88107e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:16.145Z","sequence":9337,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:16.145Z","sequence":9338,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF12F847B076766] for gateway [gateway_integrationtest_network_191002]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:16.146Z","sequence":9339,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:16.146Z","sequence":9340,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191002]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:16.148Z","sequence":9341,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFC22D09E79457A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"05827e73afaa965e","parentId":"d307080744b52bc3","traceId":"0000000000000000ed554f487ff48b68","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:16.16Z","sequence":9342,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:16.16Z","sequence":9343,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:16.16Z","sequence":9344,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ed948684-b763-4c84-b9f7-e2feda63dc75, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:16.184Z","sequence":9345,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFC22D09E79457A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"05827e73afaa965e","parentId":"d307080744b52bc3","traceId":"0000000000000000ed554f487ff48b68","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:16.514Z","sequence":9346,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c2d72343-7145-4f31-9175-a0c04d9e7f2c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:16.727Z","sequence":9347,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:16.727Z","sequence":9348,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191004]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:16.749Z","sequence":9349,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-8e14985f-50fb-47e4-b942-80262c3f4c99, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:16.904Z","sequence":9350,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:16.904Z","sequence":9351,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF54B2F39E40C5A] for gateway [gateway_integrationtest_network_191004]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:16.905Z","sequence":9352,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:16.905Z","sequence":9353,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191004]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:16.915Z","sequence":9354,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:16.916Z","sequence":9355,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:16.917Z","sequence":9356,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-51f0d080-1aaa-4b34-8920-40e61d3675a1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:17.24Z","sequence":9357,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-13b6077d-4797-4298-ae9d-541c4595c31e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:17.313Z","sequence":9358,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: EC95B8B92A82]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"66b50f970bf0a9ee","parentId":"f3185dfbc5ee53fc","traceId":"0000000000000000f3813d3066ff3dc6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:17.402Z","sequence":9359,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: EC95B8B92A82]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"66b50f970bf0a9ee","parentId":"f3185dfbc5ee53fc","traceId":"0000000000000000f3813d3066ff3dc6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:18.896Z","sequence":9360,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:18.896Z","sequence":9361,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB100088A] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:18.925Z","sequence":9362,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:18.925Z","sequence":9363,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:18.928Z","sequence":9364,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e0945587-e075-4d46-a4f9-501c8ee16357, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:18.959Z","sequence":9365,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191005]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"74e4b7128f3a4661","parentId":"f12977191d7abeb5","traceId":"0000000000000000e57f89a82e74e6eb","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:18.991Z","sequence":9366,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191005, resource-version: 3d967bc8-89f6-434c-a433-015f57202c71]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"74e4b7128f3a4661","parentId":"f12977191d7abeb5","traceId":"0000000000000000e57f89a82e74e6eb","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:18.997Z","sequence":9367,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191005, resource-version: 1d3bdd9e-3c8a-48e1-9ff7-49da766cec0c]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"74e4b7128f3a4661","parentId":"f12977191d7abeb5","traceId":"0000000000000000e57f89a82e74e6eb","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:19.001Z","sequence":9368,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191005]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"aa124e9db531173b","parentId":"7ab1cacc077af5f2","traceId":"0000000000000000e57f89a82e74e6eb","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:19.028Z","sequence":9369,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF0998231BB230A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"667afcd5938e24b0","parentId":"811c2a94b3df76da","traceId":"0000000000000000c2035e906fcf0c3b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:19.045Z","sequence":9370,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF0998231BB230A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"667afcd5938e24b0","parentId":"811c2a94b3df76da","traceId":"0000000000000000c2035e906fcf0c3b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:19.195Z","sequence":9371,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191005]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"aa124e9db531173b","parentId":"7ab1cacc077af5f2","traceId":"0000000000000000e57f89a82e74e6eb","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:19.965Z","sequence":9372,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: CBFE1E519CCD]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d2f3867a87f2aa14","parentId":"e108d8af16779e19","traceId":"00000000000000002b48228e10c8c0b8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:19.983Z","sequence":9373,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: CBFE1E519CCD, resource-version: 28ab6313-f6d5-4950-ba43-991fc8629a24]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d2f3867a87f2aa14","parentId":"e108d8af16779e19","traceId":"00000000000000002b48228e10c8c0b8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:19.989Z","sequence":9374,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: CBFE1E519CCD, resource-version: 87281f83-e18d-4cc2-b084-0a46499d9690]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d2f3867a87f2aa14","parentId":"e108d8af16779e19","traceId":"00000000000000002b48228e10c8c0b8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:19.995Z","sequence":9375,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: CBFE1E519CCD]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"374071c0cee49dc9","parentId":"6642d9fef0907ac2","traceId":"00000000000000002b48228e10c8c0b8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:20.126Z","sequence":9376,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: CBFE1E519CCD]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"374071c0cee49dc9","parentId":"6642d9fef0907ac2","traceId":"00000000000000002b48228e10c8c0b8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:20.293Z","sequence":9377,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF9EA3142D73EA4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f91d9a3f25dc056a","parentId":"d41e0288c57e8add","traceId":"00000000000000004b3f11212361bf33","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:20.333Z","sequence":9378,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191001]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"17f5ae4581502160","parentId":"c80248982676b7b1","traceId":"00000000000000000a6a56858a54bfd7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:20.351Z","sequence":9379,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF9EA3142D73EA4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f91d9a3f25dc056a","parentId":"d41e0288c57e8add","traceId":"00000000000000004b3f11212361bf33","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:20.396Z","sequence":9380,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191001]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"17f5ae4581502160","parentId":"c80248982676b7b1","traceId":"00000000000000000a6a56858a54bfd7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:20.849Z","sequence":9381,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF6E58728D02FD9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a9a56bc9606883ae","parentId":"db0678624b615e5e","traceId":"0000000000000000845d57ccae4fc695","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:20.87Z","sequence":9382,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF6E58728D02FD9, resource-version: a3f03966-e29e-42a6-a430-c924f21a305d]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a9a56bc9606883ae","parentId":"db0678624b615e5e","traceId":"0000000000000000845d57ccae4fc695","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:20.876Z","sequence":9383,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF6E58728D02FD9, resource-version: 8548e183-3472-4d22-8704-4ab13942fad8]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a9a56bc9606883ae","parentId":"db0678624b615e5e","traceId":"0000000000000000845d57ccae4fc695","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:20.984Z","sequence":9384,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0F7E1DB010AF]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ce39c1f5bec3074e","parentId":"a553f95a3d787381","traceId":"00000000000000005fe492ab88ae3dad","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:21.004Z","sequence":9385,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0F7E1DB010AF]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ce39c1f5bec3074e","parentId":"a553f95a3d787381","traceId":"00000000000000005fe492ab88ae3dad","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:21.184Z","sequence":9386,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF206718B4852B7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0c1ca2c55715cdad","parentId":"a92af4632197a33a","traceId":"00000000000000004782180626ce5268","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:21.205Z","sequence":9387,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF206718B4852B7, resource-version: 4525d1bc-9773-467c-b36f-42f092149a94]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0c1ca2c55715cdad","parentId":"a92af4632197a33a","traceId":"00000000000000004782180626ce5268","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:21.211Z","sequence":9388,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:21.211Z","sequence":9389,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B82] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:21.215Z","sequence":9390,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF206718B4852B7, resource-version: 3afe822c-0496-4208-9a70-911911a52a07]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0c1ca2c55715cdad","parentId":"a92af4632197a33a","traceId":"00000000000000004782180626ce5268","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:21.218Z","sequence":9391,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:21.218Z","sequence":9392,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:21.225Z","sequence":9393,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c964c287-780a-4060-9cb1-cf4856956106, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:21.245Z","sequence":9394,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 838B0A333493]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3c2ec93716bc6dc2","parentId":"c35b534e18b84b0e","traceId":"00000000000000008a9493d8e1b689b9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:21.274Z","sequence":9395,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 838B0A333493, resource-version: efb2797e-38bc-4397-921b-7f379b1a2173]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3c2ec93716bc6dc2","parentId":"c35b534e18b84b0e","traceId":"00000000000000008a9493d8e1b689b9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:21.296Z","sequence":9396,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 838B0A333493, resource-version: f0fce3ce-d1ae-4222-a9c2-b0b3d45a98ec]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3c2ec93716bc6dc2","parentId":"c35b534e18b84b0e","traceId":"00000000000000008a9493d8e1b689b9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:21.305Z","sequence":9397,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 838B0A333493]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"82f3bc847a006808","parentId":"0090582f0f232cef","traceId":"00000000000000008a9493d8e1b689b9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:21.691Z","sequence":9398,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 838B0A333493]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"82f3bc847a006808","parentId":"0090582f0f232cef","traceId":"00000000000000008a9493d8e1b689b9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:22.053Z","sequence":9399,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:22.054Z","sequence":9400,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191005]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:22.093Z","sequence":9401,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-77b4516e-6ef3-4281-ac88-158daefdca2e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:22.215Z","sequence":9402,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:22.216Z","sequence":9403,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF6E58728D02FD9] for gateway [gateway_integrationtest_network_191005]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:22.217Z","sequence":9404,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:22.217Z","sequence":9405,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191005]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:22.227Z","sequence":9406,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1163b9ed-52bb-42c2-b184-88b0bc7dd284, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:22.228Z","sequence":9407,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:22.228Z","sequence":9408,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:22.288Z","sequence":9409,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:22.289Z","sequence":9410,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-CBFE1E519CCD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:22.615Z","sequence":9411,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-70c76dbe-2146-4539-b634-8cad50ffded1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:22.63Z","sequence":9412,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-68d67b56-2106-4ec1-a161-6e5d720dd12f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:22.756Z","sequence":9413,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:22.758Z","sequence":9414,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: CBFE1E519CCD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:22.777Z","sequence":9415,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0ad60138-e34c-4b78-8df7-df4ace09ab8c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:22.781Z","sequence":9416,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:22.781Z","sequence":9417,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF206718B4852B7] for gateway [CBFE1E519CCD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:22.789Z","sequence":9418,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.5.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:22.795Z","sequence":9419,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:22.821Z","sequence":9420,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF93A6995B970AE]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7c2466e4d11b5498","parentId":"c901ce3adc257a85","traceId":"00000000000000005e4e010cfa297cd8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:22.9Z","sequence":9421,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF93A6995B970AE, resource-version: 9fdb011c-47c0-4fd8-804f-8416996ce0b7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7c2466e4d11b5498","parentId":"c901ce3adc257a85","traceId":"00000000000000005e4e010cfa297cd8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:22.956Z","sequence":9422,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF93A6995B970AE, resource-version: 97d5e0e6-6667-4466-bb65-126e9bc88cda]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7c2466e4d11b5498","parentId":"c901ce3adc257a85","traceId":"00000000000000005e4e010cfa297cd8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:23.481Z","sequence":9423,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6f061d4a-c3d4-48d1-a567-ef667c7e6a8d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:23.482Z","sequence":9424,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:23.482Z","sequence":9425,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF206718B4852B7] for gateway [CBFE1E519CCD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:23.523Z","sequence":9426,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.5.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:23.523Z","sequence":9427,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:23.59Z","sequence":9428,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: BF36ED99FB51]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9413ed120a7acb05","parentId":"2154adecb0185992","traceId":"0000000000000000f20c7392c9ca807c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:23.657Z","sequence":9429,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: BF36ED99FB51, resource-version: 58a1d91b-5196-4af4-a7d4-bb14c3653742]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9413ed120a7acb05","parentId":"2154adecb0185992","traceId":"0000000000000000f20c7392c9ca807c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:23.666Z","sequence":9430,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: BF36ED99FB51, resource-version: 61d6df70-979c-4517-81d0-77598b6397ce]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9413ed120a7acb05","parentId":"2154adecb0185992","traceId":"0000000000000000f20c7392c9ca807c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:23.67Z","sequence":9431,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: BF36ED99FB51]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"707c7f6b9931482c","parentId":"73e06fba63fc40f6","traceId":"0000000000000000f20c7392c9ca807c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:24.306Z","sequence":9432,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: BF36ED99FB51]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"707c7f6b9931482c","parentId":"73e06fba63fc40f6","traceId":"0000000000000000f20c7392c9ca807c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:24.555Z","sequence":9433,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-698c2e41-8c14-4563-87c1-d67a77648e6b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:24.556Z","sequence":9434,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:24.556Z","sequence":9435,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-838B0A333493]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:24.585Z","sequence":9436,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-004f917b-3ec7-4160-a0c3-6d183f0eb9ab, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:24.707Z","sequence":9437,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:24.707Z","sequence":9438,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 838B0A333493]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:24.733Z","sequence":9439,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7e89599e-c424-47b1-9b88-7020b1ef7845, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:24.741Z","sequence":9440,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:24.741Z","sequence":9441,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF93A6995B970AE] for gateway [838B0A333493]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:24.75Z","sequence":9442,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.8.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:24.75Z","sequence":9443,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:25.435Z","sequence":9444,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a5764996-db6a-4eb5-9267-da8122615be3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:25.513Z","sequence":9445,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:25.513Z","sequence":9446,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oci]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:25.517Z","sequence":9447,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-de3d2bfb-2d53-499d-b395-8076353232db, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:25.526Z","sequence":9448,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:25.526Z","sequence":9449,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001D3] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:25.536Z","sequence":9450,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:25.536Z","sequence":9451,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:25.547Z","sequence":9452,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-98c16c82-9390-404f-815a-630f4fe849bf, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:25.596Z","sequence":9453,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:25.596Z","sequence":9454,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001D3] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:25.602Z","sequence":9455,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:25.602Z","sequence":9456,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:25.605Z","sequence":9457,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-61aedfa6-0698-4a16-9c16-8944bbe4588a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:25.978Z","sequence":9458,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF8899100D2F4FD]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"498ad8684644b0e2","parentId":"1a058f25046b71dc","traceId":"000000000000000085d3ad158d8e4fbd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:26.009Z","sequence":9459,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF8899100D2F4FD, resource-version: d6cb9e5e-0b50-4dc2-8416-706877915c40]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"498ad8684644b0e2","parentId":"1a058f25046b71dc","traceId":"000000000000000085d3ad158d8e4fbd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:26.021Z","sequence":9460,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF8899100D2F4FD, resource-version: a0f83178-e54d-4e42-b83a-788dcbdf7580]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"498ad8684644b0e2","parentId":"1a058f25046b71dc","traceId":"000000000000000085d3ad158d8e4fbd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:26.922Z","sequence":9461,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:26.923Z","sequence":9462,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BCD] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:26.933Z","sequence":9463,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:26.933Z","sequence":9464,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:26.94Z","sequence":9465,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a7354072-0c6b-4c51-aa8b-41fe3b237825, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:27.209Z","sequence":9466,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:27.209Z","sequence":9467,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-BF36ED99FB51]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:27.224Z","sequence":9468,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-40c769ab-b01d-4030-a3a4-399a2b1f7eb3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:27.349Z","sequence":9469,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:27.349Z","sequence":9470,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: BF36ED99FB51]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:27.365Z","sequence":9471,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-207883ed-787e-4e8c-b456-affb3962d4c4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:27.373Z","sequence":9472,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:27.373Z","sequence":9473,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF8899100D2F4FD] for gateway [BF36ED99FB51]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:27.401Z","sequence":9474,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.3.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:27.401Z","sequence":9475,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:27.901Z","sequence":9476,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ea82f201-454e-449c-9486-45e59c7f6200, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:28.049Z","sequence":9477,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF6E58728D02FD9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"83f4d878f0853c16","parentId":"e13079cc032f93af","traceId":"00000000000000005a869302ad44a095","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:28.092Z","sequence":9478,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF6E58728D02FD9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"83f4d878f0853c16","parentId":"e13079cc032f93af","traceId":"00000000000000005a869302ad44a095","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:28.349Z","sequence":9479,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF54B2F39E40C5A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7f096265242efcd0","parentId":"377343ae7ce48f12","traceId":"0000000000000000191d30aa24accd1f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:28.394Z","sequence":9480,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF54B2F39E40C5A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7f096265242efcd0","parentId":"377343ae7ce48f12","traceId":"0000000000000000191d30aa24accd1f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:28.517Z","sequence":9481,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191005]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"239cef9851ccd9f5","parentId":"36c1fc340d0e992b","traceId":"0000000000000000dbddb70e4719454a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:28.545Z","sequence":9482,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191005]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"239cef9851ccd9f5","parentId":"36c1fc340d0e992b","traceId":"0000000000000000dbddb70e4719454a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:29.061Z","sequence":9483,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191004]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bfd0b7d2f36927ac","parentId":"c4a3ab28589694d0","traceId":"0000000000000000c23fe5cdc1868ffe","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:29.094Z","sequence":9484,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191004]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bfd0b7d2f36927ac","parentId":"c4a3ab28589694d0","traceId":"0000000000000000c23fe5cdc1868ffe","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:29.418Z","sequence":9485,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/acta:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:29.418Z","sequence":9486,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: acta, device-id: 39383837002D004A] for gateway [0008004AAAA3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:29.461Z","sequence":9487,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_acta\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:29.461Z","sequence":9488,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_acta\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:29.468Z","sequence":9489,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-49a6fb8c-28fd-4910-a3d9-4530aefe7a82, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:30.366Z","sequence":9490,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 7CC4C8B60E01]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"08538ea5198cb14f","parentId":"198f89ab64915bb7","traceId":"0000000000000000402d8a4c22e89bde","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:30.386Z","sequence":9491,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 7CC4C8B60E01, resource-version: 23accafc-dff1-4618-b35b-d15e26956419]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"08538ea5198cb14f","parentId":"198f89ab64915bb7","traceId":"0000000000000000402d8a4c22e89bde","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:30.395Z","sequence":9492,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 7CC4C8B60E01, resource-version: 789c2f52-1ef5-48cc-b60e-0d96d1b0ce97]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"08538ea5198cb14f","parentId":"198f89ab64915bb7","traceId":"0000000000000000402d8a4c22e89bde","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:30.4Z","sequence":9493,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 7CC4C8B60E01]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a50d5c4dcdbab285","parentId":"d427cdef4b5ef83b","traceId":"0000000000000000402d8a4c22e89bde","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:30.72Z","sequence":9494,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 7CC4C8B60E01]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a50d5c4dcdbab285","parentId":"d427cdef4b5ef83b","traceId":"0000000000000000402d8a4c22e89bde","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:30.877Z","sequence":9495,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191011]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a4ea31a3b3e5c9f2","parentId":"037e29fef956fb28","traceId":"0000000000000000150dbba819ffe5de","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:30.905Z","sequence":9496,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191011, resource-version: 69395746-6c3c-4ad7-af53-eb798c90572f]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a4ea31a3b3e5c9f2","parentId":"037e29fef956fb28","traceId":"0000000000000000150dbba819ffe5de","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:30.913Z","sequence":9497,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191011, resource-version: 1374db6d-f391-4461-b532-070d6b12b13d]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a4ea31a3b3e5c9f2","parentId":"037e29fef956fb28","traceId":"0000000000000000150dbba819ffe5de","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:30.919Z","sequence":9498,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191011]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"40cf6dc6d42ec1ea","parentId":"531f9802f9b255c1","traceId":"0000000000000000150dbba819ffe5de","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:31.118Z","sequence":9499,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF12F847B076766]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"24cb984b324f6569","parentId":"dcd177b8e4bb3b07","traceId":"0000000000000000226f6b6a76d5fcc4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:31.146Z","sequence":9500,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF12F847B076766]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"24cb984b324f6569","parentId":"dcd177b8e4bb3b07","traceId":"0000000000000000226f6b6a76d5fcc4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:31.195Z","sequence":9501,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 503A5D9B48D2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"34294003083faf7d","parentId":"26499211a12e035c","traceId":"0000000000000000adfe95f4b958ff48","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:31.264Z","sequence":9502,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 503A5D9B48D2, resource-version: 098f675d-1721-4db4-9e51-6bb2cd7e6f49]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"34294003083faf7d","parentId":"26499211a12e035c","traceId":"0000000000000000adfe95f4b958ff48","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:31.289Z","sequence":9503,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:31.289Z","sequence":9504,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BD2] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:31.301Z","sequence":9505,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 503A5D9B48D2, resource-version: 26a34bc1-406d-4353-a4a7-0057a5c365ae]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"34294003083faf7d","parentId":"26499211a12e035c","traceId":"0000000000000000adfe95f4b958ff48","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:31.316Z","sequence":9506,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 503A5D9B48D2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"aecb2b3d3dbf8277","parentId":"69aa8d3a7a5fb62e","traceId":"0000000000000000adfe95f4b958ff48","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:31.319Z","sequence":9507,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:31.319Z","sequence":9508,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:31.325Z","sequence":9509,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d9958c20-0507-4110-b527-5f245f2b5bef, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:31.349Z","sequence":9510,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191011]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"40cf6dc6d42ec1ea","parentId":"531f9802f9b255c1","traceId":"0000000000000000150dbba819ffe5de","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:31.556Z","sequence":9511,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 503A5D9B48D2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"aecb2b3d3dbf8277","parentId":"69aa8d3a7a5fb62e","traceId":"0000000000000000adfe95f4b958ff48","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:31.975Z","sequence":9512,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF247EA8BE60E0D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9483241a713b97ab","parentId":"296eb8188cd359a5","traceId":"000000000000000075c9a6c792f1cbc0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:31.997Z","sequence":9513,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF247EA8BE60E0D, resource-version: 23ec09d2-628f-4dab-8a58-9c3e470de766]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9483241a713b97ab","parentId":"296eb8188cd359a5","traceId":"000000000000000075c9a6c792f1cbc0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:32.006Z","sequence":9514,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF247EA8BE60E0D, resource-version: b1e22b8f-8a46-4d18-b32c-f43c89ae725f]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9483241a713b97ab","parentId":"296eb8188cd359a5","traceId":"000000000000000075c9a6c792f1cbc0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:32.698Z","sequence":9515,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191002]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b8966d3e305d9a2a","parentId":"8faeb9ffe83ede70","traceId":"0000000000000000bac1acc54f473df7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:32.745Z","sequence":9516,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191002]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b8966d3e305d9a2a","parentId":"8faeb9ffe83ede70","traceId":"0000000000000000bac1acc54f473df7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:32.947Z","sequence":9517,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFF24B0B87F35A5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"605b973e2b4d0461","parentId":"aa6c610d3552ded5","traceId":"00000000000000005bb2cffb92c19909","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:32.962Z","sequence":9518,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFF24B0B87F35A5, resource-version: e0e67f51-5fc9-498b-8b63-847987fa4d61]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"605b973e2b4d0461","parentId":"aa6c610d3552ded5","traceId":"00000000000000005bb2cffb92c19909","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:32.969Z","sequence":9519,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFF24B0B87F35A5, resource-version: dbca17ff-321e-46cd-b087-06acdfb52a65]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"605b973e2b4d0461","parentId":"aa6c610d3552ded5","traceId":"00000000000000005bb2cffb92c19909","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:33.437Z","sequence":9520,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:33.437Z","sequence":9521,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-7CC4C8B60E01]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:33.47Z","sequence":9522,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-61e83b45-9d57-4c3b-9219-63cb84218547, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:33.6Z","sequence":9523,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:33.6Z","sequence":9524,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 7CC4C8B60E01]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:33.613Z","sequence":9525,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-814d8acf-66fa-451c-9d1d-afcfbd29f702, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:33.62Z","sequence":9526,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:33.62Z","sequence":9527,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF247EA8BE60E0D] for gateway [7CC4C8B60E01]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:33.626Z","sequence":9528,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.3.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:33.627Z","sequence":9529,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:34.247Z","sequence":9530,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9f61d80d-2e02-44fb-baff-ee0ac7a84b53, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:34.247Z","sequence":9531,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:34.247Z","sequence":9532,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-503A5D9B48D2]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:34.247Z","sequence":9533,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:34.248Z","sequence":9534,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-503A5D9B48D2]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:34.331Z","sequence":9535,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-40788495-e37c-4cd5-9fbb-eebb683ace98, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:34.331Z","sequence":9536,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-35e7f691-8e4a-43ed-aa66-0e584b337695, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:34.565Z","sequence":9537,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:34.565Z","sequence":9538,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 503A5D9B48D2]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:34.566Z","sequence":9539,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:34.566Z","sequence":9540,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 503A5D9B48D2]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:34.576Z","sequence":9541,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2decdbb8-5843-4345-8a89-bbf4c233e057, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:34.577Z","sequence":9542,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4a122e97-0abe-413b-842e-ead711c273c2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:34.585Z","sequence":9543,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:34.585Z","sequence":9544,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFF24B0B87F35A5] for gateway [503A5D9B48D2]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:34.586Z","sequence":9545,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:34.586Z","sequence":9546,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFF24B0B87F35A5] for gateway [503A5D9B48D2]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:34.601Z","sequence":9547,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:connect:0.1.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:34.601Z","sequence":9548,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:34.602Z","sequence":9549,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:connect:0.1.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:34.602Z","sequence":9550,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:35.105Z","sequence":9551,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFF4A55A2968ECD]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"763ee8f9785c7257","parentId":"4da78ac46b2830fe","traceId":"00000000000000009b72865171908ca3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:35.205Z","sequence":9552,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFF4A55A2968ECD, resource-version: 23b69eb5-b4ce-4bf2-94c8-a1906755d860]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"763ee8f9785c7257","parentId":"4da78ac46b2830fe","traceId":"00000000000000009b72865171908ca3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:35.213Z","sequence":9553,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFF4A55A2968ECD, resource-version: ebcd7ace-8146-4077-8632-24ee9d629048]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"763ee8f9785c7257","parentId":"4da78ac46b2830fe","traceId":"00000000000000009b72865171908ca3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:35.354Z","sequence":9554,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5104b608-4c5a-4ea1-8ce3-294c14694853, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:35.758Z","sequence":9555,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-27896ece-3604-42f0-8c92-0fce70729134, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:35.759Z","sequence":9556,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:35.759Z","sequence":9557,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFF24B0B87F35A5] for gateway [503A5D9B48D2]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:35.805Z","sequence":9558,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:connect:0.1.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:35.808Z","sequence":9559,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:36.188Z","sequence":9560,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d035002f-535a-418f-af43-15e87d99f160, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:36.198Z","sequence":9561,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:36.198Z","sequence":9562,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-503A5D9B48D2]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:36.201Z","sequence":9563,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:36.201Z","sequence":9564,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-503A5D9B48D2]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:36.21Z","sequence":9565,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-e347269b-ffc7-4a99-8580-a868890690b5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:36.217Z","sequence":9566,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-579fa921-df19-46fd-a603-215ac2ae4454, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:36.647Z","sequence":9567,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF93A6995B970AE]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0a5f64fbf3777d24","parentId":"241415d56b2a14b7","traceId":"00000000000000006192f7e2f5e4d81b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:36.707Z","sequence":9568,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:36.707Z","sequence":9569,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: chevronsgp]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:36.71Z","sequence":9570,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-0c8be946-e44a-47f8-84fc-d38cc80fd1b0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:36.712Z","sequence":9571,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/chevronsgp:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:36.712Z","sequence":9572,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: chevronsgp, type: hashed-password, auth-id: auth-chevronsgp_42]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:36.857Z","sequence":9573,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-10fdf172-1635-40fb-b12f-46975f37682e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:37.007Z","sequence":9574,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/chevronsgp:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:37.007Z","sequence":9575,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: chevronsgp, device-id: 70B3D57BB10008BE] for gateway [gateway_chevronsgp_network_42]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:37.008Z","sequence":9576,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/chevronsgp:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:37.008Z","sequence":9577,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: chevronsgp, device-id: gateway_chevronsgp_network_42]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:37.015Z","sequence":9578,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_chevronsgp\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:37.015Z","sequence":9579,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_chevronsgp\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:37.016Z","sequence":9580,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ec2b40ba-691a-42d6-9d53-afd795b2f2a7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:37.017Z","sequence":9581,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4bb96b72-2675-4e6a-81aa-a4345065cb6c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:37.317Z","sequence":9582,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF93A6995B970AE]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0a5f64fbf3777d24","parentId":"241415d56b2a14b7","traceId":"00000000000000006192f7e2f5e4d81b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:37.574Z","sequence":9583,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:37.574Z","sequence":9584,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191011]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:37.592Z","sequence":9585,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-18bd8f5d-a257-4147-8948-9c1ec9b37546, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:37.714Z","sequence":9586,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:37.714Z","sequence":9587,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFF4A55A2968ECD] for gateway [gateway_integrationtest_network_191011]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:37.716Z","sequence":9588,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:37.72Z","sequence":9589,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191011]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:37.723Z","sequence":9590,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:37.723Z","sequence":9591,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:37.725Z","sequence":9592,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f4f29db2-73be-4dd0-a166-5c3f6b4300e4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:37.733Z","sequence":9593,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 838B0A333493]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"079c9540d8dd33a8","parentId":"a4582cf2229cc707","traceId":"00000000000000009fe7c09c3e372afb","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:37.765Z","sequence":9594,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 838B0A333493]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"079c9540d8dd33a8","parentId":"a4582cf2229cc707","traceId":"00000000000000009fe7c09c3e372afb","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:37.872Z","sequence":9595,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF247EA8BE60E0D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1566f5d2b0be5930","parentId":"8044e530d53c8a69","traceId":"000000000000000079771041b47f4668","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:37.905Z","sequence":9596,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF247EA8BE60E0D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1566f5d2b0be5930","parentId":"8044e530d53c8a69","traceId":"000000000000000079771041b47f4668","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:38.106Z","sequence":9597,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5b5350e2-46f7-4eeb-a648-da3ffcf253c7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:38.115Z","sequence":9598,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:38.116Z","sequence":9599,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10018E0] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:38.122Z","sequence":9600,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:38.122Z","sequence":9601,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:38.152Z","sequence":9602,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7c0d95ad-d921-4aea-8302-28d55b86d89b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:38.158Z","sequence":9603,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:38.158Z","sequence":9604,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:38.164Z","sequence":9605,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-38f4b140-b7cd-47ed-8420-dc736fbf1042, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:38.211Z","sequence":9606,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 7CC4C8B60E01]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b16c46ed45b992f2","parentId":"c9539f278950d045","traceId":"000000000000000043805f6ea73a329e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:38.253Z","sequence":9607,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 7CC4C8B60E01]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b16c46ed45b992f2","parentId":"c9539f278950d045","traceId":"000000000000000043805f6ea73a329e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:39.173Z","sequence":9608,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: AA6125135032]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c34aaba30f8de892","parentId":"3d6ab6ad80c470d2","traceId":"00000000000000001adf7ca9b5e1fe3d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:39.195Z","sequence":9609,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: AA6125135032, resource-version: 13c9422c-501a-4010-969f-d72f445095ec]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c34aaba30f8de892","parentId":"3d6ab6ad80c470d2","traceId":"00000000000000001adf7ca9b5e1fe3d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:39.202Z","sequence":9610,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: AA6125135032, resource-version: 607ffbef-0d28-4a5c-8553-7d8d23315f78]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c34aaba30f8de892","parentId":"3d6ab6ad80c470d2","traceId":"00000000000000001adf7ca9b5e1fe3d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:39.205Z","sequence":9611,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: AA6125135032]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"68a4a97a7bc6d1db","parentId":"e8051afb136d9688","traceId":"00000000000000001adf7ca9b5e1fe3d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:39.456Z","sequence":9612,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: AA6125135032]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"68a4a97a7bc6d1db","parentId":"e8051afb136d9688","traceId":"00000000000000001adf7ca9b5e1fe3d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:40.115Z","sequence":9613,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF6DDF7891D47C9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8e4ae5e08bc27604","parentId":"62e47915e0246cdc","traceId":"0000000000000000678e1dc3a6f9916d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:40.142Z","sequence":9614,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF6DDF7891D47C9, resource-version: 27011f3c-5729-4425-8a52-4371c4b0b55b]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8e4ae5e08bc27604","parentId":"62e47915e0246cdc","traceId":"0000000000000000678e1dc3a6f9916d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:40.159Z","sequence":9615,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF6DDF7891D47C9, resource-version: 92432de7-c684-4165-abd1-09e707a4f2ff]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8e4ae5e08bc27604","parentId":"62e47915e0246cdc","traceId":"0000000000000000678e1dc3a6f9916d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:41.218Z","sequence":9616,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:41.219Z","sequence":9617,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-AA6125135032]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:41.219Z","sequence":9618,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:41.219Z","sequence":9619,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-AA6125135032]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:41.232Z","sequence":9620,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-83d7bce8-a6f8-49ea-9f90-1a6229a880d2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:41.232Z","sequence":9621,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-0021d073-5748-46d9-b6c1-af4224dbae86, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:41.397Z","sequence":9622,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:41.398Z","sequence":9623,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: AA6125135032]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:41.4Z","sequence":9624,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:41.4Z","sequence":9625,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: AA6125135032]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:41.404Z","sequence":9626,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0f8e7dde-e22f-478c-8140-5ad757a8b901, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:41.409Z","sequence":9627,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8a460b25-1b09-4f61-8e31-1acbd4966838, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:41.409Z","sequence":9628,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:41.409Z","sequence":9629,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF6DDF7891D47C9] for gateway [AA6125135032]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:41.413Z","sequence":9630,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:41.413Z","sequence":9631,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF6DDF7891D47C9] for gateway [AA6125135032]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:41.415Z","sequence":9632,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:connect:0.1.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:41.415Z","sequence":9633,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:41.426Z","sequence":9634,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:connect:0.1.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:41.426Z","sequence":9635,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:41.655Z","sequence":9636,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5f951371-54c3-4041-bbe5-9f8138d7029d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:41.808Z","sequence":9637,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c6c920d2-a7a8-43f1-9199-805404ea7b56, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:42.084Z","sequence":9638,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191013]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a6b32ed428d510a9","parentId":"b600059a23ccd225","traceId":"0000000000000000a22a99043f627132","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:42.1Z","sequence":9639,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191013, resource-version: cab8589f-6570-42bf-8900-cff0a36bb63c]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a6b32ed428d510a9","parentId":"b600059a23ccd225","traceId":"0000000000000000a22a99043f627132","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:42.105Z","sequence":9640,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191013, resource-version: 83ebf6b1-38c1-49ff-af12-4e358a164abf]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a6b32ed428d510a9","parentId":"b600059a23ccd225","traceId":"0000000000000000a22a99043f627132","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:42.108Z","sequence":9641,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191013]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b6b2ffdc170ea6ed","parentId":"1711230ead285497","traceId":"0000000000000000a22a99043f627132","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:42.244Z","sequence":9642,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191013]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b6b2ffdc170ea6ed","parentId":"1711230ead285497","traceId":"0000000000000000a22a99043f627132","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:42.623Z","sequence":9643,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF8D630C1A83605]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0d95a2063ee5fb05","parentId":"913b8ad7cf549e0e","traceId":"000000000000000045e5bf3635a3bd5a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:42.652Z","sequence":9644,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF8D630C1A83605, resource-version: 9a82073c-113f-4a59-836c-9d21d2a64171]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0d95a2063ee5fb05","parentId":"913b8ad7cf549e0e","traceId":"000000000000000045e5bf3635a3bd5a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:42.696Z","sequence":9645,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF8D630C1A83605, resource-version: c09a4106-2bcf-49ac-a378-06a090b73489]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0d95a2063ee5fb05","parentId":"913b8ad7cf549e0e","traceId":"000000000000000045e5bf3635a3bd5a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:42.933Z","sequence":9646,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 1C95583357E7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4905b6c2648a11c3","parentId":"f76ffc635cdbae28","traceId":"00000000000000000f415a34cbc7aa56","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:42.951Z","sequence":9647,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 1C95583357E7, resource-version: 2c1d893f-2d32-402f-9a58-caa385cecf21]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4905b6c2648a11c3","parentId":"f76ffc635cdbae28","traceId":"00000000000000000f415a34cbc7aa56","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:42.963Z","sequence":9648,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 1C95583357E7, resource-version: c8db1481-72b8-4f65-ab02-6da33360df14]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4905b6c2648a11c3","parentId":"f76ffc635cdbae28","traceId":"00000000000000000f415a34cbc7aa56","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:42.966Z","sequence":9649,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 1C95583357E7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"765ed941849017a5","parentId":"8fb763e49bb0a97b","traceId":"00000000000000000f415a34cbc7aa56","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:43.12Z","sequence":9650,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 1C95583357E7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"765ed941849017a5","parentId":"8fb763e49bb0a97b","traceId":"00000000000000000f415a34cbc7aa56","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:43.139Z","sequence":9651,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:43.139Z","sequence":9652,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:43.144Z","sequence":9653,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0b577424-8350-47b5-ac83-fd3ca011f317, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:43.753Z","sequence":9654,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:43.753Z","sequence":9655,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191013]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:43.774Z","sequence":9656,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF4574B09AB80EA]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0a93f1600d0fa7e7","parentId":"b6333f98f75c1385","traceId":"0000000000000000e808888d17fcdb3c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:43.788Z","sequence":9657,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:43.788Z","sequence":9658,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191013]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:43.803Z","sequence":9659,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-d43cb6fe-0505-41aa-9611-16df78cde680, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:43.829Z","sequence":9660,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-fa689e85-ba0f-4992-a8c9-5ce15b81a114, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:43.841Z","sequence":9661,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF4574B09AB80EA, resource-version: 14df3765-6890-4461-9a56-dd5901910203]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0a93f1600d0fa7e7","parentId":"b6333f98f75c1385","traceId":"0000000000000000e808888d17fcdb3c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:43.856Z","sequence":9662,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF4574B09AB80EA, resource-version: beb04882-c7dd-419b-b634-2aac92ad5478]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0a93f1600d0fa7e7","parentId":"b6333f98f75c1385","traceId":"0000000000000000e808888d17fcdb3c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:43.974Z","sequence":9663,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:43.975Z","sequence":9664,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF8D630C1A83605] for gateway [gateway_integrationtest_network_191013]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:43.976Z","sequence":9665,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:43.976Z","sequence":9666,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191013]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:44.004Z","sequence":9667,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:44.004Z","sequence":9668,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF8D630C1A83605] for gateway [gateway_integrationtest_network_191013]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:44.005Z","sequence":9669,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:44.005Z","sequence":9670,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191013]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:44.007Z","sequence":9671,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:connect:0.1.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:44.007Z","sequence":9672,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:44.008Z","sequence":9673,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c175e48c-4723-4359-a7bb-168f7c6bd916, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:44.037Z","sequence":9674,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:connect:0.1.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:44.037Z","sequence":9675,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:44.062Z","sequence":9676,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-348240d2-6fb1-4f6d-adbc-c2a2eb81579d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:44.418Z","sequence":9677,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d5fad629-4d62-41f7-b05b-828b3c28af68, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:45.214Z","sequence":9678,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8c75068e-42f1-4d90-b154-29f04acda685, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:45.215Z","sequence":9679,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:45.215Z","sequence":9680,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-1C95583357E7]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:45.231Z","sequence":9681,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-bdff0109-05c2-4861-a4de-dd605dc8e04d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:45.35Z","sequence":9682,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:45.351Z","sequence":9683,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 1C95583357E7]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:45.373Z","sequence":9684,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-af11f3b6-5e4b-4b42-b813-f7b3ac232acf, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:45.381Z","sequence":9685,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:45.382Z","sequence":9686,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF4574B09AB80EA] for gateway [1C95583357E7]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:45.395Z","sequence":9687,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:45.395Z","sequence":9688,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:45.801Z","sequence":9689,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFF24B0B87F35A5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"83f4e627060e616c","parentId":"e29e2b54227d7e60","traceId":"0000000000000000ea2b0385c1694883","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:45.848Z","sequence":9690,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-25ee79c3-dc02-4304-a77e-f0bb5948493d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:45.86Z","sequence":9691,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFF24B0B87F35A5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"83f4e627060e616c","parentId":"e29e2b54227d7e60","traceId":"0000000000000000ea2b0385c1694883","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:45.956Z","sequence":9692,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 503A5D9B48D2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4fcbc670e23f6c56","parentId":"51135307567c9d19","traceId":"000000000000000098892f27d077c6d2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:45.987Z","sequence":9693,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"retrieving device [tenant: integrationtest, device-id: 0EF4574B09AB80EA]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6ea30f29232b0240","parentId":"6ce5a25795e29bcf","traceId":"4977ec570acf5bb3d9d594d9e9ce3728","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:46.015Z","sequence":9694,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 503A5D9B48D2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4fcbc670e23f6c56","parentId":"51135307567c9d19","traceId":"000000000000000098892f27d077c6d2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:47.493Z","sequence":9695,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191015]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"40800e8b4ed6be1a","parentId":"585eb254cf17e379","traceId":"00000000000000001f557492ae1b5813","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:47.568Z","sequence":9696,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191015, resource-version: 60d95328-a52b-425f-b524-f6de06ed837d]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"40800e8b4ed6be1a","parentId":"585eb254cf17e379","traceId":"00000000000000001f557492ae1b5813","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:47.593Z","sequence":9697,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191015, resource-version: 13bc002b-1b1d-4916-ab2c-4e412c67bc04]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"40800e8b4ed6be1a","parentId":"585eb254cf17e379","traceId":"00000000000000001f557492ae1b5813","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:47.597Z","sequence":9698,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191015]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fb94e238294c438e","parentId":"fc02a08f1ec5aed8","traceId":"00000000000000001f557492ae1b5813","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:47.764Z","sequence":9699,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191015]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fb94e238294c438e","parentId":"fc02a08f1ec5aed8","traceId":"00000000000000001f557492ae1b5813","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:48.413Z","sequence":9700,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF93E64363FADAA]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"252e33292542bdc5","parentId":"1fbde1cfd83a16f3","traceId":"0000000000000000c340f84ae576d8ad","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:48.443Z","sequence":9701,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF93E64363FADAA, resource-version: bbf30347-ee85-4606-8c64-e745ecd6d521]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"252e33292542bdc5","parentId":"1fbde1cfd83a16f3","traceId":"0000000000000000c340f84ae576d8ad","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:48.449Z","sequence":9702,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF93E64363FADAA, resource-version: 0806c341-64a5-4c2b-a326-dae7280829bb]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"252e33292542bdc5","parentId":"1fbde1cfd83a16f3","traceId":"0000000000000000c340f84ae576d8ad","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:49.558Z","sequence":9703,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:49.559Z","sequence":9704,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191015]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:49.57Z","sequence":9705,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-b190752b-ecf4-4a03-8c22-7d22009688ff, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:49.688Z","sequence":9706,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:49.689Z","sequence":9707,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF93E64363FADAA] for gateway [gateway_integrationtest_network_191015]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:49.689Z","sequence":9708,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:49.69Z","sequence":9709,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191015]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:49.696Z","sequence":9710,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:49.696Z","sequence":9711,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:49.697Z","sequence":9712,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e83af44e-fa3d-4e99-a130-4e0d0bc32368, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:50.029Z","sequence":9713,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6392d547-96aa-4d29-8e44-41f8e3873fbe, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:51.832Z","sequence":9714,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFF4A55A2968ECD]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c60a4c0b9ef690fe","parentId":"0c5b8d7be3fa597f","traceId":"00000000000000003ffdb2c4b1c81a54","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:51.887Z","sequence":9715,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFF4A55A2968ECD]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c60a4c0b9ef690fe","parentId":"0c5b8d7be3fa597f","traceId":"00000000000000003ffdb2c4b1c81a54","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:52.013Z","sequence":9716,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191011]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0a0988ddeec7aa50","parentId":"04aa790a1326391d","traceId":"0000000000000000a15cdac5ebd1cd3c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:52.051Z","sequence":9717,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191011]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0a0988ddeec7aa50","parentId":"04aa790a1326391d","traceId":"0000000000000000a15cdac5ebd1cd3c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:52.078Z","sequence":9718,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:52.078Z","sequence":9719,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006D9] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:52.09Z","sequence":9720,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:52.09Z","sequence":9721,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:52.101Z","sequence":9722,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-72acaf1a-cfec-4e6e-9129-e542dadf4ae9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:52.432Z","sequence":9723,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/repsol:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:52.432Z","sequence":9724,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: repsol, device-id: 0008004A37FF]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:52.438Z","sequence":9725,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4327ffdd-e033-491b-94a2-99bd89dd7ab5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:52.441Z","sequence":9726,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:52.441Z","sequence":9727,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: repsol]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:52.444Z","sequence":9728,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-6e160817-9057-4eda-81a0-f1fd8da50a1a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:52.642Z","sequence":9729,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: DAA2F95FFC66]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e1eb9269388a2d11","parentId":"3ab6190a8dc889a1","traceId":"0000000000000000d6f231814edd8198","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:52.727Z","sequence":9730,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: DAA2F95FFC66, resource-version: f9a44227-4be2-4580-9057-508298927b56]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e1eb9269388a2d11","parentId":"3ab6190a8dc889a1","traceId":"0000000000000000d6f231814edd8198","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:52.763Z","sequence":9731,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: DAA2F95FFC66, resource-version: b21c5012-e8a8-4083-bc4b-f32ec416e942]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e1eb9269388a2d11","parentId":"3ab6190a8dc889a1","traceId":"0000000000000000d6f231814edd8198","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:52.773Z","sequence":9732,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: DAA2F95FFC66]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"02788b3818eaaf19","parentId":"89f9f4d0378a1dee","traceId":"0000000000000000d6f231814edd8198","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:53.025Z","sequence":9733,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: DAA2F95FFC66]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"02788b3818eaaf19","parentId":"89f9f4d0378a1dee","traceId":"0000000000000000d6f231814edd8198","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:53.683Z","sequence":9734,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF5D9BEB26141C0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fe5adff7c4ad47be","parentId":"49734e112a2dba50","traceId":"0000000000000000739d7f0cc7c12693","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:53.75Z","sequence":9735,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF5D9BEB26141C0, resource-version: 80d6c74f-89bc-4332-bc77-3852f40bb48f]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fe5adff7c4ad47be","parentId":"49734e112a2dba50","traceId":"0000000000000000739d7f0cc7c12693","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:53.761Z","sequence":9736,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF5D9BEB26141C0, resource-version: de348c4c-6ba9-4a53-bb6c-6d04f8003adc]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fe5adff7c4ad47be","parentId":"49734e112a2dba50","traceId":"0000000000000000739d7f0cc7c12693","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:53.788Z","sequence":9737,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:53.788Z","sequence":9738,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000527] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:53.797Z","sequence":9739,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:53.797Z","sequence":9740,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:53.801Z","sequence":9741,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1cf31907-c52b-4315-a2e1-406192690360, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:54.815Z","sequence":9742,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:54.815Z","sequence":9743,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-DAA2F95FFC66]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:54.826Z","sequence":9744,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-13a9aa06-1c91-4fb3-a3ea-b7a9f593113b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:54.95Z","sequence":9745,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:54.95Z","sequence":9746,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: DAA2F95FFC66]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:54.955Z","sequence":9747,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e474156d-815b-4ac8-9812-21a40ccf0746, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:54.96Z","sequence":9748,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:54.96Z","sequence":9749,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF5D9BEB26141C0] for gateway [DAA2F95FFC66]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:54.967Z","sequence":9750,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:54.967Z","sequence":9751,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:55.444Z","sequence":9752,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b80c683a-31df-4152-bbeb-60d0e99c5101, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:55.445Z","sequence":9753,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:55.445Z","sequence":9754,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100017A] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:55.469Z","sequence":9755,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:55.469Z","sequence":9756,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100017A] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:55.478Z","sequence":9757,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:55.478Z","sequence":9758,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:55.478Z","sequence":9759,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:55.478Z","sequence":9760,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:55.482Z","sequence":9761,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a1204e19-b4ef-499c-a688-f582a2d86115, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:55.483Z","sequence":9762,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-dae5f94e-c8f4-468c-b34f-573592a09636, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:55.492Z","sequence":9763,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:55.492Z","sequence":9764,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A7D] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:55.504Z","sequence":9765,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:55.504Z","sequence":9766,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:55.515Z","sequence":9767,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-45b928a1-303e-4f1c-992e-c56ee215bc1a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:55.577Z","sequence":9768,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF6DDF7891D47C9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e0a2c128c7cc6916","parentId":"1e27530e600ba910","traceId":"0000000000000000674489cde0a7d070","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:55.608Z","sequence":9769,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF6DDF7891D47C9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e0a2c128c7cc6916","parentId":"1e27530e600ba910","traceId":"0000000000000000674489cde0a7d070","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:56.917Z","sequence":9770,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: AA6125135032]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bfd0d2bcfea2cd08","parentId":"135c68de72a5e8c6","traceId":"0000000000000000fcf738cfb79967f0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:56.991Z","sequence":9771,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: AA6125135032]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bfd0d2bcfea2cd08","parentId":"135c68de72a5e8c6","traceId":"0000000000000000fcf738cfb79967f0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:57.477Z","sequence":9772,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF8D630C1A83605]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b63b9299c9c0c8cf","parentId":"15c78e6d16813afb","traceId":"00000000000000003989ff4ef631fc83","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:57.504Z","sequence":9773,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF8D630C1A83605]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b63b9299c9c0c8cf","parentId":"15c78e6d16813afb","traceId":"00000000000000003989ff4ef631fc83","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:58.197Z","sequence":9774,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191013]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"85324ee0d316ed63","parentId":"b7935e9c897cb371","traceId":"0000000000000000b8ca63c843ad947e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:58.264Z","sequence":9775,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191013]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"85324ee0d316ed63","parentId":"b7935e9c897cb371","traceId":"0000000000000000b8ca63c843ad947e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:58.775Z","sequence":9776,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF4574B09AB80EA]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c9eab61b8e402981","parentId":"deb1dfa2d478547f","traceId":"00000000000000007331d50c59c3977b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:58.799Z","sequence":9777,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF4574B09AB80EA]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c9eab61b8e402981","parentId":"deb1dfa2d478547f","traceId":"00000000000000007331d50c59c3977b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:58.862Z","sequence":9778,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: B8A099A6C6CB]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ac933bf7763a9137","parentId":"f7f50728af342b5b","traceId":"0000000000000000f07fff40ee21f341","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:58.905Z","sequence":9779,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: B8A099A6C6CB, resource-version: ca3658d0-ee8a-4397-99ef-f20d36d3ee48]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ac933bf7763a9137","parentId":"f7f50728af342b5b","traceId":"0000000000000000f07fff40ee21f341","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:58.913Z","sequence":9780,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: B8A099A6C6CB, resource-version: 03a4dd07-9c2d-452c-81f7-bebb3b4eabc8]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ac933bf7763a9137","parentId":"f7f50728af342b5b","traceId":"0000000000000000f07fff40ee21f341","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:58.917Z","sequence":9781,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: B8A099A6C6CB]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f3066569c6d90ffe","parentId":"9cae93280d28922c","traceId":"0000000000000000f07fff40ee21f341","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:58.943Z","sequence":9782,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 1C95583357E7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"99df080670a18842","parentId":"879a0a990d9f570c","traceId":"0000000000000000f34fc39f07000e4e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:58.962Z","sequence":9783,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 1C95583357E7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"99df080670a18842","parentId":"879a0a990d9f570c","traceId":"0000000000000000f34fc39f07000e4e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:59.098Z","sequence":9784,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: B8A099A6C6CB]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f3066569c6d90ffe","parentId":"9cae93280d28922c","traceId":"0000000000000000f07fff40ee21f341","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:59.725Z","sequence":9785,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFF2811F6EA367B]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ad5b1c893ee7cb8b","parentId":"2936085e270eacbf","traceId":"000000000000000070717b4100f9ef14","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:59.743Z","sequence":9786,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFF2811F6EA367B, resource-version: bff1f2c2-a359-446b-9cd1-3f1d94e1e425]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ad5b1c893ee7cb8b","parentId":"2936085e270eacbf","traceId":"000000000000000070717b4100f9ef14","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:59.749Z","sequence":9787,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFF2811F6EA367B, resource-version: 7dedcf7e-8beb-4edb-8b82-035f9c8b9f7d]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ad5b1c893ee7cb8b","parentId":"2936085e270eacbf","traceId":"000000000000000070717b4100f9ef14","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:59.757Z","sequence":9788,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: BD7191F62396]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"876e5bedb732977a","parentId":"d2e14db926adf88e","traceId":"00000000000000007badcfc3b215bd50","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:59.774Z","sequence":9789,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: BD7191F62396, resource-version: f9118b58-1ca0-40c0-9405-73c7fab8c529]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"876e5bedb732977a","parentId":"d2e14db926adf88e","traceId":"00000000000000007badcfc3b215bd50","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:59.78Z","sequence":9790,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: BD7191F62396, resource-version: 85cd4f21-0e64-43cf-a57b-3918899afc9e]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"876e5bedb732977a","parentId":"d2e14db926adf88e","traceId":"00000000000000007badcfc3b215bd50","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:58:59.784Z","sequence":9791,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: BD7191F62396]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a35e54ea5831e73f","parentId":"530c319c19537a31","traceId":"00000000000000007badcfc3b215bd50","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:00.045Z","sequence":9792,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: BD7191F62396]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a35e54ea5831e73f","parentId":"530c319c19537a31","traceId":"00000000000000007badcfc3b215bd50","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:00.345Z","sequence":9793,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF93E64363FADAA]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cc88af60ab7f091a","parentId":"e4d14e9e19419d71","traceId":"000000000000000050213de8744b59bd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:00.401Z","sequence":9794,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF93E64363FADAA]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cc88af60ab7f091a","parentId":"e4d14e9e19419d71","traceId":"000000000000000050213de8744b59bd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:00.8Z","sequence":9795,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:00.8Z","sequence":9796,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-B8A099A6C6CB]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:00.817Z","sequence":9797,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-ec70a2e4-e64d-466a-8c76-2546f961d72c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:00.938Z","sequence":9798,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:00.938Z","sequence":9799,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: B8A099A6C6CB]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:00.943Z","sequence":9800,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6cdb6000-c54c-430c-af30-a658df9f69e7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:00.948Z","sequence":9801,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:00.948Z","sequence":9802,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFF2811F6EA367B] for gateway [B8A099A6C6CB]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:00.953Z","sequence":9803,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.3.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:00.953Z","sequence":9804,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:00.996Z","sequence":9805,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 42B84976D195]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0beea68094376873","parentId":"92e7952c4b27deaf","traceId":"000000000000000026c45276610463d0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:00.996Z","sequence":9806,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191015]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"77fdaa18ec3494dd","parentId":"4ee657d37a39aa0d","traceId":"00000000000000007e8e9f9b50231387","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:01.045Z","sequence":9807,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFC99231E7FEBC4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"64d5d42f60df3460","parentId":"ae6c66db685f172e","traceId":"0000000000000000a071faf6c0aaef5a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:01.057Z","sequence":9808,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 42B84976D195, resource-version: f164e84d-4ef4-42f5-916f-b0ca010707bc]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0beea68094376873","parentId":"92e7952c4b27deaf","traceId":"000000000000000026c45276610463d0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:01.068Z","sequence":9809,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191015]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"77fdaa18ec3494dd","parentId":"4ee657d37a39aa0d","traceId":"00000000000000007e8e9f9b50231387","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:01.069Z","sequence":9810,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 42B84976D195, resource-version: ea88a358-70b7-4463-8f1f-71f8e6f7d06e]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0beea68094376873","parentId":"92e7952c4b27deaf","traceId":"000000000000000026c45276610463d0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:01.073Z","sequence":9811,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 42B84976D195]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"dd086ea36a9177c9","parentId":"2b8e926c326eee63","traceId":"000000000000000026c45276610463d0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:01.109Z","sequence":9812,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFC99231E7FEBC4, resource-version: a270eb39-b8e1-40a0-a06f-f5990c18430e]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"64d5d42f60df3460","parentId":"ae6c66db685f172e","traceId":"0000000000000000a071faf6c0aaef5a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:01.153Z","sequence":9813,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFC99231E7FEBC4, resource-version: 9a78cb58-2236-4b69-9191-cc8163d388cb]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"64d5d42f60df3460","parentId":"ae6c66db685f172e","traceId":"0000000000000000a071faf6c0aaef5a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:01.5Z","sequence":9814,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 42B84976D195]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"dd086ea36a9177c9","parentId":"2b8e926c326eee63","traceId":"000000000000000026c45276610463d0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:01.507Z","sequence":9815,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-aa3d2057-0d8d-418f-9dc3-d9eb48e3687f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:01.508Z","sequence":9816,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:01.509Z","sequence":9817,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10008B1] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:01.553Z","sequence":9818,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:01.554Z","sequence":9819,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:01.561Z","sequence":9820,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9b7d6d76-cfdf-4558-8244-226c03d3ccd5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:01.6Z","sequence":9821,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191020]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4d5e76f904fc46b5","parentId":"ca170f5cec54e24b","traceId":"000000000000000094890c5db83e1ce5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:01.644Z","sequence":9822,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191020, resource-version: 97481fd4-3afa-494a-8557-c051c5386bd5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4d5e76f904fc46b5","parentId":"ca170f5cec54e24b","traceId":"000000000000000094890c5db83e1ce5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:01.66Z","sequence":9823,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191020, resource-version: 4d7985fd-72a0-4a2c-b9d7-f3086e21910a]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4d5e76f904fc46b5","parentId":"ca170f5cec54e24b","traceId":"000000000000000094890c5db83e1ce5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:01.664Z","sequence":9824,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191020]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6b2fcb3789de60e2","parentId":"713e2aa7bdea6157","traceId":"000000000000000094890c5db83e1ce5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:01.742Z","sequence":9825,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:01.742Z","sequence":9826,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100078D] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:01.753Z","sequence":9827,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:01.753Z","sequence":9828,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:01.761Z","sequence":9829,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3f7a15c9-8889-4a3d-8f9f-5bd954e78f25, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:01.977Z","sequence":9830,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191020]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6b2fcb3789de60e2","parentId":"713e2aa7bdea6157","traceId":"000000000000000094890c5db83e1ce5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:02.365Z","sequence":9831,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFE6B04D9F7D108]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f7d668c3094a8077","parentId":"feddc3f469d281dc","traceId":"00000000000000001198fefeea8c739c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:02.404Z","sequence":9832,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFE6B04D9F7D108, resource-version: 4eca29ee-b1d7-45c1-a0cf-61d4c75098b6]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f7d668c3094a8077","parentId":"feddc3f469d281dc","traceId":"00000000000000001198fefeea8c739c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:02.424Z","sequence":9833,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFE6B04D9F7D108, resource-version: 2dfb3725-da58-4c00-809c-ebd0f35b78dc]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f7d668c3094a8077","parentId":"feddc3f469d281dc","traceId":"00000000000000001198fefeea8c739c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:02.984Z","sequence":9834,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:02.984Z","sequence":9835,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-BD7191F62396]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:02.998Z","sequence":9836,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-ca9281bb-c7f7-4627-a0ba-d57bf2c4af75, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:03.117Z","sequence":9837,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:03.117Z","sequence":9838,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: BD7191F62396]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:03.134Z","sequence":9839,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-20e3104d-ee14-42d2-8a36-280d289b7a61, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:03.141Z","sequence":9840,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:03.141Z","sequence":9841,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFC99231E7FEBC4] for gateway [BD7191F62396]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:03.153Z","sequence":9842,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:03.153Z","sequence":9843,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:03.172Z","sequence":9844,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF6672E86524113]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e9ff5e1272289e15","parentId":"a73a6df7b7dee6ba","traceId":"00000000000000008f2c5ffe10af3ba2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:03.277Z","sequence":9845,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF6672E86524113, resource-version: 02f55519-d656-43b1-abae-fbd9b9b12edd]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e9ff5e1272289e15","parentId":"a73a6df7b7dee6ba","traceId":"00000000000000008f2c5ffe10af3ba2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:03.308Z","sequence":9846,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF6672E86524113, resource-version: b44fcc11-94fe-4e00-8c49-503daefc32b1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e9ff5e1272289e15","parentId":"a73a6df7b7dee6ba","traceId":"00000000000000008f2c5ffe10af3ba2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:03.816Z","sequence":9847,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-926c8d9b-b9a9-4041-b9b6-4688cea3b243, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:03.817Z","sequence":9848,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:03.817Z","sequence":9849,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-42B84976D195]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:03.852Z","sequence":9850,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-b06295a9-1273-4035-8d03-cd396d5ceff4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:03.974Z","sequence":9851,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:03.975Z","sequence":9852,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 42B84976D195]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:03.995Z","sequence":9853,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a341dac7-7769-4d81-8c3e-f5c202f3dc09, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:04.004Z","sequence":9854,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:04.005Z","sequence":9855,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFE6B04D9F7D108] for gateway [42B84976D195]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:04.01Z","sequence":9856,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.5.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:04.01Z","sequence":9857,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:04.701Z","sequence":9858,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8cd347da-eb6e-4a7f-b1b4-8d81faade222, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:04.705Z","sequence":9859,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:04.705Z","sequence":9860,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-42B84976D195]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:04.729Z","sequence":9861,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:04.729Z","sequence":9862,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191020]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:04.73Z","sequence":9863,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-b3037096-16ff-4438-821b-4d7666db0426, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:04.761Z","sequence":9864,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-9b2cecbd-2bc1-4c8d-99b2-279fe3c20188, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:04.887Z","sequence":9865,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:04.893Z","sequence":9866,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191021]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"318b48c0960ba179","parentId":"2d54c40f29b8b822","traceId":"0000000000000000b36007a85f2c4991","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:04.894Z","sequence":9867,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF6672E86524113] for gateway [gateway_integrationtest_network_191020]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:04.894Z","sequence":9868,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:04.894Z","sequence":9869,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191020]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:04.923Z","sequence":9870,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:04.923Z","sequence":9871,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:04.924Z","sequence":9872,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9ef9522e-7d38-4f2a-b4fb-8a0e397c1985, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:04.954Z","sequence":9873,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191021, resource-version: 0e41e873-63a6-468c-adbc-d29f6277d345]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"318b48c0960ba179","parentId":"2d54c40f29b8b822","traceId":"0000000000000000b36007a85f2c4991","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:04.997Z","sequence":9874,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191021, resource-version: fef71182-4d4d-4368-bde2-5ff7ca989c3c]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"318b48c0960ba179","parentId":"2d54c40f29b8b822","traceId":"0000000000000000b36007a85f2c4991","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:05Z","sequence":9875,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191021]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1a84e1492f6c4b73","parentId":"d73e434fde24c317","traceId":"0000000000000000b36007a85f2c4991","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:05.297Z","sequence":9876,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191021]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1a84e1492f6c4b73","parentId":"d73e434fde24c317","traceId":"0000000000000000b36007a85f2c4991","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:05.432Z","sequence":9877,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-39e5aae1-06f6-43cb-9889-28218e2ef7fa, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:05.757Z","sequence":9878,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF9E74E8ABC6763]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7a7e9ae31c4570db","parentId":"594fd8bc543bb7b9","traceId":"00000000000000007f513d1bfc16b4ab","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:05.772Z","sequence":9879,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF9E74E8ABC6763, resource-version: 3abd0a09-2414-4f85-b73f-0d00b72520d0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7a7e9ae31c4570db","parentId":"594fd8bc543bb7b9","traceId":"00000000000000007f513d1bfc16b4ab","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:05.778Z","sequence":9880,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF9E74E8ABC6763, resource-version: d9096240-b228-4fcd-8037-f703a5d6ea8e]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7a7e9ae31c4570db","parentId":"594fd8bc543bb7b9","traceId":"00000000000000007f513d1bfc16b4ab","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:05.797Z","sequence":9881,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF5D9BEB26141C0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0cb5eb0ae4d4f27a","parentId":"66e6f9eb6263c921","traceId":"00000000000000004f65f1d0bc720a3e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:05.813Z","sequence":9882,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF5D9BEB26141C0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0cb5eb0ae4d4f27a","parentId":"66e6f9eb6263c921","traceId":"00000000000000004f65f1d0bc720a3e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:06.497Z","sequence":9883,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: DAA2F95FFC66]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0afa91da85dfbae1","parentId":"897377e336918ce7","traceId":"0000000000000000f057ee94acddbc52","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:06.597Z","sequence":9884,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: DAA2F95FFC66]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0afa91da85dfbae1","parentId":"897377e336918ce7","traceId":"0000000000000000f057ee94acddbc52","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:06.842Z","sequence":9885,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:06.842Z","sequence":9886,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191021]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:06.858Z","sequence":9887,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-ca31c958-3ca6-4e48-b6e1-52732de27542, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:07.089Z","sequence":9888,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:07.089Z","sequence":9889,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF9E74E8ABC6763] for gateway [gateway_integrationtest_network_191021]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:07.09Z","sequence":9890,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:07.093Z","sequence":9891,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191021]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:07.101Z","sequence":9892,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:07.101Z","sequence":9893,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:07.117Z","sequence":9894,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3ca694b6-6aeb-4993-8283-297d33db28f8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:07.206Z","sequence":9895,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:07.209Z","sequence":9896,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF9E74E8ABC6763] for gateway [gateway_integrationtest_network_191021]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:07.721Z","sequence":9897,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0513a1d2-2409-4d47-840d-a4a35df30843, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:07.723Z","sequence":9898,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:07.723Z","sequence":9899,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF9E74E8ABC6763] for gateway [gateway_integrationtest_network_191021]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:07.725Z","sequence":9900,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:07.725Z","sequence":9901,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:07.737Z","sequence":9902,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:07.738Z","sequence":9903,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:08.174Z","sequence":9904,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2a89d1f4-f1c6-4361-a314-dadeb7203672, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:08.597Z","sequence":9905,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f026af36-ddcd-4b6e-bbd6-1b3cbc426564, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:09.575Z","sequence":9906,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFE6B04D9F7D108]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"06ecec64296d9d4c","parentId":"f1923574af7fdb56","traceId":"000000000000000006f420266d617278","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:09.657Z","sequence":9907,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFE6B04D9F7D108]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"06ecec64296d9d4c","parentId":"f1923574af7fdb56","traceId":"000000000000000006f420266d617278","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:09.752Z","sequence":9908,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF6672E86524113]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"55e9ee511f9bc616","parentId":"d8c3860ca6137139","traceId":"0000000000000000fd9977dafa4d5e45","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:09.841Z","sequence":9909,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF6672E86524113]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"55e9ee511f9bc616","parentId":"d8c3860ca6137139","traceId":"0000000000000000fd9977dafa4d5e45","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:10.267Z","sequence":9910,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191020]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"59361da8f67d6949","parentId":"02215ed863103334","traceId":"00000000000000006cc97138935a6898","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:10.313Z","sequence":9911,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191020]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"59361da8f67d6949","parentId":"02215ed863103334","traceId":"00000000000000006cc97138935a6898","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:10.985Z","sequence":9912,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 42B84976D195]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f115c1dcb2bdce25","parentId":"ed72f08f753297e2","traceId":"00000000000000000590b2f45c21a907","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:11.02Z","sequence":9913,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 42B84976D195]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f115c1dcb2bdce25","parentId":"ed72f08f753297e2","traceId":"00000000000000000590b2f45c21a907","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:11.472Z","sequence":9914,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFF2811F6EA367B]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1ce2165f72cfb463","parentId":"fd2506d27daf55d3","traceId":"0000000000000000e5cff4756e9dd718","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:11.528Z","sequence":9915,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFF2811F6EA367B]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1ce2165f72cfb463","parentId":"fd2506d27daf55d3","traceId":"0000000000000000e5cff4756e9dd718","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:12.302Z","sequence":9916,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:12.302Z","sequence":9917,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 0008004B51D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:12.335Z","sequence":9918,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-04a2682e-249c-46d4-9706-9e4a59ba3eff, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:12.34Z","sequence":9919,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:12.341Z","sequence":9920,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: dow]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:12.344Z","sequence":9921,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-b7b1a796-9061-4f61-9840-de5ad6d685b1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:12.519Z","sequence":9922,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:12.519Z","sequence":9923,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: shell]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:12.532Z","sequence":9924,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-b2bf3fd8-d5c3-46c2-96ef-a41117a6b8d1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:12.537Z","sequence":9925,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/shell:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:12.537Z","sequence":9926,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: shell, type: hashed-password, auth-id: auth-gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:12.633Z","sequence":9927,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-34a6803c-adf8-437e-92df-59a63abb5b6c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:12.729Z","sequence":9928,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: B8A099A6C6CB]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d73c819f93ee0168","parentId":"812a68561e3499c5","traceId":"00000000000000004a42a3d1bd0956c3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:12.761Z","sequence":9929,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:12.761Z","sequence":9930,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AD3] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:12.789Z","sequence":9931,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:12.789Z","sequence":9932,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:12.789Z","sequence":9933,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: B8A099A6C6CB]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d73c819f93ee0168","parentId":"812a68561e3499c5","traceId":"00000000000000004a42a3d1bd0956c3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:12.802Z","sequence":9934,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3bc3397b-fe3c-4867-b25c-89feaedd4e01, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:13.785Z","sequence":9935,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:13.785Z","sequence":9936,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001FA] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:13.802Z","sequence":9937,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:13.803Z","sequence":9938,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:13.807Z","sequence":9939,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-43ed5956-ebc8-4719-a78a-f5b31f333546, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:13.832Z","sequence":9940,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:13.833Z","sequence":9941,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001FA] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:13.845Z","sequence":9942,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:13.845Z","sequence":9943,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:13.849Z","sequence":9944,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-fe069512-c662-42ce-8bf5-82eb68e2dcce, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:14.404Z","sequence":9945,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFC99231E7FEBC4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"875e9f9864b38425","parentId":"8800fc5cfb5c3db6","traceId":"0000000000000000775b2ec59f64602e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:14.43Z","sequence":9946,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"retrieving device [tenant: integrationtest, device-id: 0EF9E74E8ABC6763]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"21dc0352ef73cc5d","parentId":"919aee48d14e33c6","traceId":"e5d405633a5e28b9bbe890af8a5966fe","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:14.453Z","sequence":9947,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:14.454Z","sequence":9949,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AB5] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:14.453Z","sequence":9948,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFC99231E7FEBC4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"875e9f9864b38425","parentId":"8800fc5cfb5c3db6","traceId":"0000000000000000775b2ec59f64602e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:14.491Z","sequence":9950,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:14.491Z","sequence":9951,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:14.515Z","sequence":9952,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1edf025d-b1eb-4525-ba3f-4cde9616e7c3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:15.732Z","sequence":9953,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: BD7191F62396]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"80ed579d4cb4a371","parentId":"f7bc3bc989839123","traceId":"000000000000000055494e1c130eb3a8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:15.85Z","sequence":9954,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: BD7191F62396]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"80ed579d4cb4a371","parentId":"f7bc3bc989839123","traceId":"000000000000000055494e1c130eb3a8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:22.186Z","sequence":9955,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:22.186Z","sequence":9956,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: flint]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:22.19Z","sequence":9957,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-4e5ddf31-625f-4dad-a1a5-6878779153bd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:22.192Z","sequence":9958,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/flint:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:22.192Z","sequence":9959,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: flint, type: hashed-password, auth-id: auth-flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:22.248Z","sequence":9960,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-d5be83c4-a9e8-4819-9ee7-dcedb0d36598, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:22.389Z","sequence":9961,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:22.39Z","sequence":9962,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000858] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:22.456Z","sequence":9963,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:22.457Z","sequence":9964,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:22.491Z","sequence":9965,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e639ddd8-7639-42e7-b4ea-015162dba77f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:24.19Z","sequence":9966,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:24.19Z","sequence":9967,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AB7] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:24.207Z","sequence":9968,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:24.207Z","sequence":9969,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:24.215Z","sequence":9970,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a7902ae3-c2f8-45df-b9ee-e0f6308c826e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:28.618Z","sequence":9971,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:28.619Z","sequence":9972,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A10] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:28.644Z","sequence":9973,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:28.644Z","sequence":9974,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:28.65Z","sequence":9975,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3980e2a8-d317-4a34-9b72-b73a870a4188, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:33.182Z","sequence":9976,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191022]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"193f0bd20b1115c9","parentId":"ce7a5d9850efeb16","traceId":"0000000000000000a9bf92d8cfee64f6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:33.245Z","sequence":9977,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191022, resource-version: 8440ffa6-5d97-4a73-95be-1446af958fd2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"193f0bd20b1115c9","parentId":"ce7a5d9850efeb16","traceId":"0000000000000000a9bf92d8cfee64f6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:33.253Z","sequence":9978,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191022, resource-version: 2e27713d-57d2-41b6-b92a-f23a937fcc25]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"193f0bd20b1115c9","parentId":"ce7a5d9850efeb16","traceId":"0000000000000000a9bf92d8cfee64f6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:33.257Z","sequence":9979,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191022]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"695f8a24fa806b83","parentId":"84fe0ee96ea5cf9e","traceId":"0000000000000000a9bf92d8cfee64f6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:33.542Z","sequence":9980,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191022]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"695f8a24fa806b83","parentId":"84fe0ee96ea5cf9e","traceId":"0000000000000000a9bf92d8cfee64f6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:34.33Z","sequence":9981,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF7D09E7A1E8A25]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a08b0230369daa3d","parentId":"3f37e3f748c67b11","traceId":"000000000000000054c782400e91cd4b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:34.35Z","sequence":9982,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF7D09E7A1E8A25, resource-version: d408e876-c77d-40ed-bff6-785879859c42]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a08b0230369daa3d","parentId":"3f37e3f748c67b11","traceId":"000000000000000054c782400e91cd4b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:34.357Z","sequence":9983,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF7D09E7A1E8A25, resource-version: f2e45711-0404-49b4-81d1-fc7f6bbccfb1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a08b0230369daa3d","parentId":"3f37e3f748c67b11","traceId":"000000000000000054c782400e91cd4b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:36.424Z","sequence":9984,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:36.425Z","sequence":9985,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BD1] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:36.43Z","sequence":9986,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:36.43Z","sequence":9987,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:36.436Z","sequence":9988,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b9bf170b-0707-484e-b772-bf3ea5a07796, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:39.065Z","sequence":9989,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:39.066Z","sequence":9990,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A0A] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:39.072Z","sequence":9991,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:39.072Z","sequence":9992,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:39.078Z","sequence":9993,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6422e296-82c5-4fb6-b3b8-9b87f9b56d01, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:40.471Z","sequence":9994,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [command-router@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:40.472Z","sequence":9995,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:40.487Z","sequence":9996,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-6b04e7df-956b-4447-bf67-f353abee8f2c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:40.489Z","sequence":9997,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [command-router@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:40.489Z","sequence":9998,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF7D09E7A1E8A25]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:40.779Z","sequence":9999,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-31ab47b2-3a96-4972-b2e4-5ac3b0bede93, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:40.999Z","sequence":10000,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client's [lora-adapter@HONO] access token has expired, closing connection","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:41.055Z","sequence":10001,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"initializing SASL authenticator","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:41.055Z","sequence":10002,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client provided an empty list of SASL mechanisms [hostname: null, state: PN_SASL_IDLE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:41.057Z","sequence":10003,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client wants to authenticate using SASL [mechanism: PLAIN, host: null, state: PN_SASL_STEP]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:41.057Z","sequence":10004,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"received authentication request [mechanism: PLAIN]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9f7550917fcdf06c","traceId":"ff887e2a38ba856ca368e1ad3b2d575c","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:41.057Z","sequence":10005,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"processing PLAIN authentication request [authzid: , authcid: lora-adapter@HONO, pwd: *****]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9f7550917fcdf06c","traceId":"ff887e2a38ba856ca368e1ad3b2d575c","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:41.058Z","sequence":10006,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"OpenSSL [available: false, supports KeyManagerFactory: false]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9f7550917fcdf06c","traceId":"ff887e2a38ba856ca368e1ad3b2d575c","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:41.058Z","sequence":10007,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"using JVM's default SSL engine","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9f7550917fcdf06c","traceId":"ff887e2a38ba856ca368e1ad3b2d575c","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:41.058Z","sequence":10008,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9f7550917fcdf06c","traceId":"ff887e2a38ba856ca368e1ad3b2d575c","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:41.058Z","sequence":10009,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9f7550917fcdf06c","traceId":"ff887e2a38ba856ca368e1ad3b2d575c","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:41.058Z","sequence":10010,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connecting to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9f7550917fcdf06c","traceId":"ff887e2a38ba856ca368e1ad3b2d575c","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:41.147Z","sequence":10011,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connected to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server], opening connection ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9f7550917fcdf06c","traceId":"ff887e2a38ba856ca368e1ad3b2d575c","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:41.149Z","sequence":10012,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connection to container [hono-auth-0.0.0.0:5671] at [amqps://aloxy-hono-service-auth:5671, role: Authentication Server] open","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9f7550917fcdf06c","traceId":"ff887e2a38ba856ca368e1ad3b2d575c","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:41.152Z","sequence":10013,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"opened receiver link to Authentication service, waiting for token ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9f7550917fcdf06c","traceId":"ff887e2a38ba856ca368e1ad3b2d575c","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:41.152Z","sequence":10014,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"successfully retrieved token from Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9f7550917fcdf06c","traceId":"ff887e2a38ba856ca368e1ad3b2d575c","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:41.152Z","sequence":10015,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"closing connection to Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9f7550917fcdf06c","traceId":"ff887e2a38ba856ca368e1ad3b2d575c","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:41.155Z","sequence":10016,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.EventBusAuthenticationService","level":"DEBUG","message":"received token [length: 969] in response to authentication request","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:41.156Z","sequence":10017,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.JjwtBasedAuthTokenValidator","level":"DEBUG","message":"using key [id: 984e3639028b1e7d0b7d97f8f3de6a82638af0ed7d06ce7d9e038a1c4c634169] to validate signature (alg: RS256]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:41.157Z","sequence":10018,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"authentication of client [authorization ID: lora-adapter@HONO] succeeded","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:41.157Z","sequence":10019,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"finishing SASL handshake with outcome PN_SASL_OK","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:41.157Z","sequence":10020,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"received connection request from client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:41.159Z","sequence":10021,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"processing open frame from client container [Hono adapter-lora-Tenant-995cc45f-23b2-488f-a5d9-0b18c4ae6c62]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:41.159Z","sequence":10022,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"INFO","message":"client connected [container: Hono adapter-lora-Tenant-995cc45f-23b2-488f-a5d9-0b18c4ae6c62, user: lora-adapter@HONO, token valid until: 2023-07-25T03:59:41Z]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:41.161Z","sequence":10023,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"opening new session with client [container: Hono adapter-lora-Tenant-995cc45f-23b2-488f-a5d9-0b18c4ae6c62]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42Z","sequence":10024,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client's [command-router@HONO] access token has expired, closing connection","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42Z","sequence":10025,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client's [command-router@HONO] access token has expired, closing connection","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.001Z","sequence":10026,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client's [mqtt-adapter@HONO] access token has expired, closing connection","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.001Z","sequence":10027,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client's [mqtt-adapter@HONO] access token has expired, closing connection","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.002Z","sequence":10028,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client's [lora-adapter@HONO] access token has expired, closing connection","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.089Z","sequence":10029,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"initializing SASL authenticator","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.089Z","sequence":10030,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client provided an empty list of SASL mechanisms [hostname: null, state: PN_SASL_IDLE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.09Z","sequence":10031,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"initializing SASL authenticator","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.09Z","sequence":10032,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client provided an empty list of SASL mechanisms [hostname: null, state: PN_SASL_IDLE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.118Z","sequence":10033,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client wants to authenticate using SASL [mechanism: PLAIN, host: null, state: PN_SASL_STEP]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.118Z","sequence":10034,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client wants to authenticate using SASL [mechanism: PLAIN, host: null, state: PN_SASL_STEP]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.119Z","sequence":10035,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"received authentication request [mechanism: PLAIN]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c201f1b2636eef69","traceId":"fc4e53a99039dcf70a9e8c07e0f81f18","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.119Z","sequence":10036,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"processing PLAIN authentication request [authzid: , authcid: mqtt-adapter@HONO, pwd: *****]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c201f1b2636eef69","traceId":"fc4e53a99039dcf70a9e8c07e0f81f18","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.119Z","sequence":10037,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"OpenSSL [available: false, supports KeyManagerFactory: false]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c201f1b2636eef69","traceId":"fc4e53a99039dcf70a9e8c07e0f81f18","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.119Z","sequence":10038,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"using JVM's default SSL engine","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c201f1b2636eef69","traceId":"fc4e53a99039dcf70a9e8c07e0f81f18","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.119Z","sequence":10039,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"initializing SASL authenticator","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.119Z","sequence":10040,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c201f1b2636eef69","traceId":"fc4e53a99039dcf70a9e8c07e0f81f18","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.12Z","sequence":10041,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client provided an empty list of SASL mechanisms [hostname: null, state: PN_SASL_IDLE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.12Z","sequence":10042,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c201f1b2636eef69","traceId":"fc4e53a99039dcf70a9e8c07e0f81f18","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.12Z","sequence":10043,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connecting to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c201f1b2636eef69","traceId":"fc4e53a99039dcf70a9e8c07e0f81f18","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.121Z","sequence":10044,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"received authentication request [mechanism: PLAIN]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c9def5481c5b9156","traceId":"1617ae264aec027ef7677d528eb74380","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.123Z","sequence":10045,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"processing PLAIN authentication request [authzid: , authcid: lora-adapter@HONO, pwd: *****]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c9def5481c5b9156","traceId":"1617ae264aec027ef7677d528eb74380","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.123Z","sequence":10046,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"initializing SASL authenticator","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.123Z","sequence":10047,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"OpenSSL [available: false, supports KeyManagerFactory: false]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c9def5481c5b9156","traceId":"1617ae264aec027ef7677d528eb74380","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.123Z","sequence":10048,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client provided an empty list of SASL mechanisms [hostname: null, state: PN_SASL_IDLE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.123Z","sequence":10049,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"using JVM's default SSL engine","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c9def5481c5b9156","traceId":"1617ae264aec027ef7677d528eb74380","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.124Z","sequence":10050,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c9def5481c5b9156","traceId":"1617ae264aec027ef7677d528eb74380","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.124Z","sequence":10051,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c9def5481c5b9156","traceId":"1617ae264aec027ef7677d528eb74380","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.124Z","sequence":10052,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connecting to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c9def5481c5b9156","traceId":"1617ae264aec027ef7677d528eb74380","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.125Z","sequence":10053,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client wants to authenticate using SASL [mechanism: PLAIN, host: null, state: PN_SASL_STEP]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.126Z","sequence":10054,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"received authentication request [mechanism: PLAIN]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4e7856d6dde0be62","traceId":"51f74fc0d2f026cb6d12aaeda31488a5","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.126Z","sequence":10055,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"processing PLAIN authentication request [authzid: , authcid: mqtt-adapter@HONO, pwd: *****]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4e7856d6dde0be62","traceId":"51f74fc0d2f026cb6d12aaeda31488a5","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.126Z","sequence":10056,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"OpenSSL [available: false, supports KeyManagerFactory: false]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4e7856d6dde0be62","traceId":"51f74fc0d2f026cb6d12aaeda31488a5","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.126Z","sequence":10057,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"using JVM's default SSL engine","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4e7856d6dde0be62","traceId":"51f74fc0d2f026cb6d12aaeda31488a5","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.126Z","sequence":10058,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4e7856d6dde0be62","traceId":"51f74fc0d2f026cb6d12aaeda31488a5","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.126Z","sequence":10059,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4e7856d6dde0be62","traceId":"51f74fc0d2f026cb6d12aaeda31488a5","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.127Z","sequence":10060,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connecting to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4e7856d6dde0be62","traceId":"51f74fc0d2f026cb6d12aaeda31488a5","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.127Z","sequence":10061,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"initializing SASL authenticator","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.127Z","sequence":10062,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client provided an empty list of SASL mechanisms [hostname: null, state: PN_SASL_IDLE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.127Z","sequence":10063,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client wants to authenticate using SASL [mechanism: PLAIN, host: null, state: PN_SASL_STEP]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.127Z","sequence":10064,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"received authentication request [mechanism: PLAIN]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6e87ed9b67d24a5a","traceId":"fadc0d6da3955c894186e1add906580c","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.127Z","sequence":10065,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"processing PLAIN authentication request [authzid: , authcid: command-router@HONO, pwd: *****]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6e87ed9b67d24a5a","traceId":"fadc0d6da3955c894186e1add906580c","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.128Z","sequence":10066,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"OpenSSL [available: false, supports KeyManagerFactory: false]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6e87ed9b67d24a5a","traceId":"fadc0d6da3955c894186e1add906580c","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.128Z","sequence":10067,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"using JVM's default SSL engine","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6e87ed9b67d24a5a","traceId":"fadc0d6da3955c894186e1add906580c","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.128Z","sequence":10068,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6e87ed9b67d24a5a","traceId":"fadc0d6da3955c894186e1add906580c","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.128Z","sequence":10069,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6e87ed9b67d24a5a","traceId":"fadc0d6da3955c894186e1add906580c","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.128Z","sequence":10070,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connecting to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6e87ed9b67d24a5a","traceId":"fadc0d6da3955c894186e1add906580c","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.129Z","sequence":10071,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client wants to authenticate using SASL [mechanism: PLAIN, host: null, state: PN_SASL_STEP]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.129Z","sequence":10072,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"received authentication request [mechanism: PLAIN]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"838be8e4e9c2df90","traceId":"289e296f2155aceace8a058abf2187c8","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.129Z","sequence":10073,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"processing PLAIN authentication request [authzid: , authcid: command-router@HONO, pwd: *****]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"838be8e4e9c2df90","traceId":"289e296f2155aceace8a058abf2187c8","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.129Z","sequence":10074,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"OpenSSL [available: false, supports KeyManagerFactory: false]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"838be8e4e9c2df90","traceId":"289e296f2155aceace8a058abf2187c8","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.129Z","sequence":10075,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"using JVM's default SSL engine","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"838be8e4e9c2df90","traceId":"289e296f2155aceace8a058abf2187c8","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.129Z","sequence":10076,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"838be8e4e9c2df90","traceId":"289e296f2155aceace8a058abf2187c8","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.129Z","sequence":10077,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"838be8e4e9c2df90","traceId":"289e296f2155aceace8a058abf2187c8","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.129Z","sequence":10078,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connecting to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"838be8e4e9c2df90","traceId":"289e296f2155aceace8a058abf2187c8","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.331Z","sequence":10079,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connected to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server], opening connection ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c9def5481c5b9156","traceId":"1617ae264aec027ef7677d528eb74380","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.333Z","sequence":10080,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connection to container [hono-auth-0.0.0.0:5671] at [amqps://aloxy-hono-service-auth:5671, role: Authentication Server] open","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c9def5481c5b9156","traceId":"1617ae264aec027ef7677d528eb74380","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.335Z","sequence":10081,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"opened receiver link to Authentication service, waiting for token ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c9def5481c5b9156","traceId":"1617ae264aec027ef7677d528eb74380","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.335Z","sequence":10082,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"successfully retrieved token from Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c9def5481c5b9156","traceId":"1617ae264aec027ef7677d528eb74380","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.335Z","sequence":10083,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"closing connection to Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c9def5481c5b9156","traceId":"1617ae264aec027ef7677d528eb74380","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.339Z","sequence":10084,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.EventBusAuthenticationService","level":"DEBUG","message":"received token [length: 969] in response to authentication request","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.34Z","sequence":10085,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.JjwtBasedAuthTokenValidator","level":"DEBUG","message":"using key [id: 984e3639028b1e7d0b7d97f8f3de6a82638af0ed7d06ce7d9e038a1c4c634169] to validate signature (alg: RS256]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.34Z","sequence":10086,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"authentication of client [authorization ID: lora-adapter@HONO] succeeded","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.34Z","sequence":10087,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"finishing SASL handshake with outcome PN_SASL_OK","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.34Z","sequence":10088,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"received connection request from client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.342Z","sequence":10089,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"processing open frame from client container [Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.342Z","sequence":10090,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"INFO","message":"client connected [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6, user: lora-adapter@HONO, token valid until: 2023-07-25T03:59:42Z]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.344Z","sequence":10091,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"opening new session with client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.346Z","sequence":10092,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connected to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server], opening connection ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"838be8e4e9c2df90","traceId":"289e296f2155aceace8a058abf2187c8","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.348Z","sequence":10093,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connection to container [hono-auth-0.0.0.0:5671] at [amqps://aloxy-hono-service-auth:5671, role: Authentication Server] open","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"838be8e4e9c2df90","traceId":"289e296f2155aceace8a058abf2187c8","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.35Z","sequence":10094,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"opened receiver link to Authentication service, waiting for token ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"838be8e4e9c2df90","traceId":"289e296f2155aceace8a058abf2187c8","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.35Z","sequence":10095,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"successfully retrieved token from Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"838be8e4e9c2df90","traceId":"289e296f2155aceace8a058abf2187c8","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.35Z","sequence":10096,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"closing connection to Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"838be8e4e9c2df90","traceId":"289e296f2155aceace8a058abf2187c8","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.351Z","sequence":10097,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.EventBusAuthenticationService","level":"DEBUG","message":"received token [length: 696] in response to authentication request","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.351Z","sequence":10098,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.JjwtBasedAuthTokenValidator","level":"DEBUG","message":"using key [id: 984e3639028b1e7d0b7d97f8f3de6a82638af0ed7d06ce7d9e038a1c4c634169] to validate signature (alg: RS256]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.351Z","sequence":10099,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"authentication of client [authorization ID: command-router@HONO] succeeded","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.351Z","sequence":10100,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"finishing SASL handshake with outcome PN_SASL_OK","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.351Z","sequence":10101,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"received connection request from client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.353Z","sequence":10102,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"processing open frame from client container [Hono service-command-router-Tenant-8c258f6d-8b57-47cf-8f84-a38d9786fed2]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.354Z","sequence":10103,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"INFO","message":"client connected [container: Hono service-command-router-Tenant-8c258f6d-8b57-47cf-8f84-a38d9786fed2, user: command-router@HONO, token valid until: 2023-07-25T03:59:42Z]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.355Z","sequence":10104,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"opening new session with client [container: Hono service-command-router-Tenant-8c258f6d-8b57-47cf-8f84-a38d9786fed2]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.369Z","sequence":10105,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connected to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server], opening connection ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6e87ed9b67d24a5a","traceId":"fadc0d6da3955c894186e1add906580c","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.371Z","sequence":10106,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connection to container [hono-auth-0.0.0.0:5671] at [amqps://aloxy-hono-service-auth:5671, role: Authentication Server] open","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6e87ed9b67d24a5a","traceId":"fadc0d6da3955c894186e1add906580c","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.373Z","sequence":10107,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"opened receiver link to Authentication service, waiting for token ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6e87ed9b67d24a5a","traceId":"fadc0d6da3955c894186e1add906580c","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.373Z","sequence":10108,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"successfully retrieved token from Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6e87ed9b67d24a5a","traceId":"fadc0d6da3955c894186e1add906580c","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.373Z","sequence":10109,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"closing connection to Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6e87ed9b67d24a5a","traceId":"fadc0d6da3955c894186e1add906580c","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.373Z","sequence":10110,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.EventBusAuthenticationService","level":"DEBUG","message":"received token [length: 696] in response to authentication request","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.373Z","sequence":10111,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.JjwtBasedAuthTokenValidator","level":"DEBUG","message":"using key [id: 984e3639028b1e7d0b7d97f8f3de6a82638af0ed7d06ce7d9e038a1c4c634169] to validate signature (alg: RS256]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.374Z","sequence":10112,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"authentication of client [authorization ID: command-router@HONO] succeeded","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.374Z","sequence":10113,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"finishing SASL handshake with outcome PN_SASL_OK","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.374Z","sequence":10114,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"received connection request from client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.376Z","sequence":10115,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"processing open frame from client container [Hono service-command-router-Device Registration-6b43a4ef-0980-4edd-b8fb-ab7a8b085811]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.376Z","sequence":10116,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"INFO","message":"client connected [container: Hono service-command-router-Device Registration-6b43a4ef-0980-4edd-b8fb-ab7a8b085811, user: command-router@HONO, token valid until: 2023-07-25T03:59:42Z]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.378Z","sequence":10117,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"opening new session with client [container: Hono service-command-router-Device Registration-6b43a4ef-0980-4edd-b8fb-ab7a8b085811]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.384Z","sequence":10118,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connected to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server], opening connection ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4e7856d6dde0be62","traceId":"51f74fc0d2f026cb6d12aaeda31488a5","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.386Z","sequence":10119,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connection to container [hono-auth-0.0.0.0:5671] at [amqps://aloxy-hono-service-auth:5671, role: Authentication Server] open","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4e7856d6dde0be62","traceId":"51f74fc0d2f026cb6d12aaeda31488a5","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.388Z","sequence":10120,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"opened receiver link to Authentication service, waiting for token ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4e7856d6dde0be62","traceId":"51f74fc0d2f026cb6d12aaeda31488a5","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.388Z","sequence":10121,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"successfully retrieved token from Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4e7856d6dde0be62","traceId":"51f74fc0d2f026cb6d12aaeda31488a5","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.388Z","sequence":10122,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"closing connection to Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4e7856d6dde0be62","traceId":"51f74fc0d2f026cb6d12aaeda31488a5","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.389Z","sequence":10123,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.EventBusAuthenticationService","level":"DEBUG","message":"received token [length: 969] in response to authentication request","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.389Z","sequence":10124,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.JjwtBasedAuthTokenValidator","level":"DEBUG","message":"using key [id: 984e3639028b1e7d0b7d97f8f3de6a82638af0ed7d06ce7d9e038a1c4c634169] to validate signature (alg: RS256]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.389Z","sequence":10125,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"authentication of client [authorization ID: mqtt-adapter@HONO] succeeded","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.39Z","sequence":10126,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"finishing SASL handshake with outcome PN_SASL_OK","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.39Z","sequence":10127,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"received connection request from client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.392Z","sequence":10128,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"processing open frame from client container [Hono adapter-mqtt-Credentials-75faa79c-12c0-45f2-bd9c-973655a3937c]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.392Z","sequence":10129,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"INFO","message":"client connected [container: Hono adapter-mqtt-Credentials-75faa79c-12c0-45f2-bd9c-973655a3937c, user: mqtt-adapter@HONO, token valid until: 2023-07-25T03:59:42Z]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.394Z","sequence":10130,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"opening new session with client [container: Hono adapter-mqtt-Credentials-75faa79c-12c0-45f2-bd9c-973655a3937c]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.401Z","sequence":10131,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connected to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server], opening connection ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c201f1b2636eef69","traceId":"fc4e53a99039dcf70a9e8c07e0f81f18","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.402Z","sequence":10132,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connection to container [hono-auth-0.0.0.0:5671] at [amqps://aloxy-hono-service-auth:5671, role: Authentication Server] open","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c201f1b2636eef69","traceId":"fc4e53a99039dcf70a9e8c07e0f81f18","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.404Z","sequence":10133,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"opened receiver link to Authentication service, waiting for token ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c201f1b2636eef69","traceId":"fc4e53a99039dcf70a9e8c07e0f81f18","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.405Z","sequence":10134,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"successfully retrieved token from Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c201f1b2636eef69","traceId":"fc4e53a99039dcf70a9e8c07e0f81f18","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.405Z","sequence":10135,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"closing connection to Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c201f1b2636eef69","traceId":"fc4e53a99039dcf70a9e8c07e0f81f18","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.405Z","sequence":10136,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.EventBusAuthenticationService","level":"DEBUG","message":"received token [length: 969] in response to authentication request","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.405Z","sequence":10137,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.JjwtBasedAuthTokenValidator","level":"DEBUG","message":"using key [id: 984e3639028b1e7d0b7d97f8f3de6a82638af0ed7d06ce7d9e038a1c4c634169] to validate signature (alg: RS256]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.406Z","sequence":10138,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"authentication of client [authorization ID: mqtt-adapter@HONO] succeeded","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.406Z","sequence":10139,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"finishing SASL handshake with outcome PN_SASL_OK","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.406Z","sequence":10140,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"received connection request from client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.408Z","sequence":10141,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"processing open frame from client container [Hono adapter-mqtt-Tenant-ded758d0-b7cf-4d65-a210-6d11fa222d32]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.408Z","sequence":10142,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"INFO","message":"client connected [container: Hono adapter-mqtt-Tenant-ded758d0-b7cf-4d65-a210-6d11fa222d32, user: mqtt-adapter@HONO, token valid until: 2023-07-25T03:59:42Z]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:42.409Z","sequence":10143,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"opening new session with client [container: Hono adapter-mqtt-Tenant-ded758d0-b7cf-4d65-a210-6d11fa222d32]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:43.001Z","sequence":10144,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client's [lora-adapter@HONO] access token has expired, closing connection","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:43.05Z","sequence":10145,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"initializing SASL authenticator","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:43.05Z","sequence":10146,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client provided an empty list of SASL mechanisms [hostname: null, state: PN_SASL_IDLE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:43.052Z","sequence":10147,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client wants to authenticate using SASL [mechanism: PLAIN, host: null, state: PN_SASL_STEP]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:43.052Z","sequence":10148,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"received authentication request [mechanism: PLAIN]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a4e4283aaa21754f","traceId":"7b041ce3f144f499697791f2a609a13e","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:43.052Z","sequence":10149,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"processing PLAIN authentication request [authzid: , authcid: lora-adapter@HONO, pwd: *****]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a4e4283aaa21754f","traceId":"7b041ce3f144f499697791f2a609a13e","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:43.052Z","sequence":10150,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"OpenSSL [available: false, supports KeyManagerFactory: false]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a4e4283aaa21754f","traceId":"7b041ce3f144f499697791f2a609a13e","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:43.052Z","sequence":10151,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"using JVM's default SSL engine","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a4e4283aaa21754f","traceId":"7b041ce3f144f499697791f2a609a13e","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:43.052Z","sequence":10152,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a4e4283aaa21754f","traceId":"7b041ce3f144f499697791f2a609a13e","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:43.052Z","sequence":10153,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a4e4283aaa21754f","traceId":"7b041ce3f144f499697791f2a609a13e","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:43.052Z","sequence":10154,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connecting to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a4e4283aaa21754f","traceId":"7b041ce3f144f499697791f2a609a13e","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:43.126Z","sequence":10155,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connected to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server], opening connection ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a4e4283aaa21754f","traceId":"7b041ce3f144f499697791f2a609a13e","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:43.128Z","sequence":10156,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connection to container [hono-auth-0.0.0.0:5671] at [amqps://aloxy-hono-service-auth:5671, role: Authentication Server] open","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a4e4283aaa21754f","traceId":"7b041ce3f144f499697791f2a609a13e","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:43.131Z","sequence":10157,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"opened receiver link to Authentication service, waiting for token ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a4e4283aaa21754f","traceId":"7b041ce3f144f499697791f2a609a13e","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:43.131Z","sequence":10158,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"successfully retrieved token from Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a4e4283aaa21754f","traceId":"7b041ce3f144f499697791f2a609a13e","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:43.131Z","sequence":10159,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"closing connection to Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a4e4283aaa21754f","traceId":"7b041ce3f144f499697791f2a609a13e","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:43.134Z","sequence":10160,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.EventBusAuthenticationService","level":"DEBUG","message":"received token [length: 969] in response to authentication request","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:43.134Z","sequence":10161,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.JjwtBasedAuthTokenValidator","level":"DEBUG","message":"using key [id: 984e3639028b1e7d0b7d97f8f3de6a82638af0ed7d06ce7d9e038a1c4c634169] to validate signature (alg: RS256]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:43.135Z","sequence":10162,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"authentication of client [authorization ID: lora-adapter@HONO] succeeded","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:43.135Z","sequence":10163,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"finishing SASL handshake with outcome PN_SASL_OK","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:43.135Z","sequence":10164,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"received connection request from client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:43.137Z","sequence":10165,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"processing open frame from client container [Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:43.138Z","sequence":10166,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"INFO","message":"client connected [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d, user: lora-adapter@HONO, token valid until: 2023-07-25T03:59:43Z]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:43.14Z","sequence":10167,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"opening new session with client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:43.432Z","sequence":10168,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] wants to open a link [address: Source{address='registration/shell/218332a7-4274-4004-8476-b6e1b68addbb', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:43.432Z","sequence":10169,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-0]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:43.432Z","sequence":10170,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@2cca18d0] for replies to [registration/shell/218332a7-4274-4004-8476-b6e1b68addbb]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:43.435Z","sequence":10171,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] wants to open a link [address: Target{address='registration/shell', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:43.435Z","sequence":10172,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-1]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:43.435Z","sequence":10173,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:43.438Z","sequence":10174,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:43.439Z","sequence":10175,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A0C] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:43.446Z","sequence":10176,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:43.446Z","sequence":10177,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:43.491Z","sequence":10178,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4c2b50a5-fe12-445b-b43d-43ec47645968, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:45Z","sequence":10179,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client's [mqtt-adapter@HONO] access token has expired, closing connection","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:45.066Z","sequence":10180,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"initializing SASL authenticator","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:45.069Z","sequence":10181,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client provided an empty list of SASL mechanisms [hostname: null, state: PN_SASL_IDLE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:45.071Z","sequence":10182,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client wants to authenticate using SASL [mechanism: PLAIN, host: null, state: PN_SASL_STEP]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:45.071Z","sequence":10183,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"received authentication request [mechanism: PLAIN]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"781d87f3fb73872f","traceId":"874b8bef40e530d8cd3fb6df3465ecae","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:45.071Z","sequence":10184,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"processing PLAIN authentication request [authzid: , authcid: mqtt-adapter@HONO, pwd: *****]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"781d87f3fb73872f","traceId":"874b8bef40e530d8cd3fb6df3465ecae","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:45.071Z","sequence":10185,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"OpenSSL [available: false, supports KeyManagerFactory: false]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"781d87f3fb73872f","traceId":"874b8bef40e530d8cd3fb6df3465ecae","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:45.072Z","sequence":10186,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"using JVM's default SSL engine","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"781d87f3fb73872f","traceId":"874b8bef40e530d8cd3fb6df3465ecae","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:45.072Z","sequence":10187,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"781d87f3fb73872f","traceId":"874b8bef40e530d8cd3fb6df3465ecae","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:45.072Z","sequence":10188,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"781d87f3fb73872f","traceId":"874b8bef40e530d8cd3fb6df3465ecae","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:45.072Z","sequence":10189,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connecting to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"781d87f3fb73872f","traceId":"874b8bef40e530d8cd3fb6df3465ecae","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:45.163Z","sequence":10190,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connected to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server], opening connection ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"781d87f3fb73872f","traceId":"874b8bef40e530d8cd3fb6df3465ecae","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:45.165Z","sequence":10191,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connection to container [hono-auth-0.0.0.0:5671] at [amqps://aloxy-hono-service-auth:5671, role: Authentication Server] open","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"781d87f3fb73872f","traceId":"874b8bef40e530d8cd3fb6df3465ecae","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:45.168Z","sequence":10192,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"opened receiver link to Authentication service, waiting for token ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"781d87f3fb73872f","traceId":"874b8bef40e530d8cd3fb6df3465ecae","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:45.168Z","sequence":10193,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"successfully retrieved token from Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"781d87f3fb73872f","traceId":"874b8bef40e530d8cd3fb6df3465ecae","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:45.168Z","sequence":10194,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"closing connection to Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"781d87f3fb73872f","traceId":"874b8bef40e530d8cd3fb6df3465ecae","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:45.169Z","sequence":10195,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.EventBusAuthenticationService","level":"DEBUG","message":"received token [length: 969] in response to authentication request","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:45.169Z","sequence":10196,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.JjwtBasedAuthTokenValidator","level":"DEBUG","message":"using key [id: 984e3639028b1e7d0b7d97f8f3de6a82638af0ed7d06ce7d9e038a1c4c634169] to validate signature (alg: RS256]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:45.17Z","sequence":10197,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"authentication of client [authorization ID: mqtt-adapter@HONO] succeeded","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:45.17Z","sequence":10198,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"finishing SASL handshake with outcome PN_SASL_OK","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:45.17Z","sequence":10199,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"received connection request from client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:45.172Z","sequence":10200,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"processing open frame from client container [Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:45.173Z","sequence":10201,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"INFO","message":"client connected [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af, user: mqtt-adapter@HONO, token valid until: 2023-07-25T03:59:45Z]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:45.175Z","sequence":10202,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"opening new session with client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:47.301Z","sequence":10203,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:47.301Z","sequence":10204,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BC8] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:47.31Z","sequence":10205,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:47.31Z","sequence":10206,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:47.316Z","sequence":10207,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-41a7c800-d175-4899-9b86-f6a53309f601, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:48.585Z","sequence":10208,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:48.585Z","sequence":10209,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000ABA] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:48.592Z","sequence":10210,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:48.592Z","sequence":10211,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:48.6Z","sequence":10212,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-201e8c4c-4858-4c1e-9b31-8d4e54042dfb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:49.982Z","sequence":10213,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af] wants to open a link [address: Source{address='registration/conditionall/fe477eaf-bb24-4b94-a0f9-dfc46a4f9e90', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:49.982Z","sequence":10214,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-0]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:49.982Z","sequence":10215,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@4e1aa3a4] for replies to [registration/conditionall/fe477eaf-bb24-4b94-a0f9-dfc46a4f9e90]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:49.984Z","sequence":10216,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af] wants to open a link [address: Target{address='registration/conditionall', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:49.984Z","sequence":10217,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-1]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:49.985Z","sequence":10218,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:49.987Z","sequence":10219,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/conditionall:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:49.987Z","sequence":10220,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: conditionall, device-id: 0008004B512D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:49.995Z","sequence":10221,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2707da02-7ce9-4d31-b8b2-91fe527cc6ef, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:49.998Z","sequence":10222,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Tenant-ded758d0-b7cf-4d65-a210-6d11fa222d32] wants to open a link [address: Source{address='tenant/50afc6b8-348f-4b54-bde8-26cd65477ec6', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:49.998Z","sequence":10223,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-0]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:49.998Z","sequence":10224,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@23649229] for replies to [tenant/50afc6b8-348f-4b54-bde8-26cd65477ec6]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:50Z","sequence":10225,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Tenant-ded758d0-b7cf-4d65-a210-6d11fa222d32] wants to open a link [address: Target{address='tenant', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:50Z","sequence":10226,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-1]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:50.004Z","sequence":10227,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:50.008Z","sequence":10228,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:50.009Z","sequence":10229,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: conditionall]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:50.013Z","sequence":10230,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-38908358-b807-4f94-859f-28f18b6fcf0d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:51.305Z","sequence":10231,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:51.305Z","sequence":10232,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A0B] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:51.31Z","sequence":10233,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:51.311Z","sequence":10234,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:51.317Z","sequence":10235,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-00b65313-2b4a-453b-aa33-4d062b3e9120, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:54.368Z","sequence":10236,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:54.368Z","sequence":10237,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BD3] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:54.39Z","sequence":10238,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:54.39Z","sequence":10239,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:54.409Z","sequence":10240,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5c138063-c822-4a20-9519-8884f233b151, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:55.545Z","sequence":10241,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af] wants to open a link [address: Source{address='registration/oci/85d4f9f6-4a95-4b6c-a8cf-52730253e817', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:55.545Z","sequence":10242,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-2]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:55.545Z","sequence":10243,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@7e0f1b85] for replies to [registration/oci/85d4f9f6-4a95-4b6c-a8cf-52730253e817]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:55.547Z","sequence":10244,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af] wants to open a link [address: Target{address='registration/oci', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:55.547Z","sequence":10245,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:55.547Z","sequence":10246,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:55.549Z","sequence":10247,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:55.55Z","sequence":10248,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T02:59:55.556Z","sequence":10249,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6f87e383-8d32-45fb-9622-795416f9aa09, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:00.65Z","sequence":10250,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:00.65Z","sequence":10251,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: lanxess]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:00.654Z","sequence":10252,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-48085f39-b9b4-4162-a934-8d7a2ed645f8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:00.659Z","sequence":10253,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af] wants to open a link [address: Source{address='registration/lanxess/b9e3b044-dce8-47a7-ab0b-18767fe2e2c3', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:00.659Z","sequence":10254,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:00.659Z","sequence":10255,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@5affdba] for replies to [registration/lanxess/b9e3b044-dce8-47a7-ab0b-18767fe2e2c3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:00.661Z","sequence":10256,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af] wants to open a link [address: Target{address='registration/lanxess', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:00.661Z","sequence":10257,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-5]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:00.661Z","sequence":10258,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:00.664Z","sequence":10259,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:00.664Z","sequence":10260,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 70B3D57BB10001B5] for gateway [0008004BB84C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:00.669Z","sequence":10261,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_lanxess\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:00.669Z","sequence":10262,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_lanxess\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:00.672Z","sequence":10263,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-479b4334-9690-4ea4-a136-5501cc228fb2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:00.714Z","sequence":10264,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:00.714Z","sequence":10265,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000567] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:00.719Z","sequence":10266,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:00.72Z","sequence":10267,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:00.726Z","sequence":10268,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-96fc84dd-2316-4539-a860-a5f3219c3c01, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:04.142Z","sequence":10269,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191023]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6a6bfe8208d1241e","parentId":"8717a5d166a6593b","traceId":"0000000000000000d1e6043764ae683f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:04.193Z","sequence":10270,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191023, resource-version: 6376485c-1978-47af-9906-56125fd2fcd7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6a6bfe8208d1241e","parentId":"8717a5d166a6593b","traceId":"0000000000000000d1e6043764ae683f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:04.201Z","sequence":10271,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191023, resource-version: 3f016504-8ca0-42a6-a37a-080fce63ef46]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6a6bfe8208d1241e","parentId":"8717a5d166a6593b","traceId":"0000000000000000d1e6043764ae683f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:04.206Z","sequence":10272,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191023]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2cc971abc9f4f0a8","parentId":"85aea0f62cd80fda","traceId":"0000000000000000d1e6043764ae683f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:04.351Z","sequence":10273,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191023]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2cc971abc9f4f0a8","parentId":"85aea0f62cd80fda","traceId":"0000000000000000d1e6043764ae683f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:04.54Z","sequence":10274,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:04.54Z","sequence":10275,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A05] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:04.547Z","sequence":10276,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:04.547Z","sequence":10277,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:04.553Z","sequence":10278,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0aa61d7b-0fae-487f-bca4-96a278f409c2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:05.253Z","sequence":10279,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFF1CF001D03A03]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"788f643bb84209a8","parentId":"d6a91022a0840a13","traceId":"0000000000000000a28a836590b0212a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:05.285Z","sequence":10280,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFF1CF001D03A03, resource-version: 75568b5a-7279-4d54-8cef-275c3cc59863]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"788f643bb84209a8","parentId":"d6a91022a0840a13","traceId":"0000000000000000a28a836590b0212a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:05.292Z","sequence":10281,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFF1CF001D03A03, resource-version: 36ee8f89-f891-4b4d-8499-385bdcb67533]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"788f643bb84209a8","parentId":"d6a91022a0840a13","traceId":"0000000000000000a28a836590b0212a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:06.4Z","sequence":10282,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Source{address='credentials/integrationtest/fee6c9fa-538a-4917-a592-6151a8bc3c56', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:06.401Z","sequence":10283,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-0]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:06.401Z","sequence":10284,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@4fddfc27] for replies to [credentials/integrationtest/fee6c9fa-538a-4917-a592-6151a8bc3c56]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:06.404Z","sequence":10285,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Target{address='credentials/integrationtest', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:06.404Z","sequence":10286,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-1]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:06.405Z","sequence":10287,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:06.407Z","sequence":10288,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:06.407Z","sequence":10289,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191023]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:06.425Z","sequence":10290,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-484ef037-811d-480b-b16e-46867a2cf2b2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:06.549Z","sequence":10291,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] wants to open a link [address: Source{address='registration/integrationtest/3a7035ff-6b12-4fa6-aec5-e993858e854f', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:06.549Z","sequence":10292,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-2]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:06.549Z","sequence":10293,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@3507f7a5] for replies to [registration/integrationtest/3a7035ff-6b12-4fa6-aec5-e993858e854f]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:06.552Z","sequence":10294,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] wants to open a link [address: Target{address='registration/integrationtest', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:06.552Z","sequence":10295,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:06.552Z","sequence":10296,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:06.557Z","sequence":10297,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:06.557Z","sequence":10298,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFF1CF001D03A03] for gateway [gateway_integrationtest_network_191023]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:06.557Z","sequence":10299,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:06.557Z","sequence":10300,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191023]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:06.576Z","sequence":10301,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:06.577Z","sequence":10302,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:06.577Z","sequence":10303,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b1dfd65a-0b65-4340-80bb-251f73bda5b7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:07.04Z","sequence":10304,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a0b26afa-bc22-4fce-9579-730ede6f0ed0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:11.448Z","sequence":10305,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFF1CF001D03A03]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fef892fd25742f19","parentId":"8e7ed60e64cfbbd2","traceId":"0000000000000000fc117a657e09e5f3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:11.495Z","sequence":10306,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFF1CF001D03A03]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fef892fd25742f19","parentId":"8e7ed60e64cfbbd2","traceId":"0000000000000000fc117a657e09e5f3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:11.761Z","sequence":10307,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191023]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ab2d48366eac28c6","parentId":"efab645d1c642595","traceId":"00000000000000002955b17d2bae2ebe","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:11.796Z","sequence":10308,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191023]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ab2d48366eac28c6","parentId":"efab645d1c642595","traceId":"00000000000000002955b17d2bae2ebe","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:13.403Z","sequence":10309,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:13.403Z","sequence":10310,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000ADF] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:13.41Z","sequence":10311,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:13.41Z","sequence":10312,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:13.416Z","sequence":10313,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-807e269c-ac3a-42e6-b4d2-4d5de7fb9be3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:13.468Z","sequence":10314,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF9E74E8ABC6763]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ecb8e40b2cba1fa0","parentId":"f5941f9cbb11717b","traceId":"00000000000000002cb3e014ad4ce8ab","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:13.488Z","sequence":10315,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF9E74E8ABC6763]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ecb8e40b2cba1fa0","parentId":"f5941f9cbb11717b","traceId":"00000000000000002cb3e014ad4ce8ab","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:14.271Z","sequence":10316,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191021]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"629d631770b59b39","parentId":"c69153037bc4fee4","traceId":"0000000000000000ae24a6a85ac3c885","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:14.31Z","sequence":10317,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191021]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"629d631770b59b39","parentId":"c69153037bc4fee4","traceId":"0000000000000000ae24a6a85ac3c885","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:14.399Z","sequence":10318,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:14.399Z","sequence":10319,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:14.405Z","sequence":10320,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-bc1c9c5c-67b5-4cba-8de6-648699df4085, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:15.316Z","sequence":10321,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191024]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7dc4abbc3825e25e","parentId":"7568dd9d4291fd5c","traceId":"0000000000000000573a49a2c6f24ee9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:15.413Z","sequence":10322,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191024, resource-version: c941688a-1389-487a-9595-c0f41932501f]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7dc4abbc3825e25e","parentId":"7568dd9d4291fd5c","traceId":"0000000000000000573a49a2c6f24ee9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:15.461Z","sequence":10323,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191024, resource-version: 40dce603-105b-4b6e-8fb0-1e5613c64703]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7dc4abbc3825e25e","parentId":"7568dd9d4291fd5c","traceId":"0000000000000000573a49a2c6f24ee9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:15.467Z","sequence":10324,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191024]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"868ebbc74f48ab29","parentId":"b59c5e3ef9ea2dcf","traceId":"0000000000000000573a49a2c6f24ee9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:15.957Z","sequence":10325,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191024]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"868ebbc74f48ab29","parentId":"b59c5e3ef9ea2dcf","traceId":"0000000000000000573a49a2c6f24ee9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:16.816Z","sequence":10326,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFFB2E1E5A8C13C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6048afaa5b8abdfe","parentId":"25140b78fb434250","traceId":"00000000000000005b8383211536745e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:16.893Z","sequence":10327,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFFB2E1E5A8C13C, resource-version: 826b7e33-fdfe-44f0-af8f-c7e0d5c8e9c4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6048afaa5b8abdfe","parentId":"25140b78fb434250","traceId":"00000000000000005b8383211536745e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:16.9Z","sequence":10328,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFFB2E1E5A8C13C, resource-version: f28b1fa7-0ef9-4cb6-857b-d7a69ab1a92a]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6048afaa5b8abdfe","parentId":"25140b78fb434250","traceId":"00000000000000005b8383211536745e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:18.007Z","sequence":10329,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:18.008Z","sequence":10330,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191024]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:18.021Z","sequence":10331,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-94d36965-b299-4bb3-86cf-f195ced1ab4b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:18.142Z","sequence":10332,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:18.142Z","sequence":10333,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFFB2E1E5A8C13C] for gateway [gateway_integrationtest_network_191024]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:18.143Z","sequence":10334,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:18.143Z","sequence":10335,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191024]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:18.167Z","sequence":10336,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:18.171Z","sequence":10337,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:18.171Z","sequence":10338,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2c160f0b-1176-4dc4-abd9-5d6f1569e73f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:18.613Z","sequence":10339,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6f938b1d-930e-4d68-aaad-91f02523dad9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:19.912Z","sequence":10340,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:19.912Z","sequence":10341,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A0F] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:19.917Z","sequence":10342,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:19.918Z","sequence":10343,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:19.942Z","sequence":10344,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e6a782a1-cade-4441-8448-b23e8d47fea3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:21.986Z","sequence":10345,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:21.986Z","sequence":10346,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BBB] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:21.993Z","sequence":10347,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:21.994Z","sequence":10348,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:22.007Z","sequence":10349,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-22f4b989-a54b-4445-a548-aa0aa8690560, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:22.893Z","sequence":10350,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:22.893Z","sequence":10351,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A0D] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:22.933Z","sequence":10352,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:22.933Z","sequence":10353,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:22.949Z","sequence":10354,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-69c180d2-a0be-46fc-bcaf-6b7a5161c277, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:24.101Z","sequence":10355,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:24.101Z","sequence":10356,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BB84C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:24.127Z","sequence":10357,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7dfdba7d-11bd-4ee8-8146-169ad3792000, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:24.131Z","sequence":10358,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:24.131Z","sequence":10359,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 70B3D57BB100017F] for gateway [0008004BB84C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:24.143Z","sequence":10360,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_lanxess\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:24.143Z","sequence":10361,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_lanxess\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:24.149Z","sequence":10362,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-82b960ba-4878-4ed7-92f7-c764ea870747, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:27.652Z","sequence":10363,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af] wants to open a link [address: Source{address='registration/ineos/37f1e691-fe94-4b89-863d-a8c0debbc8ab', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:27.652Z","sequence":10364,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-6]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:27.652Z","sequence":10365,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@4ee48e91] for replies to [registration/ineos/37f1e691-fe94-4b89-863d-a8c0debbc8ab]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:27.654Z","sequence":10366,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af] wants to open a link [address: Target{address='registration/ineos', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:27.654Z","sequence":10367,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-7]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:27.654Z","sequence":10368,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:27.657Z","sequence":10369,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:27.657Z","sequence":10370,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 0008004B5135]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:27.662Z","sequence":10371,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-bd127aff-ff0c-42bb-9543-7d25fd9ebf9b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:27.665Z","sequence":10372,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:27.665Z","sequence":10373,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: ineos]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:27.668Z","sequence":10374,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-f43c70a6-ab20-4010-a0d5-fe34c2592017, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:30.8Z","sequence":10375,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:30.8Z","sequence":10376,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10001D5] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:30.807Z","sequence":10377,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:0.4.1\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:30.807Z","sequence":10378,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:30.822Z","sequence":10379,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c04df2fb-0491-4038-a42b-cc313e82cbd0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:31.705Z","sequence":10380,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:31.705Z","sequence":10381,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BBD1B]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:31.711Z","sequence":10382,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e0252838-90bd-40be-bf76-422b371555ee, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:31.906Z","sequence":10383,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFFB2E1E5A8C13C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0b50a1d4e6cff0d8","parentId":"c10d6a26d1004af2","traceId":"00000000000000000bb05b54ed825534","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:31.993Z","sequence":10384,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFFB2E1E5A8C13C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0b50a1d4e6cff0d8","parentId":"c10d6a26d1004af2","traceId":"00000000000000000bb05b54ed825534","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:32.159Z","sequence":10385,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191024]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e8ce1787475f514f","parentId":"332517da1fa63de4","traceId":"0000000000000000c02682fbe01a2fed","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:32.206Z","sequence":10386,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191024]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e8ce1787475f514f","parentId":"332517da1fa63de4","traceId":"0000000000000000c02682fbe01a2fed","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:33.058Z","sequence":10387,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: C7E3B2AE6D01]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8e50d5e9885ccf09","parentId":"751196686a2f0cc9","traceId":"00000000000000008227c97245d42cb0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:33.1Z","sequence":10388,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: C7E3B2AE6D01, resource-version: 2117a1fc-00e1-44e6-bdcd-08963bd3c207]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8e50d5e9885ccf09","parentId":"751196686a2f0cc9","traceId":"00000000000000008227c97245d42cb0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:33.137Z","sequence":10389,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: C7E3B2AE6D01, resource-version: 459a5f41-f39c-4a86-822d-6af5a3c544a4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8e50d5e9885ccf09","parentId":"751196686a2f0cc9","traceId":"00000000000000008227c97245d42cb0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:33.145Z","sequence":10390,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: C7E3B2AE6D01]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cab311a8be7058e9","parentId":"8f0cf6292076dd63","traceId":"00000000000000008227c97245d42cb0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:33.315Z","sequence":10391,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: C7E3B2AE6D01]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cab311a8be7058e9","parentId":"8f0cf6292076dd63","traceId":"00000000000000008227c97245d42cb0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:34.193Z","sequence":10392,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF53A0D90655F03]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3ad0de23a73ea364","parentId":"7449daa0fbef434b","traceId":"00000000000000000c02abb9393e7820","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:34.211Z","sequence":10393,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF53A0D90655F03, resource-version: 2dce0e24-7f5e-4392-9b0e-512439218aa5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3ad0de23a73ea364","parentId":"7449daa0fbef434b","traceId":"00000000000000000c02abb9393e7820","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:34.235Z","sequence":10394,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF53A0D90655F03, resource-version: 73420742-7d64-4c9a-b5eb-ec0d5d575cb2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3ad0de23a73ea364","parentId":"7449daa0fbef434b","traceId":"00000000000000000c02abb9393e7820","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:35.281Z","sequence":10395,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Credentials-75faa79c-12c0-45f2-bd9c-973655a3937c] wants to open a link [address: Source{address='credentials/integrationtest/82aab664-97e6-4c27-8607-164565120409', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:35.282Z","sequence":10396,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-0]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:35.282Z","sequence":10397,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@5f80facd] for replies to [credentials/integrationtest/82aab664-97e6-4c27-8607-164565120409]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:35.284Z","sequence":10398,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Credentials-75faa79c-12c0-45f2-bd9c-973655a3937c] wants to open a link [address: Target{address='credentials/integrationtest', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:35.284Z","sequence":10399,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-1]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:35.284Z","sequence":10400,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:35.286Z","sequence":10401,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:35.286Z","sequence":10402,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-C7E3B2AE6D01]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:35.299Z","sequence":10403,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-baae2916-f47d-4984-b3fd-3f133daead21, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:35.424Z","sequence":10404,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af] wants to open a link [address: Source{address='registration/integrationtest/7d212156-9fc6-4cce-9d23-721789e21230', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:35.424Z","sequence":10405,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-8]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:35.424Z","sequence":10406,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@7ba2a64e] for replies to [registration/integrationtest/7d212156-9fc6-4cce-9d23-721789e21230]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:35.426Z","sequence":10407,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af] wants to open a link [address: Target{address='registration/integrationtest', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:35.426Z","sequence":10408,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-9]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:35.426Z","sequence":10409,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:35.429Z","sequence":10410,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:35.436Z","sequence":10411,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: C7E3B2AE6D01]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:35.441Z","sequence":10412,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ca58c6e9-19ae-4946-bb0b-1c81adb626ef, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:35.448Z","sequence":10413,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:35.448Z","sequence":10414,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF53A0D90655F03] for gateway [C7E3B2AE6D01]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:35.453Z","sequence":10415,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:35.453Z","sequence":10416,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:35.729Z","sequence":10417,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e677b2d5-6067-4686-95f9-cae4a7f8d731, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:37.365Z","sequence":10418,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af] wants to open a link [address: Source{address='registration/arkema/db2b9e3d-8df8-46ac-a40d-284de89ac225', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:37.365Z","sequence":10419,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:37.365Z","sequence":10420,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@6ef18cc9] for replies to [registration/arkema/db2b9e3d-8df8-46ac-a40d-284de89ac225]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:37.367Z","sequence":10421,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af] wants to open a link [address: Target{address='registration/arkema', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:37.367Z","sequence":10422,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-11]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:37.367Z","sequence":10423,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:37.37Z","sequence":10424,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/arkema:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:37.37Z","sequence":10425,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: arkema, device-id: 0008004AE119]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:37.392Z","sequence":10426,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f1cd6e3a-5cca-4831-aaee-2ee63f631f39, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:37.395Z","sequence":10427,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:37.396Z","sequence":10428,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: arkema]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:37.398Z","sequence":10429,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-0519497b-ce5c-4e57-8987-b1aad7bfe645, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:40.319Z","sequence":10430,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:40.319Z","sequence":10431,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019F1] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:40.326Z","sequence":10432,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:40.326Z","sequence":10433,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:40.353Z","sequence":10434,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2ba96593-8931-47dd-99b6-af471c943d48, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:47.71Z","sequence":10435,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF53A0D90655F03]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4cd84609fba6f399","parentId":"262bed9bbfbaedae","traceId":"000000000000000064d869a478f158dd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:47.732Z","sequence":10436,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF53A0D90655F03]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4cd84609fba6f399","parentId":"262bed9bbfbaedae","traceId":"000000000000000064d869a478f158dd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:48.088Z","sequence":10437,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: C7E3B2AE6D01]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"24427f543e50063a","parentId":"86438233988a8ac3","traceId":"000000000000000018fe4b4406340276","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:48.138Z","sequence":10438,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: C7E3B2AE6D01]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"24427f543e50063a","parentId":"86438233988a8ac3","traceId":"000000000000000018fe4b4406340276","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:54.349Z","sequence":10439,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:54.349Z","sequence":10440,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AD5] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:54.356Z","sequence":10441,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:54.356Z","sequence":10442,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:54.366Z","sequence":10443,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0b5ce565-04d4-40d7-bc7f-aa5daae5a18c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:56.383Z","sequence":10444,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:56.383Z","sequence":10445,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BBD1C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:00:56.421Z","sequence":10446,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-56fcdbff-c753-412b-bcfd-8646d338b069, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:02.657Z","sequence":10447,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF7D09E7A1E8A25]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fb667a92af2d202e","parentId":"650e23bec65aa292","traceId":"000000000000000026db7a5095d34706","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:02.678Z","sequence":10448,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF7D09E7A1E8A25]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fb667a92af2d202e","parentId":"650e23bec65aa292","traceId":"000000000000000026db7a5095d34706","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:03.35Z","sequence":10449,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191022]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e243ba8009ef4d91","parentId":"8a5769a5fac9b22d","traceId":"0000000000000000bdc5daf038c9f2a1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:03.373Z","sequence":10450,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191022]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e243ba8009ef4d91","parentId":"8a5769a5fac9b22d","traceId":"0000000000000000bdc5daf038c9f2a1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:03.825Z","sequence":10451,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: F5B6FCCF76BE]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ec8413444ba5ba9f","parentId":"926599e42fb75a4b","traceId":"0000000000000000ff8f1a403dfb1091","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:03.849Z","sequence":10452,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: F5B6FCCF76BE, resource-version: 1fcfa04a-a816-4309-b547-88a5995dbfc9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ec8413444ba5ba9f","parentId":"926599e42fb75a4b","traceId":"0000000000000000ff8f1a403dfb1091","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:03.856Z","sequence":10453,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: F5B6FCCF76BE, resource-version: db99bbd4-b759-4059-b6b3-c6b9415d09bb]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ec8413444ba5ba9f","parentId":"926599e42fb75a4b","traceId":"0000000000000000ff8f1a403dfb1091","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:03.86Z","sequence":10454,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: F5B6FCCF76BE]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7843553f023a24cd","parentId":"ca59294e36763b50","traceId":"0000000000000000ff8f1a403dfb1091","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:04.101Z","sequence":10455,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: F5B6FCCF76BE]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7843553f023a24cd","parentId":"ca59294e36763b50","traceId":"0000000000000000ff8f1a403dfb1091","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:04.355Z","sequence":10456,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 201A79DF2F30]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"39776d308e27a573","parentId":"5e76bbd0ae89bf8e","traceId":"000000000000000016cb15c344baed7c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:04.372Z","sequence":10457,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 201A79DF2F30, resource-version: 315d27b6-ed26-47a9-874d-0038ae04c963]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"39776d308e27a573","parentId":"5e76bbd0ae89bf8e","traceId":"000000000000000016cb15c344baed7c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:04.377Z","sequence":10458,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 201A79DF2F30, resource-version: 24635fc7-f0dd-4c14-b773-e8562580c626]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"39776d308e27a573","parentId":"5e76bbd0ae89bf8e","traceId":"000000000000000016cb15c344baed7c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:04.381Z","sequence":10459,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 201A79DF2F30]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a6bad9dc0ef256c4","parentId":"acc5fbae5075e4de","traceId":"000000000000000016cb15c344baed7c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:04.621Z","sequence":10460,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 201A79DF2F30]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a6bad9dc0ef256c4","parentId":"acc5fbae5075e4de","traceId":"000000000000000016cb15c344baed7c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:05.33Z","sequence":10461,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFD2176EE015761]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d5e4caa230d6c3ab","parentId":"50588f174cb37198","traceId":"0000000000000000c22c20323d4aa565","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:05.346Z","sequence":10462,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFD2176EE015761, resource-version: b26a1e13-3f58-47c5-9954-e0d70efa9032]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d5e4caa230d6c3ab","parentId":"50588f174cb37198","traceId":"0000000000000000c22c20323d4aa565","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:05.352Z","sequence":10463,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFD2176EE015761, resource-version: bd658722-0bab-4cae-a4bf-1c48e2070237]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d5e4caa230d6c3ab","parentId":"50588f174cb37198","traceId":"0000000000000000c22c20323d4aa565","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:05.389Z","sequence":10464,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFD9E042DD095F3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ebeaa84493a58582","parentId":"e1e9bbe06d0903f4","traceId":"0000000000000000627a4bc291170a15","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:05.404Z","sequence":10465,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFD9E042DD095F3, resource-version: 72642ccf-e6cd-44ab-b7e3-a2d203156db1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ebeaa84493a58582","parentId":"e1e9bbe06d0903f4","traceId":"0000000000000000627a4bc291170a15","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:05.411Z","sequence":10466,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFD9E042DD095F3, resource-version: 81bf5ea4-5937-4312-9172-60a7a678a891]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ebeaa84493a58582","parentId":"e1e9bbe06d0903f4","traceId":"0000000000000000627a4bc291170a15","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:05.586Z","sequence":10467,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:05.587Z","sequence":10468,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-F5B6FCCF76BE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:05.59Z","sequence":10469,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:05.59Z","sequence":10470,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-F5B6FCCF76BE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:05.591Z","sequence":10471,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:05.591Z","sequence":10472,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-F5B6FCCF76BE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:05.592Z","sequence":10473,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:05.592Z","sequence":10474,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-F5B6FCCF76BE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:05.597Z","sequence":10475,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:05.597Z","sequence":10476,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AB1] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:05.6Z","sequence":10477,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-f33ffd07-0df6-4a01-bdda-7947c416dd60, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:05.621Z","sequence":10478,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:05.621Z","sequence":10479,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:05.622Z","sequence":10480,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-57789877-a9fe-472a-97fc-34eb8feb9d79, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:05.622Z","sequence":10481,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:05.623Z","sequence":10482,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB1000A61] for gateway [0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:05.63Z","sequence":10483,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-dc572bac-09db-4cb5-bb84-540d8cc2861b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:05.631Z","sequence":10484,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-9cb3eb47-9ee4-4552-8912-b33db27e524b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:05.631Z","sequence":10485,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:05.631Z","sequence":10486,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:05.634Z","sequence":10487,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-e05804df-54db-4630-911c-32f99aae7218, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:05.634Z","sequence":10488,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-678b1c56-c541-4373-adb9-2f70b5087cd6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.032Z","sequence":10489,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.033Z","sequence":10490,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A08] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.047Z","sequence":10491,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.047Z","sequence":10492,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.056Z","sequence":10493,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7d9d1e0f-8282-4895-b783-3ceee8d9025a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.073Z","sequence":10494,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.073Z","sequence":10495,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: F5B6FCCF76BE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.085Z","sequence":10496,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7178df42-7898-4b05-b1b1-b05d3f60cfe5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.201Z","sequence":10497,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.201Z","sequence":10498,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD9E042DD095F3] for gateway [F5B6FCCF76BE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.202Z","sequence":10499,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.202Z","sequence":10500,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD9E042DD095F3] for gateway [F5B6FCCF76BE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.203Z","sequence":10501,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.205Z","sequence":10502,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD9E042DD095F3] for gateway [F5B6FCCF76BE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.221Z","sequence":10503,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.222Z","sequence":10504,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.222Z","sequence":10505,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.222Z","sequence":10506,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.223Z","sequence":10507,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.223Z","sequence":10508,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD9E042DD095F3] for gateway [F5B6FCCF76BE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.224Z","sequence":10509,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.224Z","sequence":10510,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD9E042DD095F3] for gateway [F5B6FCCF76BE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.225Z","sequence":10511,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.226Z","sequence":10512,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD9E042DD095F3] for gateway [F5B6FCCF76BE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.229Z","sequence":10513,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.229Z","sequence":10514,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD9E042DD095F3] for gateway [F5B6FCCF76BE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.23Z","sequence":10515,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.232Z","sequence":10516,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD9E042DD095F3] for gateway [F5B6FCCF76BE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.233Z","sequence":10517,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.233Z","sequence":10518,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD9E042DD095F3] for gateway [F5B6FCCF76BE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.233Z","sequence":10519,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.234Z","sequence":10520,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD9E042DD095F3] for gateway [F5B6FCCF76BE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.234Z","sequence":10521,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.234Z","sequence":10522,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD9E042DD095F3] for gateway [F5B6FCCF76BE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.241Z","sequence":10523,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.241Z","sequence":10524,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD9E042DD095F3] for gateway [F5B6FCCF76BE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.242Z","sequence":10525,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.244Z","sequence":10526,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD9E042DD095F3] for gateway [F5B6FCCF76BE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.245Z","sequence":10527,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.245Z","sequence":10528,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD9E042DD095F3] for gateway [F5B6FCCF76BE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.246Z","sequence":10529,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.246Z","sequence":10530,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.275Z","sequence":10531,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.277Z","sequence":10532,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD9E042DD095F3] for gateway [F5B6FCCF76BE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.277Z","sequence":10533,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.278Z","sequence":10534,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD9E042DD095F3] for gateway [F5B6FCCF76BE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.28Z","sequence":10535,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.28Z","sequence":10536,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD9E042DD095F3] for gateway [F5B6FCCF76BE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.283Z","sequence":10537,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.284Z","sequence":10538,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD9E042DD095F3] for gateway [F5B6FCCF76BE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.286Z","sequence":10539,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.293Z","sequence":10540,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD9E042DD095F3] for gateway [F5B6FCCF76BE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.293Z","sequence":10541,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.293Z","sequence":10542,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD9E042DD095F3] for gateway [F5B6FCCF76BE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.294Z","sequence":10543,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.294Z","sequence":10544,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD9E042DD095F3] for gateway [F5B6FCCF76BE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.294Z","sequence":10545,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.294Z","sequence":10546,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD9E042DD095F3] for gateway [F5B6FCCF76BE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.296Z","sequence":10547,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.298Z","sequence":10548,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD9E042DD095F3] for gateway [F5B6FCCF76BE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.3Z","sequence":10549,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.301Z","sequence":10550,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD9E042DD095F3] for gateway [F5B6FCCF76BE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.324Z","sequence":10551,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.325Z","sequence":10552,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD9E042DD095F3] for gateway [F5B6FCCF76BE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.328Z","sequence":10553,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.332Z","sequence":10554,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD9E042DD095F3] for gateway [F5B6FCCF76BE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.333Z","sequence":10555,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.333Z","sequence":10556,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD9E042DD095F3] for gateway [F5B6FCCF76BE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.334Z","sequence":10557,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.334Z","sequence":10558,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD9E042DD095F3] for gateway [F5B6FCCF76BE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.334Z","sequence":10559,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.335Z","sequence":10560,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD9E042DD095F3] for gateway [F5B6FCCF76BE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.335Z","sequence":10561,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.335Z","sequence":10562,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD9E042DD095F3] for gateway [F5B6FCCF76BE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.336Z","sequence":10563,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.336Z","sequence":10564,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD9E042DD095F3] for gateway [F5B6FCCF76BE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.336Z","sequence":10565,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.336Z","sequence":10566,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD9E042DD095F3] for gateway [F5B6FCCF76BE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.337Z","sequence":10567,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.337Z","sequence":10568,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD9E042DD095F3] for gateway [F5B6FCCF76BE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.339Z","sequence":10569,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.34Z","sequence":10570,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD9E042DD095F3] for gateway [F5B6FCCF76BE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.341Z","sequence":10571,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.341Z","sequence":10572,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD9E042DD095F3] for gateway [F5B6FCCF76BE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.352Z","sequence":10573,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.353Z","sequence":10574,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD9E042DD095F3] for gateway [F5B6FCCF76BE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.353Z","sequence":10575,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.353Z","sequence":10576,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD9E042DD095F3] for gateway [F5B6FCCF76BE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.354Z","sequence":10577,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.354Z","sequence":10578,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD9E042DD095F3] for gateway [F5B6FCCF76BE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.354Z","sequence":10579,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.354Z","sequence":10580,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD9E042DD095F3] for gateway [F5B6FCCF76BE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.355Z","sequence":10581,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.355Z","sequence":10582,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD9E042DD095F3] for gateway [F5B6FCCF76BE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.355Z","sequence":10583,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.355Z","sequence":10584,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD9E042DD095F3] for gateway [F5B6FCCF76BE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.356Z","sequence":10585,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.356Z","sequence":10586,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD9E042DD095F3] for gateway [F5B6FCCF76BE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.356Z","sequence":10587,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.357Z","sequence":10588,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD9E042DD095F3] for gateway [F5B6FCCF76BE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.357Z","sequence":10589,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.357Z","sequence":10590,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD9E042DD095F3] for gateway [F5B6FCCF76BE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.358Z","sequence":10591,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.36Z","sequence":10592,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD9E042DD095F3] for gateway [F5B6FCCF76BE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.361Z","sequence":10593,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.361Z","sequence":10594,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD9E042DD095F3] for gateway [F5B6FCCF76BE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.361Z","sequence":10595,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.362Z","sequence":10596,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD9E042DD095F3] for gateway [F5B6FCCF76BE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.365Z","sequence":10597,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.365Z","sequence":10598,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD9E042DD095F3] for gateway [F5B6FCCF76BE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.366Z","sequence":10599,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.372Z","sequence":10600,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD9E042DD095F3] for gateway [F5B6FCCF76BE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.373Z","sequence":10601,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.373Z","sequence":10602,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD9E042DD095F3] for gateway [F5B6FCCF76BE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.373Z","sequence":10603,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.374Z","sequence":10604,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD9E042DD095F3] for gateway [F5B6FCCF76BE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.374Z","sequence":10605,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.374Z","sequence":10606,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD9E042DD095F3] for gateway [F5B6FCCF76BE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.375Z","sequence":10607,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.375Z","sequence":10608,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD9E042DD095F3] for gateway [F5B6FCCF76BE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.375Z","sequence":10609,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.375Z","sequence":10610,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD9E042DD095F3] for gateway [F5B6FCCF76BE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.378Z","sequence":10611,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.378Z","sequence":10612,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD9E042DD095F3] for gateway [F5B6FCCF76BE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.379Z","sequence":10613,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.381Z","sequence":10614,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD9E042DD095F3] for gateway [F5B6FCCF76BE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.382Z","sequence":10615,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.383Z","sequence":10616,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD9E042DD095F3] for gateway [F5B6FCCF76BE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.384Z","sequence":10617,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.404Z","sequence":10618,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD9E042DD095F3] for gateway [F5B6FCCF76BE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.404Z","sequence":10619,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.428Z","sequence":10620,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD9E042DD095F3] for gateway [F5B6FCCF76BE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.429Z","sequence":10621,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.432Z","sequence":10622,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD9E042DD095F3] for gateway [F5B6FCCF76BE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.433Z","sequence":10623,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.433Z","sequence":10624,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD9E042DD095F3] for gateway [F5B6FCCF76BE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.433Z","sequence":10625,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.434Z","sequence":10626,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD9E042DD095F3] for gateway [F5B6FCCF76BE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.44Z","sequence":10627,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.441Z","sequence":10628,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD9E042DD095F3] for gateway [F5B6FCCF76BE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.441Z","sequence":10629,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.441Z","sequence":10630,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD9E042DD095F3] for gateway [F5B6FCCF76BE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.441Z","sequence":10631,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.441Z","sequence":10632,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD9E042DD095F3] for gateway [F5B6FCCF76BE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.441Z","sequence":10633,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.441Z","sequence":10634,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD9E042DD095F3] for gateway [F5B6FCCF76BE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.441Z","sequence":10635,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.442Z","sequence":10636,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD9E042DD095F3] for gateway [F5B6FCCF76BE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.442Z","sequence":10637,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.442Z","sequence":10638,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD9E042DD095F3] for gateway [F5B6FCCF76BE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.442Z","sequence":10639,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.442Z","sequence":10640,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD9E042DD095F3] for gateway [F5B6FCCF76BE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.442Z","sequence":10641,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.442Z","sequence":10642,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD9E042DD095F3] for gateway [F5B6FCCF76BE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.442Z","sequence":10643,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.442Z","sequence":10644,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD9E042DD095F3] for gateway [F5B6FCCF76BE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.443Z","sequence":10645,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.443Z","sequence":10646,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD9E042DD095F3] for gateway [F5B6FCCF76BE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.443Z","sequence":10647,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.443Z","sequence":10648,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD9E042DD095F3] for gateway [F5B6FCCF76BE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.443Z","sequence":10649,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.443Z","sequence":10650,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD9E042DD095F3] for gateway [F5B6FCCF76BE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.443Z","sequence":10651,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.443Z","sequence":10652,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD9E042DD095F3] for gateway [F5B6FCCF76BE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.444Z","sequence":10653,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.444Z","sequence":10654,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD9E042DD095F3] for gateway [F5B6FCCF76BE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.444Z","sequence":10655,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.444Z","sequence":10656,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD9E042DD095F3] for gateway [F5B6FCCF76BE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.444Z","sequence":10657,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.444Z","sequence":10658,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD9E042DD095F3] for gateway [F5B6FCCF76BE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.456Z","sequence":10659,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.466Z","sequence":10660,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD9E042DD095F3] for gateway [F5B6FCCF76BE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.467Z","sequence":10661,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.467Z","sequence":10662,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD9E042DD095F3] for gateway [F5B6FCCF76BE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.467Z","sequence":10663,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.467Z","sequence":10664,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD9E042DD095F3] for gateway [F5B6FCCF76BE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.468Z","sequence":10665,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.468Z","sequence":10666,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD9E042DD095F3] for gateway [F5B6FCCF76BE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.468Z","sequence":10667,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.469Z","sequence":10668,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD9E042DD095F3] for gateway [F5B6FCCF76BE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.469Z","sequence":10669,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.469Z","sequence":10670,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD9E042DD095F3] for gateway [F5B6FCCF76BE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.47Z","sequence":10671,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.47Z","sequence":10672,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD9E042DD095F3] for gateway [F5B6FCCF76BE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.47Z","sequence":10673,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.47Z","sequence":10674,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD9E042DD095F3] for gateway [F5B6FCCF76BE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.472Z","sequence":10675,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.477Z","sequence":10676,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD9E042DD095F3] for gateway [F5B6FCCF76BE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.478Z","sequence":10677,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.478Z","sequence":10678,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD9E042DD095F3] for gateway [F5B6FCCF76BE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.478Z","sequence":10679,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.478Z","sequence":10680,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD9E042DD095F3] for gateway [F5B6FCCF76BE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.479Z","sequence":10681,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.48Z","sequence":10682,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD9E042DD095F3] for gateway [F5B6FCCF76BE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.48Z","sequence":10683,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.481Z","sequence":10684,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD9E042DD095F3] for gateway [F5B6FCCF76BE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.488Z","sequence":10685,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.489Z","sequence":10686,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD9E042DD095F3] for gateway [F5B6FCCF76BE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.49Z","sequence":10687,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.49Z","sequence":10688,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD9E042DD095F3] for gateway [F5B6FCCF76BE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.492Z","sequence":10689,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.494Z","sequence":10690,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD9E042DD095F3] for gateway [F5B6FCCF76BE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.495Z","sequence":10691,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.495Z","sequence":10692,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD9E042DD095F3] for gateway [F5B6FCCF76BE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.496Z","sequence":10693,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.496Z","sequence":10694,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD9E042DD095F3] for gateway [F5B6FCCF76BE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.497Z","sequence":10695,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.502Z","sequence":10696,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-201A79DF2F30]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.533Z","sequence":10697,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.533Z","sequence":10698,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD9E042DD095F3] for gateway [F5B6FCCF76BE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.533Z","sequence":10699,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.534Z","sequence":10700,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD9E042DD095F3] for gateway [F5B6FCCF76BE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.534Z","sequence":10701,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.534Z","sequence":10702,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD9E042DD095F3] for gateway [F5B6FCCF76BE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.537Z","sequence":10703,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.537Z","sequence":10704,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD9E042DD095F3] for gateway [F5B6FCCF76BE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:06.999Z","sequence":10705,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:07.002Z","sequence":10706,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:07.033Z","sequence":10707,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:07.033Z","sequence":10708,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:07.041Z","sequence":10709,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:07.042Z","sequence":10710,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:07.778Z","sequence":10711,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-25def7b5-7cef-4f6b-9c70-58e80ba29a46, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:07.779Z","sequence":10712,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:07.779Z","sequence":10713,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:07.78Z","sequence":10714,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:07.78Z","sequence":10715,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:08.274Z","sequence":10716,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-501de9bd-9412-47f8-8490-470e34058783, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:08.708Z","sequence":10717,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2708989b-b142-43fb-bd2e-6418ef50b8f5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:08.709Z","sequence":10718,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:08.709Z","sequence":10719,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:08.712Z","sequence":10720,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:08.712Z","sequence":10721,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-201A79DF2F30]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:08.713Z","sequence":10722,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:08.713Z","sequence":10723,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-201A79DF2F30]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:08.714Z","sequence":10724,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:08.714Z","sequence":10725,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:08.715Z","sequence":10726,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:08.715Z","sequence":10727,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:08.715Z","sequence":10728,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:08.715Z","sequence":10729,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:08.716Z","sequence":10730,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:08.716Z","sequence":10731,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:08.717Z","sequence":10732,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:08.717Z","sequence":10733,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:08.717Z","sequence":10734,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:08.717Z","sequence":10735,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:08.718Z","sequence":10736,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:08.718Z","sequence":10737,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:08.718Z","sequence":10738,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:08.718Z","sequence":10739,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:08.754Z","sequence":10740,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:08.754Z","sequence":10741,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:08.754Z","sequence":10742,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:08.755Z","sequence":10743,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:08.755Z","sequence":10744,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:08.755Z","sequence":10745,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:08.755Z","sequence":10746,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:08.755Z","sequence":10747,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:08.756Z","sequence":10748,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:08.756Z","sequence":10749,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:08.761Z","sequence":10750,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:08.764Z","sequence":10751,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:08.764Z","sequence":10752,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:08.764Z","sequence":10753,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:08.764Z","sequence":10754,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:08.764Z","sequence":10755,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:08.765Z","sequence":10756,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:08.765Z","sequence":10757,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:08.795Z","sequence":10758,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:08.796Z","sequence":10759,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B96] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:08.839Z","sequence":10760,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:08.839Z","sequence":10761,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:08.839Z","sequence":10762,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:08.84Z","sequence":10763,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:08.988Z","sequence":10764,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:08.988Z","sequence":10765,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:08.991Z","sequence":10766,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:08.992Z","sequence":10767,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:08.992Z","sequence":10768,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:08.992Z","sequence":10769,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:09.033Z","sequence":10770,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:09.033Z","sequence":10771,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:09.041Z","sequence":10772,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:09.041Z","sequence":10773,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:09.059Z","sequence":10774,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:09.06Z","sequence":10775,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:09.061Z","sequence":10776,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:09.061Z","sequence":10777,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:09.062Z","sequence":10778,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:09.064Z","sequence":10779,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:09.104Z","sequence":10780,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:09.105Z","sequence":10781,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:09.355Z","sequence":10782,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:09.36Z","sequence":10783,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:09.361Z","sequence":10784,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:09.362Z","sequence":10785,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:09.362Z","sequence":10786,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:09.362Z","sequence":10787,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:09.385Z","sequence":10788,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:09.388Z","sequence":10789,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:09.389Z","sequence":10790,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:09.39Z","sequence":10791,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:09.433Z","sequence":10792,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:09.433Z","sequence":10793,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-201A79DF2F30]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:10.405Z","sequence":10794,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e089fd30-71e7-4444-bfbc-5d498b729826, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:10.406Z","sequence":10795,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:10.408Z","sequence":10796,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:11.056Z","sequence":10797,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a2aefe2c-4c14-4b59-a37a-4867f9b69093, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:11.057Z","sequence":10798,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:11.061Z","sequence":10799,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:11.062Z","sequence":10800,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:11.062Z","sequence":10801,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:11.339Z","sequence":10802,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a584223f-0109-4825-ae41-d7f8b53dfeeb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:11.34Z","sequence":10803,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:11.34Z","sequence":10804,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:11.676Z","sequence":10805,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5181c35b-d248-478d-8fba-162347365ce1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:11.676Z","sequence":10806,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:11.676Z","sequence":10807,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:11.677Z","sequence":10808,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:11.677Z","sequence":10809,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:11.677Z","sequence":10810,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:11.678Z","sequence":10811,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:11.678Z","sequence":10812,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:11.678Z","sequence":10813,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:11.678Z","sequence":10814,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:11.679Z","sequence":10815,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:11.679Z","sequence":10816,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:11.679Z","sequence":10817,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:12.165Z","sequence":10818,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-854dab22-9838-4471-8fb5-8fa82d79025e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:12.165Z","sequence":10819,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:12.165Z","sequence":10820,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:12.165Z","sequence":10821,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:12.166Z","sequence":10822,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:12.166Z","sequence":10823,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:12.166Z","sequence":10824,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:12.166Z","sequence":10825,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:12.166Z","sequence":10826,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:12.166Z","sequence":10827,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:12.166Z","sequence":10828,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:12.167Z","sequence":10829,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:12.167Z","sequence":10830,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:12.69Z","sequence":10831,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6fede76b-9cf0-4684-bee4-d51abe24fedb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:12.693Z","sequence":10832,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:12.693Z","sequence":10833,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:12.693Z","sequence":10834,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:12.693Z","sequence":10835,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:12.694Z","sequence":10836,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:12.694Z","sequence":10837,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:12.694Z","sequence":10838,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:12.694Z","sequence":10839,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:12.694Z","sequence":10840,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:12.694Z","sequence":10841,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:12.695Z","sequence":10842,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:12.695Z","sequence":10843,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:12.695Z","sequence":10844,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:12.695Z","sequence":10845,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:12.695Z","sequence":10846,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:12.695Z","sequence":10847,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:12.696Z","sequence":10848,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:12.696Z","sequence":10849,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:12.696Z","sequence":10850,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:12.696Z","sequence":10851,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:12.701Z","sequence":10852,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:12.701Z","sequence":10853,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:12.701Z","sequence":10854,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:12.701Z","sequence":10855,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:12.702Z","sequence":10856,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:12.702Z","sequence":10857,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AD1] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:12.702Z","sequence":10858,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:12.702Z","sequence":10859,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:12.702Z","sequence":10860,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:12.702Z","sequence":10861,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:12.703Z","sequence":10862,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:12.703Z","sequence":10863,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:12.703Z","sequence":10864,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:12.703Z","sequence":10865,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:12.703Z","sequence":10866,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:12.703Z","sequence":10867,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:12.708Z","sequence":10868,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:12.709Z","sequence":10869,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:12.709Z","sequence":10870,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:12.726Z","sequence":10871,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:12.726Z","sequence":10872,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:12.726Z","sequence":10873,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:12.726Z","sequence":10874,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:12.726Z","sequence":10875,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:12.727Z","sequence":10876,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:12.727Z","sequence":10877,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:12.727Z","sequence":10878,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:12.727Z","sequence":10879,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:12.727Z","sequence":10880,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:12.727Z","sequence":10881,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:12.728Z","sequence":10882,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:12.728Z","sequence":10883,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:12.728Z","sequence":10884,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:12.728Z","sequence":10885,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:12.728Z","sequence":10886,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:12.729Z","sequence":10887,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:12.729Z","sequence":10888,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:12.729Z","sequence":10889,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:12.73Z","sequence":10890,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:12.73Z","sequence":10891,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:12.73Z","sequence":10892,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:12.73Z","sequence":10893,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:12.73Z","sequence":10894,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:12.73Z","sequence":10895,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:12.73Z","sequence":10896,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:12.73Z","sequence":10897,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:12.731Z","sequence":10898,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:12.731Z","sequence":10899,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:12.731Z","sequence":10900,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:12.731Z","sequence":10901,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:12.731Z","sequence":10902,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:12.731Z","sequence":10903,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:12.732Z","sequence":10904,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:12.732Z","sequence":10905,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:12.77Z","sequence":10906,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:12.771Z","sequence":10907,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:12.771Z","sequence":10908,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:12.771Z","sequence":10909,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:12.771Z","sequence":10910,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:12.771Z","sequence":10911,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:12.771Z","sequence":10912,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:12.771Z","sequence":10913,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:12.772Z","sequence":10914,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:12.772Z","sequence":10915,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:13.688Z","sequence":10916,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-db80f51a-6471-4566-9559-f20356396c69, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:13.688Z","sequence":10917,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:13.689Z","sequence":10918,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:14.289Z","sequence":10919,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-eea59380-bb0b-495f-afdd-729d1242dcf6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:15.391Z","sequence":10920,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0010e629-51b6-4b83-95f6-6d5d8418ccad, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:16.083Z","sequence":10921,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-74628d97-33c7-45fd-aee9-5f43c893400c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:17.032Z","sequence":10922,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a022fef6-7bcd-4990-9b0c-c09c1a53b4e5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:19.106Z","sequence":10923,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5e5e0be2-176f-483a-a484-117f6514aabb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:20.283Z","sequence":10924,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d4086e18-37d4-44f0-b207-8ac13e7ab4c3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:21.492Z","sequence":10925,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0b44c2c5-0b86-49e5-b166-c686a5673fa7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:23.607Z","sequence":10926,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-66406f1b-66f9-4b96-9ffc-a00fef12ba8c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:23.973Z","sequence":10927,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-94eee945-50a0-4938-8417-960d579b3b86, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:24.355Z","sequence":10928,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-35f91838-f69c-463d-9360-f9ecab30f3ac, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:24.862Z","sequence":10929,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-128c064d-8490-4f50-a8cf-375fafe50872, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:25.143Z","sequence":10930,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-bddf656d-f32b-4444-bd8a-9d66667a2e55, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:25.577Z","sequence":10931,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ab07c58a-696f-43b7-be68-9fc3b4e354f7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:26.237Z","sequence":10932,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-78d86ffb-bc60-46a2-b3ed-0631c0394d1d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:26.806Z","sequence":10933,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-72fff550-c908-4f36-b0f2-5c127107007f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:27.292Z","sequence":10934,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-778fa104-f2b6-4c60-a61d-1abd175c88c7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:27.757Z","sequence":10935,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6e9b17ff-20dc-4a97-95c8-888da92e21a2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:28.159Z","sequence":10936,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-98b9f141-1850-415d-b24a-e27dea9124c5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:28.447Z","sequence":10937,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-58e77eb0-3b1f-459c-a5c2-f5342f080c18, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:28.793Z","sequence":10938,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-820e6183-03fe-4fa2-a720-c4abb6307a72, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:29.025Z","sequence":10939,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e06fc029-3dfa-47a5-b5b2-bbaebcff3aba, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:29.282Z","sequence":10940,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-619044a2-7062-4965-b5ed-a1a8b598f60c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:29.589Z","sequence":10941,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-53f0e697-4959-4c46-aa79-019d1bd91ab9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:29.877Z","sequence":10942,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-97d504a6-855b-4662-a59f-aa8d17533168, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:30.219Z","sequence":10943,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7f3f3036-3588-417e-a99a-34c48086bb31, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:30.56Z","sequence":10944,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4ea9ac24-3329-4193-bced-32d5d994a894, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:31.091Z","sequence":10945,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-92e6fc9a-0288-4f9d-a610-62c70e383fb9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:31.646Z","sequence":10946,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a0e4e1ed-65c9-43ed-b475-66879c298e52, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:32.221Z","sequence":10947,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-87ae1af7-0e2d-456d-8b05-437598b2ff85, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:32.814Z","sequence":10948,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-473ada5b-0555-4e77-b3fc-193f006df4c6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:33.14Z","sequence":10949,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b86696ef-fc6b-4cfa-b210-05941ac53b22, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:33.536Z","sequence":10950,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b54cd9ca-89cb-45fe-9beb-e63729e48173, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:33.833Z","sequence":10951,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8defd6ff-dbcb-40dd-ba5e-3ba204cf7c7c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:34.207Z","sequence":10952,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0992d6f0-6fed-44ed-bd9d-de7cb73035b9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:34.533Z","sequence":10953,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-36020b03-7931-4bbe-9bd1-ebb5712ca212, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:34.905Z","sequence":10954,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-473ec038-d92e-4b53-80ef-d9b7da6276f6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:35.207Z","sequence":10955,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-99119d24-81c7-4024-8f12-0eb0947d275a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:35.566Z","sequence":10956,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7671d797-d083-4048-a8d4-e1a2dbf44b23, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:35.919Z","sequence":10957,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-032cf6ed-930e-423f-93b0-dfeaf80e3b83, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:36.231Z","sequence":10958,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0330e730-b631-48d4-ac3e-fd1f9bbeb9ad, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:36.543Z","sequence":10959,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-93ef9bf3-a7f2-40c2-9177-1dff3fc41f10, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:36.981Z","sequence":10960,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ef88c5b1-e380-4e07-85f0-87a8b3250983, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:37.42Z","sequence":10961,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5f0d0ace-7c1f-478b-b645-d72754e0ef30, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:37.965Z","sequence":10962,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9a9f86de-fe61-48f5-90b5-8a3f28c0005f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:39.207Z","sequence":10963,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c02f561f-ab28-419f-9692-f855b0f39d5a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:39.713Z","sequence":10964,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c5fafb58-5933-4660-bd83-e3e5a1fa5fd1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:40.031Z","sequence":10965,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-036c4f83-2cdf-4039-98e5-38da99087eb2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:40.336Z","sequence":10966,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-79a62e14-ec37-4a7c-9b59-2a11507a6302, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:40.67Z","sequence":10967,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-06f9cc90-bf58-46da-af61-8dab6c9f357a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:40.98Z","sequence":10968,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-44003d35-fcbb-48db-9da6-176335c60a68, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:41.335Z","sequence":10969,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a5bec68d-a697-4a97-ae79-5523bbabde1f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:41.335Z","sequence":10970,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:41.336Z","sequence":10971,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB1000A8B] for gateway [0008004B5135]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:41.336Z","sequence":10972,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:41.336Z","sequence":10973,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB1000A61] for gateway [0008004B5135]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:41.337Z","sequence":10974,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:41.337Z","sequence":10975,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:41.337Z","sequence":10976,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:41.338Z","sequence":10977,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:41.34Z","sequence":10978,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:41.34Z","sequence":10979,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A02] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:41.341Z","sequence":10980,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:41.341Z","sequence":10981,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B96] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:41.342Z","sequence":10982,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:41.342Z","sequence":10983,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AD1] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:41.342Z","sequence":10984,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:41.343Z","sequence":10985,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A02] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:41.343Z","sequence":10986,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] closed connection with error","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72,"exception":{"refId":1,"exceptionType":"io.vertx.core.impl.NoStackTraceThrowable","message":"Error{condition=amqp:resource-limit-exceeded, description='local-idle-timeout expired', info=null}","frames":[]}} +{"timestamp":"2023-07-25T03:01:41.345Z","sequence":10987,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] closed connection with error","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72,"exception":{"refId":1,"exceptionType":"io.vertx.core.impl.NoStackTraceThrowable","message":"Error{condition=amqp:resource-limit-exceeded, description='local-idle-timeout expired', info=null}","frames":[]}} +{"timestamp":"2023-07-25T03:01:41.346Z","sequence":10988,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono service-command-router-Tenant-8c258f6d-8b57-47cf-8f84-a38d9786fed2] closed connection with error","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72,"exception":{"refId":1,"exceptionType":"io.vertx.core.impl.NoStackTraceThrowable","message":"Error{condition=amqp:resource-limit-exceeded, description='local-idle-timeout expired', info=null}","frames":[]}} +{"timestamp":"2023-07-25T03:01:41.348Z","sequence":10989,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono service-command-router-Device Registration-6b43a4ef-0980-4edd-b8fb-ab7a8b085811] closed connection with error","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72,"exception":{"refId":1,"exceptionType":"io.vertx.core.impl.NoStackTraceThrowable","message":"Error{condition=amqp:resource-limit-exceeded, description='local-idle-timeout expired', info=null}","frames":[]}} +{"timestamp":"2023-07-25T03:01:41.349Z","sequence":10990,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Credentials-75faa79c-12c0-45f2-bd9c-973655a3937c] closed connection with error","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72,"exception":{"refId":1,"exceptionType":"io.vertx.core.impl.NoStackTraceThrowable","message":"Error{condition=amqp:resource-limit-exceeded, description='local-idle-timeout expired', info=null}","frames":[]}} +{"timestamp":"2023-07-25T03:01:41.35Z","sequence":10991,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Tenant-ded758d0-b7cf-4d65-a210-6d11fa222d32] closed connection with error","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72,"exception":{"refId":1,"exceptionType":"io.vertx.core.impl.NoStackTraceThrowable","message":"Error{condition=amqp:resource-limit-exceeded, description='local-idle-timeout expired', info=null}","frames":[]}} +{"timestamp":"2023-07-25T03:01:41.703Z","sequence":10992,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a045f524-ab6b-407e-9383-ad1388e75ab0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:41.997Z","sequence":10993,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b74169ae-343f-465e-89db-b3fdf40f243f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:42.509Z","sequence":10994,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-56038c76-05c1-41a9-90e4-10f7046dc45a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:42.895Z","sequence":10995,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-99a118f9-b3bd-4dc5-b53c-c4b6089c194c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:43.394Z","sequence":10996,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9d468a42-485e-4ed6-a875-8fe775a9c637, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:43.848Z","sequence":10997,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-99a39ea6-8586-436c-8496-0c38a07c5862, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:44.132Z","sequence":10998,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f25c861a-515f-4487-8706-836823e41d83, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:44.313Z","sequence":10999,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-44e66e7b-1d6b-4af7-8752-878955d1d3be, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:44.637Z","sequence":11000,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b894f763-5bae-4e34-b15c-d6dfd03331c1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:45.162Z","sequence":11001,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2a58f42c-4278-485a-97e7-e95532969dd8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:45.344Z","sequence":11002,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-132a1886-0c18-4197-ac28-843d23410d5f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:45.508Z","sequence":11003,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ce6ad961-9d98-4764-b77e-e30fc78ac1bc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:45.82Z","sequence":11004,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d3aed4a0-cae2-400b-8dac-a32052c25fb2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:46.252Z","sequence":11005,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3d06eed2-38c4-4bcd-b906-b374fd29479d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:46.693Z","sequence":11006,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-632938bf-f963-44d7-a7b5-764e08a51b20, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:47.012Z","sequence":11007,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4620ced9-ad32-41db-b7e3-b14f01ada1d9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:47.216Z","sequence":11008,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f00a8abf-1fcc-4ce0-81d6-99b9ace83c06, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:47.355Z","sequence":11009,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-35240f4f-ff95-495d-ab2d-6207d558961e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:47.688Z","sequence":11010,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6bb5d454-9c75-484d-82f9-a766d6824119, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:47.689Z","sequence":11011,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:47.689Z","sequence":11012,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:48.047Z","sequence":11013,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-27a7e27f-c96a-4dfa-9a8a-6286e96f8054, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:48.382Z","sequence":11014,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-afce8a21-e210-42b0-bfa3-7eccc3134400, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:48.813Z","sequence":11015,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-05d0a80c-67d0-4e21-b870-4c12e6de68c3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:49.19Z","sequence":11016,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-98b8b4e7-ae44-4838-a276-c4765e99bca7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:49.523Z","sequence":11017,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2a216daa-da7a-4b15-b592-04f517c3f96f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:49.864Z","sequence":11018,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-471519ce-8c8e-4288-9260-4f775b2c07a0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:50.226Z","sequence":11019,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ec327b2b-56e4-4861-9c81-21e0b3236e52, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:50.537Z","sequence":11020,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a7240b7a-33c8-4a9e-93b8-a8491300033d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:50.929Z","sequence":11021,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e3129d53-5fc5-4703-818f-1ab08b9ddcfc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:51.199Z","sequence":11022,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c3f7f547-1a4a-41d7-b00b-dc4595635aa9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:51.349Z","sequence":11023,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-207bcef7-382a-48bc-9851-49b8c67e2feb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:51.529Z","sequence":11024,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d0262dcb-5527-4158-b260-29eb38f2f8ef, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:51.674Z","sequence":11025,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7867cc43-3b02-4187-927e-a9bddde380b0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:51.845Z","sequence":11026,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-98cc4296-4805-4248-9890-20f02d716df8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:52.098Z","sequence":11027,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f4afeb53-818d-46da-9873-259a5ac95e8a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:52.392Z","sequence":11028,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e3c9b0c6-d306-43f5-a7f5-5bc75d279a2e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:52.668Z","sequence":11029,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-78ddc09b-16ef-4af5-b01c-8d5dae14408c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:53.074Z","sequence":11030,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b6803a30-5169-477f-b3e2-753784335da5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:53.394Z","sequence":11031,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-812e537e-3810-4ec6-b870-7ba0e4107d56, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:53.745Z","sequence":11032,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2b6ffaf0-ae1b-402e-85d0-7bbf737cfc3b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:53.747Z","sequence":11033,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:53.747Z","sequence":11034,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:53.75Z","sequence":11035,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af] wants to open a link [address: Source{address='registration/dow/683c49f7-77ab-4f9d-88c8-e9de3ad20107', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:53.751Z","sequence":11036,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-12]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:53.751Z","sequence":11037,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@4a216801] for replies to [registration/dow/683c49f7-77ab-4f9d-88c8-e9de3ad20107]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:53.751Z","sequence":11038,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [auto-12] closed sender link","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:53.752Z","sequence":11039,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"deallocated sender [auto-12] for replies to [registration/dow/683c49f7-77ab-4f9d-88c8-e9de3ad20107]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:53.752Z","sequence":11040,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Tenant-995cc45f-23b2-488f-a5d9-0b18c4ae6c62] closed connection with error","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72,"exception":{"refId":1,"exceptionType":"io.vertx.core.impl.NoStackTraceThrowable","message":"Error{condition=amqp:resource-limit-exceeded, description='local-idle-timeout expired', info=null}","frames":[]}} +{"timestamp":"2023-07-25T03:01:54.297Z","sequence":11041,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-84666718-d6c2-46f8-957d-55bb854a2621, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.299Z","sequence":11042,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-74d09a57-30cf-4512-a872-3a732623218a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.302Z","sequence":11043,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-bbf5edd1-96fc-4c45-a68e-d4f435c8d494, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.302Z","sequence":11044,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-f7fb024e-3a1e-43f7-a230-be5fe5f44fcd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.303Z","sequence":11045,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-09e39f9b-4b7f-4040-9901-8cc33bb10333, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.323Z","sequence":11046,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] disconnected","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.324Z","sequence":11047,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] disconnected","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.324Z","sequence":11048,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono service-command-router-Tenant-8c258f6d-8b57-47cf-8f84-a38d9786fed2] disconnected","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.324Z","sequence":11049,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono service-command-router-Device Registration-6b43a4ef-0980-4edd-b8fb-ab7a8b085811] disconnected","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.324Z","sequence":11050,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Credentials-75faa79c-12c0-45f2-bd9c-973655a3937c] disconnected","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.325Z","sequence":11051,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Tenant-ded758d0-b7cf-4d65-a210-6d11fa222d32] disconnected","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.325Z","sequence":11052,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Tenant-995cc45f-23b2-488f-a5d9-0b18c4ae6c62] disconnected","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.325Z","sequence":11053,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.326Z","sequence":11054,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.327Z","sequence":11055,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/conditionall:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.327Z","sequence":11056,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: conditionall, device-id: 70B3D57BB1000226] for gateway [0008004B512D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.707Z","sequence":11057,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-56725402-117f-4785-9b15-712d80446e53, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.708Z","sequence":11058,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-af302213-e73b-49dc-8555-66e5bd18023d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.708Z","sequence":11059,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.708Z","sequence":11060,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.708Z","sequence":11061,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.708Z","sequence":11062,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.709Z","sequence":11063,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.709Z","sequence":11064,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.709Z","sequence":11065,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.709Z","sequence":11066,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.709Z","sequence":11067,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.709Z","sequence":11068,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.71Z","sequence":11069,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.HonoProtonHelper","level":"DEBUG","message":"sender link [source: credentials/integrationtest/82aab664-97e6-4c27-8607-164565120409, target: null] is locally open but underlying transport is disconnected","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.71Z","sequence":11070,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.HonoProtonHelper","level":"DEBUG","message":"sender link [source: registration/shell/218332a7-4274-4004-8476-b6e1b68addbb, target: null] is locally open but underlying transport is disconnected","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.718Z","sequence":11071,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"initializing SASL authenticator","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.718Z","sequence":11072,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client provided an empty list of SASL mechanisms [hostname: null, state: PN_SASL_IDLE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.72Z","sequence":11073,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"initializing SASL authenticator","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.72Z","sequence":11074,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client provided an empty list of SASL mechanisms [hostname: null, state: PN_SASL_IDLE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.721Z","sequence":11075,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"initializing SASL authenticator","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.721Z","sequence":11076,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client provided an empty list of SASL mechanisms [hostname: null, state: PN_SASL_IDLE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.723Z","sequence":11077,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"initializing SASL authenticator","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.723Z","sequence":11078,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client provided an empty list of SASL mechanisms [hostname: null, state: PN_SASL_IDLE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.724Z","sequence":11079,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"initializing SASL authenticator","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.724Z","sequence":11080,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client provided an empty list of SASL mechanisms [hostname: null, state: PN_SASL_IDLE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.725Z","sequence":11081,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"initializing SASL authenticator","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.726Z","sequence":11082,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client provided an empty list of SASL mechanisms [hostname: null, state: PN_SASL_IDLE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.727Z","sequence":11083,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"initializing SASL authenticator","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.727Z","sequence":11084,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client provided an empty list of SASL mechanisms [hostname: null, state: PN_SASL_IDLE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.728Z","sequence":11085,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"initializing SASL authenticator","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.728Z","sequence":11086,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client provided an empty list of SASL mechanisms [hostname: null, state: PN_SASL_IDLE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.729Z","sequence":11087,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"initializing SASL authenticator","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.729Z","sequence":11088,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client provided an empty list of SASL mechanisms [hostname: null, state: PN_SASL_IDLE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.73Z","sequence":11089,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"initializing SASL authenticator","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.731Z","sequence":11090,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client provided an empty list of SASL mechanisms [hostname: null, state: PN_SASL_IDLE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.753Z","sequence":11091,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ebc8127e-65a8-4baa-a911-7f3a00d4709a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.754Z","sequence":11092,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3734f0c2-efaf-495c-a0d0-8587ac65618a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.754Z","sequence":11093,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.HonoProtonHelper","level":"DEBUG","message":"sender link [source: registration/shell/218332a7-4274-4004-8476-b6e1b68addbb, target: null] is locally open but underlying transport is disconnected","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.755Z","sequence":11094,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.HonoProtonHelper","level":"DEBUG","message":"sender link [source: registration/shell/218332a7-4274-4004-8476-b6e1b68addbb, target: null] is locally open but underlying transport is disconnected","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.755Z","sequence":11095,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.HonoProtonHelper","level":"DEBUG","message":"sender link [source: registration/shell/218332a7-4274-4004-8476-b6e1b68addbb, target: null] is locally open but underlying transport is disconnected","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.755Z","sequence":11096,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_conditionall\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.756Z","sequence":11097,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_conditionall\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.756Z","sequence":11098,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client wants to authenticate using SASL [mechanism: PLAIN, host: null, state: PN_SASL_STEP]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.757Z","sequence":11099,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"received authentication request [mechanism: PLAIN]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"de6accbb3feba0b4","traceId":"835d215f9553d55560c7271fbbf9313a","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.757Z","sequence":11100,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client wants to authenticate using SASL [mechanism: PLAIN, host: null, state: PN_SASL_STEP]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.757Z","sequence":11102,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client wants to authenticate using SASL [mechanism: PLAIN, host: null, state: PN_SASL_STEP]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.758Z","sequence":11103,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client wants to authenticate using SASL [mechanism: PLAIN, host: null, state: PN_SASL_STEP]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.758Z","sequence":11104,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client wants to authenticate using SASL [mechanism: PLAIN, host: null, state: PN_SASL_STEP]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.758Z","sequence":11105,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client wants to authenticate using SASL [mechanism: PLAIN, host: null, state: PN_SASL_STEP]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.757Z","sequence":11101,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"processing PLAIN authentication request [authzid: , authcid: lora-adapter@HONO, pwd: *****]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"de6accbb3feba0b4","traceId":"835d215f9553d55560c7271fbbf9313a","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.759Z","sequence":11106,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"OpenSSL [available: false, supports KeyManagerFactory: false]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"de6accbb3feba0b4","traceId":"835d215f9553d55560c7271fbbf9313a","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.759Z","sequence":11107,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"using JVM's default SSL engine","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"de6accbb3feba0b4","traceId":"835d215f9553d55560c7271fbbf9313a","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.759Z","sequence":11108,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"de6accbb3feba0b4","traceId":"835d215f9553d55560c7271fbbf9313a","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.761Z","sequence":11110,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"de6accbb3feba0b4","traceId":"835d215f9553d55560c7271fbbf9313a","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.761Z","sequence":11111,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connecting to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"de6accbb3feba0b4","traceId":"835d215f9553d55560c7271fbbf9313a","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.77Z","sequence":11112,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"received authentication request [mechanism: PLAIN]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2c8c5c077bc510ef","traceId":"3519a655a008dc92e2543321d50331b7","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.77Z","sequence":11113,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"processing PLAIN authentication request [authzid: , authcid: lora-adapter@HONO, pwd: *****]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2c8c5c077bc510ef","traceId":"3519a655a008dc92e2543321d50331b7","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.77Z","sequence":11114,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"OpenSSL [available: false, supports KeyManagerFactory: false]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2c8c5c077bc510ef","traceId":"3519a655a008dc92e2543321d50331b7","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.771Z","sequence":11115,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"using JVM's default SSL engine","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2c8c5c077bc510ef","traceId":"3519a655a008dc92e2543321d50331b7","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.771Z","sequence":11116,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2c8c5c077bc510ef","traceId":"3519a655a008dc92e2543321d50331b7","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.771Z","sequence":11117,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2c8c5c077bc510ef","traceId":"3519a655a008dc92e2543321d50331b7","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.771Z","sequence":11118,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connecting to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2c8c5c077bc510ef","traceId":"3519a655a008dc92e2543321d50331b7","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.772Z","sequence":11119,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"received authentication request [mechanism: PLAIN]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"466d214d35fce43c","traceId":"499765ee3608b123e059324c56cab2e4","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.772Z","sequence":11120,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"processing PLAIN authentication request [authzid: , authcid: mqtt-adapter@HONO, pwd: *****]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"466d214d35fce43c","traceId":"499765ee3608b123e059324c56cab2e4","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.772Z","sequence":11121,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"OpenSSL [available: false, supports KeyManagerFactory: false]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"466d214d35fce43c","traceId":"499765ee3608b123e059324c56cab2e4","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.772Z","sequence":11122,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"using JVM's default SSL engine","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"466d214d35fce43c","traceId":"499765ee3608b123e059324c56cab2e4","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.773Z","sequence":11123,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"466d214d35fce43c","traceId":"499765ee3608b123e059324c56cab2e4","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.773Z","sequence":11124,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"466d214d35fce43c","traceId":"499765ee3608b123e059324c56cab2e4","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.773Z","sequence":11125,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connecting to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"466d214d35fce43c","traceId":"499765ee3608b123e059324c56cab2e4","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.773Z","sequence":11126,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"received authentication request [mechanism: PLAIN]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1bbde72ac8e40fcd","traceId":"d733976356ed85278319094e05ba6726","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.774Z","sequence":11127,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"processing PLAIN authentication request [authzid: , authcid: lora-adapter@HONO, pwd: *****]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1bbde72ac8e40fcd","traceId":"d733976356ed85278319094e05ba6726","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.774Z","sequence":11128,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"OpenSSL [available: false, supports KeyManagerFactory: false]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1bbde72ac8e40fcd","traceId":"d733976356ed85278319094e05ba6726","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.774Z","sequence":11129,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"using JVM's default SSL engine","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1bbde72ac8e40fcd","traceId":"d733976356ed85278319094e05ba6726","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.774Z","sequence":11130,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1bbde72ac8e40fcd","traceId":"d733976356ed85278319094e05ba6726","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.775Z","sequence":11131,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1bbde72ac8e40fcd","traceId":"d733976356ed85278319094e05ba6726","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.775Z","sequence":11132,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connecting to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1bbde72ac8e40fcd","traceId":"d733976356ed85278319094e05ba6726","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.775Z","sequence":11133,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"received authentication request [mechanism: PLAIN]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ad99c2dccc54ed4b","traceId":"9f734c63ec8242db85d224ee1da83e8e","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.775Z","sequence":11134,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"processing PLAIN authentication request [authzid: , authcid: mqtt-adapter@HONO, pwd: *****]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ad99c2dccc54ed4b","traceId":"9f734c63ec8242db85d224ee1da83e8e","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.775Z","sequence":11135,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"OpenSSL [available: false, supports KeyManagerFactory: false]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ad99c2dccc54ed4b","traceId":"9f734c63ec8242db85d224ee1da83e8e","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.776Z","sequence":11136,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"using JVM's default SSL engine","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ad99c2dccc54ed4b","traceId":"9f734c63ec8242db85d224ee1da83e8e","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.776Z","sequence":11137,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ad99c2dccc54ed4b","traceId":"9f734c63ec8242db85d224ee1da83e8e","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.776Z","sequence":11138,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ad99c2dccc54ed4b","traceId":"9f734c63ec8242db85d224ee1da83e8e","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.776Z","sequence":11139,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connecting to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ad99c2dccc54ed4b","traceId":"9f734c63ec8242db85d224ee1da83e8e","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.777Z","sequence":11140,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"received authentication request [mechanism: PLAIN]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"dcd5cfc9025c8b62","traceId":"c021fec4209f9c4f28d86083a8aef1c3","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.777Z","sequence":11141,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"processing PLAIN authentication request [authzid: , authcid: lora-adapter@HONO, pwd: *****]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"dcd5cfc9025c8b62","traceId":"c021fec4209f9c4f28d86083a8aef1c3","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.777Z","sequence":11142,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"OpenSSL [available: false, supports KeyManagerFactory: false]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"dcd5cfc9025c8b62","traceId":"c021fec4209f9c4f28d86083a8aef1c3","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.777Z","sequence":11143,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"using JVM's default SSL engine","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"dcd5cfc9025c8b62","traceId":"c021fec4209f9c4f28d86083a8aef1c3","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.778Z","sequence":11144,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"dcd5cfc9025c8b62","traceId":"c021fec4209f9c4f28d86083a8aef1c3","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.778Z","sequence":11145,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"dcd5cfc9025c8b62","traceId":"c021fec4209f9c4f28d86083a8aef1c3","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.778Z","sequence":11146,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connecting to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"dcd5cfc9025c8b62","traceId":"c021fec4209f9c4f28d86083a8aef1c3","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.759Z","sequence":11109,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client wants to authenticate using SASL [mechanism: PLAIN, host: null, state: PN_SASL_STEP]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.779Z","sequence":11147,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"received authentication request [mechanism: PLAIN]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2576c72f157a2411","traceId":"450422b99ba54759e4e5d5796748bf9d","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.779Z","sequence":11148,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"processing PLAIN authentication request [authzid: , authcid: lora-adapter@HONO, pwd: *****]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2576c72f157a2411","traceId":"450422b99ba54759e4e5d5796748bf9d","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.779Z","sequence":11149,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"OpenSSL [available: false, supports KeyManagerFactory: false]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2576c72f157a2411","traceId":"450422b99ba54759e4e5d5796748bf9d","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.779Z","sequence":11150,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"using JVM's default SSL engine","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2576c72f157a2411","traceId":"450422b99ba54759e4e5d5796748bf9d","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.78Z","sequence":11151,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2576c72f157a2411","traceId":"450422b99ba54759e4e5d5796748bf9d","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.78Z","sequence":11152,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2576c72f157a2411","traceId":"450422b99ba54759e4e5d5796748bf9d","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.78Z","sequence":11153,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connecting to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2576c72f157a2411","traceId":"450422b99ba54759e4e5d5796748bf9d","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.781Z","sequence":11154,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"initializing SASL authenticator","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.782Z","sequence":11155,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client provided an empty list of SASL mechanisms [hostname: null, state: PN_SASL_IDLE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.782Z","sequence":11156,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f46db5a7-abaa-4f78-b958-89fa4ecbfe2f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.783Z","sequence":11157,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"initializing SASL authenticator","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.784Z","sequence":11158,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client provided an empty list of SASL mechanisms [hostname: null, state: PN_SASL_IDLE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.784Z","sequence":11159,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client wants to authenticate using SASL [mechanism: PLAIN, host: null, state: PN_SASL_STEP]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.792Z","sequence":11160,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"received authentication request [mechanism: PLAIN]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1b3cac386beeea17","traceId":"66b371f3293eb48eaac201cd192c5fce","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.793Z","sequence":11161,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"processing PLAIN authentication request [authzid: , authcid: command-router@HONO, pwd: *****]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1b3cac386beeea17","traceId":"66b371f3293eb48eaac201cd192c5fce","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.793Z","sequence":11162,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"OpenSSL [available: false, supports KeyManagerFactory: false]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1b3cac386beeea17","traceId":"66b371f3293eb48eaac201cd192c5fce","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.793Z","sequence":11163,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"using JVM's default SSL engine","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1b3cac386beeea17","traceId":"66b371f3293eb48eaac201cd192c5fce","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.793Z","sequence":11164,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1b3cac386beeea17","traceId":"66b371f3293eb48eaac201cd192c5fce","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.793Z","sequence":11165,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1b3cac386beeea17","traceId":"66b371f3293eb48eaac201cd192c5fce","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.793Z","sequence":11166,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connecting to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1b3cac386beeea17","traceId":"66b371f3293eb48eaac201cd192c5fce","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.793Z","sequence":11167,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client wants to authenticate using SASL [mechanism: PLAIN, host: null, state: PN_SASL_STEP]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.793Z","sequence":11168,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"received authentication request [mechanism: PLAIN]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"15d96b073929ea98","traceId":"3ca7fa61c4f457505797b28aedeedae9","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.794Z","sequence":11169,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"processing PLAIN authentication request [authzid: , authcid: command-router@HONO, pwd: *****]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"15d96b073929ea98","traceId":"3ca7fa61c4f457505797b28aedeedae9","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.794Z","sequence":11170,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"OpenSSL [available: false, supports KeyManagerFactory: false]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"15d96b073929ea98","traceId":"3ca7fa61c4f457505797b28aedeedae9","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.794Z","sequence":11171,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"using JVM's default SSL engine","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"15d96b073929ea98","traceId":"3ca7fa61c4f457505797b28aedeedae9","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.794Z","sequence":11172,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"15d96b073929ea98","traceId":"3ca7fa61c4f457505797b28aedeedae9","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.794Z","sequence":11173,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"15d96b073929ea98","traceId":"3ca7fa61c4f457505797b28aedeedae9","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.794Z","sequence":11174,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connecting to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"15d96b073929ea98","traceId":"3ca7fa61c4f457505797b28aedeedae9","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.794Z","sequence":11175,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client wants to authenticate using SASL [mechanism: PLAIN, host: null, state: PN_SASL_STEP]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.795Z","sequence":11176,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client wants to authenticate using SASL [mechanism: PLAIN, host: null, state: PN_SASL_STEP]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.795Z","sequence":11178,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client wants to authenticate using SASL [mechanism: PLAIN, host: null, state: PN_SASL_STEP]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.795Z","sequence":11177,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"received authentication request [mechanism: PLAIN]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"06d163fc717f1be5","traceId":"1964bc515aad2069637cecd21b98179a","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.795Z","sequence":11179,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"processing PLAIN authentication request [authzid: , authcid: command-router@HONO, pwd: *****]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"06d163fc717f1be5","traceId":"1964bc515aad2069637cecd21b98179a","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.795Z","sequence":11180,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"OpenSSL [available: false, supports KeyManagerFactory: false]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"06d163fc717f1be5","traceId":"1964bc515aad2069637cecd21b98179a","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.795Z","sequence":11181,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"using JVM's default SSL engine","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"06d163fc717f1be5","traceId":"1964bc515aad2069637cecd21b98179a","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.796Z","sequence":11182,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"06d163fc717f1be5","traceId":"1964bc515aad2069637cecd21b98179a","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.796Z","sequence":11183,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"06d163fc717f1be5","traceId":"1964bc515aad2069637cecd21b98179a","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.796Z","sequence":11184,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connecting to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"06d163fc717f1be5","traceId":"1964bc515aad2069637cecd21b98179a","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.796Z","sequence":11185,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"received authentication request [mechanism: PLAIN]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"96005464e053a97f","traceId":"c827900637ee51450817af7ac04bdea8","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.796Z","sequence":11186,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"processing PLAIN authentication request [authzid: , authcid: command-router@HONO, pwd: *****]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"96005464e053a97f","traceId":"c827900637ee51450817af7ac04bdea8","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.796Z","sequence":11187,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"OpenSSL [available: false, supports KeyManagerFactory: false]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"96005464e053a97f","traceId":"c827900637ee51450817af7ac04bdea8","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.796Z","sequence":11188,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"using JVM's default SSL engine","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"96005464e053a97f","traceId":"c827900637ee51450817af7ac04bdea8","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.797Z","sequence":11189,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"96005464e053a97f","traceId":"c827900637ee51450817af7ac04bdea8","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.797Z","sequence":11190,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"96005464e053a97f","traceId":"c827900637ee51450817af7ac04bdea8","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.797Z","sequence":11191,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connecting to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"96005464e053a97f","traceId":"c827900637ee51450817af7ac04bdea8","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.797Z","sequence":11192,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"received authentication request [mechanism: PLAIN]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b651b6f8115902d3","traceId":"bcfedc957114228507d0fcfe0d879dd9","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.797Z","sequence":11193,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"processing PLAIN authentication request [authzid: , authcid: mqtt-adapter@HONO, pwd: *****]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b651b6f8115902d3","traceId":"bcfedc957114228507d0fcfe0d879dd9","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.798Z","sequence":11194,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"OpenSSL [available: false, supports KeyManagerFactory: false]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b651b6f8115902d3","traceId":"bcfedc957114228507d0fcfe0d879dd9","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.798Z","sequence":11195,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"using JVM's default SSL engine","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b651b6f8115902d3","traceId":"bcfedc957114228507d0fcfe0d879dd9","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.798Z","sequence":11196,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b651b6f8115902d3","traceId":"bcfedc957114228507d0fcfe0d879dd9","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.798Z","sequence":11197,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b651b6f8115902d3","traceId":"bcfedc957114228507d0fcfe0d879dd9","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.798Z","sequence":11198,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connecting to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b651b6f8115902d3","traceId":"bcfedc957114228507d0fcfe0d879dd9","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.931Z","sequence":11199,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"initializing SASL authenticator","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.932Z","sequence":11200,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client provided an empty list of SASL mechanisms [hostname: null, state: PN_SASL_IDLE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.934Z","sequence":11201,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client wants to authenticate using SASL [mechanism: PLAIN, host: null, state: PN_SASL_STEP]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.934Z","sequence":11202,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"received authentication request [mechanism: PLAIN]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d45376b8fd058750","traceId":"5ee5dc4bd3a71e968994797ef31cde6a","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.934Z","sequence":11203,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"processing PLAIN authentication request [authzid: , authcid: lora-adapter@HONO, pwd: *****]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d45376b8fd058750","traceId":"5ee5dc4bd3a71e968994797ef31cde6a","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.935Z","sequence":11204,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"OpenSSL [available: false, supports KeyManagerFactory: false]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d45376b8fd058750","traceId":"5ee5dc4bd3a71e968994797ef31cde6a","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.935Z","sequence":11205,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"using JVM's default SSL engine","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d45376b8fd058750","traceId":"5ee5dc4bd3a71e968994797ef31cde6a","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.935Z","sequence":11206,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d45376b8fd058750","traceId":"5ee5dc4bd3a71e968994797ef31cde6a","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.935Z","sequence":11207,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d45376b8fd058750","traceId":"5ee5dc4bd3a71e968994797ef31cde6a","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:54.935Z","sequence":11208,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connecting to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d45376b8fd058750","traceId":"5ee5dc4bd3a71e968994797ef31cde6a","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.314Z","sequence":11209,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connected to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server], opening connection ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"de6accbb3feba0b4","traceId":"835d215f9553d55560c7271fbbf9313a","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.335Z","sequence":11210,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connected to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server], opening connection ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2c8c5c077bc510ef","traceId":"3519a655a008dc92e2543321d50331b7","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.414Z","sequence":11211,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connection to container [hono-auth-0.0.0.0:5671] at [amqps://aloxy-hono-service-auth:5671, role: Authentication Server] open","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"de6accbb3feba0b4","traceId":"835d215f9553d55560c7271fbbf9313a","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.464Z","sequence":11212,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"opened receiver link to Authentication service, waiting for token ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"de6accbb3feba0b4","traceId":"835d215f9553d55560c7271fbbf9313a","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.464Z","sequence":11213,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"successfully retrieved token from Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"de6accbb3feba0b4","traceId":"835d215f9553d55560c7271fbbf9313a","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.464Z","sequence":11214,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"closing connection to Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"de6accbb3feba0b4","traceId":"835d215f9553d55560c7271fbbf9313a","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.464Z","sequence":11215,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.EventBusAuthenticationService","level":"DEBUG","message":"received token [length: 969] in response to authentication request","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.464Z","sequence":11216,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.JjwtBasedAuthTokenValidator","level":"DEBUG","message":"using key [id: 984e3639028b1e7d0b7d97f8f3de6a82638af0ed7d06ce7d9e038a1c4c634169] to validate signature (alg: RS256]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.466Z","sequence":11217,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"authentication of client [authorization ID: lora-adapter@HONO] succeeded","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.466Z","sequence":11218,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"finishing SASL handshake with outcome PN_SASL_OK","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.466Z","sequence":11219,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"received connection request from client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.47Z","sequence":11220,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"processing open frame from client container [vert.x-cb71d899-0033-4e34-8afb-b7b2b1bcf768]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.47Z","sequence":11221,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"INFO","message":"client connected [container: vert.x-cb71d899-0033-4e34-8afb-b7b2b1bcf768, user: lora-adapter@HONO, token valid until: 2023-07-25T04:01:55Z]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.47Z","sequence":11222,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: vert.x-cb71d899-0033-4e34-8afb-b7b2b1bcf768] closed connection","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.471Z","sequence":11223,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: vert.x-cb71d899-0033-4e34-8afb-b7b2b1bcf768] disconnected","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.549Z","sequence":11224,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connection to container [hono-auth-0.0.0.0:5671] at [amqps://aloxy-hono-service-auth:5671, role: Authentication Server] open","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2c8c5c077bc510ef","traceId":"3519a655a008dc92e2543321d50331b7","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.554Z","sequence":11225,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connected to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server], opening connection ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"06d163fc717f1be5","traceId":"1964bc515aad2069637cecd21b98179a","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.557Z","sequence":11226,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connected to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server], opening connection ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"dcd5cfc9025c8b62","traceId":"c021fec4209f9c4f28d86083a8aef1c3","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.56Z","sequence":11227,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"opened receiver link to Authentication service, waiting for token ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2c8c5c077bc510ef","traceId":"3519a655a008dc92e2543321d50331b7","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.561Z","sequence":11228,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"successfully retrieved token from Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2c8c5c077bc510ef","traceId":"3519a655a008dc92e2543321d50331b7","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.561Z","sequence":11229,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"closing connection to Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2c8c5c077bc510ef","traceId":"3519a655a008dc92e2543321d50331b7","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.561Z","sequence":11230,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.EventBusAuthenticationService","level":"DEBUG","message":"received token [length: 969] in response to authentication request","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.562Z","sequence":11231,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.JjwtBasedAuthTokenValidator","level":"DEBUG","message":"using key [id: 984e3639028b1e7d0b7d97f8f3de6a82638af0ed7d06ce7d9e038a1c4c634169] to validate signature (alg: RS256]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.563Z","sequence":11232,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"authentication of client [authorization ID: lora-adapter@HONO] succeeded","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.563Z","sequence":11233,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"finishing SASL handshake with outcome PN_SASL_OK","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.563Z","sequence":11234,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"received connection request from client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.563Z","sequence":11235,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connection to container [hono-auth-0.0.0.0:5671] at [amqps://aloxy-hono-service-auth:5671, role: Authentication Server] open","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"06d163fc717f1be5","traceId":"1964bc515aad2069637cecd21b98179a","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.564Z","sequence":11236,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connection to container [hono-auth-0.0.0.0:5671] at [amqps://aloxy-hono-service-auth:5671, role: Authentication Server] open","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"dcd5cfc9025c8b62","traceId":"c021fec4209f9c4f28d86083a8aef1c3","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.566Z","sequence":11237,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"processing open frame from client container [vert.x-1d632b43-da75-4e7a-9312-3b9662556765]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.567Z","sequence":11238,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"INFO","message":"client connected [container: vert.x-1d632b43-da75-4e7a-9312-3b9662556765, user: lora-adapter@HONO, token valid until: 2023-07-25T04:01:55Z]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.567Z","sequence":11239,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: vert.x-1d632b43-da75-4e7a-9312-3b9662556765] closed connection","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.567Z","sequence":11240,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: vert.x-1d632b43-da75-4e7a-9312-3b9662556765] disconnected","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.568Z","sequence":11241,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"opened receiver link to Authentication service, waiting for token ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"06d163fc717f1be5","traceId":"1964bc515aad2069637cecd21b98179a","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.568Z","sequence":11242,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"successfully retrieved token from Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"06d163fc717f1be5","traceId":"1964bc515aad2069637cecd21b98179a","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.568Z","sequence":11243,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"closing connection to Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"06d163fc717f1be5","traceId":"1964bc515aad2069637cecd21b98179a","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.568Z","sequence":11244,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.EventBusAuthenticationService","level":"DEBUG","message":"received token [length: 696] in response to authentication request","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.569Z","sequence":11245,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.JjwtBasedAuthTokenValidator","level":"DEBUG","message":"using key [id: 984e3639028b1e7d0b7d97f8f3de6a82638af0ed7d06ce7d9e038a1c4c634169] to validate signature (alg: RS256]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.57Z","sequence":11246,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"authentication of client [authorization ID: command-router@HONO] succeeded","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.57Z","sequence":11247,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"finishing SASL handshake with outcome PN_SASL_OK","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.57Z","sequence":11248,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"received connection request from client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.571Z","sequence":11249,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"opened receiver link to Authentication service, waiting for token ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"dcd5cfc9025c8b62","traceId":"c021fec4209f9c4f28d86083a8aef1c3","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.573Z","sequence":11250,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"processing open frame from client container [Hono service-command-router-Device Registration-6b43a4ef-0980-4edd-b8fb-ab7a8b085811]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.573Z","sequence":11251,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"INFO","message":"client connected [container: Hono service-command-router-Device Registration-6b43a4ef-0980-4edd-b8fb-ab7a8b085811, user: command-router@HONO, token valid until: 2023-07-25T04:01:55Z]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.573Z","sequence":11252,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"successfully retrieved token from Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"dcd5cfc9025c8b62","traceId":"c021fec4209f9c4f28d86083a8aef1c3","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.573Z","sequence":11253,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"closing connection to Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"dcd5cfc9025c8b62","traceId":"c021fec4209f9c4f28d86083a8aef1c3","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.574Z","sequence":11254,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.EventBusAuthenticationService","level":"DEBUG","message":"received token [length: 969] in response to authentication request","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.574Z","sequence":11255,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.JjwtBasedAuthTokenValidator","level":"DEBUG","message":"using key [id: 984e3639028b1e7d0b7d97f8f3de6a82638af0ed7d06ce7d9e038a1c4c634169] to validate signature (alg: RS256]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.575Z","sequence":11256,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"authentication of client [authorization ID: lora-adapter@HONO] succeeded","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.575Z","sequence":11257,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"finishing SASL handshake with outcome PN_SASL_OK","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.575Z","sequence":11258,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"received connection request from client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.576Z","sequence":11259,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"opening new session with client [container: Hono service-command-router-Device Registration-6b43a4ef-0980-4edd-b8fb-ab7a8b085811]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.576Z","sequence":11260,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connected to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server], opening connection ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ad99c2dccc54ed4b","traceId":"9f734c63ec8242db85d224ee1da83e8e","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.577Z","sequence":11261,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"processing open frame from client container [Hono adapter-lora-Tenant-995cc45f-23b2-488f-a5d9-0b18c4ae6c62]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.58Z","sequence":11262,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"INFO","message":"client connected [container: Hono adapter-lora-Tenant-995cc45f-23b2-488f-a5d9-0b18c4ae6c62, user: lora-adapter@HONO, token valid until: 2023-07-25T04:01:55Z]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.581Z","sequence":11263,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connection to container [hono-auth-0.0.0.0:5671] at [amqps://aloxy-hono-service-auth:5671, role: Authentication Server] open","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ad99c2dccc54ed4b","traceId":"9f734c63ec8242db85d224ee1da83e8e","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.584Z","sequence":11264,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"opening new session with client [container: Hono adapter-lora-Tenant-995cc45f-23b2-488f-a5d9-0b18c4ae6c62]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.584Z","sequence":11265,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connected to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server], opening connection ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"15d96b073929ea98","traceId":"3ca7fa61c4f457505797b28aedeedae9","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.585Z","sequence":11266,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"opened receiver link to Authentication service, waiting for token ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ad99c2dccc54ed4b","traceId":"9f734c63ec8242db85d224ee1da83e8e","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.585Z","sequence":11267,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"successfully retrieved token from Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ad99c2dccc54ed4b","traceId":"9f734c63ec8242db85d224ee1da83e8e","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.585Z","sequence":11268,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"closing connection to Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ad99c2dccc54ed4b","traceId":"9f734c63ec8242db85d224ee1da83e8e","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.586Z","sequence":11269,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.EventBusAuthenticationService","level":"DEBUG","message":"received token [length: 969] in response to authentication request","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.586Z","sequence":11270,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.JjwtBasedAuthTokenValidator","level":"DEBUG","message":"using key [id: 984e3639028b1e7d0b7d97f8f3de6a82638af0ed7d06ce7d9e038a1c4c634169] to validate signature (alg: RS256]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.587Z","sequence":11271,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"authentication of client [authorization ID: mqtt-adapter@HONO] succeeded","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.587Z","sequence":11272,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"finishing SASL handshake with outcome PN_SASL_OK","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.587Z","sequence":11273,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"received connection request from client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.588Z","sequence":11274,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connection to container [hono-auth-0.0.0.0:5671] at [amqps://aloxy-hono-service-auth:5671, role: Authentication Server] open","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"15d96b073929ea98","traceId":"3ca7fa61c4f457505797b28aedeedae9","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.592Z","sequence":11275,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"processing open frame from client container [vert.x-251243d6-981f-412d-b463-ea8b6e1704ac]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.593Z","sequence":11276,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"INFO","message":"client connected [container: vert.x-251243d6-981f-412d-b463-ea8b6e1704ac, user: mqtt-adapter@HONO, token valid until: 2023-07-25T04:01:55Z]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.593Z","sequence":11277,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: vert.x-251243d6-981f-412d-b463-ea8b6e1704ac] closed connection","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.593Z","sequence":11278,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: vert.x-251243d6-981f-412d-b463-ea8b6e1704ac] disconnected","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.594Z","sequence":11279,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"opened receiver link to Authentication service, waiting for token ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"15d96b073929ea98","traceId":"3ca7fa61c4f457505797b28aedeedae9","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.594Z","sequence":11280,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"successfully retrieved token from Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"15d96b073929ea98","traceId":"3ca7fa61c4f457505797b28aedeedae9","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.594Z","sequence":11281,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"closing connection to Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"15d96b073929ea98","traceId":"3ca7fa61c4f457505797b28aedeedae9","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.594Z","sequence":11282,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.EventBusAuthenticationService","level":"DEBUG","message":"received token [length: 696] in response to authentication request","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.595Z","sequence":11283,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.JjwtBasedAuthTokenValidator","level":"DEBUG","message":"using key [id: 984e3639028b1e7d0b7d97f8f3de6a82638af0ed7d06ce7d9e038a1c4c634169] to validate signature (alg: RS256]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.596Z","sequence":11284,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"authentication of client [authorization ID: command-router@HONO] succeeded","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.596Z","sequence":11285,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"finishing SASL handshake with outcome PN_SASL_OK","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.596Z","sequence":11286,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"received connection request from client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.6Z","sequence":11287,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"processing open frame from client container [vert.x-118ed69f-c153-45c2-ae28-cd1469b815f9]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.601Z","sequence":11288,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"INFO","message":"client connected [container: vert.x-118ed69f-c153-45c2-ae28-cd1469b815f9, user: command-router@HONO, token valid until: 2023-07-25T04:01:55Z]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.601Z","sequence":11289,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: vert.x-118ed69f-c153-45c2-ae28-cd1469b815f9] closed connection","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.602Z","sequence":11290,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: vert.x-118ed69f-c153-45c2-ae28-cd1469b815f9] disconnected","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.602Z","sequence":11291,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connected to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server], opening connection ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1b3cac386beeea17","traceId":"66b371f3293eb48eaac201cd192c5fce","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.604Z","sequence":11292,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connection to container [hono-auth-0.0.0.0:5671] at [amqps://aloxy-hono-service-auth:5671, role: Authentication Server] open","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1b3cac386beeea17","traceId":"66b371f3293eb48eaac201cd192c5fce","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.608Z","sequence":11293,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"opened receiver link to Authentication service, waiting for token ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1b3cac386beeea17","traceId":"66b371f3293eb48eaac201cd192c5fce","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.609Z","sequence":11294,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"successfully retrieved token from Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1b3cac386beeea17","traceId":"66b371f3293eb48eaac201cd192c5fce","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.609Z","sequence":11295,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"closing connection to Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1b3cac386beeea17","traceId":"66b371f3293eb48eaac201cd192c5fce","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.609Z","sequence":11296,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.EventBusAuthenticationService","level":"DEBUG","message":"received token [length: 696] in response to authentication request","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.61Z","sequence":11297,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.JjwtBasedAuthTokenValidator","level":"DEBUG","message":"using key [id: 984e3639028b1e7d0b7d97f8f3de6a82638af0ed7d06ce7d9e038a1c4c634169] to validate signature (alg: RS256]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.611Z","sequence":11298,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"authentication of client [authorization ID: command-router@HONO] succeeded","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.611Z","sequence":11299,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"finishing SASL handshake with outcome PN_SASL_OK","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.611Z","sequence":11300,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"received connection request from client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.621Z","sequence":11301,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"processing open frame from client container [vert.x-609ec706-6b7b-4156-8d21-e0c1456ef38d]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.621Z","sequence":11302,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"INFO","message":"client connected [container: vert.x-609ec706-6b7b-4156-8d21-e0c1456ef38d, user: command-router@HONO, token valid until: 2023-07-25T04:01:55Z]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.621Z","sequence":11303,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: vert.x-609ec706-6b7b-4156-8d21-e0c1456ef38d] closed connection","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.622Z","sequence":11304,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: vert.x-609ec706-6b7b-4156-8d21-e0c1456ef38d] disconnected","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.632Z","sequence":11305,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connected to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server], opening connection ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"466d214d35fce43c","traceId":"499765ee3608b123e059324c56cab2e4","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.636Z","sequence":11306,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connection to container [hono-auth-0.0.0.0:5671] at [amqps://aloxy-hono-service-auth:5671, role: Authentication Server] open","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"466d214d35fce43c","traceId":"499765ee3608b123e059324c56cab2e4","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.661Z","sequence":11307,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"opened receiver link to Authentication service, waiting for token ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"466d214d35fce43c","traceId":"499765ee3608b123e059324c56cab2e4","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.661Z","sequence":11308,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"successfully retrieved token from Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"466d214d35fce43c","traceId":"499765ee3608b123e059324c56cab2e4","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.662Z","sequence":11309,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"closing connection to Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"466d214d35fce43c","traceId":"499765ee3608b123e059324c56cab2e4","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.662Z","sequence":11310,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connected to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server], opening connection ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b651b6f8115902d3","traceId":"bcfedc957114228507d0fcfe0d879dd9","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.667Z","sequence":11311,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connection to container [hono-auth-0.0.0.0:5671] at [amqps://aloxy-hono-service-auth:5671, role: Authentication Server] open","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b651b6f8115902d3","traceId":"bcfedc957114228507d0fcfe0d879dd9","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.672Z","sequence":11312,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"opened receiver link to Authentication service, waiting for token ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b651b6f8115902d3","traceId":"bcfedc957114228507d0fcfe0d879dd9","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.673Z","sequence":11313,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"successfully retrieved token from Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b651b6f8115902d3","traceId":"bcfedc957114228507d0fcfe0d879dd9","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.673Z","sequence":11314,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"closing connection to Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b651b6f8115902d3","traceId":"bcfedc957114228507d0fcfe0d879dd9","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.684Z","sequence":11315,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connected to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server], opening connection ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d45376b8fd058750","traceId":"5ee5dc4bd3a71e968994797ef31cde6a","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.686Z","sequence":11316,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connection to container [hono-auth-0.0.0.0:5671] at [amqps://aloxy-hono-service-auth:5671, role: Authentication Server] open","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d45376b8fd058750","traceId":"5ee5dc4bd3a71e968994797ef31cde6a","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.689Z","sequence":11317,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"opened receiver link to Authentication service, waiting for token ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d45376b8fd058750","traceId":"5ee5dc4bd3a71e968994797ef31cde6a","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.689Z","sequence":11318,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"successfully retrieved token from Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d45376b8fd058750","traceId":"5ee5dc4bd3a71e968994797ef31cde6a","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.689Z","sequence":11319,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"closing connection to Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d45376b8fd058750","traceId":"5ee5dc4bd3a71e968994797ef31cde6a","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.698Z","sequence":11320,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connected to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server], opening connection ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1bbde72ac8e40fcd","traceId":"d733976356ed85278319094e05ba6726","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.698Z","sequence":11321,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.EventBusAuthenticationService","level":"DEBUG","message":"received token [length: 969] in response to authentication request","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.699Z","sequence":11322,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.JjwtBasedAuthTokenValidator","level":"DEBUG","message":"using key [id: 984e3639028b1e7d0b7d97f8f3de6a82638af0ed7d06ce7d9e038a1c4c634169] to validate signature (alg: RS256]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.7Z","sequence":11323,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connection to container [hono-auth-0.0.0.0:5671] at [amqps://aloxy-hono-service-auth:5671, role: Authentication Server] open","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1bbde72ac8e40fcd","traceId":"d733976356ed85278319094e05ba6726","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.7Z","sequence":11324,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"authentication of client [authorization ID: mqtt-adapter@HONO] succeeded","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.703Z","sequence":11325,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"opened receiver link to Authentication service, waiting for token ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1bbde72ac8e40fcd","traceId":"d733976356ed85278319094e05ba6726","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.703Z","sequence":11326,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"successfully retrieved token from Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1bbde72ac8e40fcd","traceId":"d733976356ed85278319094e05ba6726","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.703Z","sequence":11327,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"closing connection to Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1bbde72ac8e40fcd","traceId":"d733976356ed85278319094e05ba6726","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.703Z","sequence":11328,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"finishing SASL handshake with outcome PN_SASL_OK","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.703Z","sequence":11329,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"received connection request from client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.704Z","sequence":11330,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.EventBusAuthenticationService","level":"DEBUG","message":"received token [length: 969] in response to authentication request","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.704Z","sequence":11331,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.JjwtBasedAuthTokenValidator","level":"DEBUG","message":"using key [id: 984e3639028b1e7d0b7d97f8f3de6a82638af0ed7d06ce7d9e038a1c4c634169] to validate signature (alg: RS256]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.706Z","sequence":11332,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"authentication of client [authorization ID: mqtt-adapter@HONO] succeeded","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.708Z","sequence":11333,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"finishing SASL handshake with outcome PN_SASL_OK","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.708Z","sequence":11334,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"received connection request from client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.709Z","sequence":11335,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.EventBusAuthenticationService","level":"DEBUG","message":"received token [length: 969] in response to authentication request","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.709Z","sequence":11336,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.JjwtBasedAuthTokenValidator","level":"DEBUG","message":"using key [id: 984e3639028b1e7d0b7d97f8f3de6a82638af0ed7d06ce7d9e038a1c4c634169] to validate signature (alg: RS256]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.71Z","sequence":11337,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"authentication of client [authorization ID: lora-adapter@HONO] succeeded","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.711Z","sequence":11338,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"finishing SASL handshake with outcome PN_SASL_OK","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.711Z","sequence":11339,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"received connection request from client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.711Z","sequence":11340,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.EventBusAuthenticationService","level":"DEBUG","message":"received token [length: 969] in response to authentication request","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.711Z","sequence":11341,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.JjwtBasedAuthTokenValidator","level":"DEBUG","message":"using key [id: 984e3639028b1e7d0b7d97f8f3de6a82638af0ed7d06ce7d9e038a1c4c634169] to validate signature (alg: RS256]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.712Z","sequence":11342,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"authentication of client [authorization ID: lora-adapter@HONO] succeeded","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.712Z","sequence":11343,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"finishing SASL handshake with outcome PN_SASL_OK","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.713Z","sequence":11344,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"received connection request from client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.714Z","sequence":11345,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connected to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server], opening connection ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2576c72f157a2411","traceId":"450422b99ba54759e4e5d5796748bf9d","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.717Z","sequence":11346,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"initializing SASL authenticator","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.717Z","sequence":11347,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client provided an empty list of SASL mechanisms [hostname: null, state: PN_SASL_IDLE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.717Z","sequence":11348,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"processing open frame from client container [vert.x-8db72882-6088-4b53-97d5-ea0ae52174e0]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.718Z","sequence":11349,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"INFO","message":"client connected [container: vert.x-8db72882-6088-4b53-97d5-ea0ae52174e0, user: mqtt-adapter@HONO, token valid until: 2023-07-25T04:01:55Z]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.718Z","sequence":11350,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: vert.x-8db72882-6088-4b53-97d5-ea0ae52174e0] closed connection","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.718Z","sequence":11351,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connection to container [hono-auth-0.0.0.0:5671] at [amqps://aloxy-hono-service-auth:5671, role: Authentication Server] open","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2576c72f157a2411","traceId":"450422b99ba54759e4e5d5796748bf9d","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.719Z","sequence":11352,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"processing open frame from client container [Hono adapter-mqtt-Tenant-ded758d0-b7cf-4d65-a210-6d11fa222d32]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.719Z","sequence":11353,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"INFO","message":"client connected [container: Hono adapter-mqtt-Tenant-ded758d0-b7cf-4d65-a210-6d11fa222d32, user: mqtt-adapter@HONO, token valid until: 2023-07-25T04:01:55Z]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.72Z","sequence":11354,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"processing open frame from client container [Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.722Z","sequence":11355,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"opened receiver link to Authentication service, waiting for token ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2576c72f157a2411","traceId":"450422b99ba54759e4e5d5796748bf9d","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.724Z","sequence":11356,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"successfully retrieved token from Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2576c72f157a2411","traceId":"450422b99ba54759e4e5d5796748bf9d","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.725Z","sequence":11357,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"closing connection to Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2576c72f157a2411","traceId":"450422b99ba54759e4e5d5796748bf9d","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.725Z","sequence":11358,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"INFO","message":"client connected [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d, user: lora-adapter@HONO, token valid until: 2023-07-25T04:01:55Z]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.725Z","sequence":11359,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.EventBusAuthenticationService","level":"DEBUG","message":"received token [length: 969] in response to authentication request","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.726Z","sequence":11360,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.JjwtBasedAuthTokenValidator","level":"DEBUG","message":"using key [id: 984e3639028b1e7d0b7d97f8f3de6a82638af0ed7d06ce7d9e038a1c4c634169] to validate signature (alg: RS256]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.729Z","sequence":11362,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connected to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server], opening connection ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"96005464e053a97f","traceId":"c827900637ee51450817af7ac04bdea8","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.729Z","sequence":11361,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"authentication of client [authorization ID: lora-adapter@HONO] succeeded","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.731Z","sequence":11363,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"finishing SASL handshake with outcome PN_SASL_OK","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.734Z","sequence":11364,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connection to container [hono-auth-0.0.0.0:5671] at [amqps://aloxy-hono-service-auth:5671, role: Authentication Server] open","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"96005464e053a97f","traceId":"c827900637ee51450817af7ac04bdea8","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.734Z","sequence":11365,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"received connection request from client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.735Z","sequence":11366,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: vert.x-8db72882-6088-4b53-97d5-ea0ae52174e0] disconnected","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.735Z","sequence":11367,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client wants to authenticate using SASL [mechanism: PLAIN, host: null, state: PN_SASL_STEP]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.735Z","sequence":11368,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"received authentication request [mechanism: PLAIN]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"283e6331a4ab8153","traceId":"8cf50a8d79f4c4a45376642890405112","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.736Z","sequence":11369,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"processing PLAIN authentication request [authzid: , authcid: mqtt-adapter@HONO, pwd: *****]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"283e6331a4ab8153","traceId":"8cf50a8d79f4c4a45376642890405112","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.736Z","sequence":11370,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"OpenSSL [available: false, supports KeyManagerFactory: false]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"283e6331a4ab8153","traceId":"8cf50a8d79f4c4a45376642890405112","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.736Z","sequence":11371,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"using JVM's default SSL engine","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"283e6331a4ab8153","traceId":"8cf50a8d79f4c4a45376642890405112","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.736Z","sequence":11372,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"283e6331a4ab8153","traceId":"8cf50a8d79f4c4a45376642890405112","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.736Z","sequence":11373,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"283e6331a4ab8153","traceId":"8cf50a8d79f4c4a45376642890405112","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.737Z","sequence":11374,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connecting to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"283e6331a4ab8153","traceId":"8cf50a8d79f4c4a45376642890405112","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.737Z","sequence":11375,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"opened receiver link to Authentication service, waiting for token ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"96005464e053a97f","traceId":"c827900637ee51450817af7ac04bdea8","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.748Z","sequence":11376,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"successfully retrieved token from Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"96005464e053a97f","traceId":"c827900637ee51450817af7ac04bdea8","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.748Z","sequence":11377,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"closing connection to Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"96005464e053a97f","traceId":"c827900637ee51450817af7ac04bdea8","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.756Z","sequence":11378,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"opening new session with client [container: Hono adapter-mqtt-Tenant-ded758d0-b7cf-4d65-a210-6d11fa222d32]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.757Z","sequence":11379,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"opening new session with client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.757Z","sequence":11380,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"processing open frame from client container [vert.x-15ddacdf-5bf8-4f6e-be53-8597fd83c350]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.757Z","sequence":11381,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"INFO","message":"client connected [container: vert.x-15ddacdf-5bf8-4f6e-be53-8597fd83c350, user: lora-adapter@HONO, token valid until: 2023-07-25T04:01:55Z]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.758Z","sequence":11382,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: vert.x-15ddacdf-5bf8-4f6e-be53-8597fd83c350] closed connection","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.758Z","sequence":11383,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.EventBusAuthenticationService","level":"DEBUG","message":"received token [length: 696] in response to authentication request","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.769Z","sequence":11384,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.JjwtBasedAuthTokenValidator","level":"DEBUG","message":"using key [id: 984e3639028b1e7d0b7d97f8f3de6a82638af0ed7d06ce7d9e038a1c4c634169] to validate signature (alg: RS256]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.769Z","sequence":11385,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"authentication of client [authorization ID: command-router@HONO] succeeded","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.77Z","sequence":11386,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"finishing SASL handshake with outcome PN_SASL_OK","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.77Z","sequence":11387,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"received connection request from client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.77Z","sequence":11388,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: vert.x-15ddacdf-5bf8-4f6e-be53-8597fd83c350] disconnected","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.771Z","sequence":11389,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"processing open frame from client container [Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.771Z","sequence":11390,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"INFO","message":"client connected [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6, user: lora-adapter@HONO, token valid until: 2023-07-25T04:01:55Z]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.772Z","sequence":11391,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"processing open frame from client container [Hono service-command-router-Tenant-8c258f6d-8b57-47cf-8f84-a38d9786fed2]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.774Z","sequence":11392,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"INFO","message":"client connected [container: Hono service-command-router-Tenant-8c258f6d-8b57-47cf-8f84-a38d9786fed2, user: command-router@HONO, token valid until: 2023-07-25T04:01:55Z]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.775Z","sequence":11393,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"opening new session with client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.779Z","sequence":11394,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"opening new session with client [container: Hono service-command-router-Tenant-8c258f6d-8b57-47cf-8f84-a38d9786fed2]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.874Z","sequence":11395,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connected to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server], opening connection ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"283e6331a4ab8153","traceId":"8cf50a8d79f4c4a45376642890405112","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.876Z","sequence":11396,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connection to container [hono-auth-0.0.0.0:5671] at [amqps://aloxy-hono-service-auth:5671, role: Authentication Server] open","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"283e6331a4ab8153","traceId":"8cf50a8d79f4c4a45376642890405112","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.88Z","sequence":11397,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"opened receiver link to Authentication service, waiting for token ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"283e6331a4ab8153","traceId":"8cf50a8d79f4c4a45376642890405112","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.881Z","sequence":11398,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"successfully retrieved token from Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"283e6331a4ab8153","traceId":"8cf50a8d79f4c4a45376642890405112","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.881Z","sequence":11399,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"closing connection to Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"283e6331a4ab8153","traceId":"8cf50a8d79f4c4a45376642890405112","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.881Z","sequence":11400,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.EventBusAuthenticationService","level":"DEBUG","message":"received token [length: 969] in response to authentication request","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.882Z","sequence":11401,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.JjwtBasedAuthTokenValidator","level":"DEBUG","message":"using key [id: 984e3639028b1e7d0b7d97f8f3de6a82638af0ed7d06ce7d9e038a1c4c634169] to validate signature (alg: RS256]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.883Z","sequence":11402,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"authentication of client [authorization ID: mqtt-adapter@HONO] succeeded","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.883Z","sequence":11403,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"finishing SASL handshake with outcome PN_SASL_OK","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.883Z","sequence":11404,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"received connection request from client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.888Z","sequence":11405,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"processing open frame from client container [Hono adapter-mqtt-Credentials-75faa79c-12c0-45f2-bd9c-973655a3937c]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.889Z","sequence":11406,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"INFO","message":"client connected [container: Hono adapter-mqtt-Credentials-75faa79c-12c0-45f2-bd9c-973655a3937c, user: mqtt-adapter@HONO, token valid until: 2023-07-25T04:01:55Z]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:55.891Z","sequence":11407,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"opening new session with client [container: Hono adapter-mqtt-Credentials-75faa79c-12c0-45f2-bd9c-973655a3937c]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:56.42Z","sequence":11408,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] wants to open a link [address: Source{address='registration/shell/58fee744-4ae0-4178-8a31-e12b78714bfc', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:56.421Z","sequence":11409,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-0]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:56.421Z","sequence":11410,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@2276bb65] for replies to [registration/shell/58fee744-4ae0-4178-8a31-e12b78714bfc]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:56.424Z","sequence":11411,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] wants to open a link [address: Target{address='registration/shell', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:56.425Z","sequence":11412,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-1]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:56.425Z","sequence":11413,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:56.428Z","sequence":11414,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:56.429Z","sequence":11415,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000ACF] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:56.436Z","sequence":11416,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:56.436Z","sequence":11417,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:56.446Z","sequence":11418,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f10234ff-212c-4dd0-a68f-79b6efb6004c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:57.174Z","sequence":11419,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:57.174Z","sequence":11420,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BBC] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:57.179Z","sequence":11421,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:57.179Z","sequence":11422,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:57.184Z","sequence":11423,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2187bedf-6403-458f-ae2b-0389c8ce1fd4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:58.209Z","sequence":11424,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Credentials-75faa79c-12c0-45f2-bd9c-973655a3937c] wants to open a link [address: Source{address='credentials/dow/a35ca7d9-d483-463f-9fd9-d0188254e4f8', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:58.21Z","sequence":11425,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-0]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:58.21Z","sequence":11426,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@4623ccce] for replies to [credentials/dow/a35ca7d9-d483-463f-9fd9-d0188254e4f8]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:58.212Z","sequence":11427,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Credentials-75faa79c-12c0-45f2-bd9c-973655a3937c] wants to open a link [address: Target{address='credentials/dow', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:58.212Z","sequence":11428,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-1]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:58.212Z","sequence":11429,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:58.214Z","sequence":11430,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/dow:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:58.215Z","sequence":11431,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: dow, type: hashed-password, auth-id: auth-0008004C80F4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:58.225Z","sequence":11432,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-e8ca2862-a7c8-4733-8105-68a576bcad9c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:58.344Z","sequence":11433,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af] wants to open a link [address: Source{address='registration/dow/62761699-65b2-4ee3-90f4-f7bbc9a9e0ba', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:58.345Z","sequence":11434,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-13]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:58.345Z","sequence":11435,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@10d17b4d] for replies to [registration/dow/62761699-65b2-4ee3-90f4-f7bbc9a9e0ba]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:58.347Z","sequence":11436,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af] wants to open a link [address: Target{address='registration/dow', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:58.347Z","sequence":11437,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-14]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:58.347Z","sequence":11438,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:58.349Z","sequence":11439,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:58.349Z","sequence":11440,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 0008004C80F4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:58.354Z","sequence":11441,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-11adb9d4-ab94-4c13-9c18-298fe6d75b7a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:58.517Z","sequence":11442,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono service-command-router-Tenant-8c258f6d-8b57-47cf-8f84-a38d9786fed2] wants to open a link [address: Source{address='tenant/ae06d1aa-2383-43aa-a1ef-1b8b5422f16d', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:58.517Z","sequence":11443,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-0]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:58.517Z","sequence":11444,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@7a71933b] for replies to [tenant/ae06d1aa-2383-43aa-a1ef-1b8b5422f16d]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:58.519Z","sequence":11445,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono service-command-router-Tenant-8c258f6d-8b57-47cf-8f84-a38d9786fed2] wants to open a link [address: Target{address='tenant', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:58.519Z","sequence":11446,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-1]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:58.519Z","sequence":11447,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:58.522Z","sequence":11448,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [command-router@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:58.522Z","sequence":11449,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: dow]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:58.525Z","sequence":11450,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-a6578c5e-5209-4cfc-8157-cdf91f978d4a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:59.009Z","sequence":11451,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:59.009Z","sequence":11452,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AB4] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:59.016Z","sequence":11453,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:59.016Z","sequence":11454,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:59.023Z","sequence":11455,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-930c556f-8b8f-4f1d-81e4-6cb046c08f59, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:59.865Z","sequence":11456,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:59.865Z","sequence":11457,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AED] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:59.884Z","sequence":11458,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:59.885Z","sequence":11459,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:01:59.898Z","sequence":11460,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b88dd7f3-5a88-42e2-a884-a254bb22536c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:01.74Z","sequence":11461,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Tenant-995cc45f-23b2-488f-a5d9-0b18c4ae6c62] wants to open a link [address: Source{address='tenant/d06a9a67-842c-4f4c-a5d3-b1d249854544', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:01.74Z","sequence":11462,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-0]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:01.741Z","sequence":11463,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@56d79517] for replies to [tenant/d06a9a67-842c-4f4c-a5d3-b1d249854544]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:01.743Z","sequence":11464,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Tenant-995cc45f-23b2-488f-a5d9-0b18c4ae6c62] wants to open a link [address: Target{address='tenant', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:01.743Z","sequence":11465,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-1]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:01.743Z","sequence":11466,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:01.745Z","sequence":11467,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:01.746Z","sequence":11468,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: terega]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:01.75Z","sequence":11469,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-df103dd5-9845-4ad4-abcd-13237199bcb3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:01.755Z","sequence":11470,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Source{address='credentials/terega/87908ae9-bf9c-494e-b3b4-27b5768dfe9a', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:01.755Z","sequence":11471,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-0]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:01.755Z","sequence":11472,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@29c5ab52] for replies to [credentials/terega/87908ae9-bf9c-494e-b3b4-27b5768dfe9a]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:01.757Z","sequence":11473,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Target{address='credentials/terega', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:01.757Z","sequence":11474,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-1]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:01.757Z","sequence":11475,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:01.76Z","sequence":11476,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/terega:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:01.76Z","sequence":11477,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: terega, type: hashed-password, auth-id: auth-gateway_terega_network_27]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:01.776Z","sequence":11478,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-0d89d06c-db9e-4c5a-ba7c-9260eb2194c6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:01.897Z","sequence":11479,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] wants to open a link [address: Source{address='registration/terega/4902ec31-9da2-4ca9-baef-4200d738fe65', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:01.897Z","sequence":11480,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-2]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:01.897Z","sequence":11481,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@5b78ef30] for replies to [registration/terega/4902ec31-9da2-4ca9-baef-4200d738fe65]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:01.899Z","sequence":11482,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] wants to open a link [address: Target{address='registration/terega', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:01.899Z","sequence":11483,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:01.899Z","sequence":11484,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:01.902Z","sequence":11485,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/terega:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:01.902Z","sequence":11486,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: terega, device-id: 70B3D57BB1000091] for gateway [gateway_terega_network_27]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:01.902Z","sequence":11487,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/terega:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:01.902Z","sequence":11488,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: terega, device-id: gateway_terega_network_27]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:01.907Z","sequence":11489,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7ca13615-943c-4227-800f-f21dcc47e816, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:01.908Z","sequence":11490,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_terega\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:01.908Z","sequence":11491,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_terega\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:01.91Z","sequence":11492,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-03d2e507-5501-405f-91f8-855ea083b679, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:02.388Z","sequence":11493,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Tenant-ded758d0-b7cf-4d65-a210-6d11fa222d32] wants to open a link [address: Source{address='tenant/59d09b9a-38b6-4f2a-ab6f-6d8437999d8c', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:02.388Z","sequence":11494,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-0]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:02.388Z","sequence":11495,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@2df803c6] for replies to [tenant/59d09b9a-38b6-4f2a-ab6f-6d8437999d8c]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:02.39Z","sequence":11496,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Tenant-ded758d0-b7cf-4d65-a210-6d11fa222d32] wants to open a link [address: Target{address='tenant', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:02.39Z","sequence":11497,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-1]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:02.39Z","sequence":11498,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:02.392Z","sequence":11499,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:02.392Z","sequence":11500,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oci]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:02.395Z","sequence":11501,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-f4ca17ea-3273-4e7e-83a2-1abc92a592c5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:02.399Z","sequence":11502,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:02.399Z","sequence":11503,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001E1] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:02.404Z","sequence":11504,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:02.404Z","sequence":11505,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:02.407Z","sequence":11506,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-df64cdea-9b7e-4d82-993c-44821e1d259a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:02.481Z","sequence":11507,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:02.481Z","sequence":11508,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001E1] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:02.486Z","sequence":11509,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:02.487Z","sequence":11510,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:02.49Z","sequence":11511,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-637ba3fc-6ac4-4f68-ae85-6be6e246d212, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:04.429Z","sequence":11512,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:04.429Z","sequence":11513,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A02] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:04.44Z","sequence":11514,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:04.44Z","sequence":11515,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:04.448Z","sequence":11516,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8c97ec4d-b58e-4a0e-8e99-a1b321cf2aa1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:06.103Z","sequence":11517,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af] wants to open a link [address: Source{address='registration/oiltanking/b3e5fbc9-8a6a-400e-9848-9c185f5cdd9c', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:06.103Z","sequence":11518,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-15]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:06.104Z","sequence":11519,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@5343b06c] for replies to [registration/oiltanking/b3e5fbc9-8a6a-400e-9848-9c185f5cdd9c]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:06.108Z","sequence":11520,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af] wants to open a link [address: Target{address='registration/oiltanking', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:06.108Z","sequence":11521,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-16]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:06.108Z","sequence":11522,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:06.111Z","sequence":11523,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oiltanking:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:06.111Z","sequence":11524,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oiltanking, device-id: 0008004BB60F]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:06.117Z","sequence":11525,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6e482fe6-c6a9-4d6b-808e-6a9f686bb8a7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:06.121Z","sequence":11526,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:06.121Z","sequence":11527,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oiltanking]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:06.123Z","sequence":11528,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-f39526dd-c443-492c-a484-ec429cd50fe4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:08.173Z","sequence":11529,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:08.174Z","sequence":11530,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019E0] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:08.18Z","sequence":11531,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:08.181Z","sequence":11532,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:08.186Z","sequence":11533,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-880dc255-7134-4a4d-8ad3-924a5a2a1860, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:11.056Z","sequence":11534,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:11.056Z","sequence":11535,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10008CF] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:11.062Z","sequence":11536,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:11.062Z","sequence":11537,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:11.069Z","sequence":11538,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8818a074-153e-434a-9577-f74d55a3aa37, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:15.218Z","sequence":11539,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] wants to open a link [address: Source{address='registration/flint/14f8459d-68b7-44f4-8dd2-0d719ef61544', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:15.219Z","sequence":11540,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:15.219Z","sequence":11541,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@465efdb0] for replies to [registration/flint/14f8459d-68b7-44f4-8dd2-0d719ef61544]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:15.221Z","sequence":11542,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] wants to open a link [address: Target{address='registration/flint', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:15.222Z","sequence":11543,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-5]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:15.222Z","sequence":11544,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:15.224Z","sequence":11545,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:15.225Z","sequence":11546,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB100089A] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:15.226Z","sequence":11547,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:15.226Z","sequence":11548,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:15.231Z","sequence":11549,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:15.231Z","sequence":11550,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:15.232Z","sequence":11551,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3fb9cb5f-17d2-42a9-afe3-d99978208941, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:15.235Z","sequence":11552,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9ffd9413-7779-43f8-96ef-9e1ecb96e3bd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:15.548Z","sequence":11553,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFD2176EE015761]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"72272d2749bada02","parentId":"27f0d09228db1d74","traceId":"000000000000000092b131ba7d56c70a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:15.565Z","sequence":11554,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFD2176EE015761]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"72272d2749bada02","parentId":"27f0d09228db1d74","traceId":"000000000000000092b131ba7d56c70a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:16.494Z","sequence":11555,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 201A79DF2F30]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0547e7e4f681bcc4","parentId":"5a48a2604905b6a6","traceId":"0000000000000000b9d708989bf97a24","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:16.527Z","sequence":11556,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 201A79DF2F30]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0547e7e4f681bcc4","parentId":"5a48a2604905b6a6","traceId":"0000000000000000b9d708989bf97a24","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:17.769Z","sequence":11557,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191028]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a9b636d43d2963f4","parentId":"d5fbde77b5f7b167","traceId":"00000000000000007ecf2b76ffa1c640","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:17.788Z","sequence":11558,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191028, resource-version: 8ac1d574-56c0-4b4d-92c3-046eb08a6896]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a9b636d43d2963f4","parentId":"d5fbde77b5f7b167","traceId":"00000000000000007ecf2b76ffa1c640","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:17.795Z","sequence":11559,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191028, resource-version: a63756bc-90e6-490f-a876-b81fa67bfd68]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a9b636d43d2963f4","parentId":"d5fbde77b5f7b167","traceId":"00000000000000007ecf2b76ffa1c640","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:17.799Z","sequence":11560,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191028]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2a07778161f33fdb","parentId":"981be705b7b8ac70","traceId":"00000000000000007ecf2b76ffa1c640","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:17.915Z","sequence":11561,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191028]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2a07778161f33fdb","parentId":"981be705b7b8ac70","traceId":"00000000000000007ecf2b76ffa1c640","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:18.067Z","sequence":11562,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:18.068Z","sequence":11563,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: shell]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:18.071Z","sequence":11564,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-ca14ea1b-6941-430a-a1ca-b0fbeaca7dc3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:18.073Z","sequence":11565,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Source{address='credentials/shell/9b229b1c-8b06-476f-b1ad-350814cea7f4', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:18.073Z","sequence":11566,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-2]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:18.073Z","sequence":11567,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@23990c30] for replies to [credentials/shell/9b229b1c-8b06-476f-b1ad-350814cea7f4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:18.075Z","sequence":11568,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Target{address='credentials/shell', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:18.076Z","sequence":11569,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:18.076Z","sequence":11570,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:18.079Z","sequence":11571,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/shell:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:18.079Z","sequence":11572,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: shell, type: hashed-password, auth-id: auth-gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:18.095Z","sequence":11573,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-f30d7266-365e-4b51-bb0e-0c8407968d67, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:18.597Z","sequence":11574,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFA9B6BB3E92578]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"410fe2687c5b72bf","parentId":"d62ca30baeed0b89","traceId":"000000000000000082e703ca700710c0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:18.613Z","sequence":11575,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFA9B6BB3E92578, resource-version: af52f2da-254e-4682-93ad-6122daf770f4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"410fe2687c5b72bf","parentId":"d62ca30baeed0b89","traceId":"000000000000000082e703ca700710c0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:18.625Z","sequence":11576,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFA9B6BB3E92578, resource-version: a0030377-1a6d-407e-9a85-0254e633b19b]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"410fe2687c5b72bf","parentId":"d62ca30baeed0b89","traceId":"000000000000000082e703ca700710c0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:19.494Z","sequence":11577,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:19.494Z","sequence":11578,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B86] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:19.508Z","sequence":11579,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:19.509Z","sequence":11580,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:19.519Z","sequence":11581,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b1a179a7-c792-4844-b37e-1b5146abff9f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:19.722Z","sequence":11582,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:19.722Z","sequence":11583,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:19.726Z","sequence":11584,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-eb24211e-ef0e-496f-b151-3295d45a2216, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:19.728Z","sequence":11585,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Source{address='credentials/integrationtest/84366fa6-6483-4a3b-b0d1-bd1c11092476', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:19.729Z","sequence":11586,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:19.729Z","sequence":11587,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@6012878c] for replies to [credentials/integrationtest/84366fa6-6483-4a3b-b0d1-bd1c11092476]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:19.731Z","sequence":11588,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Target{address='credentials/integrationtest', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:19.731Z","sequence":11589,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-5]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:19.731Z","sequence":11590,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:19.734Z","sequence":11591,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:19.734Z","sequence":11592,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191028]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:19.743Z","sequence":11593,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-83e2c770-18a9-4f87-8492-f0ca71bb116c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:19.861Z","sequence":11594,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] wants to open a link [address: Source{address='registration/integrationtest/ff30a8f9-9644-499d-bc69-f829738557c3', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:19.862Z","sequence":11595,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-6]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:19.862Z","sequence":11596,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@79370c10] for replies to [registration/integrationtest/ff30a8f9-9644-499d-bc69-f829738557c3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:19.865Z","sequence":11597,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] wants to open a link [address: Target{address='registration/integrationtest', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:19.865Z","sequence":11598,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-7]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:19.865Z","sequence":11599,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:19.868Z","sequence":11600,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:19.868Z","sequence":11601,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFA9B6BB3E92578] for gateway [gateway_integrationtest_network_191028]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:19.868Z","sequence":11602,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:19.868Z","sequence":11603,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191028]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:19.874Z","sequence":11604,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:19.874Z","sequence":11605,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:19.875Z","sequence":11606,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ee65f90f-7d00-4c7a-a958-6bf39c2ff574, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:20.064Z","sequence":11607,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5e1b3d05-80c1-4e64-aee1-7ab67b878ff6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:20.119Z","sequence":11608,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:20.119Z","sequence":11609,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100016B] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:20.125Z","sequence":11610,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:20.125Z","sequence":11611,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:20.128Z","sequence":11612,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0841a4a0-7efd-4d57-94ce-ffc185822833, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:20.16Z","sequence":11613,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:20.16Z","sequence":11614,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100016B] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:20.165Z","sequence":11615,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:20.165Z","sequence":11616,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:20.168Z","sequence":11617,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b866306c-6ab2-4ab6-a9fe-cce68a73f273, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:24.159Z","sequence":11618,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:24.16Z","sequence":11619,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10008AB] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:24.17Z","sequence":11620,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:24.17Z","sequence":11621,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:24.177Z","sequence":11622,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1dc9b523-1b41-4d52-8436-9a9f2ceac6f5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:24.669Z","sequence":11623,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:24.669Z","sequence":11624,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: flint]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:24.674Z","sequence":11625,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-02eb8f7c-ff8e-4606-a016-d268d8456f21, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:24.676Z","sequence":11626,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Source{address='credentials/flint/2512a417-e251-4864-bd08-1f5a0d398823', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:24.676Z","sequence":11627,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-6]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:24.676Z","sequence":11628,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@26977948] for replies to [credentials/flint/2512a417-e251-4864-bd08-1f5a0d398823]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:24.679Z","sequence":11629,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Target{address='credentials/flint', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:24.679Z","sequence":11630,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-7]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:24.679Z","sequence":11631,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:24.681Z","sequence":11632,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/flint:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:24.682Z","sequence":11633,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: flint, type: hashed-password, auth-id: auth-flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:24.692Z","sequence":11634,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-0e070ced-6794-4836-badf-67af43f363c1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:28.114Z","sequence":11635,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:28.114Z","sequence":11636,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006A3] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:28.12Z","sequence":11637,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:28.12Z","sequence":11638,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:28.127Z","sequence":11639,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-18550306-ef8a-4aa9-a0db-37b61f0a03c6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:29.809Z","sequence":11640,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:29.809Z","sequence":11641,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100079F] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:29.824Z","sequence":11642,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:29.824Z","sequence":11643,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:29.831Z","sequence":11644,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-df63b250-8b62-4e7a-a186-c99e5b0e6808, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:31.241Z","sequence":11645,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFA9B6BB3E92578]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f751251a84a5719f","parentId":"ec0de05521d342e8","traceId":"0000000000000000b028789bb829af5d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:31.258Z","sequence":11646,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFA9B6BB3E92578]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f751251a84a5719f","parentId":"ec0de05521d342e8","traceId":"0000000000000000b028789bb829af5d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:32.711Z","sequence":11647,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191028]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fa420facc307451e","parentId":"5eab0e8470eaa45e","traceId":"0000000000000000ba386b818464255c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:32.728Z","sequence":11648,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191028]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fa420facc307451e","parentId":"5eab0e8470eaa45e","traceId":"0000000000000000ba386b818464255c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:34.08Z","sequence":11649,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: F0680BEE7477]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"87e1c9633129a18b","parentId":"00eec877a6540863","traceId":"0000000000000000ae616751783be867","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:34.099Z","sequence":11650,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: F0680BEE7477, resource-version: 7ccfbf05-f296-4ecc-89bb-c6fd71f5b226]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"87e1c9633129a18b","parentId":"00eec877a6540863","traceId":"0000000000000000ae616751783be867","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:34.108Z","sequence":11651,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: F0680BEE7477, resource-version: a5cdaff5-8d2b-4cdf-8d9d-ffafaa3e10f0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"87e1c9633129a18b","parentId":"00eec877a6540863","traceId":"0000000000000000ae616751783be867","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:34.113Z","sequence":11652,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: F0680BEE7477]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7da5158852cc8ffd","parentId":"8663f5d24d8cb2b3","traceId":"0000000000000000ae616751783be867","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:34.38Z","sequence":11653,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: F0680BEE7477]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7da5158852cc8ffd","parentId":"8663f5d24d8cb2b3","traceId":"0000000000000000ae616751783be867","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:35.37Z","sequence":11654,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:35.371Z","sequence":11655,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000ADA] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:35.377Z","sequence":11656,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:35.377Z","sequence":11657,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:35.384Z","sequence":11658,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3eaa72d6-aea4-428b-82f2-7f8319a71c47, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:35.434Z","sequence":11659,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF42672729ADB15]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e940d124c07d970d","parentId":"fb467d99e5801c40","traceId":"0000000000000000dacaf459c527f1d1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:35.453Z","sequence":11660,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF42672729ADB15, resource-version: 55a74127-3e32-4ca1-9c35-215e37751216]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e940d124c07d970d","parentId":"fb467d99e5801c40","traceId":"0000000000000000dacaf459c527f1d1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:35.46Z","sequence":11661,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF42672729ADB15, resource-version: f3081560-3c42-47dd-ad88-7a8468ca4a64]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e940d124c07d970d","parentId":"fb467d99e5801c40","traceId":"0000000000000000dacaf459c527f1d1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:36.51Z","sequence":11662,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:36.51Z","sequence":11663,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:36.513Z","sequence":11664,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-67265fff-d7ea-446b-9ee3-2da7d128dc96, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:36.516Z","sequence":11665,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Credentials-75faa79c-12c0-45f2-bd9c-973655a3937c] wants to open a link [address: Source{address='credentials/integrationtest/2043fef1-f99e-491b-b7eb-3cef8ac54cc5', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:36.516Z","sequence":11666,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-2]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:36.516Z","sequence":11667,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@3cc0ba25] for replies to [credentials/integrationtest/2043fef1-f99e-491b-b7eb-3cef8ac54cc5]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:36.518Z","sequence":11668,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Credentials-75faa79c-12c0-45f2-bd9c-973655a3937c] wants to open a link [address: Target{address='credentials/integrationtest', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:36.518Z","sequence":11669,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:36.518Z","sequence":11670,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:36.52Z","sequence":11671,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:36.52Z","sequence":11672,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-F0680BEE7477]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:36.558Z","sequence":11673,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-fd1c2121-a2b2-4143-8607-bded7067fcae, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:36.679Z","sequence":11674,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:36.68Z","sequence":11675,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: F0680BEE7477]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:36.685Z","sequence":11676,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-384a361e-c421-4986-91a5-d71562e793d1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:36.689Z","sequence":11677,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:36.69Z","sequence":11678,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF42672729ADB15] for gateway [F0680BEE7477]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:36.695Z","sequence":11679,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:36.695Z","sequence":11680,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:36.887Z","sequence":11681,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-05c684ee-5646-46c3-899e-6e69a39ce883, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:38.381Z","sequence":11682,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:38.381Z","sequence":11683,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100079E] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:38.389Z","sequence":11684,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:38.389Z","sequence":11685,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:38.396Z","sequence":11686,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6e1d9a0e-7cc4-454f-8de3-fb5cee17f865, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:47.739Z","sequence":11687,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF42672729ADB15]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2ef3554460070b94","parentId":"c23071227761ef5b","traceId":"000000000000000059b43512dc19e0b7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:47.757Z","sequence":11688,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF42672729ADB15]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2ef3554460070b94","parentId":"c23071227761ef5b","traceId":"000000000000000059b43512dc19e0b7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:48.182Z","sequence":11689,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:48.182Z","sequence":11690,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: dow]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:48.185Z","sequence":11691,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-549aaa08-78ac-43ed-8660-2f050c790fc2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:48.193Z","sequence":11692,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Source{address='credentials/dow/db27a55b-fa21-4f93-b651-95835fae6474', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:48.193Z","sequence":11693,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-8]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:48.193Z","sequence":11694,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@255e35c2] for replies to [credentials/dow/db27a55b-fa21-4f93-b651-95835fae6474]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:48.195Z","sequence":11695,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Target{address='credentials/dow', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:48.195Z","sequence":11696,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-9]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:48.195Z","sequence":11697,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:48.197Z","sequence":11698,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/dow:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:48.197Z","sequence":11699,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: dow, type: hashed-password, auth-id: auth-gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:48.209Z","sequence":11700,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-a5021765-dca8-4530-87ee-b82f7401bad2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:48.514Z","sequence":11701,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] wants to open a link [address: Source{address='registration/dow/7b7d7736-12af-419e-b2e5-c2c97e9e6b03', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:48.514Z","sequence":11702,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-8]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:48.514Z","sequence":11703,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@1f7c54e0] for replies to [registration/dow/7b7d7736-12af-419e-b2e5-c2c97e9e6b03]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:48.516Z","sequence":11704,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] wants to open a link [address: Target{address='registration/dow', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:48.516Z","sequence":11705,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-9]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:48.516Z","sequence":11706,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:48.519Z","sequence":11707,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:48.519Z","sequence":11708,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 70B3D57BB100122E] for gateway [gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:48.519Z","sequence":11709,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:48.519Z","sequence":11710,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:48.524Z","sequence":11711,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-edaddb79-9cf8-4412-bdcd-3f4aab282760, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:48.525Z","sequence":11712,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:48.525Z","sequence":11713,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:48.529Z","sequence":11714,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e44f0d6f-b91e-4603-8f5e-a41490bed795, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:48.783Z","sequence":11715,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: F0680BEE7477]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"12b40da083f3bbd5","parentId":"67db94f66a37d03b","traceId":"000000000000000009be10e4bb6db93b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:48.803Z","sequence":11716,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: F0680BEE7477]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"12b40da083f3bbd5","parentId":"67db94f66a37d03b","traceId":"000000000000000009be10e4bb6db93b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:50.869Z","sequence":11717,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af] wants to open a link [address: Source{address='registration/aloxy/883fc047-ba18-4384-b053-ec2162623fe5', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:50.869Z","sequence":11718,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-17]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:50.869Z","sequence":11719,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@2388bed0] for replies to [registration/aloxy/883fc047-ba18-4384-b053-ec2162623fe5]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:50.871Z","sequence":11720,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af] wants to open a link [address: Target{address='registration/aloxy', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:50.871Z","sequence":11721,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-18]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:50.871Z","sequence":11722,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:50.873Z","sequence":11723,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/aloxy:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:50.873Z","sequence":11724,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: aloxy, device-id: 0008004A8F68]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:50.879Z","sequence":11725,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-de4603fc-45b5-4418-9307-d3d92d0dc6b9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:50.882Z","sequence":11726,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:50.882Z","sequence":11727,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: aloxy]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:50.885Z","sequence":11728,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-5b7fe72a-7d5d-476d-be63-d735dd567e82, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:56.093Z","sequence":11729,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:56.093Z","sequence":11730,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB100088D] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:56.102Z","sequence":11731,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:56.102Z","sequence":11732,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:02:56.107Z","sequence":11733,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6bdf7eeb-84cc-4fe5-b37c-4f8e66c78b02, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:00.171Z","sequence":11734,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:00.171Z","sequence":11735,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BB613]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:00.183Z","sequence":11736,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c94e131a-64dd-420e-b989-669d1539967e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:00.897Z","sequence":11737,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:00.897Z","sequence":11738,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000516] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:00.906Z","sequence":11739,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:00.906Z","sequence":11740,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:00.914Z","sequence":11741,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5540770b-d59b-4ccb-b485-ab0903a35561, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:01.649Z","sequence":11742,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:01.649Z","sequence":11743,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: lanxess]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:01.653Z","sequence":11744,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-ea6310ab-15fd-40d7-bf5b-0b9735fd10f9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:07.768Z","sequence":11745,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:07.768Z","sequence":11746,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019D0] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:07.788Z","sequence":11747,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:07.789Z","sequence":11748,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:07.799Z","sequence":11749,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4375572d-817c-4bc6-b57c-f8a953f3aed7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:14.015Z","sequence":11750,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:14.015Z","sequence":11751,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001FD] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:14.048Z","sequence":11752,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:14.048Z","sequence":11753,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:14.057Z","sequence":11754,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ae74057b-f9cd-4576-ad53-ccf168a892ed, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:14.182Z","sequence":11755,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:14.182Z","sequence":11756,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001FD] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:14.188Z","sequence":11757,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:14.188Z","sequence":11758,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:14.191Z","sequence":11759,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-bf345bff-c736-44fc-9d20-6df4a7c460f6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:14.248Z","sequence":11760,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af] wants to open a link [address: Source{address='registration/acta/2db95d41-f3b1-4c05-b2cd-7a4f071cdcc5', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:14.248Z","sequence":11761,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-19]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:14.248Z","sequence":11762,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@6eb92aca] for replies to [registration/acta/2db95d41-f3b1-4c05-b2cd-7a4f071cdcc5]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:14.25Z","sequence":11763,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af] wants to open a link [address: Target{address='registration/acta', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:14.25Z","sequence":11764,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-20]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:14.25Z","sequence":11765,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:14.252Z","sequence":11766,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/acta:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:14.252Z","sequence":11767,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: acta, device-id: 0008004AAAA3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:14.258Z","sequence":11768,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b814fc85-52d5-40d8-8061-a7f790ba59ed, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:14.261Z","sequence":11769,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:14.261Z","sequence":11770,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: acta]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:14.263Z","sequence":11771,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-1e601e0c-675c-4399-b247-5966e60ecac6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:16.211Z","sequence":11772,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFD9E042DD095F3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a6b2d11d891ec089","parentId":"9396908214b7fa84","traceId":"000000000000000006b786b15f02a2b8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:16.23Z","sequence":11773,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFD9E042DD095F3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a6b2d11d891ec089","parentId":"9396908214b7fa84","traceId":"000000000000000006b786b15f02a2b8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:16.571Z","sequence":11774,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:16.571Z","sequence":11775,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019EC] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:16.579Z","sequence":11776,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:16.579Z","sequence":11777,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:16.585Z","sequence":11778,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a6a1cea1-bb92-4088-a591-39a84ca15f6c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:17.535Z","sequence":11779,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: F5B6FCCF76BE]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9fcdd68390ab1554","parentId":"3c1ed0964be905c8","traceId":"00000000000000005cff3b4531ad1e1f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:17.555Z","sequence":11780,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: F5B6FCCF76BE]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9fcdd68390ab1554","parentId":"3c1ed0964be905c8","traceId":"00000000000000005cff3b4531ad1e1f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:26.018Z","sequence":11781,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:26.018Z","sequence":11782,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:26.024Z","sequence":11783,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8a1ee039-901c-41eb-94c7-ac7df5c9b79e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:26.027Z","sequence":11784,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:26.028Z","sequence":11785,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB1000A7F] for gateway [0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:26.034Z","sequence":11786,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:26.034Z","sequence":11787,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:26.037Z","sequence":11788,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6549cbfa-2be9-4cd3-a95b-b803ec337df9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:35.826Z","sequence":11789,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:35.826Z","sequence":11790,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000168] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:35.832Z","sequence":11791,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:35.832Z","sequence":11792,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:35.836Z","sequence":11793,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8a80bfb9-6c84-4055-af1f-290c561993e3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:35.872Z","sequence":11794,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:35.872Z","sequence":11795,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000168] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:35.877Z","sequence":11796,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:35.877Z","sequence":11797,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:35.88Z","sequence":11798,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-01ef29b3-b17a-4b5e-961f-dcd3d18a24d8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:39.084Z","sequence":11799,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:39.085Z","sequence":11800,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006C2] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:39.1Z","sequence":11801,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:39.1Z","sequence":11802,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:39.107Z","sequence":11803,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6eb40f63-c9fc-4f04-8189-019b86f820ae, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:39.747Z","sequence":11804,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:39.747Z","sequence":11805,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006C4] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:39.753Z","sequence":11806,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:39.753Z","sequence":11807,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:39.759Z","sequence":11808,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b28e7af4-b2de-45ad-a78d-57b1f8949a8f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:40.967Z","sequence":11809,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:40.967Z","sequence":11810,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001EA] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:40.973Z","sequence":11811,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:40.973Z","sequence":11812,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:40.976Z","sequence":11813,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-107b2b99-a1d0-4263-a544-4ae7ebf718ef, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:41.002Z","sequence":11814,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:41.002Z","sequence":11815,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001EA] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:41.007Z","sequence":11816,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:41.007Z","sequence":11817,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:41.011Z","sequence":11818,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-60ff9487-10f3-4ad0-b026-215c3586afa2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:42.291Z","sequence":11819,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:42.292Z","sequence":11820,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019D9] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:42.313Z","sequence":11821,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:42.313Z","sequence":11822,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:42.327Z","sequence":11823,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-14fce4fb-6741-4f7e-9168-48b68a5497d8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:43.361Z","sequence":11824,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:43.361Z","sequence":11825,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019C9] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:43.366Z","sequence":11826,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:43.366Z","sequence":11827,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:43.371Z","sequence":11828,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-02812fe7-ea2d-4f9c-96dd-724468e6a381, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:43.639Z","sequence":11829,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:43.639Z","sequence":11830,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:43.65Z","sequence":11831,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-075c7325-90e6-483c-ac53-7007b69a6686, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:47.412Z","sequence":11832,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:47.413Z","sequence":11833,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB100052B] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:47.418Z","sequence":11834,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:47.418Z","sequence":11835,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:47.421Z","sequence":11836,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-19afd889-2b42-4d4a-b8a8-2ed362b6acf3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:51.16Z","sequence":11837,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:51.16Z","sequence":11838,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 70B3D57BB1001262] for gateway [gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:51.167Z","sequence":11839,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:51.167Z","sequence":11840,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:51.171Z","sequence":11841,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-592aa7fc-b4b6-4c33-98ee-5c71e2b25f30, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:52.925Z","sequence":11842,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:52.925Z","sequence":11843,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10009CD] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:52.945Z","sequence":11844,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:52.945Z","sequence":11845,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:52.951Z","sequence":11846,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b669d1cf-13e9-48d9-901f-6a7c32abf91a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:54.172Z","sequence":11847,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af] wants to open a link [address: Source{address='registration/repsol/30f7cd8b-0af1-4468-98df-5742a58ac5da', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:54.172Z","sequence":11848,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-21]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:54.172Z","sequence":11849,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@646af408] for replies to [registration/repsol/30f7cd8b-0af1-4468-98df-5742a58ac5da]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:54.174Z","sequence":11850,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af] wants to open a link [address: Target{address='registration/repsol', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:54.174Z","sequence":11851,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-22]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:54.174Z","sequence":11852,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:54.176Z","sequence":11853,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/repsol:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:54.177Z","sequence":11854,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: repsol, device-id: 0008004A37FF]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:54.183Z","sequence":11855,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-25e2ca8e-7e74-40f1-8600-87f4f011a93d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:54.187Z","sequence":11856,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:54.187Z","sequence":11857,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: repsol]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:03:54.196Z","sequence":11858,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-74b5eb5e-81df-4311-bb96-5a5ec6b71d17, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:00.575Z","sequence":11859,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:00.575Z","sequence":11860,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BC5] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:00.581Z","sequence":11861,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:00.581Z","sequence":11862,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:00.588Z","sequence":11863,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7279716b-ae5d-4b2d-a9f2-ddaac5650124, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:04.184Z","sequence":11864,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191030]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"41d64a714a1932f8","parentId":"52ee6311ef13c49d","traceId":"0000000000000000b31d63c9b8c9a3cf","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:04.202Z","sequence":11865,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191030, resource-version: 7f50ff0e-d8fc-4543-91e4-d00ca8d28356]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"41d64a714a1932f8","parentId":"52ee6311ef13c49d","traceId":"0000000000000000b31d63c9b8c9a3cf","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:04.209Z","sequence":11866,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191030, resource-version: 8ac711b6-2dd2-4f59-8bec-31310bdc16c2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"41d64a714a1932f8","parentId":"52ee6311ef13c49d","traceId":"0000000000000000b31d63c9b8c9a3cf","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:04.213Z","sequence":11867,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191030]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"03187fbd5102c748","parentId":"eef340cb76ef20dc","traceId":"0000000000000000b31d63c9b8c9a3cf","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:04.325Z","sequence":11868,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191030]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"03187fbd5102c748","parentId":"eef340cb76ef20dc","traceId":"0000000000000000b31d63c9b8c9a3cf","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:04.957Z","sequence":11869,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFF73ABA7D46584]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6e3ec1282eefb287","parentId":"2fe863a8385148a9","traceId":"0000000000000000540605a6c17d4d84","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:04.983Z","sequence":11870,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFF73ABA7D46584, resource-version: ce472f2c-10cb-415f-a7b1-e005be6275d9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6e3ec1282eefb287","parentId":"2fe863a8385148a9","traceId":"0000000000000000540605a6c17d4d84","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:04.99Z","sequence":11871,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFF73ABA7D46584, resource-version: f8b75078-a65b-4b0b-8e32-633c8604c3bf]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6e3ec1282eefb287","parentId":"2fe863a8385148a9","traceId":"0000000000000000540605a6c17d4d84","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:05.484Z","sequence":11872,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:05.484Z","sequence":11873,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001EF] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:05.49Z","sequence":11874,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:05.49Z","sequence":11875,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:05.493Z","sequence":11876,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-bfff31ac-8849-48db-9bab-24181bc8505a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:05.533Z","sequence":11877,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:05.533Z","sequence":11878,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001EF] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:05.552Z","sequence":11879,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:05.553Z","sequence":11880,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:05.561Z","sequence":11881,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0a3e712f-8d08-4d89-99ec-b9fb9dd5a976, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:06.145Z","sequence":11882,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:06.145Z","sequence":11883,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191030]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:06.155Z","sequence":11884,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-6b70db9e-a2ad-4d87-a68a-fb9d1bd10860, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:06.281Z","sequence":11885,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:06.282Z","sequence":11886,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFF73ABA7D46584] for gateway [gateway_integrationtest_network_191030]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:06.282Z","sequence":11887,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:06.282Z","sequence":11888,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191030]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:06.288Z","sequence":11889,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-09fff601-4216-4ac0-a1ba-42da511a3957, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:06.288Z","sequence":11890,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:06.288Z","sequence":11891,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:06.747Z","sequence":11892,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-61c74b26-ddb9-4179-b237-1325d817187e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:07.781Z","sequence":11893,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:07.781Z","sequence":11894,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019D1] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:07.797Z","sequence":11895,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:07.797Z","sequence":11896,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:07.809Z","sequence":11897,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-262e5af6-e344-42cb-ba09-c911c73195d7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:09.425Z","sequence":11898,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:09.425Z","sequence":11899,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AC3] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:09.493Z","sequence":11900,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:09.493Z","sequence":11901,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:09.521Z","sequence":11902,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-097f16cf-0427-4c40-82fb-a6a14a5d9c41, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:10.429Z","sequence":11903,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:10.429Z","sequence":11904,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BBE] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:10.453Z","sequence":11905,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:10.454Z","sequence":11906,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:10.469Z","sequence":11907,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-858c41ff-8779-4a29-b386-8ccee674b2a8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:11.231Z","sequence":11908,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:11.232Z","sequence":11909,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000218] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:11.256Z","sequence":11910,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:11.256Z","sequence":11911,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:11.265Z","sequence":11912,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:11.266Z","sequence":11913,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000218] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:11.267Z","sequence":11914,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8507af4e-c347-401f-b71e-3b96a3d3fb4c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:11.298Z","sequence":11915,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:11.298Z","sequence":11916,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:11.305Z","sequence":11917,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-64a64295-43b9-4ef6-b7db-01eab4e310c1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:13.218Z","sequence":11918,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:13.218Z","sequence":11919,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006C8] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:13.224Z","sequence":11920,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:13.224Z","sequence":11921,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:13.231Z","sequence":11922,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2d876683-1ad8-4266-be35-38c656e2188a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:14.075Z","sequence":11923,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:14.076Z","sequence":11924,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 0008004B51D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:14.083Z","sequence":11925,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8bb2812b-9923-4217-92c0-5e2bc4064304, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:14.086Z","sequence":11926,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:14.086Z","sequence":11927,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: dow]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:14.089Z","sequence":11928,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-04bf233c-1cff-407d-8287-2388b8e67c97, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:20.305Z","sequence":11929,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:20.305Z","sequence":11930,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AD8] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:20.318Z","sequence":11931,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:20.318Z","sequence":11932,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:20.327Z","sequence":11933,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-03cf02a4-adb8-4199-8aee-3f34243e9c2e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:21.788Z","sequence":11934,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFF73ABA7D46584]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"45241b24d515781c","parentId":"fd70d6bbc1e385cd","traceId":"000000000000000055ce25ed5d2f70b6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:21.81Z","sequence":11935,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFF73ABA7D46584]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"45241b24d515781c","parentId":"fd70d6bbc1e385cd","traceId":"000000000000000055ce25ed5d2f70b6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:22.337Z","sequence":11936,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191030]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e205198dcf9a310f","parentId":"3f18f92391078945","traceId":"00000000000000009e4febc2f51f998d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:22.355Z","sequence":11937,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191030]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e205198dcf9a310f","parentId":"3f18f92391078945","traceId":"00000000000000009e4febc2f51f998d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:22.902Z","sequence":11938,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:22.902Z","sequence":11939,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BEC] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:22.914Z","sequence":11940,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:22.914Z","sequence":11941,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:22.92Z","sequence":11942,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ba79309b-8584-4274-9c5c-1e030bb0a7d7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:23.012Z","sequence":11943,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:23.013Z","sequence":11944,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019BE] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:23.018Z","sequence":11945,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:23.018Z","sequence":11946,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:23.024Z","sequence":11947,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7b95cbf4-db6d-4a4e-8085-608163cd0696, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:23.141Z","sequence":11948,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0FEA32930D57]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e5beeaecfbdcb136","parentId":"36ce650848371801","traceId":"00000000000000009e11434b9188a32d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:23.157Z","sequence":11949,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0FEA32930D57, resource-version: bb986c85-f36c-42d0-9cd5-10fded6d2fba]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e5beeaecfbdcb136","parentId":"36ce650848371801","traceId":"00000000000000009e11434b9188a32d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:23.163Z","sequence":11950,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0FEA32930D57, resource-version: d168942a-1ff4-47cd-8f57-49a57931b290]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e5beeaecfbdcb136","parentId":"36ce650848371801","traceId":"00000000000000009e11434b9188a32d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:23.169Z","sequence":11951,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 0FEA32930D57]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c6185629e9f5aa8b","parentId":"461f71458cbbe4ce","traceId":"00000000000000009e11434b9188a32d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:23.3Z","sequence":11952,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 0FEA32930D57]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c6185629e9f5aa8b","parentId":"461f71458cbbe4ce","traceId":"00000000000000009e11434b9188a32d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:23.977Z","sequence":11953,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:23.977Z","sequence":11954,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 70B3D57BB1001233] for gateway [gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:23.986Z","sequence":11955,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:23.986Z","sequence":11956,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006BE] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:23.987Z","sequence":11957,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:23.987Z","sequence":11958,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:23.993Z","sequence":11959,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8b476a06-7fe2-4e01-9895-09ee1c796909, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:23.993Z","sequence":11960,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:23.993Z","sequence":11961,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:24.013Z","sequence":11962,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ff58723d-3b30-451b-b05d-e80aef3a1e33, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:24.125Z","sequence":11963,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF4EBC5AD1F87B3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e9b84ee6edc58879","parentId":"969698e0c4692172","traceId":"000000000000000044a6ca7b24992814","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:24.144Z","sequence":11964,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF4EBC5AD1F87B3, resource-version: b5e8017b-b8d5-4200-aa2f-c8e5bfff35dc]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e9b84ee6edc58879","parentId":"969698e0c4692172","traceId":"000000000000000044a6ca7b24992814","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:24.151Z","sequence":11965,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF4EBC5AD1F87B3, resource-version: f18f8489-a5e0-4014-8f4f-755c6aa01607]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e9b84ee6edc58879","parentId":"969698e0c4692172","traceId":"000000000000000044a6ca7b24992814","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:24.251Z","sequence":11966,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"retrieving device [tenant: dow, device-id: 70B3D57BB1001233]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"700d3f34917f66b0","parentId":"f16a29e00a552492","traceId":"c5ee80dcfe38b82296b13ca32484a052","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:25.296Z","sequence":11967,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:25.297Z","sequence":11968,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-0FEA32930D57]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:25.316Z","sequence":11969,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-3bfded90-e323-4006-99c8-7b0559fa2e03, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:25.448Z","sequence":11970,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:25.448Z","sequence":11971,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0FEA32930D57]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:25.457Z","sequence":11972,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4cbd737e-9101-48b0-93e6-b9a8f402bbd3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:25.465Z","sequence":11973,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:25.465Z","sequence":11974,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF4EBC5AD1F87B3] for gateway [0FEA32930D57]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:25.473Z","sequence":11975,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:25.473Z","sequence":11976,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:25.881Z","sequence":11977,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0f936f43-97e7-4513-a168-8e0f5003f36f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:32.81Z","sequence":11978,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:32.81Z","sequence":11979,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000208] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:32.818Z","sequence":11980,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:32.819Z","sequence":11981,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:32.822Z","sequence":11982,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-28aa29c6-b7e3-4334-b4ac-5a0da3c1109b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:32.863Z","sequence":11983,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:32.863Z","sequence":11984,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000208] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:32.868Z","sequence":11985,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:32.868Z","sequence":11986,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:32.873Z","sequence":11987,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9059b4a4-e6ae-4baf-9db1-c0442eef7cf7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:35.292Z","sequence":11988,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:35.292Z","sequence":11989,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019D4] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:35.298Z","sequence":11990,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:35.298Z","sequence":11991,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:35.305Z","sequence":11992,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9194dee8-e3f1-41ee-a7ee-3696fdbc0903, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:35.993Z","sequence":11993,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/terega:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:35.993Z","sequence":11994,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: terega, device-id: 3938383700410024] for gateway [gateway_terega_network_27]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:36.005Z","sequence":11995,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_terega\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:36.005Z","sequence":11996,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_terega\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:36.008Z","sequence":11997,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7eb3b09e-b696-4616-9ffb-7eb098227271, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:37.367Z","sequence":11998,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF4EBC5AD1F87B3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1bfff84811518f02","parentId":"6541d63325472d31","traceId":"00000000000000002ecfc9437c8da0e7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:37.384Z","sequence":11999,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF4EBC5AD1F87B3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1bfff84811518f02","parentId":"6541d63325472d31","traceId":"00000000000000002ecfc9437c8da0e7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:37.585Z","sequence":12000,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:37.585Z","sequence":12001,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10007BA] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:37.59Z","sequence":12002,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:37.59Z","sequence":12003,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:37.594Z","sequence":12004,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-75fdeb54-eb49-452b-91c9-fc2a054187a2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:38.165Z","sequence":12005,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0FEA32930D57]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"615a0def04977768","parentId":"8799e38f9d88ee69","traceId":"00000000000000005c602f1e3d2f71a5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:38.181Z","sequence":12006,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0FEA32930D57]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"615a0def04977768","parentId":"8799e38f9d88ee69","traceId":"00000000000000005c602f1e3d2f71a5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:41.459Z","sequence":12007,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:41.46Z","sequence":12008,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019B9] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:41.466Z","sequence":12009,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:41.466Z","sequence":12010,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:41.473Z","sequence":12011,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ee8173bc-2a4f-45c6-ba3a-d13eb42651a3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:45.142Z","sequence":12012,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:45.142Z","sequence":12013,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006E2] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:45.153Z","sequence":12014,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.8.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:45.153Z","sequence":12015,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:45.159Z","sequence":12016,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7693d82b-0b1d-4315-bdea-8bd8f08e1ee0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:49.184Z","sequence":12017,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:49.185Z","sequence":12018,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001F3] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:49.19Z","sequence":12019,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:49.191Z","sequence":12020,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:49.194Z","sequence":12021,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f361603a-0575-43a6-8695-dc7b8ea4c377, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:49.241Z","sequence":12022,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:49.241Z","sequence":12023,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001F3] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:49.247Z","sequence":12024,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:49.247Z","sequence":12025,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:49.25Z","sequence":12026,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-47f5f77c-ecfa-48fe-9558-a2bd633e37c7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:51.704Z","sequence":12027,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/conditionall:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:51.705Z","sequence":12028,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: conditionall, device-id: 0008004B512D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:51.721Z","sequence":12029,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f364348d-7702-49f6-b49c-adbd475a9588, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:51.724Z","sequence":12030,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:51.725Z","sequence":12031,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: conditionall]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:51.729Z","sequence":12032,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-0f0ae56c-1b14-4c13-8e49-7a9b47a23c61, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:52.747Z","sequence":12033,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/repsol:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:52.747Z","sequence":12034,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: repsol, device-id: 70B3D57BB1000187] for gateway [0008004A37FF]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:52.761Z","sequence":12035,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:0.4.1\"\n },\n \"viaGroups\" : [ \"gateways_repsol\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:52.761Z","sequence":12036,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_repsol\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:52.769Z","sequence":12037,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-25a7d0c9-42a9-4404-a74b-b888f610e1d2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:56.692Z","sequence":12038,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:56.692Z","sequence":12039,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C20] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:56.697Z","sequence":12040,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:56.698Z","sequence":12041,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:56.704Z","sequence":12042,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f15121cf-9b2e-42bb-b349-9d0086ba321f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:57.285Z","sequence":12043,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:57.285Z","sequence":12044,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:57.326Z","sequence":12045,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-581272a4-ea2e-4290-b3b9-066c9fb8cad3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:58.152Z","sequence":12046,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:58.156Z","sequence":12047,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C34] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:58.165Z","sequence":12048,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:58.165Z","sequence":12049,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:04:58.172Z","sequence":12050,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3df57232-e031-4f6e-8f57-3000a95f7ec6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:05:07.666Z","sequence":12051,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:05:07.666Z","sequence":12052,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006DC] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:05:07.69Z","sequence":12053,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:05:07.69Z","sequence":12054,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:05:07.697Z","sequence":12055,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-209958d7-5b7b-4a20-b2ae-b04414bb6527, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:05:17.109Z","sequence":12056,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:05:17.109Z","sequence":12057,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BC3] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:05:17.109Z","sequence":12058,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:05:17.109Z","sequence":12059,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:05:17.121Z","sequence":12060,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-97d1bc18-20f6-4f14-bc54-a67a0243b886, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:05:17.121Z","sequence":12061,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:05:17.121Z","sequence":12062,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:05:17.127Z","sequence":12063,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-54aaa8db-528b-40f1-9f88-67c653a48fe4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:05:27.261Z","sequence":12064,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:05:27.261Z","sequence":12065,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BB84C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:05:27.267Z","sequence":12066,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-447135ad-44fb-415b-b532-be35de081f56, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:05:28.944Z","sequence":12067,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:05:28.944Z","sequence":12068,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 70B3D57BB100127E] for gateway [gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:05:28.953Z","sequence":12069,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:05:28.953Z","sequence":12070,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:05:28.957Z","sequence":12071,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-aa0157b6-aa26-48b7-ae87-080354b31f16, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:05:29.385Z","sequence":12072,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:05:29.385Z","sequence":12073,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 0008004B5135]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:05:29.392Z","sequence":12074,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-122d56e3-8974-4613-8ac1-029d5871fa18, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:05:29.395Z","sequence":12075,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:05:29.395Z","sequence":12076,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: ineos]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:05:29.398Z","sequence":12077,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-fed3f451-09fe-465a-8fe4-51d69cb3a909, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:05:32.042Z","sequence":12078,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:05:32.042Z","sequence":12079,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oci]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:05:32.048Z","sequence":12080,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-42052145-5a75-4634-8239-1c262db7e4f1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:05:32.05Z","sequence":12081,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:05:32.05Z","sequence":12082,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001E9] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:05:32.058Z","sequence":12083,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:05:32.058Z","sequence":12084,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:05:32.058Z","sequence":12085,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:05:32.058Z","sequence":12086,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001E9] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:05:32.061Z","sequence":12087,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1cc93e45-47de-43db-a0c3-92ec9a368430, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:05:32.063Z","sequence":12088,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:05:32.063Z","sequence":12089,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:05:32.066Z","sequence":12090,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-02a9c64b-f08f-40ad-821e-298a1f3b9028, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:05:33.463Z","sequence":12091,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:05:33.463Z","sequence":12092,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BBD1B]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:05:33.469Z","sequence":12093,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-159d30cb-4366-45d6-bcc6-ba9cb5eb6f28, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:05:37.502Z","sequence":12094,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:05:37.502Z","sequence":12095,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: shell]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:05:37.505Z","sequence":12096,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-d074b969-f9eb-4a75-b90c-ede272df5141, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:05:37.507Z","sequence":12097,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/shell:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:05:37.507Z","sequence":12098,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: shell, type: hashed-password, auth-id: auth-gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:05:37.542Z","sequence":12099,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-620c5b27-33c7-4758-b103-82f01f8285f9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:05:37.668Z","sequence":12100,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:05:37.668Z","sequence":12101,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BB8] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:05:37.673Z","sequence":12102,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:05:37.673Z","sequence":12103,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:05:37.68Z","sequence":12104,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ff6c8081-0c4d-48cf-afe7-cb4c940763f4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:05:39.183Z","sequence":12105,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/arkema:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:05:39.183Z","sequence":12106,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: arkema, device-id: 0008004AE119]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:05:39.196Z","sequence":12107,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e14fc370-2904-4039-8ecd-3b191bc68bf6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:05:39.199Z","sequence":12108,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:05:39.199Z","sequence":12109,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: arkema]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:05:39.206Z","sequence":12110,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-1b098753-8964-4232-98ee-8bf4ca24630d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:05:40.196Z","sequence":12111,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:05:40.196Z","sequence":12112,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000ADD] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:05:40.208Z","sequence":12113,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:05:40.208Z","sequence":12114,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:05:40.215Z","sequence":12115,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-140db8e2-3c4f-4dde-ae54-c5affade0a96, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:05:44.889Z","sequence":12116,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:05:44.889Z","sequence":12117,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB1000A7E] for gateway [0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:05:44.922Z","sequence":12118,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:05:44.922Z","sequence":12119,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:05:44.94Z","sequence":12120,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d01245c6-b7b4-46c5-bb13-b3b633e1bc02, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:05:47.149Z","sequence":12121,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:05:47.149Z","sequence":12122,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000760] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:05:47.163Z","sequence":12123,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:05:47.164Z","sequence":12124,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:05:47.17Z","sequence":12125,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0abb4ca8-8625-4200-b629-2194d48683fa, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:05:50.703Z","sequence":12126,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:05:50.704Z","sequence":12127,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000202] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:05:50.714Z","sequence":12128,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:05:50.714Z","sequence":12129,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:05:50.718Z","sequence":12130,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-208eb3a1-fb4d-4522-aaae-8d3279717694, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:05:50.863Z","sequence":12131,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:05:50.863Z","sequence":12132,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000202] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:05:50.872Z","sequence":12133,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:05:50.872Z","sequence":12134,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:05:50.876Z","sequence":12135,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9310d3d2-6df1-4373-b64f-5fd2c7ec03dd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:05:56.015Z","sequence":12136,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:05:56.015Z","sequence":12137,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB1000A66] for gateway [0008004B5135]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:05:56.037Z","sequence":12138,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:05:56.038Z","sequence":12139,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:05:56.088Z","sequence":12140,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3bde8ef7-fcc6-450f-a945-2dfb29a7b2da, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:05:58.844Z","sequence":12141,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:05:58.844Z","sequence":12142,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100016C] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:05:58.861Z","sequence":12143,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:05:58.861Z","sequence":12144,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100016C] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:05:58.898Z","sequence":12145,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:05:58.898Z","sequence":12146,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:05:58.898Z","sequence":12147,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:05:58.899Z","sequence":12148,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:05:58.902Z","sequence":12149,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-568910db-3f21-41e7-87e0-0dd98334d9ea, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:05:58.903Z","sequence":12150,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8a43bf11-6560-404e-962e-d1a6131aa455, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:00.017Z","sequence":12151,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:00.017Z","sequence":12152,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BBD1C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:00.065Z","sequence":12153,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ebc825d8-2826-4ed4-b993-b2f73f83420d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:00.791Z","sequence":12154,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:00.792Z","sequence":12155,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10013E1] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:00.843Z","sequence":12156,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:00.843Z","sequence":12157,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:00.897Z","sequence":12158,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3392cbc9-54bc-41cc-992a-12b085dd5e05, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:02.977Z","sequence":12159,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:02.977Z","sequence":12160,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: lanxess]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:02.983Z","sequence":12161,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-691d16bd-fd41-4359-9f3d-5e891b1a916d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:03.717Z","sequence":12162,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:03.717Z","sequence":12163,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006D1] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:03.752Z","sequence":12164,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:03.753Z","sequence":12165,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:03.788Z","sequence":12166,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-62b05ca9-4aba-4bdc-a170-cf6eeb5cb6ae, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:04.376Z","sequence":12167,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191032]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4413ddf51d1bd406","parentId":"13ce7f6b3f4c317f","traceId":"0000000000000000588d3d5e83743a64","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:04.446Z","sequence":12168,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191032, resource-version: 0842cf7e-ea8f-41b6-aa23-854c5afcbc82]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4413ddf51d1bd406","parentId":"13ce7f6b3f4c317f","traceId":"0000000000000000588d3d5e83743a64","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:04.458Z","sequence":12169,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191032, resource-version: 440da933-82d6-493d-991b-f8767e2ab0fb]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4413ddf51d1bd406","parentId":"13ce7f6b3f4c317f","traceId":"0000000000000000588d3d5e83743a64","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:04.462Z","sequence":12170,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191032]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5392ccb56ebd8a0b","parentId":"e471574526dfc5e5","traceId":"0000000000000000588d3d5e83743a64","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:04.685Z","sequence":12171,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191032]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5392ccb56ebd8a0b","parentId":"e471574526dfc5e5","traceId":"0000000000000000588d3d5e83743a64","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:06.008Z","sequence":12172,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFA892965452C6C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"586a7e863190b5af","parentId":"5a073eabb23a15a0","traceId":"000000000000000030c60140560efe62","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:06.035Z","sequence":12173,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFA892965452C6C, resource-version: 2ad829fd-505f-45f9-a0fb-7f64d435ccb8]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"586a7e863190b5af","parentId":"5a073eabb23a15a0","traceId":"000000000000000030c60140560efe62","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:06.043Z","sequence":12174,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFA892965452C6C, resource-version: 89356ee7-6b4e-4ec9-8df1-34671254c772]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"586a7e863190b5af","parentId":"5a073eabb23a15a0","traceId":"000000000000000030c60140560efe62","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:07.269Z","sequence":12175,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:07.27Z","sequence":12176,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:07.275Z","sequence":12177,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-f2a15cdc-6b9f-4fb3-b037-47f298275b49, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:07.277Z","sequence":12178,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:07.278Z","sequence":12179,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191032]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:07.288Z","sequence":12180,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-d370e1db-d19f-418c-93ff-fdf20b924adb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:07.41Z","sequence":12181,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:07.41Z","sequence":12182,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFA892965452C6C] for gateway [gateway_integrationtest_network_191032]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:07.411Z","sequence":12183,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:07.411Z","sequence":12184,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191032]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:07.418Z","sequence":12185,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-678f164d-ab73-4a8c-b2b2-35e3edd1518d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:07.418Z","sequence":12186,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:07.418Z","sequence":12187,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:07.782Z","sequence":12188,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d6a1d8da-0688-4637-af1d-47265f830333, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:14.279Z","sequence":12189,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:14.279Z","sequence":12190,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006B8] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:14.294Z","sequence":12191,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:14.294Z","sequence":12192,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:14.304Z","sequence":12193,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-867f3706-f7bf-4273-972b-0a9c469a9727, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:16.073Z","sequence":12194,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:16.073Z","sequence":12195,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006B3] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:16.081Z","sequence":12196,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:16.082Z","sequence":12197,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:16.089Z","sequence":12198,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-217f26da-5f9a-486d-9eb7-148434e541f4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:21.386Z","sequence":12199,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFA892965452C6C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"08a155f55fd530d2","parentId":"2cb87150298d87c1","traceId":"0000000000000000632165c5227ea0d7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:21.404Z","sequence":12200,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFA892965452C6C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"08a155f55fd530d2","parentId":"2cb87150298d87c1","traceId":"0000000000000000632165c5227ea0d7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:21.865Z","sequence":12201,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191032]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8bb62c1711a9bc07","parentId":"e45843d45f4fb489","traceId":"000000000000000009f071e8004a8e76","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:21.886Z","sequence":12202,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191032]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8bb62c1711a9bc07","parentId":"e45843d45f4fb489","traceId":"000000000000000009f071e8004a8e76","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:22.571Z","sequence":12203,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:22.571Z","sequence":12204,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001EC] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:22.576Z","sequence":12205,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:22.576Z","sequence":12206,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:22.579Z","sequence":12207,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-692b8077-51bb-4cf3-98f4-fa322137a1e0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:22.633Z","sequence":12208,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: F44D01C153D1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"caec6d0e31c2ea35","parentId":"1f0c0f8d6fde13bb","traceId":"00000000000000008d92067283f7b675","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:22.646Z","sequence":12209,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:22.646Z","sequence":12210,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001EC] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:22.649Z","sequence":12211,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: F44D01C153D1, resource-version: fc77108b-174d-4778-8421-630dad9c6929]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"caec6d0e31c2ea35","parentId":"1f0c0f8d6fde13bb","traceId":"00000000000000008d92067283f7b675","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:22.651Z","sequence":12212,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:22.651Z","sequence":12213,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:22.653Z","sequence":12214,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7bfcc356-61e9-4bfd-8741-dc6adbb75628, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:22.656Z","sequence":12215,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: F44D01C153D1, resource-version: 04b9398c-8e8d-4644-ae2b-a891cce000b7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"caec6d0e31c2ea35","parentId":"1f0c0f8d6fde13bb","traceId":"00000000000000008d92067283f7b675","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:22.66Z","sequence":12216,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: F44D01C153D1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bb516115ee2e0808","parentId":"eff50b491396a825","traceId":"00000000000000008d92067283f7b675","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:22.806Z","sequence":12217,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: F44D01C153D1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bb516115ee2e0808","parentId":"eff50b491396a825","traceId":"00000000000000008d92067283f7b675","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:24.397Z","sequence":12218,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF576464D268AFF]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c65927071a62b191","parentId":"6cba1d67ecbaaa87","traceId":"00000000000000007ec99d91424e4f67","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:24.418Z","sequence":12219,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF576464D268AFF, resource-version: 97858c74-4c81-410e-85f7-4d2228bce71d]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c65927071a62b191","parentId":"6cba1d67ecbaaa87","traceId":"00000000000000007ec99d91424e4f67","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:24.429Z","sequence":12220,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF576464D268AFF, resource-version: 8873e743-a86d-44c2-a239-e672153f9cfb]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c65927071a62b191","parentId":"6cba1d67ecbaaa87","traceId":"00000000000000007ec99d91424e4f67","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:24.575Z","sequence":12221,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:24.575Z","sequence":12222,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100057A] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:24.58Z","sequence":12223,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:24.58Z","sequence":12224,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:24.586Z","sequence":12225,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-45f9c0c3-6a82-4542-b80a-31e69e535c4a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:25.488Z","sequence":12226,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:25.488Z","sequence":12227,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:25.491Z","sequence":12228,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-e933a77d-6929-4c06-a533-abf9863c6511, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:25.494Z","sequence":12229,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:25.494Z","sequence":12230,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-F44D01C153D1]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:25.505Z","sequence":12231,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-2b200edc-793a-407f-a3f0-883c04bb2635, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:25.629Z","sequence":12232,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:25.629Z","sequence":12233,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: F44D01C153D1]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:25.635Z","sequence":12234,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8d732465-93c1-4160-b430-6106579dad2c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:25.639Z","sequence":12235,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:25.639Z","sequence":12236,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF576464D268AFF] for gateway [F44D01C153D1]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:25.644Z","sequence":12237,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:25.644Z","sequence":12238,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:25.82Z","sequence":12239,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2df4a05f-17ba-40bf-9982-63162559da25, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:28.928Z","sequence":12240,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:28.929Z","sequence":12241,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: dow]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:28.932Z","sequence":12242,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-af2d8cef-ae61-431d-806d-499769ea0b6e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:28.934Z","sequence":12243,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/dow:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:28.934Z","sequence":12244,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: dow, type: hashed-password, auth-id: auth-gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:28.945Z","sequence":12245,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-db951b56-fb4a-44c3-a673-a43961249405, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:29.282Z","sequence":12246,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:29.282Z","sequence":12247,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006C3] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:29.287Z","sequence":12248,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:29.287Z","sequence":12249,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:29.293Z","sequence":12250,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0d678621-c7ba-48df-88c6-f2e2ab7725dd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:34.537Z","sequence":12251,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:34.537Z","sequence":12252,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: chevronsgp]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:34.54Z","sequence":12253,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-2e4b1c5f-e750-4abf-9bf4-c8fb6b198312, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:34.542Z","sequence":12254,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Source{address='credentials/chevronsgp/94ca0481-353f-48df-87a2-4ce4d4095077', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:34.542Z","sequence":12255,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:34.542Z","sequence":12256,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@13b08729] for replies to [credentials/chevronsgp/94ca0481-353f-48df-87a2-4ce4d4095077]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:34.544Z","sequence":12257,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Target{address='credentials/chevronsgp', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:34.544Z","sequence":12258,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-11]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:34.544Z","sequence":12259,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:34.546Z","sequence":12260,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/chevronsgp:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:34.546Z","sequence":12261,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: chevronsgp, type: hashed-password, auth-id: auth-chevronsgp_42]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:34.558Z","sequence":12262,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-3bc89800-8749-490d-a8a7-c88d82bbdea1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:34.691Z","sequence":12263,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] wants to open a link [address: Source{address='registration/chevronsgp/810becb8-def0-42cb-b736-ba8262b2eca8', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:34.691Z","sequence":12264,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:34.691Z","sequence":12265,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@7f04ee09] for replies to [registration/chevronsgp/810becb8-def0-42cb-b736-ba8262b2eca8]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:34.694Z","sequence":12266,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] wants to open a link [address: Target{address='registration/chevronsgp', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:34.694Z","sequence":12267,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-11]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:34.694Z","sequence":12268,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:34.696Z","sequence":12269,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/chevronsgp:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:34.696Z","sequence":12270,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: chevronsgp, device-id: 70B3D57BB10008C8] for gateway [gateway_chevronsgp_network_42]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:34.696Z","sequence":12271,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/chevronsgp:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:34.697Z","sequence":12272,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: chevronsgp, device-id: gateway_chevronsgp_network_42]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:34.702Z","sequence":12273,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-976aca56-1e84-45d0-884d-3f0e762c3519, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:34.702Z","sequence":12274,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_chevronsgp\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:34.702Z","sequence":12275,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_chevronsgp\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:34.705Z","sequence":12276,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-de1748a7-b45c-40e5-94de-81ea2cf13b3a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:36.545Z","sequence":12277,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF576464D268AFF]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ca25a7af7398c627","parentId":"646e09810220ec0f","traceId":"0000000000000000e3f7c9d25fda24d3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:36.563Z","sequence":12278,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF576464D268AFF]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ca25a7af7398c627","parentId":"646e09810220ec0f","traceId":"0000000000000000e3f7c9d25fda24d3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:36.859Z","sequence":12279,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: F44D01C153D1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0c2976619ee9156c","parentId":"1349395e05b15a85","traceId":"000000000000000084c1c788739ab0fc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:36.88Z","sequence":12280,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: F44D01C153D1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0c2976619ee9156c","parentId":"1349395e05b15a85","traceId":"000000000000000084c1c788739ab0fc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:40.461Z","sequence":12281,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:40.461Z","sequence":12282,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: flint]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:40.465Z","sequence":12283,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-d0a7d67b-535b-4a03-9493-b30cd8a9ed36, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:40.467Z","sequence":12284,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/flint:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:40.467Z","sequence":12285,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: flint, type: hashed-password, auth-id: auth-flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:40.479Z","sequence":12286,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-4908d0df-f505-4403-954a-897711522280, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:40.601Z","sequence":12287,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:40.601Z","sequence":12288,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000849] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:40.607Z","sequence":12289,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:40.607Z","sequence":12290,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:40.611Z","sequence":12291,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-04162c73-9a08-4877-b0d5-3286eb52611b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:47.278Z","sequence":12292,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:47.278Z","sequence":12293,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006A4] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:47.284Z","sequence":12294,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:47.284Z","sequence":12295,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:47.29Z","sequence":12296,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-42389649-d673-427f-9bd4-c292b7a33595, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:52.607Z","sequence":12297,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:52.607Z","sequence":12298,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10018F6] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:52.614Z","sequence":12299,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:52.614Z","sequence":12300,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:52.632Z","sequence":12301,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-05596600-4f5c-4ed3-b783-66acd7ef13e9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:54.698Z","sequence":12302,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:54.699Z","sequence":12303,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10008B5] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:54.707Z","sequence":12304,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:54.707Z","sequence":12305,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:54.714Z","sequence":12306,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-26c9ad0b-d606-4b32-8507-c2706ca410d5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:56.715Z","sequence":12307,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:56.715Z","sequence":12308,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10018D4] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:56.723Z","sequence":12309,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:56.724Z","sequence":12310,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:06:56.729Z","sequence":12311,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-55368e7a-0547-4ce9-8b05-5a8e352aac77, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:07:00.945Z","sequence":12312,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:07:00.945Z","sequence":12313,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB1000A81] for gateway [0008004B5135]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:07:00.953Z","sequence":12314,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:07:00.953Z","sequence":12315,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:07:00.956Z","sequence":12316,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9d6a23fc-10d9-449f-860e-15cd189ee4b5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:07:02.924Z","sequence":12317,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:07:02.924Z","sequence":12318,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B8E] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:07:02.934Z","sequence":12319,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:07:02.935Z","sequence":12320,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:07:02.942Z","sequence":12321,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4ce6468e-5d0a-4594-b507-a9f5bf6163d4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:07:03.497Z","sequence":12322,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:07:03.497Z","sequence":12323,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000ACB] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:07:03.517Z","sequence":12324,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:07:03.517Z","sequence":12325,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:07:03.533Z","sequence":12326,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e1f021c1-3589-4d2a-b119-cea66643ae16, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:07:07.935Z","sequence":12327,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oiltanking:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:07:07.935Z","sequence":12328,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oiltanking, device-id: 0008004BB60F]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:07:07.941Z","sequence":12329,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-04a266f2-13f1-4873-ad30-1fa95ca39b26, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:07:07.944Z","sequence":12330,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:07:07.945Z","sequence":12331,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oiltanking]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:07:07.947Z","sequence":12332,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-d319cb71-064f-4473-8c1f-cbbebe8bb7f7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:07:12.187Z","sequence":12333,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:07:12.188Z","sequence":12334,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: rigstar]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:07:12.194Z","sequence":12335,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-9b728537-884c-44c7-b3de-62f3e85d49f0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:07:12.196Z","sequence":12336,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Source{address='credentials/rigstar/91151c44-aa3b-46b3-b802-3b33376a9bef', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:07:12.196Z","sequence":12337,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-12]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:07:12.196Z","sequence":12338,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@23e176e9] for replies to [credentials/rigstar/91151c44-aa3b-46b3-b802-3b33376a9bef]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:07:12.198Z","sequence":12339,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Target{address='credentials/rigstar', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:07:12.199Z","sequence":12340,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-13]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:07:12.199Z","sequence":12341,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:07:12.201Z","sequence":12342,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/rigstar:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:07:12.201Z","sequence":12343,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: rigstar, type: hashed-password, auth-id: auth-gateway_rigstar_network_38]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:07:12.242Z","sequence":12344,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-cedef867-d0d4-45fa-b74c-4f0c28e1554f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:07:12.363Z","sequence":12345,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] wants to open a link [address: Source{address='registration/rigstar/3e6f58e1-a92f-41f1-b881-e8b242ad173b', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:07:12.364Z","sequence":12346,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-12]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:07:12.364Z","sequence":12347,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@1da1de4b] for replies to [registration/rigstar/3e6f58e1-a92f-41f1-b881-e8b242ad173b]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:07:12.366Z","sequence":12348,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] wants to open a link [address: Target{address='registration/rigstar', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:07:12.367Z","sequence":12349,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-13]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:07:12.367Z","sequence":12350,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:07:12.372Z","sequence":12351,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/rigstar:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:07:12.372Z","sequence":12352,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: rigstar, device-id: 70B3D57BB1000961] for gateway [gateway_rigstar_network_38]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:07:12.373Z","sequence":12353,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/rigstar:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:07:12.373Z","sequence":12354,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: rigstar, device-id: gateway_rigstar_network_38]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:07:12.378Z","sequence":12355,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_rigstar\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:07:12.379Z","sequence":12356,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_rigstar\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:07:12.38Z","sequence":12357,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-080bb8db-0dc9-4f38-b56b-5d87182bf20e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:07:12.382Z","sequence":12358,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-23b65b3c-7677-429e-9f25-ec0c342e09cc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:07:12.825Z","sequence":12359,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:07:12.825Z","sequence":12360,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10018ED] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:07:12.842Z","sequence":12361,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:07:12.842Z","sequence":12362,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:07:12.849Z","sequence":12363,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-374ff462-eed6-4d86-bcf5-a1e52c2ad810, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:07:13.57Z","sequence":12364,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/conditionall:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:07:13.57Z","sequence":12365,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: conditionall, device-id: 70B3D57BB1000228] for gateway [0008004B512D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:07:13.618Z","sequence":12366,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_conditionall\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:07:13.618Z","sequence":12367,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_conditionall\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:07:13.634Z","sequence":12368,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b10015f8-a460-4601-ba0a-78a21609507f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:07:17.534Z","sequence":12369,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:07:17.535Z","sequence":12370,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10018E2] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:07:17.547Z","sequence":12371,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:07:17.548Z","sequence":12372,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:07:17.554Z","sequence":12373,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b91f62b0-995f-4681-b56b-56492893da25, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:07:19.397Z","sequence":12374,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:07:19.397Z","sequence":12375,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BD5] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:07:19.404Z","sequence":12376,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:07:19.405Z","sequence":12377,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:07:19.411Z","sequence":12378,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5a337d37-d78c-45f5-ae61-3766d326eb60, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:07:46.822Z","sequence":12379,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:07:46.822Z","sequence":12380,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10018F9] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:07:46.829Z","sequence":12381,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:07:46.829Z","sequence":12382,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:07:46.837Z","sequence":12383,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4669b7b2-74e2-44f3-bb3b-121062b97f1e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:07:52.066Z","sequence":12384,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/aloxy:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:07:52.067Z","sequence":12385,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: aloxy, device-id: 0008004A8F68]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:07:52.072Z","sequence":12386,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2c5aea83-95d4-4474-b545-8a5295d5d192, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:07:52.076Z","sequence":12387,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:07:52.076Z","sequence":12388,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: aloxy]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:07:52.08Z","sequence":12389,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-102719d0-4f8e-419f-94cd-dda6d12a6c62, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:07:52.908Z","sequence":12390,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:07:52.908Z","sequence":12391,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10018D2] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:07:52.914Z","sequence":12392,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:07:52.914Z","sequence":12393,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:07:52.92Z","sequence":12394,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d068cb31-5324-43f1-9dc3-e4e3532af1dd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:07:54.286Z","sequence":12395,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:07:54.286Z","sequence":12396,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100016F] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:07:54.291Z","sequence":12397,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:07:54.292Z","sequence":12398,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:07:54.298Z","sequence":12399,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8530a186-8f8d-4d9e-b116-6b8881873693, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:07:54.419Z","sequence":12400,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:07:54.419Z","sequence":12401,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100016F] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:07:54.425Z","sequence":12402,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:07:54.425Z","sequence":12403,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:07:54.429Z","sequence":12404,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f1a4ca0a-8b16-4bd8-846f-92be8784842e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:07:58.786Z","sequence":12405,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:07:58.786Z","sequence":12406,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000809] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:07:58.787Z","sequence":12407,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:07:58.787Z","sequence":12408,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:07:58.793Z","sequence":12409,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5650e722-5964-4f71-9f0b-362e668d5d7a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:07:58.794Z","sequence":12410,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:07:58.794Z","sequence":12411,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:07:58.798Z","sequence":12412,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-23b167a2-502d-4afa-af0f-e5cf4fc451c6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:01.933Z","sequence":12413,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:01.933Z","sequence":12414,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BB613]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:01.94Z","sequence":12415,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-38deb42a-2d65-4649-8100-c8615752d06e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:03.201Z","sequence":12416,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/chevronsgp:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:03.202Z","sequence":12417,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: chevronsgp, device-id: 70B3D57BB10008C9] for gateway [gateway_chevronsgp_network_42]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:03.208Z","sequence":12418,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_chevronsgp\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:03.209Z","sequence":12419,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_chevronsgp\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:03.212Z","sequence":12420,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b7fd5e37-5188-4f50-8106-af364d633404, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:04.397Z","sequence":12421,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191034]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4bfda6f8d4d9edc5","parentId":"2e24d09d130d36e3","traceId":"000000000000000013666e0ba56b4b44","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:04.415Z","sequence":12422,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191034, resource-version: 9cb58ceb-4ce6-4331-bf02-07cd5db42df9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4bfda6f8d4d9edc5","parentId":"2e24d09d130d36e3","traceId":"000000000000000013666e0ba56b4b44","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:04.422Z","sequence":12423,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191034, resource-version: c396e4ee-8c26-49bb-962e-9d8267ffd9ae]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4bfda6f8d4d9edc5","parentId":"2e24d09d130d36e3","traceId":"000000000000000013666e0ba56b4b44","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:04.425Z","sequence":12424,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191034]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"51394b0ec10adaa4","parentId":"082e057be9033791","traceId":"000000000000000013666e0ba56b4b44","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:04.647Z","sequence":12425,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191034]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"51394b0ec10adaa4","parentId":"082e057be9033791","traceId":"000000000000000013666e0ba56b4b44","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:05.681Z","sequence":12426,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFC60232D355EBD]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0e455da3f4ac1880","parentId":"47e4257ad906d01b","traceId":"000000000000000058c635fa8af3e754","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:05.7Z","sequence":12427,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFC60232D355EBD, resource-version: a5d0aed4-e94c-40af-b74d-47090253e7c8]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0e455da3f4ac1880","parentId":"47e4257ad906d01b","traceId":"000000000000000058c635fa8af3e754","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:05.709Z","sequence":12428,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFC60232D355EBD, resource-version: a860d4ff-8555-4b25-930f-bb224514a39f]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0e455da3f4ac1880","parentId":"47e4257ad906d01b","traceId":"000000000000000058c635fa8af3e754","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:06.802Z","sequence":12429,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:06.802Z","sequence":12430,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191034]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:06.815Z","sequence":12431,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-404dc261-000d-488f-acad-23ac494cad4d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:06.945Z","sequence":12432,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:06.945Z","sequence":12433,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFC60232D355EBD] for gateway [gateway_integrationtest_network_191034]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:06.946Z","sequence":12434,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:06.946Z","sequence":12435,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191034]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:06.951Z","sequence":12436,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:06.951Z","sequence":12437,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:06.952Z","sequence":12438,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7797a10d-1d2c-46e7-ab57-527699b70607, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:07.31Z","sequence":12439,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5e29de50-38f5-4a7b-8b48-856a4dd7b15d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:10.397Z","sequence":12440,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:10.397Z","sequence":12441,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000793] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:10.404Z","sequence":12442,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:10.405Z","sequence":12443,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:10.412Z","sequence":12444,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4d9ba515-e5cd-45d3-a509-63ee85bcbcbe, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:11.772Z","sequence":12445,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:11.772Z","sequence":12446,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006C9] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:11.779Z","sequence":12447,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:11.779Z","sequence":12448,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:11.789Z","sequence":12449,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-211ebbd4-9cfd-4c5b-922a-37eeedd9db3a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:14.824Z","sequence":12450,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:14.824Z","sequence":12451,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000204] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:14.832Z","sequence":12452,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:14.833Z","sequence":12453,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:14.835Z","sequence":12454,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-30f9c82c-a8fc-4753-bc07-b4b2186cf0bc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:14.879Z","sequence":12455,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:14.879Z","sequence":12456,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000204] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:14.891Z","sequence":12457,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:14.891Z","sequence":12458,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:14.897Z","sequence":12459,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e83779d8-cea8-47e4-a527-66bc0f43fb26, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:16.291Z","sequence":12460,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:16.292Z","sequence":12461,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10007A2] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:16.299Z","sequence":12462,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:16.3Z","sequence":12463,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:16.305Z","sequence":12464,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-32c2ffb6-8a5f-4ebe-8144-959049c73072, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:17.096Z","sequence":12465,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:17.096Z","sequence":12466,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000838] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:17.101Z","sequence":12467,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/acta:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:17.101Z","sequence":12468,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: acta, device-id: 0008004AAAA3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:17.121Z","sequence":12469,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.8.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:17.121Z","sequence":12470,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:17.131Z","sequence":12471,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-98c2bf2e-bef1-46be-8559-864fbd931069, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:17.142Z","sequence":12472,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2812e2ed-ae4b-4e26-86ff-66fc78f8517b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:17.149Z","sequence":12473,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:17.149Z","sequence":12474,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: acta]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:17.158Z","sequence":12475,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-8d181543-b924-4c6d-ac16-4c61611e4dc6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:20.606Z","sequence":12476,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFC60232D355EBD]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3a187f9dfaf9cbad","parentId":"a15328e07c76db39","traceId":"0000000000000000c1ed1153a82f22f0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:20.628Z","sequence":12477,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFC60232D355EBD]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3a187f9dfaf9cbad","parentId":"a15328e07c76db39","traceId":"0000000000000000c1ed1153a82f22f0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:20.743Z","sequence":12478,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191034]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b1e6a7340a9a9daf","parentId":"6a53453bfbf811da","traceId":"00000000000000008b3ab7da6b870faf","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:20.758Z","sequence":12479,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191034]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b1e6a7340a9a9daf","parentId":"6a53453bfbf811da","traceId":"00000000000000008b3ab7da6b870faf","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:21.168Z","sequence":12480,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0D0A9DC85B68]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2c6b2275bf33ad56","parentId":"5d834e25d8d3d569","traceId":"0000000000000000826f041fc0c31353","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:21.185Z","sequence":12481,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0D0A9DC85B68, resource-version: a04a03ec-7749-4e6e-aec7-aa011af207cb]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2c6b2275bf33ad56","parentId":"5d834e25d8d3d569","traceId":"0000000000000000826f041fc0c31353","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:21.191Z","sequence":12482,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0D0A9DC85B68, resource-version: a6b18f19-22e2-4de4-a190-8f36a19c2bb8]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2c6b2275bf33ad56","parentId":"5d834e25d8d3d569","traceId":"0000000000000000826f041fc0c31353","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:21.195Z","sequence":12483,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 0D0A9DC85B68]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c7d45e14d317e053","parentId":"3b3fe700e46bcdd3","traceId":"0000000000000000826f041fc0c31353","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:21.323Z","sequence":12484,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 0D0A9DC85B68]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c7d45e14d317e053","parentId":"3b3fe700e46bcdd3","traceId":"0000000000000000826f041fc0c31353","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:21.693Z","sequence":12485,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFF6A229210990A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6d1830039efa7541","parentId":"361a4cd39548d59f","traceId":"0000000000000000717034ed5486279a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:21.712Z","sequence":12486,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFF6A229210990A, resource-version: 33b28887-ab2d-42ec-b5eb-24de06d7ceee]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6d1830039efa7541","parentId":"361a4cd39548d59f","traceId":"0000000000000000717034ed5486279a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:21.719Z","sequence":12487,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFF6A229210990A, resource-version: d19c3226-65ca-48f4-b35f-da0a1210a731]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6d1830039efa7541","parentId":"361a4cd39548d59f","traceId":"0000000000000000717034ed5486279a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:22.765Z","sequence":12488,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:22.765Z","sequence":12489,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-0D0A9DC85B68]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:22.78Z","sequence":12490,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-a0a6304c-c684-4635-82a9-8a9c3fb6db60, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:22.901Z","sequence":12491,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:22.901Z","sequence":12492,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0D0A9DC85B68]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:22.907Z","sequence":12493,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a40e1eb9-47c6-4d84-9caa-724df9eab564, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:22.911Z","sequence":12494,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:22.911Z","sequence":12495,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFF6A229210990A] for gateway [0D0A9DC85B68]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:22.918Z","sequence":12496,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:22.918Z","sequence":12497,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:23.088Z","sequence":12498,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7435f587-375c-4563-98fb-f2d9aea51f5d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:23.901Z","sequence":12499,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:23.901Z","sequence":12500,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000850] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:23.907Z","sequence":12501,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.8.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:23.907Z","sequence":12502,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:23.911Z","sequence":12503,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-51cc3444-33f9-4d8d-9fcc-33c0cbee845a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:24.693Z","sequence":12504,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:24.693Z","sequence":12505,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B76] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:24.699Z","sequence":12506,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:24.699Z","sequence":12507,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:24.705Z","sequence":12508,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3af80555-7641-41e7-a2f0-f411d647c11e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:29.837Z","sequence":12509,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:29.837Z","sequence":12510,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10018E3] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:29.843Z","sequence":12511,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:29.843Z","sequence":12512,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:29.849Z","sequence":12513,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5e49859e-0b67-46b3-9ef5-dc5f3f31f3c3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:33.693Z","sequence":12514,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:33.693Z","sequence":12515,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10001D1] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:33.699Z","sequence":12516,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:33.699Z","sequence":12517,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:33.705Z","sequence":12518,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-46782b0e-e9d1-42df-96e5-48697be63344, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:34.896Z","sequence":12519,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFF6A229210990A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6aa2015352f291ec","parentId":"1d1afc86d32157cc","traceId":"0000000000000000a59130f432a6e8b4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:34.915Z","sequence":12520,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFF6A229210990A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6aa2015352f291ec","parentId":"1d1afc86d32157cc","traceId":"0000000000000000a59130f432a6e8b4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:35.23Z","sequence":12521,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0D0A9DC85B68]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2987a3f9b5b55abe","parentId":"5023d741f3333b1c","traceId":"0000000000000000424f06968dcc5012","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:35.252Z","sequence":12522,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0D0A9DC85B68]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2987a3f9b5b55abe","parentId":"5023d741f3333b1c","traceId":"0000000000000000424f06968dcc5012","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:36.054Z","sequence":12523,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:36.054Z","sequence":12524,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oci]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:36.057Z","sequence":12525,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-016d3393-df26-492b-8feb-c29820560ca0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:36.059Z","sequence":12526,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:36.059Z","sequence":12527,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001F4] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:36.066Z","sequence":12528,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:36.066Z","sequence":12529,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:36.069Z","sequence":12530,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-80a827e7-3fd6-4f78-bb86-c1632a95edb7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:36.081Z","sequence":12531,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:36.081Z","sequence":12532,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001F4] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:36.088Z","sequence":12533,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:36.088Z","sequence":12534,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:36.092Z","sequence":12535,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9e595c95-cdb1-42ec-af72-5456604c3121, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:46.608Z","sequence":12536,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:46.609Z","sequence":12537,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:46.616Z","sequence":12538,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4a71a439-01af-4072-835a-1eaa1d1db07c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:50.955Z","sequence":12539,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:50.956Z","sequence":12540,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 70B3D57BB1000190] for gateway [0008004BB613]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:50.962Z","sequence":12541,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_lanxess\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:50.962Z","sequence":12542,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_lanxess\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:50.965Z","sequence":12543,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-aa4ecbc1-d94c-437b-9963-1911af5fcc16, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:54.908Z","sequence":12544,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:54.909Z","sequence":12545,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10009E9] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:54.927Z","sequence":12546,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:54.928Z","sequence":12547,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:54.937Z","sequence":12548,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-770feaa0-63bf-4042-a9fe-4c2f6ed47eaa, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:55.861Z","sequence":12549,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/repsol:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:55.861Z","sequence":12550,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: repsol, device-id: 0008004A37FF]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:55.867Z","sequence":12551,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c6f0ec3f-08b0-475b-ab1e-c2bc5aa4ff50, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:55.87Z","sequence":12552,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:55.871Z","sequence":12553,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: repsol]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:08:55.873Z","sequence":12554,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-46d0ccf9-c1d2-4af3-a3ad-04c0d37feaf4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:09:00.517Z","sequence":12555,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:09:00.517Z","sequence":12556,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: ineos]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:09:00.525Z","sequence":12557,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-aa122753-c4ca-4117-9daa-b2a1dbdc0e4a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:09:00.527Z","sequence":12558,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:09:00.527Z","sequence":12559,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB1000A89] for gateway [0008004B5135]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:09:00.537Z","sequence":12560,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:09:00.537Z","sequence":12561,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:09:00.541Z","sequence":12562,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f14f4ba8-3577-4e9c-bfa1-3a4bfed9ffc9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:09:08.155Z","sequence":12563,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:09:08.156Z","sequence":12564,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: shell]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:09:08.159Z","sequence":12565,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-e1868b86-44d3-4616-86c1-68002bb3fbf6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:09:08.161Z","sequence":12566,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/shell:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:09:08.161Z","sequence":12567,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: shell, type: hashed-password, auth-id: auth-gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:09:08.174Z","sequence":12568,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-af8888e3-4f6f-46ef-a38a-a465fffeeebe, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:09:08.301Z","sequence":12569,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:09:08.302Z","sequence":12570,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006D3] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:09:08.312Z","sequence":12571,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.8.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:09:08.312Z","sequence":12572,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:09:08.321Z","sequence":12573,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6e4ac220-0ce4-4edf-8f20-a23c516b554c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:09:11.02Z","sequence":12574,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oiltanking:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:09:11.02Z","sequence":12575,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oiltanking, device-id: 70B3D57BB1000C83] for gateway [0008004BB60F]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:09:11.027Z","sequence":12576,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_oiltanking\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:09:11.027Z","sequence":12577,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oiltanking\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:09:11.03Z","sequence":12578,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-43726342-df39-47a3-9ffd-0c10ebbe0a6c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:09:14.393Z","sequence":12579,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:09:14.393Z","sequence":12580,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000857] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:09:14.4Z","sequence":12581,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:09:14.4Z","sequence":12582,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:09:14.405Z","sequence":12583,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ebb6ed7e-6358-4722-92d4-a98d15fee269, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:09:16.099Z","sequence":12584,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:09:16.099Z","sequence":12585,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 0008004B51D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:09:16.105Z","sequence":12586,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7e6df6fd-c800-4c70-9ed8-e52ab7f7a179, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:09:16.108Z","sequence":12587,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:09:16.108Z","sequence":12588,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: dow]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:09:16.111Z","sequence":12589,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-aef28cbe-af9d-405f-bb16-85d91498f41b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:09:30.123Z","sequence":12590,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:09:30.123Z","sequence":12591,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10018E5] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:09:30.129Z","sequence":12592,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:09:30.129Z","sequence":12593,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:09:30.135Z","sequence":12594,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7ec7d422-754c-45fe-a275-d10ab6e41044, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:09:39.712Z","sequence":12595,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:09:39.712Z","sequence":12596,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006A5] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:09:39.721Z","sequence":12597,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:09:39.721Z","sequence":12598,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:09:39.727Z","sequence":12599,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d1d42018-bd1c-4447-b103-d6c78ea7b41d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:09:42.887Z","sequence":12600,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:09:42.888Z","sequence":12601,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C47] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:09:42.893Z","sequence":12602,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:09:42.893Z","sequence":12603,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:09:42.9Z","sequence":12604,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2fa80e8a-2554-4205-921c-3582bf1ab0f6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:09:44.45Z","sequence":12605,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:09:44.45Z","sequence":12606,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AAE] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:09:44.457Z","sequence":12607,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:09:44.458Z","sequence":12608,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:09:44.464Z","sequence":12609,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b5f0c020-d986-49ef-aebd-17f201a6afb4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:09:46.525Z","sequence":12610,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:09:46.525Z","sequence":12611,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: flint]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:09:46.529Z","sequence":12612,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-ae834f77-7705-470b-99ab-e8db6d7d7684, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:09:46.531Z","sequence":12613,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/flint:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:09:46.531Z","sequence":12614,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: flint, type: hashed-password, auth-id: auth-flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:09:46.56Z","sequence":12615,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-4b81eec0-96b0-4aa6-9e58-6c4bf3d195e1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:09:46.68Z","sequence":12616,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:09:46.68Z","sequence":12617,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB100089B] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:09:46.686Z","sequence":12618,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:09:46.686Z","sequence":12619,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:09:46.69Z","sequence":12620,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7161e399-8479-4e2d-b881-b0d3ae830d80, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:09:53.052Z","sequence":12621,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:09:53.054Z","sequence":12622,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100079B] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:09:53.059Z","sequence":12623,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:09:53.06Z","sequence":12624,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:09:53.066Z","sequence":12625,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a2ef6b99-82e6-4afa-ab32-5d91a34ff299, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:09:53.355Z","sequence":12626,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/conditionall:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:09:53.355Z","sequence":12627,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: conditionall, device-id: 0008004B512D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:09:53.361Z","sequence":12628,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a1d01d2c-92ae-4118-9d3b-a169e677feea, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:09:53.364Z","sequence":12629,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:09:53.364Z","sequence":12630,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: conditionall]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:09:53.367Z","sequence":12631,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-093a20fa-104d-4da6-8827-3f982e432501, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:09:53.545Z","sequence":12632,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:09:53.545Z","sequence":12633,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000571] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:09:53.55Z","sequence":12634,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:09:53.55Z","sequence":12635,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:09:53.557Z","sequence":12636,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-af1296e0-495c-4500-b3eb-3c9c93b869ec, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:09:59.213Z","sequence":12637,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:09:59.213Z","sequence":12638,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:09:59.22Z","sequence":12639,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-16982e0d-dd37-4e77-a665-92dd2c3d407d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:04.191Z","sequence":12640,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191036]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cad4d775c90ae512","parentId":"4b82bdb09dfb09bb","traceId":"00000000000000006005d65535ece421","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:04.209Z","sequence":12641,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191036, resource-version: f827cfa1-4973-4680-b428-5a5578072797]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cad4d775c90ae512","parentId":"4b82bdb09dfb09bb","traceId":"00000000000000006005d65535ece421","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:04.22Z","sequence":12642,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191036, resource-version: b3c5adb0-85f0-4227-a571-da468ae3a477]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cad4d775c90ae512","parentId":"4b82bdb09dfb09bb","traceId":"00000000000000006005d65535ece421","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:04.224Z","sequence":12643,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191036]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0aa0f5ac2a3137f6","parentId":"c85bddd875acce84","traceId":"00000000000000006005d65535ece421","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:04.371Z","sequence":12644,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191036]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0aa0f5ac2a3137f6","parentId":"c85bddd875acce84","traceId":"00000000000000006005d65535ece421","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:05.197Z","sequence":12645,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF8EE4D29E41A51]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fe674c49c04ebb3d","parentId":"d4b7fdc421208409","traceId":"000000000000000004bbe27ca19ff953","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:05.215Z","sequence":12646,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF8EE4D29E41A51, resource-version: 9bc1131f-e4db-48ad-9576-5f8a4e8939d3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fe674c49c04ebb3d","parentId":"d4b7fdc421208409","traceId":"000000000000000004bbe27ca19ff953","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:05.222Z","sequence":12647,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF8EE4D29E41A51, resource-version: 550bc547-ce8f-442e-bcbf-ae868692336f]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fe674c49c04ebb3d","parentId":"d4b7fdc421208409","traceId":"000000000000000004bbe27ca19ff953","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:06.315Z","sequence":12648,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:06.315Z","sequence":12649,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:06.319Z","sequence":12650,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-6f47d8f2-6b6d-4543-a9f0-b11008f0cb7a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:06.322Z","sequence":12651,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:06.322Z","sequence":12652,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191036]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:06.339Z","sequence":12653,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-3408c713-7589-45e8-ae08-dd9759bb6e1e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:06.459Z","sequence":12654,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:06.459Z","sequence":12655,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF8EE4D29E41A51] for gateway [gateway_integrationtest_network_191036]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:06.459Z","sequence":12656,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:06.46Z","sequence":12657,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191036]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:06.465Z","sequence":12658,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:06.466Z","sequence":12659,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:06.467Z","sequence":12660,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-88525044-aa2d-4d8f-b80c-9bc58cd49f48, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:06.842Z","sequence":12661,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-267ab4d0-81d0-4031-be75-653a6c90567a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:10.075Z","sequence":12662,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:10.075Z","sequence":12663,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: terega]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:10.079Z","sequence":12664,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-3cb512a3-69f4-4364-827e-f558eee81bfa, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:10.085Z","sequence":12665,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/terega:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:10.085Z","sequence":12666,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: terega, type: hashed-password, auth-id: auth-gateway_terega_network_27]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:10.101Z","sequence":12667,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-672663f5-43db-407a-a7cd-f7b4ae1a9f17, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:10.287Z","sequence":12668,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/terega:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:10.287Z","sequence":12669,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: terega, device-id: 70B3D57BB10000A2] for gateway [gateway_terega_network_27]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:10.288Z","sequence":12670,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/terega:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:10.288Z","sequence":12671,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: terega, device-id: gateway_terega_network_27]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:10.296Z","sequence":12672,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_terega\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:10.296Z","sequence":12673,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_terega\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:10.297Z","sequence":12674,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b194ad58-8d4a-4ee5-881e-6002d9051458, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:10.299Z","sequence":12675,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-abeaca42-349b-48af-a693-a31168dd35f9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:18.738Z","sequence":12676,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:18.738Z","sequence":12677,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10018EB] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:18.739Z","sequence":12678,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:18.739Z","sequence":12679,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:18.744Z","sequence":12680,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:18.744Z","sequence":12681,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:18.745Z","sequence":12682,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-92f70491-b9f2-4a1b-8f43-b2824930c327, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:18.751Z","sequence":12683,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-845e7f60-f19f-465f-94e1-04e45ad3b3e0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:19.68Z","sequence":12684,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF8EE4D29E41A51]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3b6dc0f2651d008f","parentId":"7b86e1e13b4d3014","traceId":"0000000000000000ae26983505f4ea88","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:19.697Z","sequence":12685,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF8EE4D29E41A51]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3b6dc0f2651d008f","parentId":"7b86e1e13b4d3014","traceId":"0000000000000000ae26983505f4ea88","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:19.813Z","sequence":12686,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191036]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"10c660dcbf7dea92","parentId":"2debef5f4d0cd757","traceId":"0000000000000000b006637b0729b238","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:19.829Z","sequence":12687,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191036]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"10c660dcbf7dea92","parentId":"2debef5f4d0cd757","traceId":"0000000000000000b006637b0729b238","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:20.329Z","sequence":12688,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 5E830928014B]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"21e97700cadc27dc","parentId":"b994e0a74abc429c","traceId":"00000000000000009f4de9b986d8b519","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:20.348Z","sequence":12689,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 5E830928014B, resource-version: 44e86390-7d43-4b53-afb5-5e629ab7b059]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"21e97700cadc27dc","parentId":"b994e0a74abc429c","traceId":"00000000000000009f4de9b986d8b519","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:20.354Z","sequence":12690,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 5E830928014B, resource-version: 832a109d-2330-4f85-bcbf-823b134aace1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"21e97700cadc27dc","parentId":"b994e0a74abc429c","traceId":"00000000000000009f4de9b986d8b519","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:20.357Z","sequence":12691,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 5E830928014B]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5d7cc8e37bd27af4","parentId":"fa084ec86667b2c2","traceId":"00000000000000009f4de9b986d8b519","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:20.485Z","sequence":12692,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 5E830928014B]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5d7cc8e37bd27af4","parentId":"fa084ec86667b2c2","traceId":"00000000000000009f4de9b986d8b519","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:21.059Z","sequence":12693,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFAF2CB18613F3E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e92e168b668d1bea","parentId":"4d00599e17d4209a","traceId":"00000000000000006d512fe452e499f9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:21.076Z","sequence":12694,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFAF2CB18613F3E, resource-version: 97a06fd3-0b3d-4751-9d8d-9198b783a177]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e92e168b668d1bea","parentId":"4d00599e17d4209a","traceId":"00000000000000006d512fe452e499f9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:21.082Z","sequence":12695,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFAF2CB18613F3E, resource-version: ace4e866-331d-4a99-b960-259ff074d167]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e92e168b668d1bea","parentId":"4d00599e17d4209a","traceId":"00000000000000006d512fe452e499f9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:22.129Z","sequence":12696,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:22.13Z","sequence":12697,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:22.133Z","sequence":12698,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-90452bd4-ea97-4315-be30-c53377ef3270, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:22.135Z","sequence":12699,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:22.135Z","sequence":12700,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-5E830928014B]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:22.146Z","sequence":12701,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-5797cc0d-4bff-4648-a699-6c3fff59c2a4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:22.272Z","sequence":12702,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:22.272Z","sequence":12703,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 5E830928014B]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:22.278Z","sequence":12704,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2efd8509-6510-4abd-bb95-9d7e243f46f7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:22.286Z","sequence":12705,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:22.286Z","sequence":12706,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFAF2CB18613F3E] for gateway [5E830928014B]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:22.292Z","sequence":12707,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:22.293Z","sequence":12708,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:22.467Z","sequence":12709,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8c38bfc5-10d9-40d4-89ca-5e804594810f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:26.411Z","sequence":12710,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:26.411Z","sequence":12711,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A8F] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:26.416Z","sequence":12712,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:26.416Z","sequence":12713,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:26.422Z","sequence":12714,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-48cc51d4-acf3-4ae1-967b-d7c882df29f7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:29.146Z","sequence":12715,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:29.146Z","sequence":12716,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BB84C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:29.151Z","sequence":12717,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1ee28704-1b7c-4e14-ab3f-d8bfa4f0a6c5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:29.155Z","sequence":12718,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:29.155Z","sequence":12719,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: lanxess]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:29.157Z","sequence":12720,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-c6f288a9-44bf-45c8-9033-210daaddf18c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:31.107Z","sequence":12721,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:31.108Z","sequence":12722,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 0008004B5135]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:31.113Z","sequence":12723,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-35f0d970-fc93-4d24-8898-e3b23425c278, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:31.389Z","sequence":12724,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:31.389Z","sequence":12725,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: dow]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:31.393Z","sequence":12726,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-c5b00e04-5d4a-4377-af0c-836444445bcf, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:31.399Z","sequence":12727,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/dow:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:31.399Z","sequence":12728,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: dow, type: hashed-password, auth-id: auth-gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:31.409Z","sequence":12729,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-d0a1afa0-59c4-4be0-83d1-24387b4d6d6a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:31.704Z","sequence":12730,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:31.704Z","sequence":12731,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 70B3D57BB100124C] for gateway [gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:31.705Z","sequence":12732,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:31.705Z","sequence":12733,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:31.71Z","sequence":12734,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2cfa026e-5817-4432-8583-63ef7dfe5342, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:31.71Z","sequence":12735,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:31.71Z","sequence":12736,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:31.721Z","sequence":12737,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-27d7b1be-78f1-45ef-b2ca-b72b0033b901, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:34.588Z","sequence":12738,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFAF2CB18613F3E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ba16373ea5e8ae50","parentId":"e5a67d030ffba9ad","traceId":"0000000000000000d7b00e8c56239bf1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:34.604Z","sequence":12739,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFAF2CB18613F3E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ba16373ea5e8ae50","parentId":"e5a67d030ffba9ad","traceId":"0000000000000000d7b00e8c56239bf1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:34.947Z","sequence":12740,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 5E830928014B]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4069fec68c231a34","parentId":"d0a63af3163f50af","traceId":"0000000000000000b96c4e74e71d24fe","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:34.963Z","sequence":12741,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 5E830928014B]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4069fec68c231a34","parentId":"d0a63af3163f50af","traceId":"0000000000000000b96c4e74e71d24fe","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:35.245Z","sequence":12742,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:35.246Z","sequence":12743,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BBD1B]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:35.253Z","sequence":12744,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-85f574ee-ff45-4bbf-904e-37159b4e7740, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:36.532Z","sequence":12745,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:36.532Z","sequence":12746,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000179] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:36.537Z","sequence":12747,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:36.537Z","sequence":12748,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:36.541Z","sequence":12749,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2b533cb7-90b8-458b-ba59-ec9239ab2318, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:36.562Z","sequence":12750,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:36.562Z","sequence":12751,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000179] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:36.567Z","sequence":12752,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:36.567Z","sequence":12753,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:36.569Z","sequence":12754,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-52ca791d-14f7-454b-b75a-72139016923c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:38.607Z","sequence":12755,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:38.607Z","sequence":12756,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB1000A60] for gateway [0008004B5135]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:38.614Z","sequence":12757,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:38.615Z","sequence":12758,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:38.622Z","sequence":12759,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-abb67f23-d0e4-4783-bc2d-30a667872284, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:40.974Z","sequence":12760,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/arkema:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:40.974Z","sequence":12761,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: arkema, device-id: 0008004AE119]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:40.98Z","sequence":12762,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8a416db2-58e3-47d4-a58d-cec483ca5902, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:40.983Z","sequence":12763,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:40.983Z","sequence":12764,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: arkema]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:40.986Z","sequence":12765,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-b7921964-45df-489a-b6ee-53be90db9e38, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:42.01Z","sequence":12766,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:42.011Z","sequence":12767,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10009D8] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:42.021Z","sequence":12768,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:42.021Z","sequence":12769,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:42.024Z","sequence":12770,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a8590225-949b-48a9-ae82-b479668932d4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:46.762Z","sequence":12771,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:46.763Z","sequence":12772,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006CF] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:46.769Z","sequence":12773,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:46.769Z","sequence":12774,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:46.775Z","sequence":12775,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-52eee356-d667-404b-b689-35b3f5642628, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:47.409Z","sequence":12776,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:47.409Z","sequence":12777,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B6E] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:47.439Z","sequence":12778,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:47.44Z","sequence":12779,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:47.453Z","sequence":12780,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d14fbdb3-b686-4d62-83df-8b5a54b3cb16, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:54.522Z","sequence":12781,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:54.522Z","sequence":12782,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000F7D] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:54.529Z","sequence":12783,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:54.529Z","sequence":12784,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:54.535Z","sequence":12785,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8a7de538-4c80-4bc0-9b9a-d676df830133, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:57.812Z","sequence":12786,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:57.813Z","sequence":12787,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10009D3] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:57.818Z","sequence":12788,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:57.818Z","sequence":12789,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:10:57.822Z","sequence":12790,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8ea54f28-4623-417e-aa69-1f3c11c7e481, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:11:03.536Z","sequence":12791,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:11:03.536Z","sequence":12792,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BBD1C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:11:03.541Z","sequence":12793,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-24e5db10-3c2a-411d-a1b2-2e299ed8285b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:11:05.221Z","sequence":12794,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/repsol:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:11:05.222Z","sequence":12795,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: repsol, device-id: 70B3D57BB1000229] for gateway [0008004A37FF]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:11:05.227Z","sequence":12796,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:0.4.1\"\n },\n \"viaGroups\" : [ \"gateways_repsol\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:11:05.227Z","sequence":12797,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_repsol\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:11:05.231Z","sequence":12798,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8fcd370f-0155-453a-b303-73ea49f228b6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:11:19.924Z","sequence":12799,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:11:19.924Z","sequence":12800,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000A69] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:11:19.93Z","sequence":12801,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:11:19.93Z","sequence":12802,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:11:19.937Z","sequence":12803,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8f758002-2ef0-4a02-9e04-01dd1d3682e2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:11:23.599Z","sequence":12804,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:11:23.599Z","sequence":12805,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:11:23.605Z","sequence":12806,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-32925849-7f5e-425b-8ed3-fa190e64211a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:11:34.381Z","sequence":12807,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:11:34.381Z","sequence":12808,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 70B3D57BB100125C] for gateway [gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:11:34.388Z","sequence":12809,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:11:34.389Z","sequence":12810,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:11:34.394Z","sequence":12811,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8232c7bc-fdbf-4d4a-879a-2c045860b0b1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:11:38.186Z","sequence":12812,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:11:38.187Z","sequence":12813,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oci]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:11:38.19Z","sequence":12814,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-2640187c-2e1b-4088-a286-d8206166fd59, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:11:38.192Z","sequence":12815,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:11:38.193Z","sequence":12816,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000176] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:11:38.197Z","sequence":12817,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:11:38.198Z","sequence":12818,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:11:38.2Z","sequence":12819,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-cc203f45-d373-4764-a686-5febed7c7c8a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:11:38.253Z","sequence":12820,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:11:38.253Z","sequence":12821,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000176] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:11:38.259Z","sequence":12822,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:11:38.26Z","sequence":12823,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:11:38.262Z","sequence":12824,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-580af95d-6219-493b-a39d-c8404da5f266, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:11:38.773Z","sequence":12825,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:11:38.773Z","sequence":12826,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB1000A63] for gateway [0008004B5135]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:11:38.781Z","sequence":12827,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:11:38.781Z","sequence":12828,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:11:38.785Z","sequence":12829,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-cd53c36f-4a4d-4d9e-ae3d-3335d95d15ea, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:11:42.993Z","sequence":12830,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:11:42.993Z","sequence":12831,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100079C] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:11:42.998Z","sequence":12832,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:11:42.998Z","sequence":12833,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:11:43.005Z","sequence":12834,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-bcb4ff6c-5813-49d7-841a-3dd6db60075d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:11:50.567Z","sequence":12835,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:11:50.567Z","sequence":12836,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C0F] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:11:50.578Z","sequence":12837,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:11:50.578Z","sequence":12838,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:11:50.585Z","sequence":12839,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-68184db2-3b0b-452e-8ae5-65f78362032e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:11:54.645Z","sequence":12840,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:11:54.645Z","sequence":12841,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000895] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:11:54.655Z","sequence":12842,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:11:54.655Z","sequence":12843,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:11:54.664Z","sequence":12844,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0fb31587-7f9c-40b2-812e-63fd72a133f5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:11:55.761Z","sequence":12845,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:11:55.761Z","sequence":12846,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 0008004C80F4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:11:55.777Z","sequence":12847,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-18f11953-d33c-4dd3-8fbd-c0ff3572b5c3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:11:59.089Z","sequence":12848,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:11:59.089Z","sequence":12849,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AD7] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:11:59.104Z","sequence":12850,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:11:59.105Z","sequence":12851,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:11:59.116Z","sequence":12852,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-04edcab2-4e91-4358-8746-2a4a9dbd0ef4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:11:59.339Z","sequence":12853,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:11:59.339Z","sequence":12854,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A8E] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:11:59.356Z","sequence":12855,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:11:59.357Z","sequence":12856,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:11:59.367Z","sequence":12857,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6db07b03-04bb-41b5-9279-1563cf2d2ce7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:00.277Z","sequence":12858,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:00.277Z","sequence":12859,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100086F] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:00.284Z","sequence":12860,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:00.285Z","sequence":12861,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:00.297Z","sequence":12862,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6bd5bf7a-d35a-49f4-b699-55316e8225aa, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:01.463Z","sequence":12863,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:01.464Z","sequence":12864,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019CA] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:01.473Z","sequence":12865,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:01.473Z","sequence":12866,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:01.479Z","sequence":12867,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d3d04ce7-07a1-485e-b7a8-7ccc9a2c5029, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:04.521Z","sequence":12868,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191038]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"116afa6edbc797c7","parentId":"2980c7949baa243d","traceId":"00000000000000002caabe02a93f114b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:04.555Z","sequence":12869,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191038, resource-version: 385cfbf0-075c-4e52-902b-223f66564e6a]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"116afa6edbc797c7","parentId":"2980c7949baa243d","traceId":"00000000000000002caabe02a93f114b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:04.562Z","sequence":12870,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191038, resource-version: e7a31275-7213-4fda-8537-b17a6c132c05]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"116afa6edbc797c7","parentId":"2980c7949baa243d","traceId":"00000000000000002caabe02a93f114b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:04.569Z","sequence":12871,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191038]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"aeb6dbc68d617f5b","parentId":"8deeb471899c40fa","traceId":"00000000000000002caabe02a93f114b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:04.792Z","sequence":12872,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191038]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"aeb6dbc68d617f5b","parentId":"8deeb471899c40fa","traceId":"00000000000000002caabe02a93f114b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:04.97Z","sequence":12873,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:04.97Z","sequence":12874,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000852] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:04.977Z","sequence":12875,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:04.977Z","sequence":12876,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:04.981Z","sequence":12877,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d850450b-3890-4994-81a3-9e5bab111811, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:06.089Z","sequence":12878,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF80343BC50E3A5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4b9afc052b326ef3","parentId":"c28e684a2b4d9cb1","traceId":"0000000000000000bc2f6b6a6452922b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:06.129Z","sequence":12879,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF80343BC50E3A5, resource-version: af6f8aad-6d62-4bd8-b88e-331293e8a98c]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4b9afc052b326ef3","parentId":"c28e684a2b4d9cb1","traceId":"0000000000000000bc2f6b6a6452922b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:06.14Z","sequence":12880,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF80343BC50E3A5, resource-version: 8fe6ac80-75a4-461b-a9f6-7fe758e84129]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4b9afc052b326ef3","parentId":"c28e684a2b4d9cb1","traceId":"0000000000000000bc2f6b6a6452922b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:07.3Z","sequence":12881,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:07.3Z","sequence":12882,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191038]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:07.317Z","sequence":12883,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-d3798a44-900b-4e49-8dc9-2eb56ee10105, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:07.444Z","sequence":12884,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:07.444Z","sequence":12885,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF80343BC50E3A5] for gateway [gateway_integrationtest_network_191038]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:07.445Z","sequence":12886,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:07.445Z","sequence":12887,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191038]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:07.453Z","sequence":12888,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4fb61d7a-d33d-4d2e-ae46-6fa46a8a7aba, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:07.454Z","sequence":12889,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:07.454Z","sequence":12890,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:08.002Z","sequence":12891,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7f2428a9-a132-4957-a752-c39a2d8a3fe2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:08.003Z","sequence":12892,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:08.003Z","sequence":12893,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10007F7] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:08.019Z","sequence":12894,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:08.019Z","sequence":12895,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:08.029Z","sequence":12896,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a5c29b74-f0aa-46bc-b2e1-c516af08eed3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:09.772Z","sequence":12897,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oiltanking:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:09.772Z","sequence":12898,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oiltanking, device-id: 0008004BB60F]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:09.778Z","sequence":12899,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6b7ddf0f-79d4-4a8e-a41f-689292042dd4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:09.781Z","sequence":12900,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:09.781Z","sequence":12901,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oiltanking]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:09.785Z","sequence":12902,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-16148c99-c6fd-42e6-aaaf-f2c146b0b5b4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:10.675Z","sequence":12903,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:10.675Z","sequence":12904,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: shell]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:10.678Z","sequence":12905,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-43a2c2c4-0cd9-42d6-b311-6716209fb851, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:10.681Z","sequence":12906,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/shell:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:10.682Z","sequence":12907,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: shell, type: hashed-password, auth-id: auth-gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:10.697Z","sequence":12908,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-29b8543a-81c9-427f-8eeb-99a6e2f5d2a0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:10.912Z","sequence":12909,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:10.912Z","sequence":12910,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A89] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:10.919Z","sequence":12911,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:10.919Z","sequence":12912,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:10.926Z","sequence":12913,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a6850c89-81b9-4873-a338-d0ea5a94810f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:17.073Z","sequence":12914,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:17.073Z","sequence":12915,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: chevron]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:17.092Z","sequence":12916,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-6de22c32-b7c2-4a20-aaa6-5e181c153314, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:17.1Z","sequence":12917,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Source{address='credentials/chevron/ba397a45-1dc7-4a8f-bfee-2719ecd750d0', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:17.1Z","sequence":12918,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-14]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:17.1Z","sequence":12919,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@160082ed] for replies to [credentials/chevron/ba397a45-1dc7-4a8f-bfee-2719ecd750d0]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:17.104Z","sequence":12920,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Target{address='credentials/chevron', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:17.104Z","sequence":12921,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-15]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:17.105Z","sequence":12922,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:17.109Z","sequence":12923,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/chevron:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:17.109Z","sequence":12924,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: chevron, type: hashed-password, auth-id: auth-CHEVRON-ORBIWISE-EL-SEGUNDO]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:17.161Z","sequence":12925,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-0faa54bc-35ac-453f-a0dc-b6710c160f7a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:17.286Z","sequence":12926,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] wants to open a link [address: Source{address='registration/chevron/2f715b61-a364-4d09-a156-7e14f718f70f', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:17.286Z","sequence":12927,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-14]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:17.286Z","sequence":12928,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@128753b0] for replies to [registration/chevron/2f715b61-a364-4d09-a156-7e14f718f70f]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:17.288Z","sequence":12929,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] wants to open a link [address: Target{address='registration/chevron', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:17.289Z","sequence":12930,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-15]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:17.289Z","sequence":12931,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:17.291Z","sequence":12932,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/chevron:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:17.291Z","sequence":12933,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: chevron, device-id: 70B3D57BB10005CC] for gateway [CHEVRON-ORBIWISE-EL-SEGUNDO]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:17.292Z","sequence":12934,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/chevron:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:17.292Z","sequence":12935,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: chevron, device-id: CHEVRON-ORBIWISE-EL-SEGUNDO]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:17.297Z","sequence":12936,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_chevron\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:17.297Z","sequence":12937,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_chevron\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:17.298Z","sequence":12938,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d2cae8af-3aa8-457d-a5e6-10eb2da8e124, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:17.301Z","sequence":12939,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b8a0aedb-6646-4180-9005-153a237e1584, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:17.921Z","sequence":12940,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF80343BC50E3A5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"319dc82a1be6c565","parentId":"d7b8bf5bf2f3f0ed","traceId":"00000000000000009b2e66f6f61c5269","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:17.952Z","sequence":12941,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF80343BC50E3A5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"319dc82a1be6c565","parentId":"d7b8bf5bf2f3f0ed","traceId":"00000000000000009b2e66f6f61c5269","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:18.243Z","sequence":12942,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191038]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f46a42cb695b61b0","parentId":"35c1cb2033fae9c1","traceId":"0000000000000000ed81455519ddc09b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:18.26Z","sequence":12943,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191038]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f46a42cb695b61b0","parentId":"35c1cb2033fae9c1","traceId":"0000000000000000ed81455519ddc09b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:18.861Z","sequence":12944,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 094CB53F1D3C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9bdea5a6fc2802f0","parentId":"a0ac251862fa3176","traceId":"000000000000000017e99e50ec9635a0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:18.88Z","sequence":12945,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 094CB53F1D3C, resource-version: cc4d527f-8746-4a1a-8f07-42bd76fcbea0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9bdea5a6fc2802f0","parentId":"a0ac251862fa3176","traceId":"000000000000000017e99e50ec9635a0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:18.893Z","sequence":12946,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 094CB53F1D3C, resource-version: b6b0de90-b1c3-46cd-999f-f6563dd49087]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9bdea5a6fc2802f0","parentId":"a0ac251862fa3176","traceId":"000000000000000017e99e50ec9635a0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:18.897Z","sequence":12947,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 094CB53F1D3C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fa19ad9acbbd4613","parentId":"d8af77f1adc5b00e","traceId":"000000000000000017e99e50ec9635a0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:19.142Z","sequence":12948,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 094CB53F1D3C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fa19ad9acbbd4613","parentId":"d8af77f1adc5b00e","traceId":"000000000000000017e99e50ec9635a0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:19.854Z","sequence":12949,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF4A916E340B1AA]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"29ed6f6fac073f8c","parentId":"29d0b3eac0b53a1d","traceId":"00000000000000005d446239b07d3b00","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:20.092Z","sequence":12950,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF4A916E340B1AA, resource-version: be631c2a-f04f-4e97-8323-82a2b9797004]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"29ed6f6fac073f8c","parentId":"29d0b3eac0b53a1d","traceId":"00000000000000005d446239b07d3b00","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:20.1Z","sequence":12951,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF4A916E340B1AA, resource-version: fe781e83-d305-4f17-9e8f-66fbfe8782f9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"29ed6f6fac073f8c","parentId":"29d0b3eac0b53a1d","traceId":"00000000000000005d446239b07d3b00","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:21.15Z","sequence":12952,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:21.15Z","sequence":12953,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-094CB53F1D3C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:21.162Z","sequence":12954,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-fa78f981-6b9a-4656-ba44-6e0a02e8105e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:21.281Z","sequence":12955,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:21.281Z","sequence":12956,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 094CB53F1D3C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:21.298Z","sequence":12957,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-39557412-0bd9-4735-b8b7-8d44488c5788, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:21.305Z","sequence":12958,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:21.305Z","sequence":12959,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF4A916E340B1AA] for gateway [094CB53F1D3C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:21.312Z","sequence":12960,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:21.312Z","sequence":12961,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:21.684Z","sequence":12962,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-88cec256-b08b-45d2-8878-9223f0b2783b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:22.285Z","sequence":12963,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:22.285Z","sequence":12964,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019CD] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:22.307Z","sequence":12965,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:22.307Z","sequence":12966,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:22.317Z","sequence":12967,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-597eacdb-2f63-41c5-b7f8-fac5614d719e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:24.744Z","sequence":12968,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:24.744Z","sequence":12969,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019BF] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:24.75Z","sequence":12970,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:24.75Z","sequence":12971,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:24.756Z","sequence":12972,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-13f3ca00-ebf3-405f-be0c-25645e6f0650, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:26.316Z","sequence":12973,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:26.316Z","sequence":12974,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019BB] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:26.323Z","sequence":12975,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:26.323Z","sequence":12976,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:26.329Z","sequence":12977,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d9ce3e06-04fe-4a7f-8639-ffcc92186811, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:30.126Z","sequence":12978,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:30.126Z","sequence":12979,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000173] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:30.132Z","sequence":12980,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:30.132Z","sequence":12981,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:30.135Z","sequence":12982,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ee205029-9bb9-4d05-9a56-ac6c1ec3f132, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:30.253Z","sequence":12983,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:30.253Z","sequence":12984,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000173] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:30.259Z","sequence":12985,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:30.259Z","sequence":12986,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:30.269Z","sequence":12987,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-33fa4814-1fbf-4fc0-b54e-8a8efe31460b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:30.876Z","sequence":12988,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/conditionall:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:30.877Z","sequence":12989,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: conditionall, device-id: 70B3D57BB1000211] for gateway [0008004B512D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:30.884Z","sequence":12990,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_conditionall\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:30.884Z","sequence":12991,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_conditionall\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:30.889Z","sequence":12992,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-283664c7-9825-49aa-90a4-7fcb9d52d36f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:31.289Z","sequence":12993,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF4A916E340B1AA]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"20469339b8647088","parentId":"115cb14034df4cd7","traceId":"0000000000000000eea02252ca28bee1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:31.308Z","sequence":12994,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF4A916E340B1AA]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"20469339b8647088","parentId":"115cb14034df4cd7","traceId":"0000000000000000eea02252ca28bee1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:31.652Z","sequence":12995,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 094CB53F1D3C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0ce99bea90fd1d47","parentId":"37e26a01c6add1b1","traceId":"0000000000000000c83298078dd25a3a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:31.669Z","sequence":12996,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 094CB53F1D3C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0ce99bea90fd1d47","parentId":"37e26a01c6add1b1","traceId":"0000000000000000c83298078dd25a3a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:32.241Z","sequence":12997,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:32.241Z","sequence":12998,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100016E] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:32.248Z","sequence":12999,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:32.248Z","sequence":13000,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:32.251Z","sequence":13001,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-add1170e-0a9f-42b0-9d3a-98418b642985, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:32.315Z","sequence":13002,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:32.315Z","sequence":13003,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100016E] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:32.321Z","sequence":13004,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:32.321Z","sequence":13005,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:32.324Z","sequence":13006,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5f85a602-898f-422c-b09e-59089f57905a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:34.474Z","sequence":13007,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:34.474Z","sequence":13008,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A82] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:34.48Z","sequence":13009,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:34.48Z","sequence":13010,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:34.487Z","sequence":13011,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-857201bf-532c-45e0-ae23-38e55b7ac80f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:44.365Z","sequence":13012,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:44.365Z","sequence":13013,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019B6] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:44.38Z","sequence":13014,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:44.381Z","sequence":13015,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:44.391Z","sequence":13016,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2c6b9f1c-1fca-4402-9beb-f2fa9e7c553b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:50.283Z","sequence":13017,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:50.283Z","sequence":13018,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001ADF] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:50.289Z","sequence":13019,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:50.289Z","sequence":13020,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:50.297Z","sequence":13021,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1fe5c3fa-23df-44dd-8777-2a2e16bf0d37, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:52.103Z","sequence":13022,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:52.103Z","sequence":13023,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000154] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:52.109Z","sequence":13024,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:52.109Z","sequence":13025,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:52.11Z","sequence":13026,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:52.111Z","sequence":13027,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000154] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:52.114Z","sequence":13028,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1255f002-ac63-4648-8481-b2b2028a5e6c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:52.117Z","sequence":13029,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:52.117Z","sequence":13030,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:52.121Z","sequence":13031,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f7abe10e-38f2-43c1-b2b0-34af28354ae4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:53.451Z","sequence":13032,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/aloxy:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:53.451Z","sequence":13033,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: aloxy, device-id: 0008004A8F68]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:53.458Z","sequence":13034,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-11a1e151-5a63-43a0-96be-d8e1982c392b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:53.46Z","sequence":13035,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:53.461Z","sequence":13036,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: aloxy]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:53.463Z","sequence":13037,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-34fa56c8-7008-4ee1-a31c-fde9596e4028, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:55.081Z","sequence":13038,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:55.081Z","sequence":13039,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019C0] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:55.106Z","sequence":13040,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:55.106Z","sequence":13041,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:12:55.117Z","sequence":13042,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7b4f8bed-dadf-44a1-8f89-e6e4f13c7f16, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:13:02.792Z","sequence":13043,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:13:02.793Z","sequence":13044,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019D5] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:13:02.801Z","sequence":13045,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:13:02.801Z","sequence":13046,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:13:02.808Z","sequence":13047,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-952bcdbb-5e02-4d71-b4ec-aa073cd9d0b9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:13:03.701Z","sequence":13048,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:13:03.701Z","sequence":13049,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BB613]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:13:03.706Z","sequence":13050,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4ca31318-3f04-45fc-bc61-bfd9236baf61, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:13:12.125Z","sequence":13051,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:13:12.125Z","sequence":13052,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100021A] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:13:12.131Z","sequence":13053,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:0.4.1\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:13:12.131Z","sequence":13054,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:13:12.138Z","sequence":13055,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-723125b8-51e9-49f2-8a04-826e160f299c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:13:16.461Z","sequence":13056,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:13:16.461Z","sequence":13057,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C04] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:13:16.467Z","sequence":13058,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:13:16.467Z","sequence":13059,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:13:16.474Z","sequence":13060,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-37b5d447-122b-4276-b922-50a71f0c358f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:13:19.99Z","sequence":13061,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/acta:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:13:19.99Z","sequence":13062,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: acta, device-id: 0008004AAAA3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:13:19.996Z","sequence":13063,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0e97c1f1-5df1-44b5-9b8e-43d068e259e5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:13:19.999Z","sequence":13064,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:13:19.999Z","sequence":13065,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: acta]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:13:20.008Z","sequence":13066,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-17234fcd-81b2-4ff3-9ae4-c235bf5457fe, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:13:21.628Z","sequence":13067,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:13:21.628Z","sequence":13068,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001ADD] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:13:21.634Z","sequence":13069,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:13:21.634Z","sequence":13070,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:13:21.641Z","sequence":13071,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0684ca34-2a1f-4062-b4e7-a2a93735babb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:13:24.577Z","sequence":13072,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:13:24.577Z","sequence":13073,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006CC] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:13:24.582Z","sequence":13074,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.8.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:13:24.582Z","sequence":13075,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:13:24.588Z","sequence":13076,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1e418ce1-f1b5-42c8-9a38-9e5add24939b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:13:40.117Z","sequence":13077,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:13:40.117Z","sequence":13078,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001ADB] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:13:40.123Z","sequence":13079,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:13:40.123Z","sequence":13080,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:13:40.129Z","sequence":13081,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-30639018-9502-4662-81ac-57011a6e7a46, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:13:41.533Z","sequence":13082,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:13:41.533Z","sequence":13083,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C42] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:13:41.539Z","sequence":13084,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:13:41.539Z","sequence":13085,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:13:41.544Z","sequence":13086,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-85ca3a13-76d4-46a9-aa89-cd694417d974, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:13:45.384Z","sequence":13087,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:13:45.384Z","sequence":13088,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000A6E] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:13:45.39Z","sequence":13089,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:13:45.391Z","sequence":13090,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:13:45.397Z","sequence":13091,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-70309955-5bfe-4988-9939-b8a408652101, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:13:48.36Z","sequence":13092,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:13:48.361Z","sequence":13093,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:13:48.369Z","sequence":13094,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-71d1b828-379b-49bf-ad29-548cdd0bbf5f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:13:56.938Z","sequence":13095,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:13:56.939Z","sequence":13096,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100079A] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:13:56.945Z","sequence":13097,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:13:56.945Z","sequence":13098,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:13:56.952Z","sequence":13099,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5beccfe9-24fc-4409-84e6-dc412b53b1f0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:13:57.593Z","sequence":13100,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/repsol:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:13:57.593Z","sequence":13101,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: repsol, device-id: 0008004A37FF]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:13:57.602Z","sequence":13102,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-07e683ff-1171-4a97-ac04-162fb8078d38, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:13:57.607Z","sequence":13103,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:13:57.607Z","sequence":13104,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: repsol]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:13:57.613Z","sequence":13105,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-89167574-a99c-4b1c-86d1-5d19c37d2d3e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:01.661Z","sequence":13106,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:01.661Z","sequence":13107,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: lanxess]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:01.667Z","sequence":13108,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-8f94696a-c67c-46d4-ab92-46eadae5fcdf, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:01.673Z","sequence":13109,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:01.673Z","sequence":13110,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 70B3D57BB10001A5] for gateway [0008004BB84C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:01.68Z","sequence":13111,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:0.4.1\"\n },\n \"viaGroups\" : [ \"gateways_lanxess\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:01.684Z","sequence":13112,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_lanxess\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:01.689Z","sequence":13113,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-16909d75-a8a3-4e6f-a8e3-28991c078d05, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:04.663Z","sequence":13114,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/acta:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:04.664Z","sequence":13115,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: acta, device-id: 353438340047002F] for gateway [0008004AAAA3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:04.679Z","sequence":13116,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.3.0\"\n },\n \"viaGroups\" : [ \"gateways_acta\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:04.68Z","sequence":13117,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_acta\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:04.684Z","sequence":13118,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ae91c074-0b24-45df-922b-921f41fbca56, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:04.875Z","sequence":13119,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191040]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bbc7c090143e8106","parentId":"c60dd48ab6a4767e","traceId":"000000000000000055308aeda495c7b8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:04.897Z","sequence":13120,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191040, resource-version: 4ce57da3-0aaf-4930-8365-106969e34b1a]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bbc7c090143e8106","parentId":"c60dd48ab6a4767e","traceId":"000000000000000055308aeda495c7b8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:04.909Z","sequence":13121,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191040, resource-version: 4ada1b76-8467-4d1d-97f3-cd92dff225a9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bbc7c090143e8106","parentId":"c60dd48ab6a4767e","traceId":"000000000000000055308aeda495c7b8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:04.915Z","sequence":13122,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191040]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b604b6dac150240e","parentId":"3bc2d0fbf6a9f6be","traceId":"000000000000000055308aeda495c7b8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:05.281Z","sequence":13123,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191040]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b604b6dac150240e","parentId":"3bc2d0fbf6a9f6be","traceId":"000000000000000055308aeda495c7b8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:06.03Z","sequence":13124,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFE5F7CBDAABE6F]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"754250ed1851e059","parentId":"b4a091277eeb069f","traceId":"00000000000000009ae9e6965db73591","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:06.048Z","sequence":13125,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFE5F7CBDAABE6F, resource-version: 46f9f5cf-f1d9-468d-a322-feceaa5044c7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"754250ed1851e059","parentId":"b4a091277eeb069f","traceId":"00000000000000009ae9e6965db73591","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:06.055Z","sequence":13126,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFE5F7CBDAABE6F, resource-version: 053f49ba-5918-4e37-a05b-275cbe0f8686]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"754250ed1851e059","parentId":"b4a091277eeb069f","traceId":"00000000000000009ae9e6965db73591","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:07.125Z","sequence":13127,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:07.126Z","sequence":13128,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:07.129Z","sequence":13129,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-95e8e860-370d-4cdd-8aa8-2ae40d8f0849, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:07.132Z","sequence":13130,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:07.132Z","sequence":13131,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191040]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:07.142Z","sequence":13132,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-fedc5783-35e7-4780-801b-5fa94edc8558, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:07.285Z","sequence":13133,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:07.285Z","sequence":13134,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFE5F7CBDAABE6F] for gateway [gateway_integrationtest_network_191040]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:07.286Z","sequence":13135,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:07.286Z","sequence":13136,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191040]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:07.297Z","sequence":13137,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:07.298Z","sequence":13138,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:07.299Z","sequence":13139,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b60d0156-04f2-4d7b-8bb4-cab52135f2be, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:07.632Z","sequence":13140,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-10033189-93b1-42a4-8321-10d5e76b4529, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:16.87Z","sequence":13141,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFE5F7CBDAABE6F]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b8cd7f7116fe0236","parentId":"f746ad09666c5335","traceId":"0000000000000000c1f0ead1d4718067","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:16.888Z","sequence":13142,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFE5F7CBDAABE6F]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b8cd7f7116fe0236","parentId":"f746ad09666c5335","traceId":"0000000000000000c1f0ead1d4718067","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:17.133Z","sequence":13143,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191040]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"86ee3357eea26cce","parentId":"6c1b5d57619a9fa7","traceId":"00000000000000004a226bf68821c628","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:17.151Z","sequence":13144,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191040]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"86ee3357eea26cce","parentId":"6c1b5d57619a9fa7","traceId":"00000000000000004a226bf68821c628","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:17.862Z","sequence":13145,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: AD0B7556CE7D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b81e043b214c299e","parentId":"9484e53c4c914bcf","traceId":"0000000000000000d45f60d7629111e1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:17.878Z","sequence":13146,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: AD0B7556CE7D, resource-version: 900c407b-fd29-4462-8cfe-9b7b0b78e404]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b81e043b214c299e","parentId":"9484e53c4c914bcf","traceId":"0000000000000000d45f60d7629111e1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:17.89Z","sequence":13147,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: AD0B7556CE7D, resource-version: 55f9ce53-a9fd-4510-800b-dd7ddf3f1aec]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b81e043b214c299e","parentId":"9484e53c4c914bcf","traceId":"0000000000000000d45f60d7629111e1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:17.894Z","sequence":13148,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: AD0B7556CE7D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7621e5c46795260f","parentId":"3155f6bc1c9bb2e9","traceId":"0000000000000000d45f60d7629111e1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:17.914Z","sequence":13149,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:17.914Z","sequence":13150,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 0008004B51D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:17.919Z","sequence":13151,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-84729ca7-c66a-4da5-a441-7e422d0b7747, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:17.922Z","sequence":13152,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:17.922Z","sequence":13153,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: dow]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:17.925Z","sequence":13154,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-220bd28b-9343-4ade-a5eb-aee13e96415c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:18.139Z","sequence":13155,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: AD0B7556CE7D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7621e5c46795260f","parentId":"3155f6bc1c9bb2e9","traceId":"0000000000000000d45f60d7629111e1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:19.1Z","sequence":13156,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF6BE5A522DAA39]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8b3dd404658935ed","parentId":"1a79d5cc0e4af2ac","traceId":"0000000000000000ff91c7ef10c6d37e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:19.116Z","sequence":13157,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF6BE5A522DAA39, resource-version: 6d25f157-c9ba-4cbb-9930-3cc35c334cb9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8b3dd404658935ed","parentId":"1a79d5cc0e4af2ac","traceId":"0000000000000000ff91c7ef10c6d37e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:19.127Z","sequence":13158,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF6BE5A522DAA39, resource-version: 92083bef-18e9-4248-aab1-959231ed2a28]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8b3dd404658935ed","parentId":"1a79d5cc0e4af2ac","traceId":"0000000000000000ff91c7ef10c6d37e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:19.793Z","sequence":13159,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:19.794Z","sequence":13160,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: flint]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:19.797Z","sequence":13161,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-c2115611-c439-4e6d-8efc-abb29fd175a8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:19.801Z","sequence":13162,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/flint:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:19.801Z","sequence":13163,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: flint, type: hashed-password, auth-id: auth-flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:19.827Z","sequence":13164,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-bf492c11-f2d6-4d62-9f85-d7d15c2f56af, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:19.948Z","sequence":13165,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:19.949Z","sequence":13166,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10009E6] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:19.949Z","sequence":13167,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:19.949Z","sequence":13168,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:19.959Z","sequence":13169,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-614a1e57-f4d4-49c5-b0fe-68fb1037783e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:19.963Z","sequence":13170,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:19.963Z","sequence":13171,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:19.967Z","sequence":13172,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-335a13c6-8855-46db-ae44-d12e74e8383b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:20.191Z","sequence":13173,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:20.192Z","sequence":13174,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:20.195Z","sequence":13175,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-f6c1919c-19f4-46d2-a808-629521f1105c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:20.201Z","sequence":13176,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:20.201Z","sequence":13177,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-AD0B7556CE7D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:20.215Z","sequence":13178,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-97231f73-9edb-49c1-82fe-c7312bdda805, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:20.345Z","sequence":13179,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:20.345Z","sequence":13180,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: AD0B7556CE7D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:20.35Z","sequence":13181,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-15eb7c9d-fa4c-4b7c-aed7-a1960810ddbf, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:20.355Z","sequence":13182,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:20.355Z","sequence":13183,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF6BE5A522DAA39] for gateway [AD0B7556CE7D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:20.36Z","sequence":13184,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:20.36Z","sequence":13185,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:20.591Z","sequence":13186,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-66cb6f9e-42bd-48dd-9213-b8b38c7321fd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:25.21Z","sequence":13187,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:25.21Z","sequence":13188,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019C5] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:25.215Z","sequence":13189,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:25.215Z","sequence":13190,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:25.223Z","sequence":13191,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1957ff7f-a55f-4598-9c9c-28798f6fcc12, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:26.001Z","sequence":13192,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:26.001Z","sequence":13193,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001C0] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:26.009Z","sequence":13194,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:26.009Z","sequence":13195,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:26.012Z","sequence":13196,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-07bf6abb-f04c-4c66-8fec-272bb2c8e5f1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:26.093Z","sequence":13197,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:26.093Z","sequence":13198,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001C0] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:26.098Z","sequence":13199,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:26.098Z","sequence":13200,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:26.101Z","sequence":13201,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b936ae06-a0e3-4cb0-b888-6675c188d1cb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:29.637Z","sequence":13202,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF6BE5A522DAA39]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1b70a4117d6f933f","parentId":"719dc6e277a9f7fa","traceId":"00000000000000000bfe02d0920ed268","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:29.656Z","sequence":13203,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF6BE5A522DAA39]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1b70a4117d6f933f","parentId":"719dc6e277a9f7fa","traceId":"00000000000000000bfe02d0920ed268","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:29.986Z","sequence":13204,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: AD0B7556CE7D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c4baadd6bbf0665d","parentId":"1803d8697cb7d6d0","traceId":"00000000000000009c80e983d2cc761a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:30.009Z","sequence":13205,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: AD0B7556CE7D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c4baadd6bbf0665d","parentId":"1803d8697cb7d6d0","traceId":"00000000000000009c80e983d2cc761a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:31.784Z","sequence":13206,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:31.784Z","sequence":13207,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000169] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:31.79Z","sequence":13208,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:31.79Z","sequence":13209,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:31.79Z","sequence":13210,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:31.79Z","sequence":13211,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000169] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:31.794Z","sequence":13212,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-cc672f20-19aa-46bf-873c-b96572f72779, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:31.796Z","sequence":13213,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:31.796Z","sequence":13214,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:31.798Z","sequence":13215,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9aa3d14a-e815-448e-aed6-5676878798dc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:39.504Z","sequence":13216,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:39.504Z","sequence":13217,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001ADC] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:39.512Z","sequence":13218,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:39.512Z","sequence":13219,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:39.529Z","sequence":13220,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6fdde96f-a706-4f2a-a950-3c05cc402b1e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:54.949Z","sequence":13221,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:54.949Z","sequence":13222,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10007FE] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:54.96Z","sequence":13223,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:54.96Z","sequence":13224,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:54.966Z","sequence":13225,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1e0257d7-9528-4245-84f6-0ea9e4a78b34, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:55.201Z","sequence":13226,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/conditionall:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:55.203Z","sequence":13227,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: conditionall, device-id: 0008004B512D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:55.213Z","sequence":13228,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-bcea33e9-dd5c-4d19-8632-adb13fd574ac, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:55.221Z","sequence":13229,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:55.222Z","sequence":13230,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: conditionall]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:55.225Z","sequence":13231,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-6cac4e54-dbe3-42cc-8b6b-d02929e0e822, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:58.217Z","sequence":13232,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:58.218Z","sequence":13233,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000ACD] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:58.224Z","sequence":13234,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:58.224Z","sequence":13235,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:14:58.23Z","sequence":13236,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a35d262b-2c65-4049-9627-7861b98bbd50, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:15:01.185Z","sequence":13237,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:15:01.186Z","sequence":13238,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:15:01.191Z","sequence":13239,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4541dd45-c4e4-4525-9039-71fac0a54fa4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:15:01.194Z","sequence":13240,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:15:01.195Z","sequence":13241,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oci]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:15:01.197Z","sequence":13242,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-851fb7f3-ecac-4414-b846-646a44881d8a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:15:01.229Z","sequence":13243,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:15:01.229Z","sequence":13244,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 70B3D57BB10001AE] for gateway [0008004BB84C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:15:01.235Z","sequence":13245,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:0.4.0\"\n },\n \"viaGroups\" : [ \"gateways_lanxess\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:15:01.235Z","sequence":13246,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_lanxess\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:15:01.238Z","sequence":13247,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8873db2a-d5d6-4c96-9258-3a13a9c2c385, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:15:01.634Z","sequence":13248,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:15:01.634Z","sequence":13249,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001E8] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:15:01.647Z","sequence":13250,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:15:01.647Z","sequence":13251,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:15:01.653Z","sequence":13252,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-fbfda7e5-7310-4d12-8572-6797afeba844, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:15:02.239Z","sequence":13253,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:15:02.239Z","sequence":13254,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006E0] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:15:02.255Z","sequence":13255,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:15:02.256Z","sequence":13256,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:15:02.256Z","sequence":13257,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:15:02.257Z","sequence":13258,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001E8] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:15:02.265Z","sequence":13259,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0e1ed567-3182-4f0a-b081-f591a5b03628, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:15:02.269Z","sequence":13260,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:15:02.269Z","sequence":13261,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:15:02.272Z","sequence":13262,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-37c5e5ab-1a64-44ad-8813-a83ea02ca768, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:15:04.889Z","sequence":13263,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:15:04.89Z","sequence":13264,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: chevronsgp]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:15:04.897Z","sequence":13265,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-3bcdce16-7117-4efc-b528-093acfff8802, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:15:04.899Z","sequence":13266,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/chevronsgp:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:15:04.899Z","sequence":13267,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: chevronsgp, type: hashed-password, auth-id: auth-chevronsgp_42]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:15:04.915Z","sequence":13268,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-94b00d1e-0a29-4348-89b9-f67b13b51a3d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:15:05.034Z","sequence":13269,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/chevronsgp:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:15:05.034Z","sequence":13270,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: chevronsgp, device-id: 70B3D57BB10008BD] for gateway [gateway_chevronsgp_network_42]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:15:05.035Z","sequence":13271,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/chevronsgp:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:15:05.035Z","sequence":13272,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: chevronsgp, device-id: gateway_chevronsgp_network_42]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:15:05.042Z","sequence":13273,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2e433c36-24e1-4bb7-9fe6-5af80ef857ca, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:15:05.043Z","sequence":13274,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_chevronsgp\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:15:05.043Z","sequence":13275,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_chevronsgp\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:15:05.046Z","sequence":13276,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a9215884-2537-49d4-881b-bdb30b29a083, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:15:06.328Z","sequence":13277,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:15:06.329Z","sequence":13278,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10009C5] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:15:06.335Z","sequence":13279,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:15:06.335Z","sequence":13280,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:15:06.341Z","sequence":13281,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7424739e-8921-41b9-8542-47cbec1be0f9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:15:10.131Z","sequence":13282,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:15:10.131Z","sequence":13283,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000804] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:15:10.137Z","sequence":13284,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:15:10.137Z","sequence":13285,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:15:10.141Z","sequence":13286,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-50eb8d22-cfc6-4792-8c4c-517230ec2337, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:15:24.897Z","sequence":13287,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:15:24.898Z","sequence":13288,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: shell]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:15:24.901Z","sequence":13289,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-62d081b6-b884-47cd-8c74-01ba0ba1e313, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:15:24.903Z","sequence":13290,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/shell:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:15:24.903Z","sequence":13291,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: shell, type: hashed-password, auth-id: auth-gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:15:24.913Z","sequence":13292,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-9eb064db-a66e-4919-994e-6b6139283d76, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:15:25.041Z","sequence":13293,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:15:25.041Z","sequence":13294,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000579] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:15:25.042Z","sequence":13295,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:15:25.042Z","sequence":13296,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:15:25.047Z","sequence":13297,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9ebee6b4-2d08-415b-a675-ae4928cdd8da, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:15:25.047Z","sequence":13298,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:15:25.047Z","sequence":13299,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:15:25.056Z","sequence":13300,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-af2fe226-d6b4-4d41-86a7-ef33b70e49e5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:15:26.273Z","sequence":13301,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:15:26.273Z","sequence":13302,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: ineos]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:15:26.276Z","sequence":13303,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-ff4387f1-9a2e-43ad-a223-a1feb4922aec, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:15:26.278Z","sequence":13304,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:15:26.279Z","sequence":13305,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB1000A83] for gateway [0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:15:26.284Z","sequence":13306,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:15:26.284Z","sequence":13307,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:15:26.287Z","sequence":13308,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-09e6ac1d-5bd9-44d7-ac3f-249e8e474748, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:15:30.987Z","sequence":13309,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:15:30.987Z","sequence":13310,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BB84C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:15:30.992Z","sequence":13311,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c4151b11-3ddd-4910-8765-75852518585f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:15:32.838Z","sequence":13312,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:15:32.838Z","sequence":13313,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 0008004B5135]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:15:32.844Z","sequence":13314,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7251c55d-1afb-4b9c-ae5b-0c03c06d2892, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:15:37.044Z","sequence":13315,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:15:37.044Z","sequence":13316,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BBD1B]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:15:37.05Z","sequence":13317,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6b6e4548-f9b8-4270-8af3-05cff6f93ba2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:15:37.207Z","sequence":13318,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:15:37.207Z","sequence":13319,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BA1] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:15:37.212Z","sequence":13320,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:15:37.212Z","sequence":13321,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:15:37.22Z","sequence":13322,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b5659269-6ee8-44bc-9f8d-3f0d485bceae, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:15:41.132Z","sequence":13323,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:15:41.132Z","sequence":13324,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BE0] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:15:41.137Z","sequence":13325,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:15:41.138Z","sequence":13326,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:15:41.143Z","sequence":13327,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-283da058-6dce-4be7-aad4-e316dd5cd0f3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:15:42.778Z","sequence":13328,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/arkema:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:15:42.778Z","sequence":13329,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: arkema, device-id: 0008004AE119]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:15:42.784Z","sequence":13330,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-08e3f3eb-08d5-4609-b489-cbb3250ebf18, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:15:42.787Z","sequence":13331,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:15:42.787Z","sequence":13332,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: arkema]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:15:42.79Z","sequence":13333,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-c8227412-1855-435e-801d-d233368b310d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:15:49.696Z","sequence":13334,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:15:49.697Z","sequence":13335,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000796] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:15:49.709Z","sequence":13336,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:15:49.709Z","sequence":13337,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:15:49.748Z","sequence":13338,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0cd46d8b-fc3a-434d-b73c-29ae664f3072, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:15:57.511Z","sequence":13339,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:15:57.511Z","sequence":13340,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BAD] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:15:57.548Z","sequence":13341,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:15:57.548Z","sequence":13342,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:15:57.555Z","sequence":13343,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2a0a94b4-0dc1-4850-ad13-70c9c0742098, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:16:04.226Z","sequence":13344,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191042]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"eb939c2677fd0538","parentId":"8d01445215916a51","traceId":"000000000000000037d30ee8dce85dd5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:16:04.296Z","sequence":13345,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191042, resource-version: f9555680-ceda-4f75-a857-6c0232b7cc97]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"eb939c2677fd0538","parentId":"8d01445215916a51","traceId":"000000000000000037d30ee8dce85dd5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:16:04.336Z","sequence":13346,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191042, resource-version: 2a63bd93-9cd0-451c-b710-29aa59241ce0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"eb939c2677fd0538","parentId":"8d01445215916a51","traceId":"000000000000000037d30ee8dce85dd5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:16:04.343Z","sequence":13347,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191042]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"707d0b58bbe8e640","parentId":"bd1f01207a0cebf3","traceId":"000000000000000037d30ee8dce85dd5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:16:04.569Z","sequence":13348,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191042]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"707d0b58bbe8e640","parentId":"bd1f01207a0cebf3","traceId":"000000000000000037d30ee8dce85dd5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:16:05.297Z","sequence":13349,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF98721A6813C37]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e249054d3f4d1256","parentId":"c6a344f9d2a55ee3","traceId":"0000000000000000778a0728f57d926f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:16:05.317Z","sequence":13350,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF98721A6813C37, resource-version: 00b2bd0b-8c8b-4e21-bdde-cebecd369ef7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e249054d3f4d1256","parentId":"c6a344f9d2a55ee3","traceId":"0000000000000000778a0728f57d926f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:16:05.348Z","sequence":13351,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF98721A6813C37, resource-version: 0205725c-0e6c-49d5-a69a-4c95e570d922]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e249054d3f4d1256","parentId":"c6a344f9d2a55ee3","traceId":"0000000000000000778a0728f57d926f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:16:06.43Z","sequence":13352,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:16:06.43Z","sequence":13353,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191042]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:16:06.449Z","sequence":13354,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-a83e3248-e941-42de-818c-7c8cd8424cbb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:16:06.575Z","sequence":13355,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:16:06.575Z","sequence":13356,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF98721A6813C37] for gateway [gateway_integrationtest_network_191042]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:16:06.576Z","sequence":13357,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:16:06.577Z","sequence":13358,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191042]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:16:06.581Z","sequence":13359,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:16:06.581Z","sequence":13360,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:16:06.582Z","sequence":13361,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9f51aa1e-cfcb-47da-8e68-c3033a4378e3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:16:06.956Z","sequence":13362,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8fb53897-1609-46b4-b73f-491047fbb8a3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:16:07.068Z","sequence":13363,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:16:07.068Z","sequence":13364,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BBD1C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:16:07.093Z","sequence":13365,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d28116e3-9375-412c-b9eb-8dc32fbe98cf, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:16:07.765Z","sequence":13366,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:16:07.765Z","sequence":13367,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: chevron]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:16:07.769Z","sequence":13368,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-cac870ec-f975-4ca5-b7a8-ce96ff4c0505, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:16:07.772Z","sequence":13369,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/chevron:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:16:07.773Z","sequence":13370,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: chevron, type: hashed-password, auth-id: auth-CHEVRON-ORBIWISE-EL-SEGUNDO]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:16:07.809Z","sequence":13371,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-653aa396-9776-4add-91a2-e76603b499de, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:16:19.759Z","sequence":13372,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF98721A6813C37]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"86ff5b6c7ac0e59b","parentId":"d624124ca7c00144","traceId":"0000000000000000df8697845732aa3e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:16:19.799Z","sequence":13373,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF98721A6813C37]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"86ff5b6c7ac0e59b","parentId":"d624124ca7c00144","traceId":"0000000000000000df8697845732aa3e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:16:19.924Z","sequence":13374,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191042]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4020150095991284","parentId":"317872f1e2f9da36","traceId":"0000000000000000a49b211a13a5ca4e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:16:19.957Z","sequence":13375,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191042]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4020150095991284","parentId":"317872f1e2f9da36","traceId":"0000000000000000a49b211a13a5ca4e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:16:20.47Z","sequence":13376,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: DCE685F1CF3E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2fb8efa806969457","parentId":"2a494de3e06076d9","traceId":"000000000000000081c21459daadfd63","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:16:20.488Z","sequence":13377,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: DCE685F1CF3E, resource-version: 14ccb853-9618-4adf-9336-9bc2598616cf]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2fb8efa806969457","parentId":"2a494de3e06076d9","traceId":"000000000000000081c21459daadfd63","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:16:20.498Z","sequence":13378,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: DCE685F1CF3E, resource-version: d6a084b5-b91e-4ea0-8ab4-7cef669b1670]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2fb8efa806969457","parentId":"2a494de3e06076d9","traceId":"000000000000000081c21459daadfd63","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:16:20.502Z","sequence":13379,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: DCE685F1CF3E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"01382f047caaa8c6","parentId":"1d26dbf3aa247e37","traceId":"000000000000000081c21459daadfd63","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:16:20.649Z","sequence":13380,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: DCE685F1CF3E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"01382f047caaa8c6","parentId":"1d26dbf3aa247e37","traceId":"000000000000000081c21459daadfd63","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:16:21.075Z","sequence":13381,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFF253B55ABE45B]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"48d73238da67f5fe","parentId":"4886334916e1d436","traceId":"0000000000000000cffe25ea96bd4ed8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:16:21.093Z","sequence":13382,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFF253B55ABE45B, resource-version: 5142ba11-6123-42d5-bd93-911bc6a10422]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"48d73238da67f5fe","parentId":"4886334916e1d436","traceId":"0000000000000000cffe25ea96bd4ed8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:16:21.099Z","sequence":13383,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFF253B55ABE45B, resource-version: d71f180c-3fe1-4a85-b0fe-82309f7eadff]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"48d73238da67f5fe","parentId":"4886334916e1d436","traceId":"0000000000000000cffe25ea96bd4ed8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:16:22.149Z","sequence":13384,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:16:22.149Z","sequence":13385,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-DCE685F1CF3E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:16:22.158Z","sequence":13386,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-e9b867c0-0eaf-4d13-a9b6-0e740516ee18, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:16:22.286Z","sequence":13387,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:16:22.286Z","sequence":13388,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: DCE685F1CF3E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:16:22.291Z","sequence":13389,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c0e374f2-7357-431c-8a0f-91917aaeeede, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:16:22.295Z","sequence":13390,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:16:22.295Z","sequence":13391,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFF253B55ABE45B] for gateway [DCE685F1CF3E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:16:22.302Z","sequence":13392,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:16:22.302Z","sequence":13393,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:16:22.594Z","sequence":13394,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-47a7c2d3-1c12-4e86-afea-eb4b0ccedd8b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:16:25.449Z","sequence":13395,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:16:25.449Z","sequence":13396,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:16:25.499Z","sequence":13397,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6e2348af-50da-4cd2-84e5-fe8363b70c18, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:16:25.816Z","sequence":13398,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:16:25.816Z","sequence":13399,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 70B3D57BB1000196] for gateway [0008004BB84C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:16:25.823Z","sequence":13400,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:0.4.1\"\n },\n \"viaGroups\" : [ \"gateways_lanxess\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:16:25.823Z","sequence":13401,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_lanxess\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:16:25.842Z","sequence":13402,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e98acd9d-41dc-4f11-b17e-1045bbc3d32e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:16:27.622Z","sequence":13403,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:16:27.622Z","sequence":13404,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000813] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:16:27.643Z","sequence":13405,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:16:27.643Z","sequence":13406,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:16:27.648Z","sequence":13407,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-78e21041-71ec-4f95-8ac0-4f1ad69f47d2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:16:31.927Z","sequence":13408,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFF253B55ABE45B]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ff025ac545d3279d","parentId":"c77bbbfbecedae27","traceId":"00000000000000001a0ded70f2826892","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:16:31.956Z","sequence":13409,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFF253B55ABE45B]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ff025ac545d3279d","parentId":"c77bbbfbecedae27","traceId":"00000000000000001a0ded70f2826892","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:16:32.245Z","sequence":13410,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: DCE685F1CF3E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"071d324f7201b121","parentId":"88c2f7a31ff7da94","traceId":"0000000000000000ff3002fa41f8589d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:16:32.297Z","sequence":13411,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: DCE685F1CF3E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"071d324f7201b121","parentId":"88c2f7a31ff7da94","traceId":"0000000000000000ff3002fa41f8589d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:16:32.741Z","sequence":13412,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:16:32.741Z","sequence":13413,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006A1] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:16:32.748Z","sequence":13414,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:16:32.748Z","sequence":13415,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:16:32.791Z","sequence":13416,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-140ebe61-6b80-4359-88de-92d53cf6ffde, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:16:42.331Z","sequence":13417,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:16:42.331Z","sequence":13418,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AD9] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:16:42.343Z","sequence":13419,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:16:42.343Z","sequence":13420,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:16:42.4Z","sequence":13421,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-bf66d1a5-83b4-4c22-87a9-9daa7e7e4c01, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:16:42.602Z","sequence":13422,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:16:42.602Z","sequence":13423,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B50] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:16:42.608Z","sequence":13424,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:16:42.608Z","sequence":13425,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:16:42.614Z","sequence":13426,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4c4440cd-af43-4e4b-8da8-b3ce51773141, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:16:45.641Z","sequence":13427,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:16:45.641Z","sequence":13428,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000203] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:16:45.654Z","sequence":13429,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:16:45.654Z","sequence":13430,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:16:45.657Z","sequence":13431,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b6c8aeaf-1d59-4343-889f-96805ea94434, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:16:45.793Z","sequence":13432,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:16:45.793Z","sequence":13433,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000203] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:16:45.801Z","sequence":13434,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:16:45.801Z","sequence":13435,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:16:45.805Z","sequence":13436,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f21dd8f4-f827-4c1d-aacc-73b31e755fa5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:16:53.276Z","sequence":13437,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:16:53.276Z","sequence":13438,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10007F4] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:16:53.293Z","sequence":13439,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:16:53.293Z","sequence":13440,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:16:53.341Z","sequence":13441,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-af9e7edf-2ca1-468d-8919-36d463202c3c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:16:57.497Z","sequence":13442,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:16:57.497Z","sequence":13443,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 0008004C80F4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:16:57.503Z","sequence":13444,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f3fcea82-b4c2-4b8b-a276-abd108144d31, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:16:58.451Z","sequence":13445,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:16:58.451Z","sequence":13446,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B47] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:16:58.489Z","sequence":13447,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:16:58.489Z","sequence":13448,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:16:58.552Z","sequence":13449,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e83d9068-ce79-4ef7-8e1b-c9817790fed6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:17:01.33Z","sequence":13450,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:17:01.33Z","sequence":13451,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: acta]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:17:01.334Z","sequence":13452,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-976a11e2-af03-491a-9f0f-19b36002b8bb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:17:01.336Z","sequence":13453,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/acta:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:17:01.336Z","sequence":13454,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: acta, device-id: 35343834001F0046] for gateway [0008004AAAA3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:17:01.341Z","sequence":13455,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.3.0\"\n },\n \"viaGroups\" : [ \"gateways_acta\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:17:01.341Z","sequence":13456,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_acta\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:17:01.344Z","sequence":13457,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3b677af1-6cc9-435b-8895-5789aa901580, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:17:01.979Z","sequence":13458,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:17:01.98Z","sequence":13459,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB1000A68] for gateway [0008004B5135]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:17:02.015Z","sequence":13460,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:17:02.015Z","sequence":13461,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:17:02.02Z","sequence":13462,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-cba3d1be-af59-432e-8cca-06ce88e58e08, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:17:11.617Z","sequence":13463,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oiltanking:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:17:11.617Z","sequence":13464,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oiltanking, device-id: 0008004BB60F]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:17:11.64Z","sequence":13465,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8f3af666-999d-4d1b-b923-46ce824648fb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:17:11.643Z","sequence":13466,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:17:11.643Z","sequence":13467,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oiltanking]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:17:11.646Z","sequence":13468,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-c11c824d-3f97-49cb-9328-354024be0a07, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:17:13.96Z","sequence":13469,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/chevron:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:17:13.961Z","sequence":13470,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: chevron, device-id: 70B3D57BB1000259] for gateway [CHEVRON-ORBIWISE-EL-SEGUNDO]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:17:13.988Z","sequence":13471,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_chevron\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:17:13.989Z","sequence":13472,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_chevron\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:17:14.001Z","sequence":13473,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3ac74281-6555-4005-83b6-8a88a951c9a0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:17:14.127Z","sequence":13474,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:17:14.127Z","sequence":13475,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000159] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:17:14.134Z","sequence":13476,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:17:14.134Z","sequence":13477,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:17:14.143Z","sequence":13478,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-99db770b-965a-4175-bd2a-27df018344a4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:17:14.162Z","sequence":13479,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:17:14.162Z","sequence":13480,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000159] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:17:14.167Z","sequence":13481,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:17:14.167Z","sequence":13482,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:17:14.17Z","sequence":13483,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-56065ad1-171c-4001-b0ce-252fa779cf10, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:17:19.785Z","sequence":13484,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:17:19.785Z","sequence":13485,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10001F6] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:17:19.791Z","sequence":13486,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:17:19.791Z","sequence":13487,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:17:19.844Z","sequence":13488,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-10b66b3a-4842-4fbf-819d-3cc64f17ed5f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:17:23.594Z","sequence":13489,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:17:23.594Z","sequence":13490,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10018F8] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:17:23.599Z","sequence":13491,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:17:23.599Z","sequence":13492,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:17:23.606Z","sequence":13493,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9e54e605-b3cc-446a-bcd2-c38884d0c27e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:17:24.919Z","sequence":13494,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:17:24.919Z","sequence":13495,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019E1] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:17:24.924Z","sequence":13496,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:17:24.924Z","sequence":13497,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:17:24.93Z","sequence":13498,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1b0c1cf0-fcb0-441a-96f5-3d7fe4b8b893, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:17:54.696Z","sequence":13499,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/aloxy:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:17:54.696Z","sequence":13500,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: aloxy, device-id: 0008004A8F68]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:17:54.742Z","sequence":13501,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-385ae747-d823-45d1-80a3-c6ee044d49a7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:17:54.747Z","sequence":13502,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:17:54.747Z","sequence":13503,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: aloxy]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:17:54.751Z","sequence":13504,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-f355637b-43b4-4ae6-8c24-f0b0d5d1ce6f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:17:56.399Z","sequence":13505,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:17:56.399Z","sequence":13506,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A03] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:17:56.407Z","sequence":13507,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:17:56.408Z","sequence":13508,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:17:56.451Z","sequence":13509,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-eb1ea5d0-7eb6-4450-b907-ae974c5f9ca2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:17:57.74Z","sequence":13510,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:17:57.74Z","sequence":13511,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C2C] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:17:57.745Z","sequence":13512,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:17:57.746Z","sequence":13513,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:17:57.752Z","sequence":13514,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-431d5ed8-6e78-47d6-b682-2f323415e27b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:17:58.109Z","sequence":13515,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:17:58.109Z","sequence":13516,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A00] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:17:58.115Z","sequence":13517,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:17:58.115Z","sequence":13518,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:17:58.121Z","sequence":13519,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5e597c0a-d4fa-439f-a036-84cd44d8112e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:01.968Z","sequence":13520,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:01.968Z","sequence":13521,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: dow]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:01.977Z","sequence":13522,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-00959753-25d7-47fd-9aa1-00c2824dee9c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:01.981Z","sequence":13523,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/dow:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:01.981Z","sequence":13524,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: dow, type: hashed-password, auth-id: auth-gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:01.994Z","sequence":13525,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-5d83415d-7e02-4cea-a95c-bffb5348aecf, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:02.257Z","sequence":13526,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:02.258Z","sequence":13527,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 70B3D57BB100126B] for gateway [gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:02.259Z","sequence":13528,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:02.259Z","sequence":13529,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:02.263Z","sequence":13530,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:02.263Z","sequence":13531,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:02.265Z","sequence":13532,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0a2c9641-1a98-4e7a-bf8a-28db2aae87a6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:02.268Z","sequence":13533,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e255bac0-3740-45fc-a58a-80b94f561e52, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:04.372Z","sequence":13534,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191044]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bf99e73cbeedf58a","parentId":"36cabc5ae302358b","traceId":"00000000000000009bb3d53f02848b74","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:04.403Z","sequence":13535,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191044, resource-version: 7ede6bd2-cbd8-48a5-9827-223756c44c5b]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bf99e73cbeedf58a","parentId":"36cabc5ae302358b","traceId":"00000000000000009bb3d53f02848b74","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:04.444Z","sequence":13536,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191044, resource-version: 3d9293b8-8101-412f-beb6-7081de281399]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bf99e73cbeedf58a","parentId":"36cabc5ae302358b","traceId":"00000000000000009bb3d53f02848b74","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:04.447Z","sequence":13537,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191044]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ba50db8d7347f01e","parentId":"be9bd3e72d199a45","traceId":"00000000000000009bb3d53f02848b74","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:04.645Z","sequence":13538,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191044]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ba50db8d7347f01e","parentId":"be9bd3e72d199a45","traceId":"00000000000000009bb3d53f02848b74","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:05.467Z","sequence":13539,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:05.467Z","sequence":13540,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BB613]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:05.475Z","sequence":13541,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d92af1a7-ed7e-4a5e-b8cb-e5003112471b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:05.48Z","sequence":13542,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:05.48Z","sequence":13543,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: lanxess]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:05.484Z","sequence":13544,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-43b651da-fd5c-49dd-9f53-c86044c90c09, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:05.542Z","sequence":13545,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF84D85CE36B5FD]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f367511e99589103","parentId":"6b0a451b128de325","traceId":"0000000000000000c2dab018de3480bc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:05.56Z","sequence":13546,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF84D85CE36B5FD, resource-version: 2f383643-ecf7-4e2d-80c3-dfe5decf0eca]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f367511e99589103","parentId":"6b0a451b128de325","traceId":"0000000000000000c2dab018de3480bc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:05.569Z","sequence":13547,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF84D85CE36B5FD, resource-version: 18dc08f4-38d3-4aff-ae8d-0e2782ddcf47]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f367511e99589103","parentId":"6b0a451b128de325","traceId":"0000000000000000c2dab018de3480bc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:06.653Z","sequence":13548,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:06.653Z","sequence":13549,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:06.669Z","sequence":13550,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-ec48ac0b-fded-466b-a40a-13b2d1ffa900, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:06.677Z","sequence":13551,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:06.677Z","sequence":13552,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191044]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:06.725Z","sequence":13553,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-6010d7d1-7468-4b6e-83ca-1d7a97a582b9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:06.845Z","sequence":13554,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:06.845Z","sequence":13555,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF84D85CE36B5FD] for gateway [gateway_integrationtest_network_191044]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:06.846Z","sequence":13556,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:06.846Z","sequence":13557,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191044]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:06.865Z","sequence":13558,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:06.865Z","sequence":13559,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:06.866Z","sequence":13560,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6189c174-1274-4556-88f6-81d4e99fcc53, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:07.412Z","sequence":13561,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6f907c11-41c9-48d1-9824-494de8d8eeeb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:13.197Z","sequence":13562,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:13.197Z","sequence":13563,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AA4] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:13.203Z","sequence":13564,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:13.204Z","sequence":13565,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:13.212Z","sequence":13566,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5f730bba-5c44-4cfd-be56-5eae01d18fd3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:14.385Z","sequence":13567,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:14.386Z","sequence":13568,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019FC] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:14.391Z","sequence":13569,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:14.391Z","sequence":13570,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:14.397Z","sequence":13571,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e89e597d-fbad-43fd-aa0c-5082faaf635a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:16.511Z","sequence":13572,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:16.511Z","sequence":13573,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100021F] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:16.517Z","sequence":13574,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:0.4.1\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:16.517Z","sequence":13575,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:16.523Z","sequence":13576,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3d4df39b-8abc-413b-8442-4fb65b3f561f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:20.342Z","sequence":13577,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF84D85CE36B5FD]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c7ef5654a9f3311a","parentId":"6e9573427991bcfa","traceId":"0000000000000000f3b9481efbd9a420","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:20.359Z","sequence":13578,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF84D85CE36B5FD]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c7ef5654a9f3311a","parentId":"6e9573427991bcfa","traceId":"0000000000000000f3b9481efbd9a420","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:20.561Z","sequence":13579,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191044]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0c74747fe4180d55","parentId":"d36a5706d16e005a","traceId":"000000000000000040f6c3ac226cd911","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:20.607Z","sequence":13580,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191044]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0c74747fe4180d55","parentId":"d36a5706d16e005a","traceId":"000000000000000040f6c3ac226cd911","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:21.189Z","sequence":13581,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: C348B6C6DD3B]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ead69c3864d86f47","parentId":"1dce710883c4f3cd","traceId":"0000000000000000e29dea90cee2418f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:21.21Z","sequence":13582,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: C348B6C6DD3B, resource-version: 7bf2f9b7-84ba-47e6-abfa-95b0b2bd3642]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ead69c3864d86f47","parentId":"1dce710883c4f3cd","traceId":"0000000000000000e29dea90cee2418f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:21.239Z","sequence":13583,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: C348B6C6DD3B, resource-version: 6dea7ee2-2d06-4a0b-b75e-859dbfe6f145]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ead69c3864d86f47","parentId":"1dce710883c4f3cd","traceId":"0000000000000000e29dea90cee2418f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:21.243Z","sequence":13584,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: C348B6C6DD3B]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1648b89d1d5124f9","parentId":"71d95da85bc15e55","traceId":"0000000000000000e29dea90cee2418f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:21.429Z","sequence":13585,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: C348B6C6DD3B]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1648b89d1d5124f9","parentId":"71d95da85bc15e55","traceId":"0000000000000000e29dea90cee2418f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:21.954Z","sequence":13586,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF24188939605AF]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"43b4b703629bdc12","parentId":"502fdcbc4cccefdf","traceId":"0000000000000000638a319505eb19f1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:21.995Z","sequence":13587,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF24188939605AF, resource-version: 3d855d6e-f205-491f-a43b-f4a1b3c32634]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"43b4b703629bdc12","parentId":"502fdcbc4cccefdf","traceId":"0000000000000000638a319505eb19f1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:22.017Z","sequence":13588,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF24188939605AF, resource-version: 20143e86-f53d-447b-a222-69bb86a727ca]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"43b4b703629bdc12","parentId":"502fdcbc4cccefdf","traceId":"0000000000000000638a319505eb19f1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:22.856Z","sequence":13589,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/acta:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:22.856Z","sequence":13590,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: acta, device-id: 0008004AAAA3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:22.864Z","sequence":13591,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2c824734-c358-404c-a315-32c02479ed61, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:23.063Z","sequence":13592,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:23.063Z","sequence":13593,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:23.068Z","sequence":13594,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-e77dd566-e580-451b-999a-111ac6d19288, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:23.072Z","sequence":13595,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:23.072Z","sequence":13596,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-C348B6C6DD3B]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:23.085Z","sequence":13597,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-62c58077-e736-460a-b0dc-6a6f88747ad5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:23.221Z","sequence":13598,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:23.221Z","sequence":13599,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: C348B6C6DD3B]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:23.249Z","sequence":13600,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-07c1d4bd-2375-49af-8d38-19cfdd5dead1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:23.253Z","sequence":13601,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:23.253Z","sequence":13602,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF24188939605AF] for gateway [C348B6C6DD3B]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:23.259Z","sequence":13603,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:23.259Z","sequence":13604,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:23.452Z","sequence":13605,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3d19a603-129d-4e7f-9672-8ad8d35eb411, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:24.437Z","sequence":13606,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:24.437Z","sequence":13607,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: flint]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:24.44Z","sequence":13608,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-4f1028ce-167f-41a9-92fb-ae95077150dd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:24.442Z","sequence":13609,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/flint:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:24.442Z","sequence":13610,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: flint, type: hashed-password, auth-id: auth-flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:24.452Z","sequence":13611,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-469ac34c-d324-4858-b4b6-bf8aa1c55beb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:24.589Z","sequence":13612,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:24.59Z","sequence":13613,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB100088F] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:24.598Z","sequence":13614,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:24.598Z","sequence":13615,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:24.602Z","sequence":13616,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f1f7e244-5d72-4768-a14a-afae7364f888, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:28.4Z","sequence":13617,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:28.4Z","sequence":13618,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: shell]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:28.403Z","sequence":13619,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-52a6b1ba-d3b5-4bf0-b665-25fd787b2949, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:28.405Z","sequence":13620,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/shell:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:28.406Z","sequence":13621,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: shell, type: hashed-password, auth-id: auth-gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:28.416Z","sequence":13622,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-2b78b819-24ac-426c-ac06-573bfe7f00ec, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:28.563Z","sequence":13623,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:28.564Z","sequence":13624,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C2E] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:28.569Z","sequence":13625,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:28.569Z","sequence":13626,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:28.591Z","sequence":13627,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-177e9529-a514-4717-b356-9c921bc1efe2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:30.973Z","sequence":13628,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:30.973Z","sequence":13629,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019FA] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:30.979Z","sequence":13630,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:30.979Z","sequence":13631,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:30.985Z","sequence":13632,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-623ee690-ecbc-4d90-826f-09006d39499a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:31.508Z","sequence":13633,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:31.509Z","sequence":13634,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 70B3D57BB1001266] for gateway [gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:31.545Z","sequence":13635,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:31.545Z","sequence":13636,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:31.552Z","sequence":13637,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6875d052-c2b9-4e41-9ed5-748be8bb7bc4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:31.742Z","sequence":13638,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:31.743Z","sequence":13639,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B78] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:31.768Z","sequence":13640,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:31.768Z","sequence":13641,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:31.778Z","sequence":13642,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8c620abe-0d62-4ea1-b884-869c08bf0301, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:35.046Z","sequence":13643,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF24188939605AF]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"24ac59a577e84f2a","parentId":"ff98502d762c3dcd","traceId":"0000000000000000d4b3aba894fa2304","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:35.093Z","sequence":13644,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF24188939605AF]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"24ac59a577e84f2a","parentId":"ff98502d762c3dcd","traceId":"0000000000000000d4b3aba894fa2304","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:35.433Z","sequence":13645,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: C348B6C6DD3B]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"00cacc7fff3f2758","parentId":"97ede649261a6e63","traceId":"0000000000000000b4d40a3cbc8a4521","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:35.487Z","sequence":13646,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: C348B6C6DD3B]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"00cacc7fff3f2758","parentId":"97ede649261a6e63","traceId":"0000000000000000b4d40a3cbc8a4521","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:38.122Z","sequence":13647,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:38.122Z","sequence":13648,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AAB] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:38.128Z","sequence":13649,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:38.128Z","sequence":13650,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:38.134Z","sequence":13651,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-58893ff5-0628-4751-9f33-51c9a4445f90, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:41.987Z","sequence":13652,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:41.987Z","sequence":13653,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C24] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:41.992Z","sequence":13654,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:41.992Z","sequence":13655,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:41.999Z","sequence":13656,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f5dfe206-2f57-4fae-8536-f4f919664c98, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:44.253Z","sequence":13657,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:44.254Z","sequence":13658,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019FB] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:44.26Z","sequence":13659,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:44.26Z","sequence":13660,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:44.266Z","sequence":13661,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b5ac4c8f-6599-4f53-aef9-03347d784c60, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:46.841Z","sequence":13662,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:46.841Z","sequence":13663,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C25] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:46.848Z","sequence":13664,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:46.848Z","sequence":13665,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:46.855Z","sequence":13666,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e5294899-9d08-4a56-8a11-c05dd1e5aa8d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:50.147Z","sequence":13667,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:50.147Z","sequence":13668,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:50.153Z","sequence":13669,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b8ddd581-c8e2-40e1-a10b-daac1b097b77, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:50.157Z","sequence":13670,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:50.157Z","sequence":13671,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oci]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:50.16Z","sequence":13672,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-a70fc88f-1ee8-430b-80f2-af27b9ec7178, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:51.743Z","sequence":13673,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:51.744Z","sequence":13674,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001402] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:51.749Z","sequence":13675,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:51.75Z","sequence":13676,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:51.756Z","sequence":13677,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a5acdc14-742d-41be-870e-8f8503218834, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:51.947Z","sequence":13678,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:51.947Z","sequence":13679,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A06] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:51.953Z","sequence":13680,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:51.954Z","sequence":13681,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:51.96Z","sequence":13682,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-88635236-8a7b-4b61-a487-6c80cf5a7d69, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:59.299Z","sequence":13683,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/repsol:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:59.299Z","sequence":13684,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: repsol, device-id: 0008004A37FF]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:59.305Z","sequence":13685,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c3cf32e1-b23e-436c-910a-a12b4c80b030, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:59.308Z","sequence":13686,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:59.309Z","sequence":13687,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: repsol]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:18:59.312Z","sequence":13688,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-fbdd3d10-3db2-4403-a5da-1151f32b57c9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:19:10.238Z","sequence":13689,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:19:10.238Z","sequence":13690,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B72] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:19:10.244Z","sequence":13691,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:19:10.244Z","sequence":13692,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:19:10.251Z","sequence":13693,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d0cd0f1a-9249-4e66-8a33-40823a402b05, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:19:14.55Z","sequence":13694,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:19:14.551Z","sequence":13695,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000792] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:19:14.567Z","sequence":13696,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:19:14.567Z","sequence":13697,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:19:14.575Z","sequence":13698,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-880b75a5-ea13-41db-b76d-98275f922020, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:19:17.862Z","sequence":13699,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:19:17.862Z","sequence":13700,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10007A1] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:19:17.869Z","sequence":13701,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:19:17.869Z","sequence":13702,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:19:17.876Z","sequence":13703,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ec4ca39e-efc8-4c62-a82e-ef8e838daced, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:19:18.893Z","sequence":13704,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:19:18.893Z","sequence":13705,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A01] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:19:18.904Z","sequence":13706,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:19:18.904Z","sequence":13707,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:19:18.913Z","sequence":13708,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ced3a75f-5847-40c0-bdf6-a1d0dc7d44ea, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:19:19.937Z","sequence":13709,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:19:19.937Z","sequence":13710,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 0008004B51D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:19:19.949Z","sequence":13711,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9d6ecfcc-f2ff-48a6-b9de-5e71a92314b8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:19:19.953Z","sequence":13712,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:19:19.953Z","sequence":13713,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: dow]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:19:19.956Z","sequence":13714,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-279a4b08-9d73-42f5-95a2-0e6ca137a1de, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:19:21.16Z","sequence":13715,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:19:21.16Z","sequence":13716,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB100084E] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:19:21.161Z","sequence":13717,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:19:21.161Z","sequence":13718,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:19:21.166Z","sequence":13719,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:19:21.166Z","sequence":13720,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:19:21.167Z","sequence":13721,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-77c385c9-7b82-4c05-8cdb-6200f88232b2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:19:21.171Z","sequence":13722,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-934e2f84-847d-46c0-a7f9-c5f8fcb1f9c9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:19:27.05Z","sequence":13723,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:19:27.05Z","sequence":13724,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AB2] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:19:27.056Z","sequence":13725,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:19:27.056Z","sequence":13726,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:19:27.063Z","sequence":13727,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2fc5bc0d-8d15-4703-a9da-1fb380ae3210, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:19:32.21Z","sequence":13728,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:19:32.21Z","sequence":13729,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000A92] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:19:32.215Z","sequence":13730,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:19:32.215Z","sequence":13731,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:19:32.222Z","sequence":13732,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ee34f139-2c2a-4199-8f2b-166a038073f5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:19:43.922Z","sequence":13733,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:19:43.923Z","sequence":13734,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000524] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:19:43.93Z","sequence":13735,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:19:43.93Z","sequence":13736,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:19:43.939Z","sequence":13737,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5603452a-e183-465a-8175-cb6efaba7554, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:19:44.089Z","sequence":13738,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:19:44.089Z","sequence":13739,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000508] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:19:44.132Z","sequence":13740,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:19:44.132Z","sequence":13741,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:19:44.138Z","sequence":13742,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ce17d8e1-2f5e-41b7-b801-53f0ef976f4a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:19:50.713Z","sequence":13743,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:19:50.713Z","sequence":13744,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: chevronsgp]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:19:50.729Z","sequence":13745,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-444ee894-e290-4e53-96db-3689bd863edf, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:19:50.734Z","sequence":13746,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/chevronsgp:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:19:50.734Z","sequence":13747,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: chevronsgp, type: hashed-password, auth-id: auth-chevronsgp_42]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:19:50.784Z","sequence":13748,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-025f207b-d2c6-49ad-b6ac-2143239a0559, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:19:50.909Z","sequence":13749,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/chevronsgp:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:19:50.909Z","sequence":13750,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: chevronsgp, device-id: 70B3D57BB10008C7] for gateway [gateway_chevronsgp_network_42]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:19:50.914Z","sequence":13751,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_chevronsgp\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:19:50.914Z","sequence":13752,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_chevronsgp\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:19:50.917Z","sequence":13753,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-649128e0-bdc8-48c1-b25c-42e87fbb6914, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:19:52.293Z","sequence":13754,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/acta:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:19:52.293Z","sequence":13755,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: acta, device-id: 39383837002B0047] for gateway [0008004AAAA3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:19:52.305Z","sequence":13756,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.3.0\"\n },\n \"viaGroups\" : [ \"gateways_acta\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:19:52.306Z","sequence":13757,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_acta\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:19:52.308Z","sequence":13758,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b335cd03-cc21-47b4-9457-75f1a15c9a77, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:19:56.924Z","sequence":13759,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/conditionall:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:19:56.925Z","sequence":13760,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: conditionall, device-id: 0008004B512D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:19:56.931Z","sequence":13761,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2f9450c5-b19a-40f0-87e7-ad49cdedaf8c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:19:56.934Z","sequence":13762,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:19:56.934Z","sequence":13763,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: conditionall]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:19:56.937Z","sequence":13764,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-04c4e13b-3520-4339-90b1-b1fa26de60c0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:19:59.876Z","sequence":13765,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:19:59.877Z","sequence":13766,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000177] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:19:59.89Z","sequence":13767,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:19:59.89Z","sequence":13768,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:19:59.893Z","sequence":13769,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b55fd8dc-83b1-4481-9fe1-0fd55c3bdbe7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:19:59.911Z","sequence":13770,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:19:59.912Z","sequence":13771,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000177] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:19:59.917Z","sequence":13772,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:19:59.917Z","sequence":13773,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:19:59.92Z","sequence":13774,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2d6bf9e8-bc7e-4bfe-a2a6-03baccc7fb34, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:00.197Z","sequence":13775,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:00.198Z","sequence":13776,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 70B3D57BB1001284] for gateway [gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:00.204Z","sequence":13777,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:00.204Z","sequence":13778,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:00.208Z","sequence":13779,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-028bc6dd-8c9c-4682-8dfc-56367949c329, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:03.542Z","sequence":13780,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:03.542Z","sequence":13781,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:03.549Z","sequence":13782,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2fcbf946-1e49-43d1-a691-f16be4b03662, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:04.304Z","sequence":13783,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191046]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ea6837f28ab5f0a7","parentId":"e9fc44ea2a3f6204","traceId":"00000000000000008c9800139ba7eb21","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:04.323Z","sequence":13784,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191046, resource-version: 8babd937-f3ec-486c-bfdb-77db4a8942b5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ea6837f28ab5f0a7","parentId":"e9fc44ea2a3f6204","traceId":"00000000000000008c9800139ba7eb21","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:04.332Z","sequence":13785,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191046, resource-version: dc9465f3-8d4c-4330-adc6-21d00f433931]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ea6837f28ab5f0a7","parentId":"e9fc44ea2a3f6204","traceId":"00000000000000008c9800139ba7eb21","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:04.335Z","sequence":13786,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191046]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2392dda8a8ca16ec","parentId":"4a558bedd7b57fdf","traceId":"00000000000000008c9800139ba7eb21","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:04.489Z","sequence":13787,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191046]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2392dda8a8ca16ec","parentId":"4a558bedd7b57fdf","traceId":"00000000000000008c9800139ba7eb21","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:05.907Z","sequence":13788,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF50FA961AACA01]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7ef0d5f95acea7be","parentId":"7690fb9eaa59247e","traceId":"00000000000000002cdb3146636d6bc7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:05.922Z","sequence":13789,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF50FA961AACA01, resource-version: 70220bba-7cec-42e2-affc-e8f1df2f0536]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7ef0d5f95acea7be","parentId":"7690fb9eaa59247e","traceId":"00000000000000002cdb3146636d6bc7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:05.929Z","sequence":13790,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF50FA961AACA01, resource-version: 2718cf23-f1d9-483f-9b6b-3d581a9d1700]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7ef0d5f95acea7be","parentId":"7690fb9eaa59247e","traceId":"00000000000000002cdb3146636d6bc7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:07.002Z","sequence":13791,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:07.003Z","sequence":13792,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191046]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:07.015Z","sequence":13793,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-1dba49e8-f3c4-4289-be74-a139f642bea1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:07.135Z","sequence":13794,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:07.135Z","sequence":13795,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF50FA961AACA01] for gateway [gateway_integrationtest_network_191046]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:07.136Z","sequence":13796,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:07.136Z","sequence":13797,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191046]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:07.141Z","sequence":13798,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:07.141Z","sequence":13799,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:07.142Z","sequence":13800,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c6b31eeb-a09e-4929-a4c7-ea725b6f63c4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:07.458Z","sequence":13801,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9f0ec016-d584-413a-9b4b-035f1e502689, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:13.783Z","sequence":13802,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:13.783Z","sequence":13803,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100052A] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:13.79Z","sequence":13804,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:13.79Z","sequence":13805,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:13.798Z","sequence":13806,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6b570d19-8814-408b-8880-2779d4b4174a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:21.432Z","sequence":13807,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF50FA961AACA01]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e7ca8a63a732eaa0","parentId":"14c54f79c1092a00","traceId":"000000000000000069d54f4b2076934d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:21.453Z","sequence":13808,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF50FA961AACA01]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e7ca8a63a732eaa0","parentId":"14c54f79c1092a00","traceId":"000000000000000069d54f4b2076934d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:21.689Z","sequence":13809,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191046]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5897c92622899bd1","parentId":"ccd610dd08491d82","traceId":"0000000000000000511ec284cf337896","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:21.708Z","sequence":13810,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191046]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5897c92622899bd1","parentId":"ccd610dd08491d82","traceId":"0000000000000000511ec284cf337896","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:22.247Z","sequence":13811,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 622C91F9984E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"852b96bde9ccaeed","parentId":"2905aa0e259f8521","traceId":"00000000000000000cb2db1c4b451b5d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:22.27Z","sequence":13812,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 622C91F9984E, resource-version: 26ac97b3-cbab-402c-9171-5c21f8c57ac7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"852b96bde9ccaeed","parentId":"2905aa0e259f8521","traceId":"00000000000000000cb2db1c4b451b5d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:22.278Z","sequence":13813,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 622C91F9984E, resource-version: 7feca859-7189-4f03-b351-863e0e10b558]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"852b96bde9ccaeed","parentId":"2905aa0e259f8521","traceId":"00000000000000000cb2db1c4b451b5d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:22.281Z","sequence":13814,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 622C91F9984E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8d3a7d376c245f31","parentId":"79d85f4772e0f5bc","traceId":"00000000000000000cb2db1c4b451b5d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:22.487Z","sequence":13815,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 622C91F9984E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8d3a7d376c245f31","parentId":"79d85f4772e0f5bc","traceId":"00000000000000000cb2db1c4b451b5d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:23.008Z","sequence":13816,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF89F62195B2741]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"da08ba7713f63bd9","parentId":"797772c3f814ba35","traceId":"0000000000000000995647bdfe3610b1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:23.024Z","sequence":13817,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF89F62195B2741, resource-version: a6ab8dfd-334c-4101-b848-ea25da3683c2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"da08ba7713f63bd9","parentId":"797772c3f814ba35","traceId":"0000000000000000995647bdfe3610b1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:23.03Z","sequence":13818,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF89F62195B2741, resource-version: f5bd3284-1ac7-47ad-b0a4-1b3e1cbbef7a]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"da08ba7713f63bd9","parentId":"797772c3f814ba35","traceId":"0000000000000000995647bdfe3610b1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:24.074Z","sequence":13819,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:24.074Z","sequence":13820,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-622C91F9984E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:24.085Z","sequence":13821,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-2425995d-dd46-4130-9ed1-c454eefcb991, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:24.203Z","sequence":13822,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:24.203Z","sequence":13823,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 622C91F9984E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:24.208Z","sequence":13824,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5f2ef64f-bff8-4431-9996-3a6c2d895af4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:24.212Z","sequence":13825,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:24.212Z","sequence":13826,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF89F62195B2741] for gateway [622C91F9984E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:24.218Z","sequence":13827,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:24.218Z","sequence":13828,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:24.387Z","sequence":13829,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-983cf95c-7927-451a-9039-ae5de224bd05, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:25.367Z","sequence":13830,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:25.367Z","sequence":13831,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000F83] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:25.367Z","sequence":13832,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:25.367Z","sequence":13833,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:25.379Z","sequence":13834,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:25.379Z","sequence":13835,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:25.38Z","sequence":13836,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-aadbea07-c770-4a4e-9b73-421ae14c8b29, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:25.385Z","sequence":13837,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-fa5e2826-0088-46f3-8b9d-27298a18247a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:26.576Z","sequence":13838,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:26.577Z","sequence":13839,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AA7] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:26.583Z","sequence":13840,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:26.583Z","sequence":13841,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:26.59Z","sequence":13842,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8b485a85-9e22-4f62-8fd4-d693a627acb3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:29.976Z","sequence":13843,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:29.977Z","sequence":13844,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: ineos]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:29.98Z","sequence":13845,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-9d361e31-2064-42b0-88a2-59a8a8c85919, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:29.982Z","sequence":13846,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:29.982Z","sequence":13847,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB1000A6A] for gateway [0008004B5135]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:29.991Z","sequence":13848,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:29.991Z","sequence":13849,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:30.047Z","sequence":13850,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6851e600-572e-4b3b-8bd6-33b62e6f6adc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:30.821Z","sequence":13851,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:30.821Z","sequence":13852,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB1000A6A] for gateway [0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:30.828Z","sequence":13853,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:30.828Z","sequence":13854,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:30.83Z","sequence":13855,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d3056ccb-6d70-41ac-9bea-e16b368961f3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:32.731Z","sequence":13856,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:32.731Z","sequence":13857,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BB84C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:32.737Z","sequence":13858,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-edd3e3f5-06ec-4c3e-9d00-49c1fa3f989f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:34.456Z","sequence":13859,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:34.456Z","sequence":13860,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 0008004B5135]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:34.462Z","sequence":13861,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c49ba997-8e31-4589-89bc-403cd55cd365, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:36.523Z","sequence":13862,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:36.523Z","sequence":13863,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: acta]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:36.531Z","sequence":13864,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-606d4071-9a11-44b3-9a46-056dfe396502, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:38.109Z","sequence":13865,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF89F62195B2741]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b32ae062bddfd229","parentId":"f9b54400a8ec32c5","traceId":"00000000000000004965c44626fe1a82","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:38.153Z","sequence":13866,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF89F62195B2741]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b32ae062bddfd229","parentId":"f9b54400a8ec32c5","traceId":"00000000000000004965c44626fe1a82","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:38.441Z","sequence":13867,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 622C91F9984E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"eb27ccdc623b6b83","parentId":"abec603f74aa18ea","traceId":"00000000000000006482b83f27532330","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:38.493Z","sequence":13868,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 622C91F9984E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"eb27ccdc623b6b83","parentId":"abec603f74aa18ea","traceId":"00000000000000006482b83f27532330","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:38.862Z","sequence":13869,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:38.862Z","sequence":13870,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BBD1B]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:38.868Z","sequence":13871,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-19da0ebf-3735-4e6c-9ca3-ee565d10d634, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:44.593Z","sequence":13872,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/arkema:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:44.593Z","sequence":13873,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: arkema, device-id: 0008004AE119]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:44.617Z","sequence":13874,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3c0248bf-7c31-4686-8cd8-6037fe863054, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:44.621Z","sequence":13875,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:44.621Z","sequence":13876,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: arkema]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:44.626Z","sequence":13877,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-95cd8862-b11d-4d47-80c4-ec83afc5a690, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:47.659Z","sequence":13878,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:47.659Z","sequence":13879,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10007F2] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:47.691Z","sequence":13880,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:47.692Z","sequence":13881,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:47.696Z","sequence":13882,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b3359f26-e769-40a2-aed5-50fa3b684ae3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:50.25Z","sequence":13883,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:50.25Z","sequence":13884,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006C5] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:50.268Z","sequence":13885,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:50.268Z","sequence":13886,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:50.296Z","sequence":13887,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-caa51bd6-1e19-4b22-84d4-b909bfccab6a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:59.606Z","sequence":13888,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:59.606Z","sequence":13889,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001D4] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:59.626Z","sequence":13890,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:59.626Z","sequence":13891,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:59.642Z","sequence":13892,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-88cad75a-19dc-44c7-9b02-7b3f476ab99d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:59.693Z","sequence":13893,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:59.693Z","sequence":13894,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001D4] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:59.724Z","sequence":13895,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:59.725Z","sequence":13896,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:20:59.737Z","sequence":13897,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-932e1a97-108e-45e0-b6be-47b29699324a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:21:00.439Z","sequence":13898,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:21:00.439Z","sequence":13899,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10002AC] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:21:00.497Z","sequence":13900,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:21:00.498Z","sequence":13901,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:21:00.549Z","sequence":13902,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e03d16bf-dfc6-4a52-ae53-ec4fcfa3fe1d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:21:01.737Z","sequence":13903,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/conditionall:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:21:01.737Z","sequence":13904,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: conditionall, device-id: 70B3D57BB10001F0] for gateway [0008004B512D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:21:01.793Z","sequence":13905,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_conditionall\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:21:01.793Z","sequence":13906,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_conditionall\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:21:01.797Z","sequence":13907,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-cf7aefbb-b929-4d7c-bb9f-46b27d1955f4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:21:03.038Z","sequence":13908,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:21:03.038Z","sequence":13909,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019E7] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:21:03.085Z","sequence":13910,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:21:03.086Z","sequence":13911,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:21:03.2Z","sequence":13912,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-44a640a6-cacb-4931-bb32-28af6c77f0af, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:21:08.653Z","sequence":13913,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:21:08.653Z","sequence":13914,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB1000A77] for gateway [0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:21:08.673Z","sequence":13915,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:21:08.673Z","sequence":13916,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:21:08.676Z","sequence":13917,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ed5fa2c9-e6c5-45f1-a89d-e71afd1da6c5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:21:09.137Z","sequence":13918,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:21:09.137Z","sequence":13919,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C59] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:21:09.149Z","sequence":13920,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:21:09.149Z","sequence":13921,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:21:09.161Z","sequence":13922,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d5dd2ff8-3f9e-4d39-bcd8-2abd90626d69, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:21:10.303Z","sequence":13923,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:21:10.304Z","sequence":13924,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BBD1C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:21:10.337Z","sequence":13925,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-630187bf-ebaa-464b-bcd7-fbbb6bd62210, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:21:10.344Z","sequence":13926,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:21:10.345Z","sequence":13927,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: lanxess]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:21:10.349Z","sequence":13928,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-5603913c-cc0f-43c0-a380-14e8cf3ded53, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:21:13.128Z","sequence":13929,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:21:13.128Z","sequence":13930,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000574] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:21:13.153Z","sequence":13931,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:21:13.153Z","sequence":13932,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:21:13.165Z","sequence":13933,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5df30b69-074a-41c4-9454-5a94527a6660, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:21:16.002Z","sequence":13934,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:21:16.002Z","sequence":13935,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 70B3D57BB100018E] for gateway [0008004BB84C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:21:16.007Z","sequence":13936,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_lanxess\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:21:16.007Z","sequence":13937,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_lanxess\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:21:16.01Z","sequence":13938,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-97e47ee7-7120-4e88-a90d-3be817857759, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:21:23.457Z","sequence":13939,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:21:23.457Z","sequence":13940,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AA2] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:21:23.464Z","sequence":13941,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:21:23.464Z","sequence":13942,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:21:23.48Z","sequence":13943,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ef217241-aa6a-414f-8502-e49f1b41bab3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:21:27.267Z","sequence":13944,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:21:27.267Z","sequence":13945,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:21:27.272Z","sequence":13946,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5ec34608-ffa7-4d1b-bcfa-43e47c6c68da, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:21:34.565Z","sequence":13947,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:21:34.566Z","sequence":13948,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: dow]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:21:34.569Z","sequence":13949,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-dae69162-359d-4ae5-889c-63c9e4677ff3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:21:34.571Z","sequence":13950,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/dow:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:21:34.572Z","sequence":13951,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: dow, type: hashed-password, auth-id: auth-gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:21:34.584Z","sequence":13952,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-3ca88b29-013e-44e0-af30-4b2cccbb2de5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:21:34.865Z","sequence":13953,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:21:34.865Z","sequence":13954,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 70B3D57BB1001258] for gateway [gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:21:34.872Z","sequence":13955,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:21:34.872Z","sequence":13956,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:21:34.877Z","sequence":13957,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-513fab93-50ea-471f-8d65-a0035de5a406, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:21:51.163Z","sequence":13958,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/repsol:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:21:51.163Z","sequence":13959,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: repsol, device-id: 70B3D57BB1000207] for gateway [0008004A37FF]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:21:51.171Z","sequence":13960,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:0.4.1\"\n },\n \"viaGroups\" : [ \"gateways_repsol\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:21:51.171Z","sequence":13961,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_repsol\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:21:51.175Z","sequence":13962,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e211fd42-42e2-4351-9ffd-6fe0df47e730, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:21:52.376Z","sequence":13963,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:21:52.377Z","sequence":13964,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: shell]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:21:52.38Z","sequence":13965,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-82e9edd6-8d28-46a0-91c3-57f316d22884, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:21:52.382Z","sequence":13966,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/shell:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:21:52.382Z","sequence":13967,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: shell, type: hashed-password, auth-id: auth-gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:21:52.393Z","sequence":13968,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-a5132e5b-ac11-407c-89c7-61c8c6f7cc2d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:21:52.524Z","sequence":13969,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:21:52.524Z","sequence":13970,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10018FA] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:21:52.531Z","sequence":13971,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:21:52.531Z","sequence":13972,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:21:52.541Z","sequence":13973,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2d3ef0ed-d2b4-44dc-b1ea-f9ffbb1ee708, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:21:57.517Z","sequence":13974,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:21:57.517Z","sequence":13975,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10018F3] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:21:57.536Z","sequence":13976,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:21:57.537Z","sequence":13977,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:21:57.547Z","sequence":13978,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-76082f2d-34d3-4184-bfaf-f7b04e57a0c9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:21:59.256Z","sequence":13979,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:21:59.256Z","sequence":13980,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 0008004C80F4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:21:59.262Z","sequence":13981,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9ef70547-29bb-44f7-87af-8d4671b14920, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:03.453Z","sequence":13982,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:03.453Z","sequence":13983,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019EA] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:03.458Z","sequence":13984,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:03.459Z","sequence":13985,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:03.465Z","sequence":13986,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4f3085f3-e156-4b5f-a4a9-89d669af3613, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:04.845Z","sequence":13987,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191048]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"399dd3c89e93ca2f","parentId":"707e5e93d10ad6e8","traceId":"0000000000000000b415af0dc1b52959","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:04.869Z","sequence":13988,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191048, resource-version: f2a1cd85-e6f7-4998-a792-ddc79845fab1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"399dd3c89e93ca2f","parentId":"707e5e93d10ad6e8","traceId":"0000000000000000b415af0dc1b52959","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:04.877Z","sequence":13989,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191048, resource-version: 1598b8d2-dd3f-4789-b30c-9f009518a0ad]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"399dd3c89e93ca2f","parentId":"707e5e93d10ad6e8","traceId":"0000000000000000b415af0dc1b52959","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:04.88Z","sequence":13990,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191048]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f6a9b720b161bc1e","parentId":"df6b3633689f0096","traceId":"0000000000000000b415af0dc1b52959","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:05.028Z","sequence":13991,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191048]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f6a9b720b161bc1e","parentId":"df6b3633689f0096","traceId":"0000000000000000b415af0dc1b52959","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:05.812Z","sequence":13992,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF81A07C9667CA8]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bf0db8804950b45b","parentId":"129657be99211dd3","traceId":"0000000000000000c7f9e5f15f1b77a3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:05.829Z","sequence":13993,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF81A07C9667CA8, resource-version: 86856120-5c6b-4198-9c53-62a1a2afb911]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bf0db8804950b45b","parentId":"129657be99211dd3","traceId":"0000000000000000c7f9e5f15f1b77a3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:05.835Z","sequence":13994,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF81A07C9667CA8, resource-version: fdd205e8-4dba-4666-a9e4-b9c87dc93e25]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bf0db8804950b45b","parentId":"129657be99211dd3","traceId":"0000000000000000c7f9e5f15f1b77a3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:06.352Z","sequence":13995,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:06.352Z","sequence":13996,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C06] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:06.361Z","sequence":13997,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:06.361Z","sequence":13998,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:06.368Z","sequence":13999,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7df9fa9f-cd70-4cfd-8d44-9bd9944166a6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:06.925Z","sequence":14000,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:06.925Z","sequence":14001,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:06.941Z","sequence":14002,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-c5203808-61b6-4925-a0a6-fc545caa675b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:06.947Z","sequence":14003,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:06.948Z","sequence":14004,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191048]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:07.003Z","sequence":14005,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-cdfd2232-e8ba-4c9e-b045-87adf73cdab9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:07.141Z","sequence":14006,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:07.141Z","sequence":14007,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF81A07C9667CA8] for gateway [gateway_integrationtest_network_191048]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:07.142Z","sequence":14008,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:07.142Z","sequence":14009,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191048]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:07.148Z","sequence":14010,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:07.148Z","sequence":14011,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:07.149Z","sequence":14012,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-03f973cb-f015-4e72-a3ae-508a2e5df8bc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:07.497Z","sequence":14013,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-cb760ef4-9464-40a5-8497-f0ade1cd7660, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:13.477Z","sequence":14014,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oiltanking:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:13.477Z","sequence":14015,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oiltanking, device-id: 0008004BB60F]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:13.517Z","sequence":14016,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9de8300e-5835-4d68-b1c0-ed973a5af935, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:13.521Z","sequence":14017,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:13.521Z","sequence":14018,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oiltanking]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:13.528Z","sequence":14019,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-32b0ab5b-9bff-48b8-9e90-9b6690306405, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:19.097Z","sequence":14020,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF81A07C9667CA8]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"994b8e517494fd8c","parentId":"4c446ffa9afd2f82","traceId":"00000000000000007b94ba3129f4e319","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:19.166Z","sequence":14021,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF81A07C9667CA8]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"994b8e517494fd8c","parentId":"4c446ffa9afd2f82","traceId":"00000000000000007b94ba3129f4e319","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:19.568Z","sequence":14022,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191048]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b736bc9dc1f48948","parentId":"ae2b46e174000193","traceId":"0000000000000000b957de1ae36f4a69","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:19.608Z","sequence":14023,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191048]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b736bc9dc1f48948","parentId":"ae2b46e174000193","traceId":"0000000000000000b957de1ae36f4a69","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:21.145Z","sequence":14024,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 63A08604620B]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ac8a79d3ebd70ae5","parentId":"b9b3467b7c78fc0f","traceId":"00000000000000005f20986bebae9bda","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:21.185Z","sequence":14025,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 63A08604620B, resource-version: 9be3a823-bc08-4b7f-afa5-688a5c18abb0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ac8a79d3ebd70ae5","parentId":"b9b3467b7c78fc0f","traceId":"00000000000000005f20986bebae9bda","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:21.201Z","sequence":14026,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 63A08604620B, resource-version: 22e1e371-ba5a-415f-8e77-afcd54a9a15a]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ac8a79d3ebd70ae5","parentId":"b9b3467b7c78fc0f","traceId":"00000000000000005f20986bebae9bda","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:21.207Z","sequence":14027,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 63A08604620B]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4c6ad398269d6285","parentId":"004a9ca0951ee338","traceId":"00000000000000005f20986bebae9bda","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:21.418Z","sequence":14028,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 63A08604620B]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4c6ad398269d6285","parentId":"004a9ca0951ee338","traceId":"00000000000000005f20986bebae9bda","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:22.361Z","sequence":14029,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF7E93BD0CF96C3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ac0db9c19ac4d3f3","parentId":"c0ea8a4cd8b99b97","traceId":"00000000000000006188715ea817d5f5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:22.398Z","sequence":14030,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF7E93BD0CF96C3, resource-version: 5fbfa35b-7e7c-408b-9df3-643846d67f49]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ac0db9c19ac4d3f3","parentId":"c0ea8a4cd8b99b97","traceId":"00000000000000006188715ea817d5f5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:22.409Z","sequence":14031,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF7E93BD0CF96C3, resource-version: aac4ac24-6a6e-4e42-887a-8ef24d7c04d3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ac0db9c19ac4d3f3","parentId":"c0ea8a4cd8b99b97","traceId":"00000000000000006188715ea817d5f5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:23.496Z","sequence":14032,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:23.496Z","sequence":14033,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:23.509Z","sequence":14034,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-88bde0fa-c2f9-49d7-9e5e-3b57d2971b82, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:23.512Z","sequence":14035,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:23.513Z","sequence":14036,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-63A08604620B]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:23.531Z","sequence":14037,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-e01d5d9e-a0df-4903-ba51-30ddaaada655, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:23.664Z","sequence":14038,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:23.664Z","sequence":14039,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 63A08604620B]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:23.677Z","sequence":14040,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1b481540-3fab-410c-93f8-d023600d3612, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:23.682Z","sequence":14041,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:23.683Z","sequence":14042,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF7E93BD0CF96C3] for gateway [63A08604620B]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:23.688Z","sequence":14043,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:23.689Z","sequence":14044,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:23.942Z","sequence":14045,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4309d489-ece2-4efa-8303-eadc31ce0a84, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:26.322Z","sequence":14046,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/acta:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:26.322Z","sequence":14047,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: acta, device-id: 35343834003C0033] for gateway [0008004AAAA3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:26.332Z","sequence":14048,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.3.0\"\n },\n \"viaGroups\" : [ \"gateways_acta\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:26.332Z","sequence":14049,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_acta\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:26.335Z","sequence":14050,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9b6caf0e-0803-46cd-85e3-ad5bb2019ba9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:30.009Z","sequence":14051,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:30.009Z","sequence":14052,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: flint]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:30.012Z","sequence":14053,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-38a2896e-d844-4459-910d-b1a2b838e9ed, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:30.014Z","sequence":14054,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/flint:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:30.014Z","sequence":14055,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: flint, type: hashed-password, auth-id: auth-flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:30.025Z","sequence":14056,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-a1003097-c64a-456f-a90f-de833f500190, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:30.294Z","sequence":14057,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:30.294Z","sequence":14058,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10001DE] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:30.298Z","sequence":14059,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:30.298Z","sequence":14060,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB100084B] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:30.305Z","sequence":14061,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:0.4.1\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:30.305Z","sequence":14062,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:30.31Z","sequence":14063,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:30.31Z","sequence":14064,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:30.312Z","sequence":14065,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9f29ff17-89b5-4de4-9650-ac466a772791, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:30.314Z","sequence":14066,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a52826d8-712f-447c-a08f-34dccefc6b9b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:30.793Z","sequence":14067,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:30.793Z","sequence":14068,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AA5] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:30.8Z","sequence":14069,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:30.801Z","sequence":14070,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:30.808Z","sequence":14071,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4c92b807-b605-4a1d-bf93-dc073e6fdfba, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:31.493Z","sequence":14072,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:31.493Z","sequence":14073,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006B9] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:31.501Z","sequence":14074,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:31.501Z","sequence":14075,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:31.509Z","sequence":14076,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a8186e05-61ef-49ad-b976-d6ab7bbe6018, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:31.903Z","sequence":14077,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:31.903Z","sequence":14078,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000673] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:31.908Z","sequence":14079,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:31.908Z","sequence":14080,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:31.912Z","sequence":14081,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c7432d70-aafb-4b96-a57d-358b15cbed87, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:36.102Z","sequence":14082,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:36.102Z","sequence":14083,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019DF] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:36.108Z","sequence":14084,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:36.108Z","sequence":14085,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:36.116Z","sequence":14086,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7d53b424-5497-4d80-adef-5f68cab7e04f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:37.391Z","sequence":14087,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF7E93BD0CF96C3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"44c2120f3a94d575","parentId":"b892a7713deb39a0","traceId":"0000000000000000201f2747851a4d1a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:37.407Z","sequence":14088,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF7E93BD0CF96C3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"44c2120f3a94d575","parentId":"b892a7713deb39a0","traceId":"0000000000000000201f2747851a4d1a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:37.719Z","sequence":14089,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 63A08604620B]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0d6ac409dec8ea70","parentId":"8755c465ac6165cf","traceId":"0000000000000000bdfe5094942dba77","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:37.734Z","sequence":14090,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 63A08604620B]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0d6ac409dec8ea70","parentId":"8755c465ac6165cf","traceId":"0000000000000000bdfe5094942dba77","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:38.561Z","sequence":14091,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:38.561Z","sequence":14092,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BE6] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:38.567Z","sequence":14093,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:38.567Z","sequence":14094,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:38.573Z","sequence":14095,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-cac317de-c139-4766-91c3-83095fa41112, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:43.657Z","sequence":14096,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:43.657Z","sequence":14097,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B9B] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:43.665Z","sequence":14098,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:43.665Z","sequence":14099,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:43.672Z","sequence":14100,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-69a7cdbe-a8cd-4883-bddd-93ab888f60ad, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:47.446Z","sequence":14101,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:47.446Z","sequence":14102,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AB8] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:47.457Z","sequence":14103,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:47.457Z","sequence":14104,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:47.464Z","sequence":14105,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-22e9f685-7e1f-4b8a-824e-5641e00490ec, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:56.117Z","sequence":14106,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/aloxy:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:56.117Z","sequence":14107,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: aloxy, device-id: 0008004A8F68]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:56.125Z","sequence":14108,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-de7762e8-d3c4-4738-ab35-24475e2457a6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:56.128Z","sequence":14109,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:56.128Z","sequence":14110,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: aloxy]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:56.131Z","sequence":14111,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-18038455-507a-435a-90b4-6254c47d9a05, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:57.3Z","sequence":14112,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:57.3Z","sequence":14113,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C33] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:57.306Z","sequence":14114,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:57.306Z","sequence":14115,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:22:57.313Z","sequence":14116,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c7d0596c-3a20-4a97-8792-b9affe1d8998, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:00.392Z","sequence":14117,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oiltanking:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:00.393Z","sequence":14118,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oiltanking, device-id: 70B3D57BB100076B] for gateway [0008004BB60F]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:00.399Z","sequence":14119,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_oiltanking\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:00.399Z","sequence":14120,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oiltanking\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:00.402Z","sequence":14121,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f67dbcd6-e846-47b9-b66a-9b94d0c908e8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:00.693Z","sequence":14122,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:00.693Z","sequence":14123,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000859] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:00.7Z","sequence":14124,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:00.7Z","sequence":14125,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:00.704Z","sequence":14126,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-83072523-ba89-41a7-92fa-c37f7a8c4c68, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:01.709Z","sequence":14127,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:01.709Z","sequence":14128,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019C4] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:01.736Z","sequence":14129,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:01.737Z","sequence":14130,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:01.751Z","sequence":14131,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b56b3166-13f6-4b02-951b-08af71bcae95, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:02.209Z","sequence":14132,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:02.209Z","sequence":14133,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019B8] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:02.223Z","sequence":14134,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:02.223Z","sequence":14135,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:02.231Z","sequence":14136,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3432475d-ef93-4917-a465-4949fca56e4d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:04.344Z","sequence":14137,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:04.344Z","sequence":14138,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10018FB] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:04.354Z","sequence":14139,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:04.355Z","sequence":14140,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:04.361Z","sequence":14141,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-69a41573-b050-4567-8c27-a8ad5415182a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:05.471Z","sequence":14142,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:05.471Z","sequence":14143,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006E3] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:05.476Z","sequence":14144,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:05.476Z","sequence":14145,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:05.482Z","sequence":14146,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-cdb626a7-96f5-4f2d-b0a8-fa0b9ed45930, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:07.211Z","sequence":14147,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:07.211Z","sequence":14148,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BB613]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:07.221Z","sequence":14149,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-87aada23-9bb5-4d13-94ca-3211fed43979, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:12.542Z","sequence":14150,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:12.542Z","sequence":14151,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019BC] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:12.567Z","sequence":14152,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:12.567Z","sequence":14153,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:12.585Z","sequence":14154,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-28ca840b-e390-45bf-bef2-8bc387b5c890, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:13.867Z","sequence":14155,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:13.867Z","sequence":14156,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019D3] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:13.872Z","sequence":14157,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:13.872Z","sequence":14158,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:13.878Z","sequence":14159,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-72096193-9e5e-42bf-bf88-9cd26e7fc3b3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:16.862Z","sequence":14160,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:16.862Z","sequence":14161,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B85] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:16.867Z","sequence":14162,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:16.868Z","sequence":14163,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:16.874Z","sequence":14164,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-218bd243-cc70-4b14-a1f5-4952b3758d1c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:25.62Z","sequence":14165,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/acta:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:25.62Z","sequence":14166,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: acta, device-id: 0008004AAAA3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:25.626Z","sequence":14167,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7e28243d-51f7-427b-9fea-9a39ade0c1f4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:27.096Z","sequence":14168,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:27.096Z","sequence":14169,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oci]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:27.099Z","sequence":14170,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-0fe6e055-5a0d-4497-afec-24155883419c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:27.104Z","sequence":14171,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:27.104Z","sequence":14172,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100016A] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:27.11Z","sequence":14173,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:27.11Z","sequence":14174,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:27.114Z","sequence":14175,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-775d592b-80a6-4357-b230-1c6c3ab4cdfe, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:27.212Z","sequence":14176,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:27.212Z","sequence":14177,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100016A] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:27.221Z","sequence":14178,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:27.221Z","sequence":14179,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:27.225Z","sequence":14180,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-95c7576c-8bbc-4874-8755-7fe3db54bfa4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:27.347Z","sequence":14181,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:27.348Z","sequence":14182,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10008AA] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:27.353Z","sequence":14183,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:27.353Z","sequence":14184,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:27.358Z","sequence":14185,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4fa5b6a5-f144-4e3e-9ce2-4a72c45a684c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:28.567Z","sequence":14186,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:28.568Z","sequence":14187,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000A97] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:28.573Z","sequence":14188,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:28.573Z","sequence":14189,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:28.579Z","sequence":14190,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-13fbe3f7-4e15-4a13-bf0b-6c4407b76a86, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:34.068Z","sequence":14191,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:34.068Z","sequence":14192,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000170] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:34.075Z","sequence":14193,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:34.075Z","sequence":14194,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:34.078Z","sequence":14195,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6ad34570-ad3e-4e9c-ba2a-e10f1394cfa6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:34.092Z","sequence":14196,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:34.092Z","sequence":14197,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000170] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:34.1Z","sequence":14198,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:34.1Z","sequence":14199,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:34.103Z","sequence":14200,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-197f2199-663b-4430-bf6c-67aab57e30fd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:37.469Z","sequence":14201,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:37.469Z","sequence":14202,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 70B3D57BB1001269] for gateway [gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:37.47Z","sequence":14203,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:37.471Z","sequence":14204,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:37.476Z","sequence":14205,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-dd36b91a-195f-4c4b-9c44-feb2b39d96c0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:37.477Z","sequence":14206,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:37.477Z","sequence":14207,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:37.486Z","sequence":14208,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b9474648-122d-41ed-ad4f-afc587aaa0ec, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:39.868Z","sequence":14209,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:39.869Z","sequence":14210,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100018D] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:39.874Z","sequence":14211,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:39.875Z","sequence":14212,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:39.878Z","sequence":14213,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ebe20b57-2a6a-4e5c-bbbd-88f8f8278873, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:39.885Z","sequence":14214,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:39.885Z","sequence":14215,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100018D] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:39.889Z","sequence":14216,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:39.889Z","sequence":14217,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:39.892Z","sequence":14218,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-18e27ae7-3163-4d75-8181-c0c1e232e581, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:44.396Z","sequence":14219,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:44.397Z","sequence":14220,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019DE] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:44.403Z","sequence":14221,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:44.403Z","sequence":14222,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:44.41Z","sequence":14223,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-908e464a-6381-41d6-8bde-129cf6475a60, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:44.66Z","sequence":14224,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:44.66Z","sequence":14225,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001923] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:44.668Z","sequence":14226,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:44.668Z","sequence":14227,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:44.674Z","sequence":14228,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-fc482da8-08c6-463e-adec-0d349eb368bc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:45.321Z","sequence":14229,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:45.321Z","sequence":14230,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019C1] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:45.329Z","sequence":14231,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:45.329Z","sequence":14232,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:45.337Z","sequence":14233,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ef7bed85-bcaa-4ee1-8a52-93406b20fac0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:48.659Z","sequence":14234,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:48.659Z","sequence":14235,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019BD] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:48.665Z","sequence":14236,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:48.665Z","sequence":14237,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:48.671Z","sequence":14238,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9426f3c0-52dd-4858-8307-07ba560c1e97, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:51.779Z","sequence":14239,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:51.779Z","sequence":14240,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:51.784Z","sequence":14241,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-36e328bf-1455-4934-9c0b-9e7f80abb0ac, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:55.081Z","sequence":14242,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/aloxy:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:55.081Z","sequence":14243,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: aloxy, device-id: 353438340047002A] for gateway [0008004A8F68]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:55.086Z","sequence":14244,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDao","level":"DEBUG","message":"error retrieving device [tenantId: aloxy, deviceId: 353438340047002A]: org.eclipse.hono.client.ClientErrorException: device not found","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:55.087Z","sequence":14245,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"no such device","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:55.087Z","sequence":14246,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6dbb9c83-8aba-4bf1-afd5-a886f4699fc6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:57.064Z","sequence":14247,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:57.065Z","sequence":14248,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000575] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:57.073Z","sequence":14249,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:57.073Z","sequence":14250,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:23:57.08Z","sequence":14251,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a7b078c5-f8ae-4785-b32e-d0b9ea10cc51, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:01.016Z","sequence":14252,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/repsol:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:01.017Z","sequence":14253,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: repsol, device-id: 0008004A37FF]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:01.022Z","sequence":14254,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8f33fef8-8465-48bf-9316-301d0363e39f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:01.025Z","sequence":14255,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:01.025Z","sequence":14256,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: repsol]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:01.028Z","sequence":14257,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-6c87b109-31d4-4186-8635-8472aa37fbae, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:01.419Z","sequence":14258,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:01.419Z","sequence":14259,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100190C] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:01.426Z","sequence":14260,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:01.426Z","sequence":14261,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:01.433Z","sequence":14262,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-065c8b3b-68a1-4466-b79e-2753cfc865d8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:04.215Z","sequence":14263,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191050]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"952fa8522b58a3ce","parentId":"170848cc21c40273","traceId":"0000000000000000a779ff7f9eff9cd0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:04.241Z","sequence":14264,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191050, resource-version: 6c14870c-bb98-44d3-a5c7-a5d7ac74649c]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"952fa8522b58a3ce","parentId":"170848cc21c40273","traceId":"0000000000000000a779ff7f9eff9cd0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:04.253Z","sequence":14265,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191050, resource-version: 12024139-3dcd-4ec3-85bf-96cf3be5a4e9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"952fa8522b58a3ce","parentId":"170848cc21c40273","traceId":"0000000000000000a779ff7f9eff9cd0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:04.257Z","sequence":14266,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191050]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"74caf171ca13df3c","parentId":"1eb9e9a735944241","traceId":"0000000000000000a779ff7f9eff9cd0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:04.408Z","sequence":14267,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191050]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"74caf171ca13df3c","parentId":"1eb9e9a735944241","traceId":"0000000000000000a779ff7f9eff9cd0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:04.802Z","sequence":14268,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:04.802Z","sequence":14269,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019B7] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:04.809Z","sequence":14270,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:04.809Z","sequence":14271,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:04.815Z","sequence":14272,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c81cf532-2b75-4c55-bb5b-69842333843a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:05.431Z","sequence":14273,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFCBD45F86BEEFE]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a625db4dd97681bf","parentId":"3e2275240d7002ea","traceId":"000000000000000069b26682114d6f1b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:05.449Z","sequence":14274,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFCBD45F86BEEFE, resource-version: ab88fcde-6b5d-4c6b-bb51-f4408304c532]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a625db4dd97681bf","parentId":"3e2275240d7002ea","traceId":"000000000000000069b26682114d6f1b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:05.456Z","sequence":14275,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFCBD45F86BEEFE, resource-version: 424cfb74-2412-4328-a272-0f31ade2edfd]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a625db4dd97681bf","parentId":"3e2275240d7002ea","traceId":"000000000000000069b26682114d6f1b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:05.637Z","sequence":14276,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:05.637Z","sequence":14277,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100015F] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:05.645Z","sequence":14278,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:05.646Z","sequence":14279,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:05.649Z","sequence":14280,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-dc25987c-392b-4fd4-b102-7d40b7681cd2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:05.688Z","sequence":14281,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:05.688Z","sequence":14282,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C2D] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:05.694Z","sequence":14283,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:05.695Z","sequence":14284,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:05.701Z","sequence":14285,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8fe83a1a-dfd9-459b-bf56-a1a8a60a1bab, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:05.913Z","sequence":14286,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:05.913Z","sequence":14287,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100015F] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:05.921Z","sequence":14288,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:05.921Z","sequence":14289,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:05.924Z","sequence":14290,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-06a40e32-6511-46b7-9060-f9677d7e73a6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:06.559Z","sequence":14291,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:06.56Z","sequence":14292,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191050]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:06.581Z","sequence":14293,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-76579ac5-ca3c-465d-ba30-c13aa3cad728, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:06.775Z","sequence":14294,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:06.775Z","sequence":14295,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B99] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:06.782Z","sequence":14296,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:06.785Z","sequence":14297,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCBD45F86BEEFE] for gateway [gateway_integrationtest_network_191050]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:06.785Z","sequence":14298,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:06.786Z","sequence":14299,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191050]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:06.789Z","sequence":14300,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:06.789Z","sequence":14301,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:06.797Z","sequence":14302,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1d25b522-9ecf-4371-b57e-46d39b839929, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:06.798Z","sequence":14303,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8c274fed-eb35-465b-b785-134ff8c39281, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:06.798Z","sequence":14304,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:06.798Z","sequence":14305,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:07.345Z","sequence":14306,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-cdf62b72-47e4-49e6-8161-3c3cfd838036, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:09.909Z","sequence":14307,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:09.909Z","sequence":14308,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019C2] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:09.921Z","sequence":14309,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:09.921Z","sequence":14310,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:09.931Z","sequence":14311,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0b58217d-9d65-4149-be96-776a3c6a7dfb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:10.645Z","sequence":14312,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:10.645Z","sequence":14313,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019D8] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:10.653Z","sequence":14314,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:10.654Z","sequence":14315,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:10.665Z","sequence":14316,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-838ee27e-0c24-4be7-8cbf-6284b0f1bea4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:16.235Z","sequence":14317,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:16.235Z","sequence":14318,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001906] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:16.244Z","sequence":14319,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:16.244Z","sequence":14320,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:16.253Z","sequence":14321,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7c3ee3d4-4d63-41c7-8886-df1a857f7e23, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:19.23Z","sequence":14322,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFCBD45F86BEEFE]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3dca000f4af3e88d","parentId":"e4f1e3a7659631a0","traceId":"0000000000000000fcab648fa878df8b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:19.249Z","sequence":14323,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFCBD45F86BEEFE]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3dca000f4af3e88d","parentId":"e4f1e3a7659631a0","traceId":"0000000000000000fcab648fa878df8b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:19.623Z","sequence":14324,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191050]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"29ca3be4ff0d9085","parentId":"5a6db508f95450ea","traceId":"0000000000000000e296af430537e36f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:19.652Z","sequence":14325,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191050]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"29ca3be4ff0d9085","parentId":"5a6db508f95450ea","traceId":"0000000000000000e296af430537e36f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:20.789Z","sequence":14326,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 2F621E573E92]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4afae9ee2e13aaf9","parentId":"317f8dd2d864ed65","traceId":"00000000000000009ee3b49086a4ff89","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:20.81Z","sequence":14327,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 2F621E573E92, resource-version: 8de7f1e0-ec97-4aa5-bc81-420468b36d09]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4afae9ee2e13aaf9","parentId":"317f8dd2d864ed65","traceId":"00000000000000009ee3b49086a4ff89","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:20.824Z","sequence":14328,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 2F621E573E92, resource-version: 46de0c0d-65b3-41a7-9377-6c5cf4a57eb8]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4afae9ee2e13aaf9","parentId":"317f8dd2d864ed65","traceId":"00000000000000009ee3b49086a4ff89","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:20.828Z","sequence":14329,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 2F621E573E92]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"160e1ed0c806e843","parentId":"94c9a8ade8e6b671","traceId":"00000000000000009ee3b49086a4ff89","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:21.027Z","sequence":14330,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 2F621E573E92]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"160e1ed0c806e843","parentId":"94c9a8ade8e6b671","traceId":"00000000000000009ee3b49086a4ff89","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:21.725Z","sequence":14331,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:21.725Z","sequence":14332,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 0008004B51D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:21.731Z","sequence":14333,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-124042f4-82cd-4569-87e2-2916cf5729e8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:21.735Z","sequence":14334,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:21.735Z","sequence":14335,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: dow]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:21.738Z","sequence":14336,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-844fe74e-5568-44f6-83bc-6dcb5f35ec31, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:21.845Z","sequence":14337,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:21.845Z","sequence":14338,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019D2] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:21.85Z","sequence":14339,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:21.85Z","sequence":14340,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:21.858Z","sequence":14341,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-984357a3-afbd-4fe3-8fbd-3314c9d77fce, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:21.877Z","sequence":14342,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF72D939E7331C2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f8fb88bf4183276d","parentId":"5d7d892d2fd6037f","traceId":"00000000000000007297179a39f76d2a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:21.899Z","sequence":14343,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF72D939E7331C2, resource-version: a6cf6417-b2ae-4d02-804f-811235b017f9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f8fb88bf4183276d","parentId":"5d7d892d2fd6037f","traceId":"00000000000000007297179a39f76d2a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:21.915Z","sequence":14344,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF72D939E7331C2, resource-version: 8b127338-944e-48d1-a555-0296c4877f9c]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f8fb88bf4183276d","parentId":"5d7d892d2fd6037f","traceId":"00000000000000007297179a39f76d2a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:22.997Z","sequence":14345,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:22.997Z","sequence":14346,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-2F621E573E92]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:23.023Z","sequence":14347,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-4a66a456-aeef-47e0-bced-7d19ed406848, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:23.151Z","sequence":14348,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:23.152Z","sequence":14349,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 2F621E573E92]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:23.158Z","sequence":14350,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d8223b5c-abcd-416f-a6e7-b20311f0c413, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:23.162Z","sequence":14351,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:23.162Z","sequence":14352,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF72D939E7331C2] for gateway [2F621E573E92]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:23.173Z","sequence":14353,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:23.173Z","sequence":14354,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:23.535Z","sequence":14355,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f4fdcba0-ed81-44ac-a661-0ffcaaeacd36, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:28.703Z","sequence":14356,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:28.703Z","sequence":14357,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019C3] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:28.708Z","sequence":14358,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:28.708Z","sequence":14359,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:28.715Z","sequence":14360,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-01c46127-0c29-4a67-9ada-f2a169002d37, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:30.759Z","sequence":14361,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:30.759Z","sequence":14362,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000791] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:30.765Z","sequence":14363,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:30.765Z","sequence":14364,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:30.771Z","sequence":14365,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2cf3ed4d-ce14-4835-bf23-2263cad655ce, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:34.889Z","sequence":14366,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF72D939E7331C2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"826ab4a978b2996f","parentId":"8f68687c0d1983e5","traceId":"000000000000000054ca65b1c7d3b42b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:34.904Z","sequence":14367,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF72D939E7331C2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"826ab4a978b2996f","parentId":"8f68687c0d1983e5","traceId":"000000000000000054ca65b1c7d3b42b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:35.226Z","sequence":14368,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 2F621E573E92]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3cc2090b7b9e8ba6","parentId":"125720677c285bd6","traceId":"00000000000000005e1e0a04ae824e6e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:35.243Z","sequence":14369,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 2F621E573E92]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3cc2090b7b9e8ba6","parentId":"125720677c285bd6","traceId":"00000000000000005e1e0a04ae824e6e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:36.151Z","sequence":14370,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:36.151Z","sequence":14371,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: shelldev]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:36.155Z","sequence":14372,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-94d847e8-6376-4e66-810e-1dec37099d58, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:36.157Z","sequence":14373,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Source{address='credentials/shelldev/52efb738-5380-4110-9e53-8032340f1024', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:36.157Z","sequence":14374,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-16]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:36.157Z","sequence":14375,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@3eccacf5] for replies to [credentials/shelldev/52efb738-5380-4110-9e53-8032340f1024]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:36.159Z","sequence":14376,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Target{address='credentials/shelldev', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:36.159Z","sequence":14377,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-17]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:36.159Z","sequence":14378,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:36.162Z","sequence":14379,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/shelldev:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:36.162Z","sequence":14380,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: shelldev, type: hashed-password, auth-id: auth-AZUREFUNCTION-DEV]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:36.174Z","sequence":14381,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-f74423c7-4b54-47fa-8987-8deeb839ba18, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:36.298Z","sequence":14382,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] wants to open a link [address: Source{address='registration/shelldev/03a168a0-330b-4419-a942-2fdd4643239e', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:36.298Z","sequence":14383,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-16]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:36.298Z","sequence":14384,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@564bac4c] for replies to [registration/shelldev/03a168a0-330b-4419-a942-2fdd4643239e]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:36.3Z","sequence":14385,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] wants to open a link [address: Target{address='registration/shelldev', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:36.301Z","sequence":14386,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-17]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:36.301Z","sequence":14387,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:36.303Z","sequence":14388,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shelldev:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:36.303Z","sequence":14389,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shelldev, device-id: 70B3D57BB100099A] for gateway [AZUREFUNCTION-DEV]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:36.303Z","sequence":14390,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shelldev:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:36.303Z","sequence":14391,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shelldev, device-id: AZUREFUNCTION-DEV]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:36.309Z","sequence":14392,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDao","level":"DEBUG","message":"error retrieving device [tenantId: shelldev, deviceId: 70B3D57BB100099A]: org.eclipse.hono.client.ClientErrorException: device not found","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:36.309Z","sequence":14393,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"no such device","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:36.309Z","sequence":14394,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-051c6d7d-4dd4-4871-89d8-cc4f6a4de5b0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:36.31Z","sequence":14395,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1721d8dd-33c8-42c5-9f77-8cbfb96bdd1f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:45.66Z","sequence":14396,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:45.661Z","sequence":14397,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C3C] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:45.666Z","sequence":14398,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:45.666Z","sequence":14399,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:45.673Z","sequence":14400,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e6dc4975-8eee-4a60-8c56-3fbda16b0bcd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:46.481Z","sequence":14401,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shelldev:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:46.481Z","sequence":14402,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shelldev, device-id: 70B3D57BB100099A] for gateway [AZUREFUNCTION-DEV]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:46.507Z","sequence":14403,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDao","level":"DEBUG","message":"error retrieving device [tenantId: shelldev, deviceId: 70B3D57BB100099A]: org.eclipse.hono.client.ClientErrorException: device not found","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:46.507Z","sequence":14404,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"no such device","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:46.507Z","sequence":14405,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-34a2a68b-ac48-480a-953a-05bdf9f94086, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:51.88Z","sequence":14406,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:51.88Z","sequence":14407,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100015B] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:51.887Z","sequence":14408,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:0.4.1\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:51.887Z","sequence":14409,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:51.893Z","sequence":14410,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-540f5163-a4dc-46d3-9aa9-67c8b635695d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:55.453Z","sequence":14411,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:55.453Z","sequence":14412,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: shell]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:55.474Z","sequence":14413,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-7011924f-c8c1-43f4-875b-8b2648fe88b0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:55.477Z","sequence":14414,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/shell:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:55.477Z","sequence":14415,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: shell, type: hashed-password, auth-id: auth-gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:55.553Z","sequence":14416,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-531d2dd1-b138-4063-bab9-b29cf7ff8720, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:55.675Z","sequence":14417,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:55.675Z","sequence":14418,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006B7] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:55.696Z","sequence":14419,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:55.696Z","sequence":14420,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:55.703Z","sequence":14421,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0a957beb-307d-4eaf-87cb-c4ff76463f58, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:56.697Z","sequence":14422,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shelldev:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:56.697Z","sequence":14423,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shelldev, device-id: 70B3D57BB100099A] for gateway [AZUREFUNCTION-DEV]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:56.709Z","sequence":14424,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDao","level":"DEBUG","message":"error retrieving device [tenantId: shelldev, deviceId: 70B3D57BB100099A]: org.eclipse.hono.client.ClientErrorException: device not found","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:56.71Z","sequence":14425,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"no such device","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:56.71Z","sequence":14426,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b565ebfc-dadb-4871-9356-4d90e2eaa77a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:58.675Z","sequence":14427,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/conditionall:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:58.676Z","sequence":14428,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: conditionall, device-id: 0008004B512D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:58.682Z","sequence":14429,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7bdd3776-2e19-4b56-97e9-2fb3f886692f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:58.685Z","sequence":14430,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:58.685Z","sequence":14431,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: conditionall]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:24:58.688Z","sequence":14432,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-053bfc58-a007-4109-9535-3e7fea0ea36d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:05.609Z","sequence":14433,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:05.609Z","sequence":14434,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100016D] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:05.615Z","sequence":14435,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:05.615Z","sequence":14436,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:05.619Z","sequence":14437,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c7547ac0-a86c-48eb-b626-3935ce51f406, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:06.251Z","sequence":14438,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:06.251Z","sequence":14439,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:06.257Z","sequence":14440,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-71fc10bf-d09e-4731-8995-3e2f6740b0e7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:06.411Z","sequence":14441,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:06.411Z","sequence":14442,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100016D] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:06.416Z","sequence":14443,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:06.417Z","sequence":14444,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:06.419Z","sequence":14445,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-cca96a2d-ac58-4410-b3ff-00e6b883d934, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:06.625Z","sequence":14446,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:06.625Z","sequence":14447,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: chevronsgp]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:06.629Z","sequence":14448,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-2158d6a8-7c63-4f2f-8a22-f3d316abea69, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:06.631Z","sequence":14449,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/chevronsgp:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:06.631Z","sequence":14450,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: chevronsgp, type: hashed-password, auth-id: auth-chevronsgp_42]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:06.642Z","sequence":14451,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-6f682362-96aa-472c-b3b4-61f212106bd8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:06.764Z","sequence":14452,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/chevronsgp:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:06.764Z","sequence":14453,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: chevronsgp, device-id: 70B3D57BB10008CA] for gateway [gateway_chevronsgp_network_42]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:06.765Z","sequence":14454,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/chevronsgp:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:06.765Z","sequence":14455,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: chevronsgp, device-id: gateway_chevronsgp_network_42]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:06.772Z","sequence":14456,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_chevronsgp\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:06.773Z","sequence":14457,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_chevronsgp\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:06.774Z","sequence":14458,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-37eb0e81-67a2-48d1-bbcf-94de4c46712a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:06.775Z","sequence":14459,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b0fe31e4-29ec-4a86-82c4-e1a60c0686cb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:06.899Z","sequence":14460,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shelldev:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:06.899Z","sequence":14461,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shelldev, device-id: 70B3D57BB100099A] for gateway [AZUREFUNCTION-DEV]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:06.921Z","sequence":14462,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDao","level":"DEBUG","message":"error retrieving device [tenantId: shelldev, deviceId: 70B3D57BB100099A]: org.eclipse.hono.client.ClientErrorException: device not found","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:06.921Z","sequence":14463,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"no such device","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:06.922Z","sequence":14464,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d81c904c-a4b1-48f4-a089-d8f3cfd0fb28, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:07.099Z","sequence":14465,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shelldev:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:07.1Z","sequence":14466,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shelldev, device-id: 70B3D57BB100099A] for gateway [AZUREFUNCTION-DEV]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:07.109Z","sequence":14467,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDao","level":"DEBUG","message":"error retrieving device [tenantId: shelldev, deviceId: 70B3D57BB100099A]: org.eclipse.hono.client.ClientErrorException: device not found","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:07.109Z","sequence":14468,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"no such device","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:07.11Z","sequence":14469,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5ac78d68-9901-4f56-a690-5e3cf8eeda9b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:07.273Z","sequence":14470,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shelldev:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:07.274Z","sequence":14471,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shelldev, device-id: 70B3D57BB100099A] for gateway [AZUREFUNCTION-DEV]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:07.284Z","sequence":14472,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDao","level":"DEBUG","message":"error retrieving device [tenantId: shelldev, deviceId: 70B3D57BB100099A]: org.eclipse.hono.client.ClientErrorException: device not found","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:07.284Z","sequence":14473,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"no such device","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:07.285Z","sequence":14474,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4b6adc66-444a-4c1f-a9f6-1e8d35565c8a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:07.443Z","sequence":14475,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shelldev:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:07.443Z","sequence":14476,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shelldev, device-id: 70B3D57BB100099A] for gateway [AZUREFUNCTION-DEV]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:07.451Z","sequence":14477,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDao","level":"DEBUG","message":"error retrieving device [tenantId: shelldev, deviceId: 70B3D57BB100099A]: org.eclipse.hono.client.ClientErrorException: device not found","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:07.451Z","sequence":14478,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"no such device","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:07.451Z","sequence":14479,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5c82ae2a-8bc4-4d1b-9eb7-e9e0f7e8de2e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:13.462Z","sequence":14480,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:13.463Z","sequence":14481,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006D0] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:13.468Z","sequence":14482,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:13.468Z","sequence":14483,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:13.481Z","sequence":14484,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-80485521-2cb0-4bd3-a475-be936166e968, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:17.355Z","sequence":14485,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:17.356Z","sequence":14486,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001EB] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:17.361Z","sequence":14487,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:17.362Z","sequence":14488,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:17.366Z","sequence":14489,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-25fda5d9-5ce5-4d48-a596-d10e47abf731, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:17.375Z","sequence":14490,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:17.375Z","sequence":14491,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001EB] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:17.38Z","sequence":14492,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:17.38Z","sequence":14493,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:17.383Z","sequence":14494,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0b1f5a09-3ad8-49dd-a194-1cbc6fe8a489, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:17.649Z","sequence":14495,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shelldev:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:17.649Z","sequence":14496,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shelldev, device-id: 70B3D57BB100099A] for gateway [AZUREFUNCTION-DEV]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:17.656Z","sequence":14497,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDao","level":"DEBUG","message":"error retrieving device [tenantId: shelldev, deviceId: 70B3D57BB100099A]: org.eclipse.hono.client.ClientErrorException: device not found","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:17.656Z","sequence":14498,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"no such device","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:17.656Z","sequence":14499,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b1e84152-e48d-494b-a031-21796743c68f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:17.872Z","sequence":14500,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shelldev:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:17.872Z","sequence":14501,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shelldev, device-id: 70B3D57BB100099A] for gateway [AZUREFUNCTION-DEV]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:17.877Z","sequence":14502,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDao","level":"DEBUG","message":"error retrieving device [tenantId: shelldev, deviceId: 70B3D57BB100099A]: org.eclipse.hono.client.ClientErrorException: device not found","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:17.877Z","sequence":14503,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"no such device","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:17.878Z","sequence":14504,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-66e7d37a-4c0e-4ea1-9b72-b82dfb9580f9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:18.037Z","sequence":14505,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shelldev:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:18.037Z","sequence":14506,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shelldev, device-id: 70B3D57BB100099A] for gateway [AZUREFUNCTION-DEV]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:18.052Z","sequence":14507,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDao","level":"DEBUG","message":"error retrieving device [tenantId: shelldev, deviceId: 70B3D57BB100099A]: org.eclipse.hono.client.ClientErrorException: device not found","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:18.052Z","sequence":14508,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"no such device","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:18.052Z","sequence":14509,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6fe4fccf-624a-4253-9bd3-5da71a704da1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:20.19Z","sequence":14510,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:20.19Z","sequence":14511,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BB2] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:20.197Z","sequence":14512,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:20.197Z","sequence":14513,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:20.204Z","sequence":14514,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8b31c112-3b18-4de8-b64c-7d22596f9cab, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:21.307Z","sequence":14515,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:21.307Z","sequence":14516,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C30] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:21.315Z","sequence":14517,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:21.315Z","sequence":14518,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:21.321Z","sequence":14519,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-bb393001-4d4c-45ff-9fe4-6cb09366886a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:21.552Z","sequence":14520,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:21.552Z","sequence":14521,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10018F4] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:21.561Z","sequence":14522,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:21.561Z","sequence":14523,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:21.569Z","sequence":14524,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1e4e6868-b2e3-48ef-8f06-c1d97df27950, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:22.173Z","sequence":14525,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:22.173Z","sequence":14526,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000896] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:22.174Z","sequence":14527,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:22.176Z","sequence":14528,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:22.181Z","sequence":14529,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:22.181Z","sequence":14530,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:22.191Z","sequence":14531,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-cd7bd8af-9d38-4d63-b250-705b69c7a774, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:22.193Z","sequence":14532,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-02b14e66-5516-4192-9de9-2612ebf23679, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:28.233Z","sequence":14533,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shelldev:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:28.233Z","sequence":14534,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shelldev, device-id: 70B3D57BB100099A] for gateway [AZUREFUNCTION-DEV]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:28.241Z","sequence":14535,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDao","level":"DEBUG","message":"error retrieving device [tenantId: shelldev, deviceId: 70B3D57BB100099A]: org.eclipse.hono.client.ClientErrorException: device not found","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:28.241Z","sequence":14536,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"no such device","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:28.241Z","sequence":14537,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9a309118-0cdb-4bc1-abae-519adb4a0c8b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:28.388Z","sequence":14538,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shelldev:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:28.388Z","sequence":14539,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shelldev, device-id: 70B3D57BB100099A] for gateway [AZUREFUNCTION-DEV]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:28.399Z","sequence":14540,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDao","level":"DEBUG","message":"error retrieving device [tenantId: shelldev, deviceId: 70B3D57BB100099A]: org.eclipse.hono.client.ClientErrorException: device not found","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:28.399Z","sequence":14541,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"no such device","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:28.4Z","sequence":14542,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2b2755c3-c9e4-448e-818b-0dc0630f98a7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:28.547Z","sequence":14543,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shelldev:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:28.548Z","sequence":14544,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shelldev, device-id: 70B3D57BB100099A] for gateway [AZUREFUNCTION-DEV]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:28.552Z","sequence":14545,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDao","level":"DEBUG","message":"error retrieving device [tenantId: shelldev, deviceId: 70B3D57BB100099A]: org.eclipse.hono.client.ClientErrorException: device not found","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:28.552Z","sequence":14546,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"no such device","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:28.552Z","sequence":14547,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b1666a85-2e7f-477c-81bd-9de5d3823168, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:34.516Z","sequence":14548,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:34.517Z","sequence":14549,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BB84C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:34.522Z","sequence":14550,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e7e823fd-3b55-4f48-8e50-a99528380417, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:34.525Z","sequence":14551,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:34.525Z","sequence":14552,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: lanxess]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:34.528Z","sequence":14553,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-67f65ec0-6c75-4b99-a642-817c7ca0503a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:36.286Z","sequence":14554,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:36.286Z","sequence":14555,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 0008004B5135]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:36.293Z","sequence":14556,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2b506193-4678-470a-8326-2e148a2310a7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:36.297Z","sequence":14557,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:36.297Z","sequence":14558,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: ineos]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:36.299Z","sequence":14559,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-78a6d5eb-0685-4ace-aa2b-ab1209160094, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:37.259Z","sequence":14560,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:37.26Z","sequence":14561,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: flint]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:37.263Z","sequence":14562,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-085a4dc1-37dd-4e1b-a959-fdc2c9593e39, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:37.265Z","sequence":14563,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/flint:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:37.265Z","sequence":14564,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: flint, type: hashed-password, auth-id: auth-flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:37.275Z","sequence":14565,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-01080e8d-89ff-4c13-b73d-d25f6732cf0d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:37.568Z","sequence":14566,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:37.568Z","sequence":14567,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10009AA] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:37.574Z","sequence":14568,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:37.574Z","sequence":14569,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:37.578Z","sequence":14570,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2d03c1e5-ce2d-42b5-8a71-aacb0d6686db, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:38.717Z","sequence":14571,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shelldev:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:38.717Z","sequence":14572,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shelldev, device-id: 70B3D57BB100099A] for gateway [AZUREFUNCTION-DEV]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:38.721Z","sequence":14573,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDao","level":"DEBUG","message":"error retrieving device [tenantId: shelldev, deviceId: 70B3D57BB100099A]: org.eclipse.hono.client.ClientErrorException: device not found","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:38.721Z","sequence":14574,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"no such device","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:38.721Z","sequence":14575,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9523b405-4908-4305-8525-66cb3baac121, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:38.868Z","sequence":14576,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shelldev:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:38.868Z","sequence":14577,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shelldev, device-id: 70B3D57BB100099A] for gateway [AZUREFUNCTION-DEV]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:38.874Z","sequence":14578,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDao","level":"DEBUG","message":"error retrieving device [tenantId: shelldev, deviceId: 70B3D57BB100099A]: org.eclipse.hono.client.ClientErrorException: device not found","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:38.874Z","sequence":14579,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"no such device","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:38.874Z","sequence":14580,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3568eefd-e07c-4d33-b18e-8c1bec17c140, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:39.025Z","sequence":14581,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shelldev:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:39.025Z","sequence":14582,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shelldev, device-id: 70B3D57BB100099A] for gateway [AZUREFUNCTION-DEV]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:39.03Z","sequence":14583,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDao","level":"DEBUG","message":"error retrieving device [tenantId: shelldev, deviceId: 70B3D57BB100099A]: org.eclipse.hono.client.ClientErrorException: device not found","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:39.03Z","sequence":14584,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"no such device","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:39.03Z","sequence":14585,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-aad1b5c3-ee3f-4eff-a9b9-62ee186319f3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:40.606Z","sequence":14586,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:40.606Z","sequence":14587,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BBD1B]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:40.611Z","sequence":14588,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8c2693dc-23a3-441e-ba4d-64e36002a41a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:46.419Z","sequence":14589,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/arkema:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:46.42Z","sequence":14590,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: arkema, device-id: 0008004AE119]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:46.425Z","sequence":14591,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e6581829-3702-42a1-840b-d2fd1175bcd1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:46.429Z","sequence":14592,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:46.43Z","sequence":14593,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: arkema]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:46.432Z","sequence":14594,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-c650c123-ca4c-4fde-a2cf-8d7f283699f1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:49.604Z","sequence":14595,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:49.604Z","sequence":14596,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001925] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:49.605Z","sequence":14597,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:49.605Z","sequence":14598,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:49.611Z","sequence":14599,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7ce70c07-25b8-45ea-97dd-ceb7392d22ac, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:49.611Z","sequence":14600,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:49.611Z","sequence":14601,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:49.621Z","sequence":14602,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-30279f28-77e8-4e61-9e35-fa081a0afa8b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:50.5Z","sequence":14603,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:50.501Z","sequence":14604,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C31] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:50.562Z","sequence":14605,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:50.563Z","sequence":14606,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:50.604Z","sequence":14607,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2bc74d86-0185-4a8a-bfd9-d2f4bed379df, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:57.08Z","sequence":14608,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:57.081Z","sequence":14609,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C3B] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:57.089Z","sequence":14610,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:57.089Z","sequence":14611,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:25:57.104Z","sequence":14612,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5d924f3a-0e84-4931-b2d5-8adfef12a4ad, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:02.054Z","sequence":14613,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:02.054Z","sequence":14614,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000894] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:02.06Z","sequence":14615,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:02.06Z","sequence":14616,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:02.064Z","sequence":14617,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e8c7f737-5d03-4183-8943-e5ff1a3ea2a9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:04.313Z","sequence":14618,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191052]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f68390ef110c60ad","parentId":"c44f204a1ceef3a6","traceId":"00000000000000008dab1fb6a0dd3364","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:04.337Z","sequence":14619,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191052, resource-version: 60f132e7-e549-4857-86d6-424803dd7ac6]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f68390ef110c60ad","parentId":"c44f204a1ceef3a6","traceId":"00000000000000008dab1fb6a0dd3364","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:04.346Z","sequence":14620,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191052, resource-version: d41086c6-2968-491d-a531-440be8332f7a]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f68390ef110c60ad","parentId":"c44f204a1ceef3a6","traceId":"00000000000000008dab1fb6a0dd3364","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:04.349Z","sequence":14621,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191052]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cf1c81e117976d33","parentId":"795f9c2148d097b4","traceId":"00000000000000008dab1fb6a0dd3364","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:04.496Z","sequence":14622,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191052]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cf1c81e117976d33","parentId":"795f9c2148d097b4","traceId":"00000000000000008dab1fb6a0dd3364","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:05.387Z","sequence":14623,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFF81E4E828028D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1e09fcc8c1904e94","parentId":"61220ca4df9a4952","traceId":"000000000000000096a7523d5cca5aba","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:05.406Z","sequence":14624,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFF81E4E828028D, resource-version: 4a340d83-25ec-4ccb-bb44-e39fa7c16709]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1e09fcc8c1904e94","parentId":"61220ca4df9a4952","traceId":"000000000000000096a7523d5cca5aba","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:05.42Z","sequence":14625,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFF81E4E828028D, resource-version: 3044b979-30fa-4b72-bebc-6ff19b4cfacd]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1e09fcc8c1904e94","parentId":"61220ca4df9a4952","traceId":"000000000000000096a7523d5cca5aba","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:06.526Z","sequence":14626,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:06.526Z","sequence":14627,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:06.529Z","sequence":14628,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-4353e315-be20-47e7-b25e-278f667b27b0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:06.531Z","sequence":14629,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:06.532Z","sequence":14630,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191052]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:06.547Z","sequence":14631,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-8c6af73b-222a-4be0-8cde-37371a9dd9da, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:06.673Z","sequence":14632,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:06.673Z","sequence":14633,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFF81E4E828028D] for gateway [gateway_integrationtest_network_191052]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:06.674Z","sequence":14634,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:06.676Z","sequence":14635,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191052]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:06.68Z","sequence":14636,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:06.68Z","sequence":14637,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:06.682Z","sequence":14638,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0f5f27e5-d529-4dab-bce9-167243455551, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:07.018Z","sequence":14639,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e62f34d0-c82b-49ac-93fd-a6be71730306, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:13.781Z","sequence":14640,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:13.781Z","sequence":14641,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BBD1C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:13.787Z","sequence":14642,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-97071c5c-3de6-4049-b245-52de4c2e6326, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:14.789Z","sequence":14643,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:14.789Z","sequence":14644,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BBD] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:14.813Z","sequence":14645,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:14.813Z","sequence":14646,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:14.824Z","sequence":14647,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-24fbc85d-1d10-48cc-9827-4dd5e0ec635e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:15.72Z","sequence":14648,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:15.72Z","sequence":14649,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: rigstar]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:15.723Z","sequence":14650,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-82059559-8995-4024-8b26-a2ed08423bf0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:15.725Z","sequence":14651,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/rigstar:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:15.726Z","sequence":14652,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: rigstar, type: hashed-password, auth-id: auth-gateway_rigstar_network_38]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:15.743Z","sequence":14653,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-c638fe1f-5b99-4109-8d59-c61fb56a1dcb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:15.865Z","sequence":14654,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/rigstar:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:15.865Z","sequence":14655,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: rigstar, device-id: 70B3D57BB100096C] for gateway [gateway_rigstar_network_38]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:15.866Z","sequence":14656,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/rigstar:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:15.867Z","sequence":14657,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: rigstar, device-id: gateway_rigstar_network_38]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:15.87Z","sequence":14658,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_rigstar\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:15.87Z","sequence":14659,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_rigstar\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:15.871Z","sequence":14660,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ce8acaec-f65f-4853-8697-9231c3cc3b52, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:15.873Z","sequence":14661,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2fbf81b7-d17f-45af-8711-19458165c8ad, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:16.823Z","sequence":14662,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFF81E4E828028D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"52bc7071a05ac7af","parentId":"d24bfdfe5389ac6c","traceId":"00000000000000003b53eebd2ed16d3b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:16.843Z","sequence":14663,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFF81E4E828028D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"52bc7071a05ac7af","parentId":"d24bfdfe5389ac6c","traceId":"00000000000000003b53eebd2ed16d3b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:17.218Z","sequence":14664,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191052]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"96eb0db42abba6f1","parentId":"712713f6fe544d08","traceId":"0000000000000000cac95e308026dffe","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:17.244Z","sequence":14665,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191052]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"96eb0db42abba6f1","parentId":"712713f6fe544d08","traceId":"0000000000000000cac95e308026dffe","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:18.273Z","sequence":14666,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 77D8084E2462]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5c9c39ce92ff32da","parentId":"d027814dc28000a4","traceId":"00000000000000000c72284c3c4cfa8f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:18.293Z","sequence":14667,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 77D8084E2462, resource-version: ac187da4-2392-40be-97e6-796035879fb3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5c9c39ce92ff32da","parentId":"d027814dc28000a4","traceId":"00000000000000000c72284c3c4cfa8f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:18.301Z","sequence":14668,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 77D8084E2462, resource-version: 16d8f10d-a6a8-41b9-b89d-cc9fb46c4d1f]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5c9c39ce92ff32da","parentId":"d027814dc28000a4","traceId":"00000000000000000c72284c3c4cfa8f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:18.304Z","sequence":14669,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 77D8084E2462]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a56bff2e545bbcd0","parentId":"1529c4ddc57e99af","traceId":"00000000000000000c72284c3c4cfa8f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:18.473Z","sequence":14670,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 77D8084E2462]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a56bff2e545bbcd0","parentId":"1529c4ddc57e99af","traceId":"00000000000000000c72284c3c4cfa8f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:19.418Z","sequence":14671,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFABB560BC8F5F7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d5bfc7a8518810f7","parentId":"d694b58c0e08d072","traceId":"0000000000000000688fd29d8cec3380","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:19.442Z","sequence":14672,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFABB560BC8F5F7, resource-version: 485ca165-bd91-462c-9995-103ceea3a6dc]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d5bfc7a8518810f7","parentId":"d694b58c0e08d072","traceId":"0000000000000000688fd29d8cec3380","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:19.45Z","sequence":14673,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFABB560BC8F5F7, resource-version: 7f6a64f0-82bd-4194-b570-5d7697cbaca0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d5bfc7a8518810f7","parentId":"d694b58c0e08d072","traceId":"0000000000000000688fd29d8cec3380","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:20.505Z","sequence":14674,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:20.505Z","sequence":14675,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:20.509Z","sequence":14676,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-28e2c7c6-cc8a-4354-8341-f0b8167d1276, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:20.514Z","sequence":14677,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:20.514Z","sequence":14678,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-77D8084E2462]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:20.533Z","sequence":14679,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-f67ba291-50e5-445b-982f-759a03977912, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:20.649Z","sequence":14680,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:20.649Z","sequence":14681,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 77D8084E2462]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:20.655Z","sequence":14682,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d2d0c964-cde5-418c-9088-64efa33a3d44, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:20.659Z","sequence":14683,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:20.659Z","sequence":14684,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFABB560BC8F5F7] for gateway [77D8084E2462]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:20.667Z","sequence":14685,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:20.667Z","sequence":14686,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:20.846Z","sequence":14687,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c871cede-e798-41e5-b623-c2fdb3f9407d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:29.025Z","sequence":14688,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:29.025Z","sequence":14689,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:29.031Z","sequence":14690,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3610f465-c958-4620-971a-73c3c1d5846b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:30.132Z","sequence":14691,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFABB560BC8F5F7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b2d381371e23419d","parentId":"c0a09e1e3d3e3228","traceId":"000000000000000087161ebf2c142b78","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:30.148Z","sequence":14692,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFABB560BC8F5F7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b2d381371e23419d","parentId":"c0a09e1e3d3e3228","traceId":"000000000000000087161ebf2c142b78","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:30.701Z","sequence":14693,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:30.701Z","sequence":14694,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000500] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:30.71Z","sequence":14695,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:30.71Z","sequence":14696,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:30.716Z","sequence":14697,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-90e4f197-5316-4318-9889-7bc291a52d31, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:30.719Z","sequence":14698,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 77D8084E2462]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0ffd97445e942e98","parentId":"b99c028a32a5b0ff","traceId":"00000000000000002904275de839bda4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:30.737Z","sequence":14699,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 77D8084E2462]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0ffd97445e942e98","parentId":"b99c028a32a5b0ff","traceId":"00000000000000002904275de839bda4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:34.374Z","sequence":14700,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:34.374Z","sequence":14701,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100190A] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:34.379Z","sequence":14702,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:34.379Z","sequence":14703,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:34.387Z","sequence":14704,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c6c271aa-1b00-4d73-b4d0-dac9b97e68a4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:37.021Z","sequence":14705,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:37.021Z","sequence":14706,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AB9] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:37.028Z","sequence":14707,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:37.028Z","sequence":14708,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:37.034Z","sequence":14709,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d5f3e07a-0d81-4e6f-843c-87f2e9aad0e7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:40.516Z","sequence":14710,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:40.516Z","sequence":14711,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: dow]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:40.519Z","sequence":14712,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-830fbe13-53d2-4c40-b570-5d98883896a3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:40.521Z","sequence":14713,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/dow:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:40.521Z","sequence":14714,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: dow, type: hashed-password, auth-id: auth-gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:40.531Z","sequence":14715,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-b1e021f1-9b61-4a0c-8740-6046398f6ca7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:40.89Z","sequence":14716,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:40.89Z","sequence":14717,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 70B3D57BB1001259] for gateway [gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:40.895Z","sequence":14718,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:40.895Z","sequence":14719,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:40.899Z","sequence":14720,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-535f53ac-53eb-4f58-b032-3774604d4ab9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:50.173Z","sequence":14721,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:50.173Z","sequence":14722,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB100080A] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:50.179Z","sequence":14723,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:50.179Z","sequence":14724,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:50.183Z","sequence":14725,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-bbbc8c8f-5acf-4d28-9b3f-ac3045853df6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:50.925Z","sequence":14726,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:50.925Z","sequence":14727,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C2B] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:50.934Z","sequence":14728,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:50.938Z","sequence":14729,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:50.946Z","sequence":14730,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-31493a31-97e8-4cf5-9a06-53691f6bb860, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:51.521Z","sequence":14731,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:51.521Z","sequence":14732,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oci]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:51.524Z","sequence":14733,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-518df048-ae86-49df-b48c-a8fecd10ac19, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:51.528Z","sequence":14734,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:51.529Z","sequence":14735,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001C1] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:51.537Z","sequence":14736,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:51.537Z","sequence":14737,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:51.541Z","sequence":14738,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-87c7362e-ea74-4ab3-b796-85b330205f9f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:51.561Z","sequence":14739,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:51.562Z","sequence":14740,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001C1] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:51.577Z","sequence":14741,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:51.577Z","sequence":14742,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:51.581Z","sequence":14743,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-731b2cda-891a-4182-a8b3-d34921556ec7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:51.588Z","sequence":14744,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:51.589Z","sequence":14745,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100056E] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:51.597Z","sequence":14746,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:51.597Z","sequence":14747,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:26:51.609Z","sequence":14748,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7ba9b1a5-8162-4ba2-ae98-70c8db702da5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:27:00.99Z","sequence":14749,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:27:00.99Z","sequence":14750,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 0008004C80F4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:27:00.996Z","sequence":14751,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0ec19f39-d697-412e-9fa9-3448e3c5ceec, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:27:06.205Z","sequence":14752,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:27:06.205Z","sequence":14753,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C3E] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:27:06.211Z","sequence":14754,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:27:06.212Z","sequence":14755,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:27:06.218Z","sequence":14756,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3844488b-9fa5-4706-8385-a1f62631f022, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:27:11.841Z","sequence":14757,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:27:11.841Z","sequence":14758,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10002D2] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:27:11.852Z","sequence":14759,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:27:11.852Z","sequence":14760,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:27:11.856Z","sequence":14761,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b83547fb-2e1e-4966-904b-f940724c50f9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:27:15.298Z","sequence":14762,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oiltanking:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:27:15.298Z","sequence":14763,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oiltanking, device-id: 0008004BB60F]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:27:15.303Z","sequence":14764,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7ac1989c-a6de-46d6-8312-149cfb44c312, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:27:15.307Z","sequence":14765,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:27:15.307Z","sequence":14766,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oiltanking]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:27:15.31Z","sequence":14767,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-0d2030ba-6aca-4724-b231-ec441d4c729c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:27:21.009Z","sequence":14768,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:27:21.009Z","sequence":14769,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006C7] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:27:21.015Z","sequence":14770,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:27:21.015Z","sequence":14771,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:27:21.021Z","sequence":14772,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d57d5323-cb4c-446e-a790-ff992cfc69ad, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:27:25.974Z","sequence":14773,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:27:25.974Z","sequence":14774,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB1000A7D] for gateway [0008004B5135]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:27:25.98Z","sequence":14775,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:27:25.98Z","sequence":14776,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:27:25.983Z","sequence":14777,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9094ecf3-1bb0-40c2-9cb6-623c5641b442, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:27:28.33Z","sequence":14778,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:27:28.33Z","sequence":14779,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C29] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:27:28.335Z","sequence":14780,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:27:28.335Z","sequence":14781,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:27:28.341Z","sequence":14782,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c2b6a972-fc90-4743-ad7c-0220e74819fa, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:27:28.553Z","sequence":14783,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:27:28.553Z","sequence":14784,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100015E] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:27:28.558Z","sequence":14785,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:27:28.558Z","sequence":14786,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:27:28.561Z","sequence":14787,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7217db1e-da41-4734-ab56-4f9c0e0751d7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:27:28.605Z","sequence":14788,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:27:28.605Z","sequence":14789,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100015E] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:27:28.629Z","sequence":14790,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:27:28.629Z","sequence":14791,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:27:28.633Z","sequence":14792,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d69cfedf-47f1-48f5-8b0d-a4be1351c53e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:27:30.733Z","sequence":14793,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:27:30.733Z","sequence":14794,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100048D] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:27:30.738Z","sequence":14795,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:27:30.738Z","sequence":14796,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:27:30.744Z","sequence":14797,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ec9ce3f3-defc-4cd0-b766-de0f8141f377, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:27:58.009Z","sequence":14798,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/aloxy:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:27:58.009Z","sequence":14799,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: aloxy, device-id: 0008004A8F68]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:27:58.015Z","sequence":14800,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d6f6840a-0750-4b18-a1c8-6aa860e2fd88, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:27:58.018Z","sequence":14801,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:27:58.019Z","sequence":14802,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: aloxy]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:27:58.021Z","sequence":14803,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-22727b1a-5083-4ec8-b542-580670b594c3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:04.419Z","sequence":14804,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191054]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"eeb7cbea34005222","parentId":"6730ef5e215c1870","traceId":"000000000000000064c60bf51847c69b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:04.443Z","sequence":14805,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191054, resource-version: 98280ee6-3114-4821-8ad1-a4d85289ba82]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"eeb7cbea34005222","parentId":"6730ef5e215c1870","traceId":"000000000000000064c60bf51847c69b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:04.451Z","sequence":14806,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191054, resource-version: 8309bbe0-77e6-4e44-826a-9ce4e2243207]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"eeb7cbea34005222","parentId":"6730ef5e215c1870","traceId":"000000000000000064c60bf51847c69b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:04.455Z","sequence":14807,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191054]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9a08f7d37e7ae827","parentId":"b89a1f8a1c175506","traceId":"000000000000000064c60bf51847c69b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:04.657Z","sequence":14808,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191054]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9a08f7d37e7ae827","parentId":"b89a1f8a1c175506","traceId":"000000000000000064c60bf51847c69b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:05.357Z","sequence":14809,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF55CC6ACD1BEE4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d2b45310edad4e0f","parentId":"24555c6af8cdcaff","traceId":"0000000000000000df1ad242fb7d50db","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:05.38Z","sequence":14810,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF55CC6ACD1BEE4, resource-version: 537b4088-0104-4329-9202-76adef56f8c2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d2b45310edad4e0f","parentId":"24555c6af8cdcaff","traceId":"0000000000000000df1ad242fb7d50db","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:05.387Z","sequence":14811,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF55CC6ACD1BEE4, resource-version: 53a1105e-a9bd-4e8f-840b-65b70b80237d]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d2b45310edad4e0f","parentId":"24555c6af8cdcaff","traceId":"0000000000000000df1ad242fb7d50db","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:06.301Z","sequence":14812,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:06.301Z","sequence":14813,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: shell]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:06.304Z","sequence":14814,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-7ef03800-ab24-4260-9891-dc18189fde68, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:06.307Z","sequence":14815,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/shell:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:06.307Z","sequence":14816,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: shell, type: hashed-password, auth-id: auth-gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:06.316Z","sequence":14817,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-f7217ac4-bed1-4d4b-8abb-41fc8b817b1a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:06.439Z","sequence":14818,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:06.439Z","sequence":14819,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C2A] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:06.445Z","sequence":14820,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:06.445Z","sequence":14821,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:06.454Z","sequence":14822,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-76694693-6324-4601-829d-b5c99b3ba864, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:06.497Z","sequence":14823,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:06.497Z","sequence":14824,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191054]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:06.545Z","sequence":14825,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-f9effc34-5a62-4a9f-9bd5-66de3bf8e2a6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:06.681Z","sequence":14826,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:06.681Z","sequence":14827,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF55CC6ACD1BEE4] for gateway [gateway_integrationtest_network_191054]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:06.682Z","sequence":14828,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:06.682Z","sequence":14829,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191054]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:06.691Z","sequence":14830,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:06.691Z","sequence":14831,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:06.692Z","sequence":14832,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-00f6e664-5b61-47b0-bd86-1ea96074e846, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:07.203Z","sequence":14833,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2033797b-9ba0-44b3-bb18-03852e53404d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:07.204Z","sequence":14834,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:07.204Z","sequence":14835,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C4C] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:07.225Z","sequence":14836,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:07.225Z","sequence":14837,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:07.231Z","sequence":14838,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-25a0a3bc-c5ae-47ef-9ca0-fb36fe22e5f8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:08.946Z","sequence":14839,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:08.946Z","sequence":14840,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BB613]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:08.951Z","sequence":14841,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-20cd7e75-66b0-47a1-8e7a-1cb8e203f589, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:17.62Z","sequence":14842,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:17.621Z","sequence":14843,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB10001DC] for gateway [0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:17.633Z","sequence":14844,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:17.633Z","sequence":14845,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:17.638Z","sequence":14846,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-12ed09f1-5dfd-4472-a3b5-9a0a2ddcb0c2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:17.745Z","sequence":14847,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"retrieving device [tenant: ineos, device-id: 70B3D57BB10001DC]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5fe99e865c67d9d5","parentId":"4bcea061f26d0bea","traceId":"e6438610bd63303178c5119860af3c48","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:18.228Z","sequence":14848,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF55CC6ACD1BEE4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"537ccab639028cbb","parentId":"23fae716774c2349","traceId":"000000000000000032647bed1b4284b6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:18.248Z","sequence":14849,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF55CC6ACD1BEE4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"537ccab639028cbb","parentId":"23fae716774c2349","traceId":"000000000000000032647bed1b4284b6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:18.399Z","sequence":14850,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191054]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"706a366728c6ee6a","parentId":"62a0bc05e2770b2e","traceId":"00000000000000001f2b00fe748955f7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:18.42Z","sequence":14851,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191054]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"706a366728c6ee6a","parentId":"62a0bc05e2770b2e","traceId":"00000000000000001f2b00fe748955f7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:18.929Z","sequence":14852,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 3AFF1D8C4A67]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f483af3e4d4509f6","parentId":"406347b08912d80f","traceId":"00000000000000003ef430a119baa0f8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:18.945Z","sequence":14853,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 3AFF1D8C4A67, resource-version: d4c729e7-d2b9-40ad-a603-5ad1a54ce1b6]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f483af3e4d4509f6","parentId":"406347b08912d80f","traceId":"00000000000000003ef430a119baa0f8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:18.954Z","sequence":14854,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 3AFF1D8C4A67, resource-version: 5c339f97-f77f-4f91-ac28-68346fe6a97e]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f483af3e4d4509f6","parentId":"406347b08912d80f","traceId":"00000000000000003ef430a119baa0f8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:18.956Z","sequence":14855,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 3AFF1D8C4A67]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b65f92ebe3afb036","parentId":"e88901fefe2b6414","traceId":"00000000000000003ef430a119baa0f8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:19.103Z","sequence":14856,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 3AFF1D8C4A67]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b65f92ebe3afb036","parentId":"e88901fefe2b6414","traceId":"00000000000000003ef430a119baa0f8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:19.73Z","sequence":14857,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF7261B41259336]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e0b42591aca64587","parentId":"8881d97e09b8ccfd","traceId":"0000000000000000cd49e103ac1afe3d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:19.747Z","sequence":14858,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF7261B41259336, resource-version: 6f822c35-0b2b-4157-bdf2-78752d082b66]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e0b42591aca64587","parentId":"8881d97e09b8ccfd","traceId":"0000000000000000cd49e103ac1afe3d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:19.753Z","sequence":14859,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF7261B41259336, resource-version: a81799a6-5507-428f-a57e-4d0332a2f0f0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e0b42591aca64587","parentId":"8881d97e09b8ccfd","traceId":"0000000000000000cd49e103ac1afe3d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:20.796Z","sequence":14860,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:20.796Z","sequence":14861,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-3AFF1D8C4A67]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:20.806Z","sequence":14862,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-7638ad1c-e274-4e26-a935-a9e2b9a6f2f2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:20.926Z","sequence":14863,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:20.927Z","sequence":14864,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 3AFF1D8C4A67]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:20.932Z","sequence":14865,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c4fb4e23-299f-4002-acd2-94ef69099197, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:20.936Z","sequence":14866,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:20.936Z","sequence":14867,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF7261B41259336] for gateway [3AFF1D8C4A67]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:20.94Z","sequence":14868,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:20.941Z","sequence":14869,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:21.101Z","sequence":14870,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b92a9304-e280-4d67-85a8-3d3cad552502, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:23.608Z","sequence":14871,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:23.608Z","sequence":14872,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000223] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:23.614Z","sequence":14873,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:23.614Z","sequence":14874,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:23.617Z","sequence":14875,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4e47f2be-0b37-43cd-b46c-50d5e2a95f3d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:23.652Z","sequence":14876,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:23.652Z","sequence":14877,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000223] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:23.657Z","sequence":14878,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:23.657Z","sequence":14879,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:23.661Z","sequence":14880,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e03f3071-8a22-4431-a006-46e03780e26a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:28.453Z","sequence":14881,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/acta:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:28.454Z","sequence":14882,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: acta, device-id: 0008004AAAA3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:28.458Z","sequence":14883,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-668b43db-f4dd-4283-b4ed-633763ee2373, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:28.461Z","sequence":14884,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:28.461Z","sequence":14885,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: acta]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:28.464Z","sequence":14886,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-2bc118f6-3d3c-4ccf-8da3-8f4d15bc2d8a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:31.804Z","sequence":14887,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:31.805Z","sequence":14888,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 70B3D57BB1001274] for gateway [gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:31.811Z","sequence":14889,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:31.811Z","sequence":14890,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:31.815Z","sequence":14891,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-328e19af-7441-48e1-afc5-eddb12671446, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:33.924Z","sequence":14892,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF7261B41259336]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"74dd8b658efbb9d4","parentId":"913abe0f4ca7143e","traceId":"00000000000000005db616da8cb5b474","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:33.94Z","sequence":14893,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF7261B41259336]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"74dd8b658efbb9d4","parentId":"913abe0f4ca7143e","traceId":"00000000000000005db616da8cb5b474","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:34.261Z","sequence":14894,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 3AFF1D8C4A67]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ba8b3039c9cb3953","parentId":"5a965c0534037a5a","traceId":"0000000000000000ad50980b729fbe23","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:34.278Z","sequence":14895,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 3AFF1D8C4A67]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ba8b3039c9cb3953","parentId":"5a965c0534037a5a","traceId":"0000000000000000ad50980b729fbe23","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:40.403Z","sequence":14896,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:40.403Z","sequence":14897,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000F99] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:40.408Z","sequence":14898,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:40.408Z","sequence":14899,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:40.413Z","sequence":14900,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6966bba5-7698-4d04-9958-b77d783dc5f9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:52.078Z","sequence":14901,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:52.079Z","sequence":14902,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006D9] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:52.085Z","sequence":14903,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:52.085Z","sequence":14904,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:52.091Z","sequence":14905,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b402204a-fe5d-461d-aaf4-fc5bbc9d0057, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:53.491Z","sequence":14906,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:53.491Z","sequence":14907,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:53.499Z","sequence":14908,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1d78a196-8447-44ab-a02f-b90d0fb00341, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:55.38Z","sequence":14909,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:55.38Z","sequence":14910,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100017A] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:55.39Z","sequence":14911,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:55.39Z","sequence":14912,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:55.405Z","sequence":14913,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-905d638e-49ed-4f6f-8b7a-ebaf62401ca9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:55.561Z","sequence":14914,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:55.561Z","sequence":14915,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100017A] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:55.572Z","sequence":14916,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:55.572Z","sequence":14917,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:55.582Z","sequence":14918,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d3d7403a-88ca-4094-8369-c22a06e1a643, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:58.119Z","sequence":14919,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:58.119Z","sequence":14920,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C27] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:58.125Z","sequence":14921,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:58.125Z","sequence":14922,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:28:58.132Z","sequence":14923,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6ca95368-8b1c-442c-8f3b-62a53ab9121e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:29:02.739Z","sequence":14924,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/repsol:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:29:02.739Z","sequence":14925,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: repsol, device-id: 0008004A37FF]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:29:02.745Z","sequence":14926,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f3cd4f35-7615-4a9f-b7af-f6ae9bf1e37c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:29:02.748Z","sequence":14927,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:29:02.749Z","sequence":14928,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: repsol]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:29:02.752Z","sequence":14929,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-9c1150c7-a0d1-4e70-9561-2e3d97906be8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:29:09.725Z","sequence":14930,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:29:09.725Z","sequence":14931,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C26] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:29:09.733Z","sequence":14932,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:29:09.733Z","sequence":14933,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:29:09.74Z","sequence":14934,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7952629a-8aec-4a64-a625-491f7b411b8b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:29:13.673Z","sequence":14935,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:29:13.673Z","sequence":14936,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001FA] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:29:13.681Z","sequence":14937,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:29:13.681Z","sequence":14938,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:29:13.684Z","sequence":14939,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1a67118a-14a2-406c-930a-346b0f5c645d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:29:13.905Z","sequence":14940,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:29:13.905Z","sequence":14941,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001FA] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:29:13.926Z","sequence":14942,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:29:13.926Z","sequence":14943,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:29:13.937Z","sequence":14944,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5aa6c3a8-38ac-4e98-b4f9-ff17f6a6bcb3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:29:14.859Z","sequence":14945,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:29:14.859Z","sequence":14946,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100068F] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:29:14.868Z","sequence":14947,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:29:14.868Z","sequence":14948,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:29:14.874Z","sequence":14949,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5831f20a-1284-46e9-9e2c-ec4982d4cfd2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:29:24.329Z","sequence":14950,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:29:24.329Z","sequence":14951,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 0008004B51D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:29:24.335Z","sequence":14952,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ea53a7e9-1c61-481a-935c-0ba2ece1f030, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:29:24.338Z","sequence":14953,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:29:24.338Z","sequence":14954,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: dow]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:29:24.341Z","sequence":14955,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-44472ab1-b98f-429c-9db6-c78611e965d7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:29:50.777Z","sequence":14956,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:29:50.777Z","sequence":14957,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: flint]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:29:50.788Z","sequence":14958,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-b1176714-9f67-4a97-9821-52834bcc3704, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:29:50.79Z","sequence":14959,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/flint:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:29:50.791Z","sequence":14960,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: flint, type: hashed-password, auth-id: auth-flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:29:50.805Z","sequence":14961,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-ded5d790-a737-436a-8627-849b7946128f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:29:50.915Z","sequence":14962,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:29:50.916Z","sequence":14963,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10018E9] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:29:50.934Z","sequence":14964,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:29:50.934Z","sequence":14965,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:29:50.942Z","sequence":14966,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8ffa626d-7adb-4abb-a0a5-0c7c69aac137, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:29:51.018Z","sequence":14967,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:29:51.018Z","sequence":14968,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10009E1] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:29:51.025Z","sequence":14969,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:29:51.025Z","sequence":14970,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:29:51.028Z","sequence":14971,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-077234fc-8050-4817-b4f7-a6052293eb8d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:29:55.817Z","sequence":14972,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:29:55.817Z","sequence":14973,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000832] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:29:55.843Z","sequence":14974,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:29:55.843Z","sequence":14975,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:29:55.85Z","sequence":14976,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-cc2ff3a6-4c4f-4b38-b2b6-0c0a874983db, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:00.446Z","sequence":14977,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/conditionall:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:00.446Z","sequence":14978,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: conditionall, device-id: 0008004B512D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:00.452Z","sequence":14979,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7ac3099d-af25-4fb0-b111-f6f607843da2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:00.455Z","sequence":14980,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:00.456Z","sequence":14981,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: conditionall]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:00.458Z","sequence":14982,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-9e1edf61-bf75-459d-a676-1712e4f17fcd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:00.532Z","sequence":14983,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:00.532Z","sequence":14984,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: lanxess]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:00.537Z","sequence":14985,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-71d4aa25-c756-4116-b428-b16aceb113f8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:00.539Z","sequence":14986,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:00.539Z","sequence":14987,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 70B3D57BB10001B5] for gateway [0008004BB84C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:00.545Z","sequence":14988,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_lanxess\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:00.545Z","sequence":14989,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_lanxess\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:00.548Z","sequence":14990,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b9cc5510-7374-4f2b-a5e2-937ec82f609b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:00.733Z","sequence":14991,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:00.733Z","sequence":14992,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000567] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:00.738Z","sequence":14993,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:00.738Z","sequence":14994,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:00.744Z","sequence":14995,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9dba61b5-1b9f-4333-9687-07ce3776fbb7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:02.025Z","sequence":14996,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:02.025Z","sequence":14997,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000A9B] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:02.045Z","sequence":14998,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:02.045Z","sequence":14999,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:02.056Z","sequence":15000,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-cd9b4cbe-9a99-4f71-a7a6-d17f875c3fe5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:04.546Z","sequence":15001,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191056]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e5a8921ac900d8ca","parentId":"3ffcd4ae012ba149","traceId":"0000000000000000b351589d751ce7a6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:04.564Z","sequence":15002,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191056, resource-version: f04fd137-a638-48e1-a540-ae17601c4c1c]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e5a8921ac900d8ca","parentId":"3ffcd4ae012ba149","traceId":"0000000000000000b351589d751ce7a6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:04.571Z","sequence":15003,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191056, resource-version: f59b7166-6e69-4a47-97bb-3de67f15723f]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e5a8921ac900d8ca","parentId":"3ffcd4ae012ba149","traceId":"0000000000000000b351589d751ce7a6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:04.574Z","sequence":15004,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191056]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e05b2506989cf803","parentId":"77dcdba67f768bea","traceId":"0000000000000000b351589d751ce7a6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:04.757Z","sequence":15005,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191056]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e05b2506989cf803","parentId":"77dcdba67f768bea","traceId":"0000000000000000b351589d751ce7a6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:05.627Z","sequence":15006,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF3F178E504519C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"54008493e47dff5f","parentId":"9f7f6a326aaf7e48","traceId":"0000000000000000b07c06f981dc2615","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:05.645Z","sequence":15007,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF3F178E504519C, resource-version: 2c83c7ec-9fcf-4975-be41-215a02b3b17e]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"54008493e47dff5f","parentId":"9f7f6a326aaf7e48","traceId":"0000000000000000b07c06f981dc2615","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:05.653Z","sequence":15008,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF3F178E504519C, resource-version: a7a876e7-dd16-44b7-9629-4f5cdfaf1569]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"54008493e47dff5f","parentId":"9f7f6a326aaf7e48","traceId":"0000000000000000b07c06f981dc2615","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:06.745Z","sequence":15009,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:06.745Z","sequence":15010,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:06.757Z","sequence":15011,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-b5a950a8-14d3-49f1-8a6b-bb538a00b412, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:06.759Z","sequence":15012,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:06.76Z","sequence":15013,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191056]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:06.769Z","sequence":15014,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-3e3eb536-4528-4a9c-bdfa-c2af1060697b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:06.899Z","sequence":15015,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:06.9Z","sequence":15016,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF3F178E504519C] for gateway [gateway_integrationtest_network_191056]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:06.901Z","sequence":15017,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:06.901Z","sequence":15018,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191056]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:06.907Z","sequence":15019,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:06.907Z","sequence":15020,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:06.909Z","sequence":15021,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9a268d33-9696-4e64-90d2-4869d10590b6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:07.343Z","sequence":15022,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e8949714-c5cc-45ed-a9c6-01f605027b22, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:08.144Z","sequence":15023,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:08.145Z","sequence":15024,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:08.15Z","sequence":15025,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a7d275af-ed87-400d-a45a-a40854f1e957, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:08.154Z","sequence":15026,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:08.155Z","sequence":15027,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oci]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:08.157Z","sequence":15028,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-d3c63185-d395-4f60-96ec-898ca57796a8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:16.439Z","sequence":15029,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF3F178E504519C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"98f36e40a4a5e229","parentId":"7be9afd6003a84a0","traceId":"0000000000000000bb67d72c4966d781","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:16.467Z","sequence":15030,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF3F178E504519C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"98f36e40a4a5e229","parentId":"7be9afd6003a84a0","traceId":"0000000000000000bb67d72c4966d781","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:16.656Z","sequence":15031,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191056]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d5b79936b67f2c37","parentId":"f6bd345b2cb2c2ac","traceId":"0000000000000000ef2a1b2ee4065959","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:16.671Z","sequence":15032,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191056]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d5b79936b67f2c37","parentId":"f6bd345b2cb2c2ac","traceId":"0000000000000000ef2a1b2ee4065959","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:17.32Z","sequence":15033,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 1BC4E7006ECB]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cd198e9b0d5393c0","parentId":"bdd2a14309b0215a","traceId":"0000000000000000e6eb5baba27833f4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:17.336Z","sequence":15034,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 1BC4E7006ECB, resource-version: a50eb423-d792-4706-821d-991996dff71d]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cd198e9b0d5393c0","parentId":"bdd2a14309b0215a","traceId":"0000000000000000e6eb5baba27833f4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:17.343Z","sequence":15035,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 1BC4E7006ECB, resource-version: 756126f6-28f1-43fb-b62b-b0db35278ae4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cd198e9b0d5393c0","parentId":"bdd2a14309b0215a","traceId":"0000000000000000e6eb5baba27833f4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:17.347Z","sequence":15036,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 1BC4E7006ECB]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fba56f41ab4a9d02","parentId":"e33b27d05dae7422","traceId":"0000000000000000e6eb5baba27833f4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:17.516Z","sequence":15037,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 1BC4E7006ECB]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fba56f41ab4a9d02","parentId":"e33b27d05dae7422","traceId":"0000000000000000e6eb5baba27833f4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:18.177Z","sequence":15038,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:18.177Z","sequence":15039,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000F97] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:18.195Z","sequence":15040,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:18.195Z","sequence":15041,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:18.209Z","sequence":15042,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b62e4349-39f3-4650-a34c-0f4b3a56a600, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:18.429Z","sequence":15043,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF4296D1CF608F2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cb3fc0216c22e094","parentId":"9fe5f5c4da004661","traceId":"0000000000000000059e9505dd64823d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:18.468Z","sequence":15044,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF4296D1CF608F2, resource-version: cfb2657f-0225-49bd-b600-b2a97cd69e5a]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cb3fc0216c22e094","parentId":"9fe5f5c4da004661","traceId":"0000000000000000059e9505dd64823d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:18.477Z","sequence":15045,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF4296D1CF608F2, resource-version: f4a9bc21-dcef-4731-9374-c8f45cc93978]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cb3fc0216c22e094","parentId":"9fe5f5c4da004661","traceId":"0000000000000000059e9505dd64823d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:19.568Z","sequence":15046,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:19.568Z","sequence":15047,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:19.572Z","sequence":15048,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-20342e29-0481-401f-ac26-673923d14c32, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:19.576Z","sequence":15049,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:19.576Z","sequence":15050,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-1BC4E7006ECB]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:19.585Z","sequence":15051,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-ff392097-f071-4a57-b8ca-80353febe81b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:19.709Z","sequence":15052,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:19.71Z","sequence":15053,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 1BC4E7006ECB]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:19.72Z","sequence":15054,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-12ba68bc-4bae-4ee8-9b3a-bcd2c36c1f46, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:19.725Z","sequence":15055,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:19.725Z","sequence":15056,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF4296D1CF608F2] for gateway [1BC4E7006ECB]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:19.73Z","sequence":15057,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:19.73Z","sequence":15058,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:20.042Z","sequence":15059,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7bc8bb10-92bb-44f9-9ea3-f68c5dfb34a3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:24.092Z","sequence":15060,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:24.092Z","sequence":15061,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 70B3D57BB100017F] for gateway [0008004BB84C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:24.133Z","sequence":15062,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_lanxess\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:24.133Z","sequence":15063,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_lanxess\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:24.141Z","sequence":15064,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-25a90793-6c38-4abb-b728-47861fe2dbfe, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:31.244Z","sequence":15065,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:31.245Z","sequence":15066,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10001D5] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:31.25Z","sequence":15067,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:0.4.1\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:31.25Z","sequence":15068,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:31.256Z","sequence":15069,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d8817f3d-ef7b-4171-8c1a-d559414b6926, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:32.669Z","sequence":15070,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:32.669Z","sequence":15071,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: ineos]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:32.672Z","sequence":15072,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-f66b4a4e-3c24-4c67-b9f3-251727a0a5fb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:32.695Z","sequence":15073,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:32.695Z","sequence":15074,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB1000A70] for gateway [0008004B5135]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:32.701Z","sequence":15075,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:32.701Z","sequence":15076,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:32.704Z","sequence":15077,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-53c4e49e-ac80-4c65-b5f4-1eb0087b8655, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:32.93Z","sequence":15078,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF4296D1CF608F2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b81b55de3473207e","parentId":"a210f8fc0f49026d","traceId":"00000000000000002d8c598ce588401e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:32.945Z","sequence":15079,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF4296D1CF608F2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b81b55de3473207e","parentId":"a210f8fc0f49026d","traceId":"00000000000000002d8c598ce588401e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:33.292Z","sequence":15080,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 1BC4E7006ECB]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9886d787da6f1ba7","parentId":"23fd10dd4d22d726","traceId":"00000000000000003981959be10a63b5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:33.316Z","sequence":15081,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 1BC4E7006ECB]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9886d787da6f1ba7","parentId":"23fd10dd4d22d726","traceId":"00000000000000003981959be10a63b5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:36.319Z","sequence":15082,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:36.319Z","sequence":15083,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BB84C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:36.324Z","sequence":15084,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-cb8ee022-f42a-4433-affe-4009954fe12a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:36.892Z","sequence":15085,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:36.892Z","sequence":15086,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C16] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:36.897Z","sequence":15087,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:36.898Z","sequence":15088,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:36.904Z","sequence":15089,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-555e5d9c-dd5b-4716-902e-51c71a7a8893, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:37.937Z","sequence":15090,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:37.937Z","sequence":15091,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 0008004B5135]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:37.943Z","sequence":15092,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d442d4fc-f204-49fa-9377-7b20e0f4804f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:39.296Z","sequence":15093,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:39.296Z","sequence":15094,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AC9] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:39.303Z","sequence":15095,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:39.303Z","sequence":15096,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:39.309Z","sequence":15097,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c567438d-111f-467d-86a6-72167b5086ca, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:42.382Z","sequence":15098,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:42.382Z","sequence":15099,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BBD1B]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:42.388Z","sequence":15100,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-99ddf9a3-a7c0-4784-99aa-05339d5a795e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:48.306Z","sequence":15101,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/arkema:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:48.306Z","sequence":15102,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: arkema, device-id: 0008004AE119]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:48.312Z","sequence":15103,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d62d9d56-32d4-4f1a-8e46-8a539387f40e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:48.315Z","sequence":15104,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:48.316Z","sequence":15105,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: arkema]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:48.319Z","sequence":15106,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-427645ac-d028-4ada-b7cb-adf3b70ab28a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:49.907Z","sequence":15107,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:49.907Z","sequence":15108,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000A99] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:49.908Z","sequence":15109,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:49.908Z","sequence":15110,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:49.932Z","sequence":15111,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:49.932Z","sequence":15112,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:49.933Z","sequence":15113,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8d12dea3-b2b6-4d9c-9950-4f33ea3e95d4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:49.939Z","sequence":15114,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-bb799cd7-4806-4e72-9e1d-d599b8df2b5b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:55.691Z","sequence":15115,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:55.691Z","sequence":15116,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C4B] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:55.697Z","sequence":15117,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:55.697Z","sequence":15118,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:30:55.703Z","sequence":15119,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9f205c78-4288-4165-9de5-38c5fed0a310, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:31:02.696Z","sequence":15120,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:31:02.696Z","sequence":15121,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000167] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:31:02.702Z","sequence":15122,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:31:02.702Z","sequence":15123,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:31:02.705Z","sequence":15124,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1830e669-7380-4ebb-afc9-151486dcf557, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:31:02.742Z","sequence":15125,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:31:02.742Z","sequence":15126,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000167] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:31:02.748Z","sequence":15127,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:31:02.748Z","sequence":15128,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:31:02.751Z","sequence":15129,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-70566023-d5c1-4ec4-b3df-f2d8bd0ade53, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:31:08.393Z","sequence":15130,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:31:08.393Z","sequence":15131,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000526] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:31:08.394Z","sequence":15132,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:31:08.394Z","sequence":15133,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:31:08.4Z","sequence":15134,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:31:08.4Z","sequence":15135,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:31:08.401Z","sequence":15136,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8e8fcec6-04c3-469d-bb07-c93d8959c67c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:31:08.401Z","sequence":15137,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:31:08.401Z","sequence":15138,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: shell]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:31:08.404Z","sequence":15139,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-106a3667-f160-4114-888a-6228bdcf7abf, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:31:08.405Z","sequence":15140,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6f3e8432-c1d6-4c12-ab22-32cb3a8fb613, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:31:08.406Z","sequence":15141,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/shell:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:31:08.407Z","sequence":15142,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: shell, type: hashed-password, auth-id: auth-gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:31:08.418Z","sequence":15143,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-ec26a424-bf86-4156-b566-022dcc724218, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:31:08.551Z","sequence":15144,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:31:08.551Z","sequence":15145,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BE5] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:31:08.556Z","sequence":15146,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:31:08.556Z","sequence":15147,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:31:08.562Z","sequence":15148,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ced04ecc-a46e-48d8-9ed7-ac1ef2659895, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:31:16.063Z","sequence":15149,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:31:16.063Z","sequence":15150,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: shelldev]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:31:16.073Z","sequence":15151,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-e4c3159b-126c-471e-9ee6-e755b3a2cd91, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:31:16.077Z","sequence":15152,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/shelldev:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:31:16.077Z","sequence":15153,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: shelldev, type: hashed-password, auth-id: auth-AZUREFUNCTION-DEV]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:31:16.09Z","sequence":15154,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-daa1dfe8-f34a-4e47-9480-2b68737c272b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:31:16.21Z","sequence":15155,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shelldev:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:31:16.211Z","sequence":15156,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shelldev, device-id: 70B3D57BB10006D7] for gateway [AZUREFUNCTION-DEV]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:31:16.212Z","sequence":15157,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shelldev:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:31:16.212Z","sequence":15158,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shelldev, device-id: AZUREFUNCTION-DEV]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:31:16.216Z","sequence":15159,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shelldev\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:31:16.217Z","sequence":15160,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_shelldev\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:31:16.218Z","sequence":15161,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3cee2124-fa2b-4f6a-befa-eb79c9daebb9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:31:16.22Z","sequence":15162,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6a3bc62d-a0ea-46c1-a2b2-3d39d8498832, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:31:17.169Z","sequence":15163,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:31:17.17Z","sequence":15164,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BBD1C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:31:17.175Z","sequence":15165,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-cd797f0a-f9c5-4fb2-9b73-727a26ecef21, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:31:30.708Z","sequence":15166,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:31:30.708Z","sequence":15167,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10013DA] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:31:30.716Z","sequence":15168,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:31:30.717Z","sequence":15169,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:31:30.724Z","sequence":15170,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-054fb6fc-de58-4667-bcc0-962ad4016b1f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:31:30.841Z","sequence":15171,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:31:30.841Z","sequence":15172,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:31:30.846Z","sequence":15173,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d4e09445-a0ff-4a48-98db-decc9362f914, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:31:39.299Z","sequence":15174,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:31:39.3Z","sequence":15175,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10013D9] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:31:39.307Z","sequence":15176,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:31:39.307Z","sequence":15177,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:31:39.313Z","sequence":15178,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5a6152a7-d36d-4f21-bc63-d6383b06567c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:31:39.347Z","sequence":15179,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:31:39.347Z","sequence":15180,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: acta]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:31:39.35Z","sequence":15181,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-7efbab5a-73b1-49e8-bbba-9e65d894dc1a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:31:39.353Z","sequence":15182,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/acta:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:31:39.353Z","sequence":15183,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: acta, device-id: 3534383400470039] for gateway [0008004AAAA3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:31:39.358Z","sequence":15184,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.3.0\"\n },\n \"viaGroups\" : [ \"gateways_acta\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:31:39.358Z","sequence":15185,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_acta\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:31:39.361Z","sequence":15186,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f1d2885b-7876-4e5c-a229-74acff9bf6a6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:31:48.796Z","sequence":15187,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:31:48.796Z","sequence":15188,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AAD] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:31:48.806Z","sequence":15189,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:31:48.806Z","sequence":15190,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:31:48.812Z","sequence":15191,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9386ea51-9b3d-4d91-9f60-309a578fa792, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:31:54.069Z","sequence":15192,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/conditionall:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:31:54.069Z","sequence":15193,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: conditionall, device-id: 70B3D57BB1000226] for gateway [0008004B512D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:31:54.078Z","sequence":15194,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_conditionall\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:31:54.078Z","sequence":15195,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_conditionall\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:31:54.087Z","sequence":15196,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2d80ea42-30a3-43ce-be34-a90d29c25436, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:01.365Z","sequence":15197,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:01.365Z","sequence":15198,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B4A] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:01.384Z","sequence":15199,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:01.384Z","sequence":15200,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:01.396Z","sequence":15201,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8a0122db-13c1-4bbc-a43d-b32b01307cf9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:02.275Z","sequence":15202,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:02.276Z","sequence":15203,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001E1] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:02.282Z","sequence":15204,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:02.282Z","sequence":15205,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:02.285Z","sequence":15206,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a40908c6-1a1e-47d7-8774-c7facaecef2c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:02.31Z","sequence":15207,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:02.31Z","sequence":15208,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001E1] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:02.316Z","sequence":15209,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:02.316Z","sequence":15210,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:02.319Z","sequence":15211,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ca261382-f81a-4e4c-87bb-4e8c08b34bbb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:02.475Z","sequence":15212,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:02.475Z","sequence":15213,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: terega]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:02.478Z","sequence":15214,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-c896d847-719e-4902-929a-2f04f9980876, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:02.482Z","sequence":15215,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/terega:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:02.483Z","sequence":15216,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: terega, type: hashed-password, auth-id: auth-gateway_terega_network_27]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:02.497Z","sequence":15217,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-e0cdd4b3-292f-43eb-bbec-7edf0f96df67, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:02.625Z","sequence":15218,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/terega:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:02.625Z","sequence":15219,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: terega, device-id: 70B3D57BB1000091] for gateway [gateway_terega_network_27]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:02.626Z","sequence":15220,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/terega:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:02.626Z","sequence":15221,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: terega, device-id: gateway_terega_network_27]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:02.631Z","sequence":15222,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_terega\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:02.631Z","sequence":15223,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_terega\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:02.631Z","sequence":15224,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-fbf63a9f-b488-4230-9973-00e50919f062, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:02.633Z","sequence":15225,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7dfffc41-c00b-496b-a08e-22c90f2fd7dd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:02.768Z","sequence":15226,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:02.768Z","sequence":15227,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 0008004C80F4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:02.772Z","sequence":15228,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-04d89bc2-29d2-47bd-b843-0c1c63b847b1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:02.792Z","sequence":15229,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:02.792Z","sequence":15230,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: dow]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:02.795Z","sequence":15231,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-ee02cb2a-55e9-49f6-82e2-523bac80427f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:02.797Z","sequence":15232,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/dow:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:02.797Z","sequence":15233,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: dow, type: hashed-password, auth-id: auth-gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:02.808Z","sequence":15234,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-e2b6a122-eb84-44b7-9eaa-3f88fbecedfa, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:03.108Z","sequence":15235,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:03.109Z","sequence":15236,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 70B3D57BB100128A] for gateway [gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:03.11Z","sequence":15237,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:03.11Z","sequence":15238,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:03.116Z","sequence":15239,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2fe956fa-7ecf-49c0-88e7-af4cccd5e9a3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:03.117Z","sequence":15240,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:03.117Z","sequence":15241,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:03.124Z","sequence":15242,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-cfe26244-b1aa-4f04-8d79-b4fca3a89640, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:04.469Z","sequence":15243,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191058]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7e8be99190256ebd","parentId":"91a5a5a6957a25a2","traceId":"0000000000000000b74568f2949df041","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:04.512Z","sequence":15244,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191058, resource-version: c6fcf5ef-5989-4468-b22b-99fce934b0ba]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7e8be99190256ebd","parentId":"91a5a5a6957a25a2","traceId":"0000000000000000b74568f2949df041","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:04.529Z","sequence":15245,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191058, resource-version: 468dec2f-bc67-4cb3-8346-d9c6b3fc98f8]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7e8be99190256ebd","parentId":"91a5a5a6957a25a2","traceId":"0000000000000000b74568f2949df041","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:04.533Z","sequence":15246,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191058]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"06e4969ef22acbfc","parentId":"88d34724baa31e09","traceId":"0000000000000000b74568f2949df041","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:04.909Z","sequence":15247,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191058]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"06e4969ef22acbfc","parentId":"88d34724baa31e09","traceId":"0000000000000000b74568f2949df041","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:06.345Z","sequence":15248,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF2BB8133D48F42]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3a1e5a2b3af9c8af","parentId":"d94fb761ed0bce04","traceId":"00000000000000003ab75fd71765e117","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:06.377Z","sequence":15249,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF2BB8133D48F42, resource-version: 82c6d9e4-f3c1-483c-8743-6d6a8f1428a0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3a1e5a2b3af9c8af","parentId":"d94fb761ed0bce04","traceId":"00000000000000003ab75fd71765e117","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:06.385Z","sequence":15250,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF2BB8133D48F42, resource-version: 78534908-7318-4928-8bed-67b1e53fed63]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3a1e5a2b3af9c8af","parentId":"d94fb761ed0bce04","traceId":"00000000000000003ab75fd71765e117","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:07.487Z","sequence":15251,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:07.487Z","sequence":15252,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191058]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:07.529Z","sequence":15253,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-0c069f02-88fe-488c-a82a-2d64d25b3d44, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:07.683Z","sequence":15254,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:07.684Z","sequence":15255,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF2BB8133D48F42] for gateway [gateway_integrationtest_network_191058]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:07.685Z","sequence":15256,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:07.685Z","sequence":15257,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191058]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:07.691Z","sequence":15258,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4bc39569-337d-400f-962e-d4186d5e2568, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:07.691Z","sequence":15259,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:07.692Z","sequence":15260,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:08.063Z","sequence":15261,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-816cb7d3-c916-4812-90a9-4594f8629dd1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:17.143Z","sequence":15262,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oiltanking:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:17.143Z","sequence":15263,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oiltanking, device-id: 0008004BB60F]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:17.149Z","sequence":15264,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-161cc5cf-5118-4ccb-b8e5-1198e4e9e540, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:17.152Z","sequence":15265,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:17.152Z","sequence":15266,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oiltanking]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:17.155Z","sequence":15267,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-5fe5beb6-ee3b-4de1-bb5e-c4892ed05227, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:17.736Z","sequence":15268,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:17.736Z","sequence":15269,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000165] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:17.743Z","sequence":15270,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:17.743Z","sequence":15271,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:17.746Z","sequence":15272,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9bc94790-45b0-4364-9f7c-825cc417dadd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:17.77Z","sequence":15273,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:17.77Z","sequence":15274,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000165] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:17.776Z","sequence":15275,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:17.777Z","sequence":15276,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:17.78Z","sequence":15277,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0bd406f0-2cbc-4c0d-8304-584ca533d1ef, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:19.288Z","sequence":15278,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:19.289Z","sequence":15279,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB100084D] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:19.297Z","sequence":15280,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:19.297Z","sequence":15281,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:19.301Z","sequence":15282,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7236d949-25e0-4eb7-ba7a-78517b3bd781, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:19.46Z","sequence":15283,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF2BB8133D48F42]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3527ad68255be0d1","parentId":"c8639866ee49878b","traceId":"00000000000000003f2a73b293df3cf9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:19.483Z","sequence":15284,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF2BB8133D48F42]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3527ad68255be0d1","parentId":"c8639866ee49878b","traceId":"00000000000000003f2a73b293df3cf9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:19.63Z","sequence":15285,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:19.63Z","sequence":15286,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB100052F] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:19.638Z","sequence":15287,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:19.638Z","sequence":15288,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:19.641Z","sequence":15289,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-deea054d-e2c5-4be7-bf78-b4cdbaa05d80, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:19.942Z","sequence":15290,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191058]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1027d9aea1dbc21b","parentId":"dde2030683d5faec","traceId":"000000000000000092adb7bee1f20146","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:19.964Z","sequence":15291,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191058]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1027d9aea1dbc21b","parentId":"dde2030683d5faec","traceId":"000000000000000092adb7bee1f20146","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:19.973Z","sequence":15292,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:19.973Z","sequence":15293,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100016B] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:19.985Z","sequence":15294,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:19.985Z","sequence":15295,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:19.988Z","sequence":15296,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:19.992Z","sequence":15297,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100016B] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:20.001Z","sequence":15298,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-06f2561e-7b41-4047-9413-a9152e366e16, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:20.035Z","sequence":15299,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:20.035Z","sequence":15300,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:20.049Z","sequence":15301,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-78175288-3f2a-45e1-aa40-964dc11c661b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:21.317Z","sequence":15302,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:21.317Z","sequence":15303,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A20] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:21.336Z","sequence":15304,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:21.337Z","sequence":15305,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:21.349Z","sequence":15306,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d06219c1-f0bf-4225-b2a3-bd1696da77c6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:21.933Z","sequence":15307,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 642F27DC53AA]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a0bf86b0e37e985b","parentId":"6f904e088221fa7b","traceId":"0000000000000000180f4a8ab7267a11","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:21.953Z","sequence":15308,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 642F27DC53AA, resource-version: 470ae7e2-6436-4619-a643-fdac5458ba2c]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a0bf86b0e37e985b","parentId":"6f904e088221fa7b","traceId":"0000000000000000180f4a8ab7267a11","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:21.96Z","sequence":15309,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 642F27DC53AA, resource-version: 7e8ebb73-938c-4ce7-a48f-c03f9f728965]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a0bf86b0e37e985b","parentId":"6f904e088221fa7b","traceId":"0000000000000000180f4a8ab7267a11","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:21.964Z","sequence":15310,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 642F27DC53AA]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"426319cc65cefdc0","parentId":"0a1d60b3ca9b8968","traceId":"0000000000000000180f4a8ab7267a11","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:22.115Z","sequence":15311,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 642F27DC53AA]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"426319cc65cefdc0","parentId":"0a1d60b3ca9b8968","traceId":"0000000000000000180f4a8ab7267a11","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:22.999Z","sequence":15312,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF1443D9BE99D98]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f6acbe321716960c","parentId":"73948f0c647840d9","traceId":"00000000000000000ea3725121140177","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:23.019Z","sequence":15313,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF1443D9BE99D98, resource-version: e39c0c35-aaa5-4645-8975-54a2ff85cac7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f6acbe321716960c","parentId":"73948f0c647840d9","traceId":"00000000000000000ea3725121140177","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:23.025Z","sequence":15314,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF1443D9BE99D98, resource-version: a19bf228-d883-47d2-9d33-407b1d850057]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f6acbe321716960c","parentId":"73948f0c647840d9","traceId":"00000000000000000ea3725121140177","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:24.09Z","sequence":15315,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:24.09Z","sequence":15316,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-642F27DC53AA]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:24.1Z","sequence":15317,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-106ffc93-7ab9-4830-a084-5e15497fc6cc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:24.219Z","sequence":15318,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:24.22Z","sequence":15319,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 642F27DC53AA]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:24.225Z","sequence":15320,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d0d0c975-ebe5-4598-9773-f16363f48530, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:24.229Z","sequence":15321,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:24.229Z","sequence":15322,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF1443D9BE99D98] for gateway [642F27DC53AA]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:24.236Z","sequence":15323,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:24.236Z","sequence":15324,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:24.408Z","sequence":15325,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-79b206f0-1532-48bf-a71d-ded717697b4e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:27.45Z","sequence":15326,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:27.45Z","sequence":15327,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB1000A79] for gateway [0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:27.456Z","sequence":15328,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:27.456Z","sequence":15329,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:27.458Z","sequence":15330,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3686b4d8-4488-4031-8007-c254dd7d01d0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:27.959Z","sequence":15331,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:27.959Z","sequence":15332,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006A3] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:27.965Z","sequence":15333,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:27.965Z","sequence":15334,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:27.972Z","sequence":15335,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7bb40160-1778-493c-b64e-5c23aa8f57a4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:37.955Z","sequence":15336,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF1443D9BE99D98]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d9d075d132d6ab94","parentId":"7b2a3bfcd03ebb8b","traceId":"0000000000000000cd9e4a128097b8ab","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:37.98Z","sequence":15337,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF1443D9BE99D98]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d9d075d132d6ab94","parentId":"7b2a3bfcd03ebb8b","traceId":"0000000000000000cd9e4a128097b8ab","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:38.525Z","sequence":15338,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 642F27DC53AA]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"140460986a7b3734","parentId":"e475d5d6d0e82e5e","traceId":"0000000000000000c156ca62500f87ce","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:38.551Z","sequence":15339,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 642F27DC53AA]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"140460986a7b3734","parentId":"e475d5d6d0e82e5e","traceId":"0000000000000000c156ca62500f87ce","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:38.588Z","sequence":15340,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:38.588Z","sequence":15341,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB100089E] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:38.606Z","sequence":15342,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:38.607Z","sequence":15343,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:38.622Z","sequence":15344,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-323a9821-734a-4e52-be98-404eba22f9fd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:40.214Z","sequence":15345,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:40.214Z","sequence":15346,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A24] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:40.224Z","sequence":15347,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:40.224Z","sequence":15348,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:40.232Z","sequence":15349,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-68fc68b3-bde5-4a25-859a-4d56f4cfd90d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:46.861Z","sequence":15350,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:46.861Z","sequence":15351,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C23] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:46.88Z","sequence":15352,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:46.881Z","sequence":15353,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:46.889Z","sequence":15354,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ad83404f-2123-4368-8230-eb491d3eb954, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:49.282Z","sequence":15355,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:49.283Z","sequence":15356,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000609] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:49.288Z","sequence":15357,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:49.288Z","sequence":15358,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:49.293Z","sequence":15359,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-523470cb-5afc-4970-a0ce-f318ce36346f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:54.765Z","sequence":15360,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:54.765Z","sequence":15361,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB1000A62] for gateway [0008004B5135]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:54.793Z","sequence":15362,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:54.793Z","sequence":15363,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:54.799Z","sequence":15364,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b8783997-5673-4b41-81e1-a60a606d0b96, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:56.736Z","sequence":15365,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:56.736Z","sequence":15366,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A21] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:56.742Z","sequence":15367,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:56.742Z","sequence":15368,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:56.75Z","sequence":15369,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2a2d8169-d7fe-4c74-bf5f-ce07dc86d97a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:59.718Z","sequence":15370,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/aloxy:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:59.718Z","sequence":15371,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: aloxy, device-id: 0008004A8F68]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:59.724Z","sequence":15372,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1e695096-a5d9-4934-ac09-1220b7c15cc3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:59.728Z","sequence":15373,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:59.728Z","sequence":15374,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: aloxy]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:32:59.731Z","sequence":15375,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-a150b1ca-2a43-4553-bcda-ead8b57fdabf, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:01.505Z","sequence":15376,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:01.505Z","sequence":15377,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C28] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:01.513Z","sequence":15378,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:01.513Z","sequence":15379,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:01.521Z","sequence":15380,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1a5835fb-5ac6-40df-a890-dca47dd2ca41, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:03.817Z","sequence":15381,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:03.817Z","sequence":15382,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: chevron]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:03.825Z","sequence":15383,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-c0294281-48d3-4730-be3c-79de380e1edc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:03.827Z","sequence":15384,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/chevron:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:03.827Z","sequence":15385,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: chevron, type: hashed-password, auth-id: auth-CHEVRON-ORBIWISE-EL-SEGUNDO]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:03.838Z","sequence":15386,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-38d6ca47-9c97-4643-bb76-eb03ce569bca, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:03.96Z","sequence":15387,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/chevron:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:03.96Z","sequence":15388,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: chevron, device-id: 70B3D57BB1000239] for gateway [CHEVRON-ORBIWISE-EL-SEGUNDO]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:03.961Z","sequence":15389,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/chevron:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:03.961Z","sequence":15390,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: chevron, device-id: CHEVRON-ORBIWISE-EL-SEGUNDO]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:03.97Z","sequence":15391,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ad345aa7-2f53-43ec-a44d-39a9d8d66488, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:03.97Z","sequence":15392,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_chevron\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:03.97Z","sequence":15393,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_chevron\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:03.974Z","sequence":15394,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-fd019806-82df-4d59-b1d1-753121879d57, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:08.68Z","sequence":15395,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:08.68Z","sequence":15396,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A2C] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:08.691Z","sequence":15397,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:08.691Z","sequence":15398,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:08.698Z","sequence":15399,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d3cdfc91-0b08-448c-b32e-084aca7f5084, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:10.119Z","sequence":15400,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:10.119Z","sequence":15401,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000516] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:10.125Z","sequence":15402,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:10.126Z","sequence":15403,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:10.132Z","sequence":15404,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ccd4760b-7051-4cd4-8673-ec74c6aabf2d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:10.729Z","sequence":15405,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:10.729Z","sequence":15406,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BB613]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:10.737Z","sequence":15407,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7b498273-713c-4e4d-b623-a35b9dc30731, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:10.74Z","sequence":15408,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:10.741Z","sequence":15409,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: lanxess]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:10.745Z","sequence":15410,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-95665740-6eba-4e9b-8eed-6209327de8d3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:11.757Z","sequence":15411,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:11.757Z","sequence":15412,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A35] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:11.763Z","sequence":15413,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:11.764Z","sequence":15414,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:11.769Z","sequence":15415,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6d29364a-1077-4fa4-8029-c3c7ad6929aa, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:12.102Z","sequence":15416,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:12.102Z","sequence":15417,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A2B] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:12.109Z","sequence":15418,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:12.109Z","sequence":15419,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:12.116Z","sequence":15420,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a9b11be9-cded-4dcc-a41d-e4aed20f9feb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:13.936Z","sequence":15421,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:13.936Z","sequence":15422,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oci]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:13.939Z","sequence":15423,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-2f85c954-ce2d-4818-9f1e-65ead626246a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:13.942Z","sequence":15424,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:13.942Z","sequence":15425,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001FD] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:13.947Z","sequence":15426,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:13.947Z","sequence":15427,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:13.95Z","sequence":15428,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5dfa5ef8-76ea-4bbe-af4d-436284110bae, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:14.061Z","sequence":15429,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:14.061Z","sequence":15430,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001FD] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:14.077Z","sequence":15431,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:14.078Z","sequence":15432,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:14.082Z","sequence":15433,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9f2a264d-02d3-4429-96cc-a9755b59fe68, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:14.714Z","sequence":15434,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:14.714Z","sequence":15435,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10013FC] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:14.749Z","sequence":15436,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:14.749Z","sequence":15437,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:14.766Z","sequence":15438,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c5bc342a-1514-4c7f-816a-40915b9d0d2a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:16.697Z","sequence":15439,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:16.697Z","sequence":15440,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10013F3] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:16.711Z","sequence":15441,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:16.711Z","sequence":15442,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:16.718Z","sequence":15443,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d6305a1f-3c05-4e96-ad8a-53730319a143, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:17.161Z","sequence":15444,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [command-router@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:17.161Z","sequence":15445,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oiltanking]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:17.173Z","sequence":15446,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-dc84b64a-2d35-4ac9-8295-67f04c9c3641, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:17.176Z","sequence":15447,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [command-router@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:17.177Z","sequence":15448,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: lanxess]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:17.185Z","sequence":15449,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-031a8076-6ee0-4cab-9c23-d4548819e2fe, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:17.188Z","sequence":15450,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [command-router@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:17.189Z","sequence":15451,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: ineos]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:17.202Z","sequence":15452,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-4a4036b6-f085-4d44-99cd-e2ca8fcca966, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:17.205Z","sequence":15453,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [command-router@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:17.205Z","sequence":15454,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: aloxy]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:17.216Z","sequence":15455,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-99f6e20f-fa8c-46aa-9362-ede6a232f3a1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:17.22Z","sequence":15456,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [command-router@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:17.221Z","sequence":15457,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: dow]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:17.233Z","sequence":15458,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-5bf85ebf-8134-48a5-82b9-387d4db0a703, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:17.238Z","sequence":15459,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [command-router@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:17.238Z","sequence":15460,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: acta]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:17.245Z","sequence":15461,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-336bd636-d2c8-46f7-91b5-7722ca06d106, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:17.248Z","sequence":15462,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [command-router@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:17.249Z","sequence":15463,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: arkema]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:17.261Z","sequence":15464,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-50803732-6243-4827-89ec-dbc4d826c686, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:20.254Z","sequence":15465,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:20.255Z","sequence":15466,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C40] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:20.261Z","sequence":15467,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:20.261Z","sequence":15468,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:20.268Z","sequence":15469,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-afc8356f-d609-4c0a-a805-56e59b0a7b81, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:20.963Z","sequence":15470,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:20.963Z","sequence":15471,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: flint]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:20.967Z","sequence":15472,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-2c88c054-b4a4-48e0-82e4-e665c4d8256f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:20.972Z","sequence":15473,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/flint:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:20.972Z","sequence":15474,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: flint, type: hashed-password, auth-id: auth-flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:20.984Z","sequence":15475,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-478e9713-362a-4a1f-93f3-aa53d98ef523, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:21.282Z","sequence":15476,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:21.282Z","sequence":15477,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000507] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:21.316Z","sequence":15478,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:21.317Z","sequence":15479,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:21.337Z","sequence":15480,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-94d9d038-41be-4454-abcf-ce2d501743ea, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:22.698Z","sequence":15481,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:22.699Z","sequence":15482,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C3F] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:22.704Z","sequence":15483,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:22.705Z","sequence":15484,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:22.711Z","sequence":15485,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a1fcf55e-439b-41d2-99c9-a455837339c9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:31.18Z","sequence":15486,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/acta:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:31.18Z","sequence":15487,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: acta, device-id: 0008004AAAA3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:31.185Z","sequence":15488,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1452221a-db8e-4159-8916-9bffe53741b2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:34.875Z","sequence":15489,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:34.875Z","sequence":15490,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10013FD] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:34.887Z","sequence":15491,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:34.887Z","sequence":15492,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:34.95Z","sequence":15493,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6330627f-b998-42fc-8c7f-7de04faf6652, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:35.591Z","sequence":15494,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:35.591Z","sequence":15495,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A29] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:35.601Z","sequence":15496,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:35.601Z","sequence":15497,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:35.607Z","sequence":15498,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-cc727517-6675-44cf-ac8c-a635224bdfc8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:35.772Z","sequence":15499,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:35.772Z","sequence":15500,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000168] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:35.778Z","sequence":15501,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:35.778Z","sequence":15502,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:35.782Z","sequence":15503,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1b60e213-e1c8-496e-b547-cec373bdabf2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:35.823Z","sequence":15504,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:35.823Z","sequence":15505,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000168] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:35.831Z","sequence":15506,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:35.831Z","sequence":15507,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:35.835Z","sequence":15508,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-594df0f0-2031-4db3-b0a6-f680a6447559, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:38.602Z","sequence":15509,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:38.602Z","sequence":15510,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A2A] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:38.608Z","sequence":15511,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:38.608Z","sequence":15512,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:38.615Z","sequence":15513,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7d03cc62-5b05-40b8-91d5-fc4eb77682ee, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:38.961Z","sequence":15514,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:38.961Z","sequence":15515,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006C2] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:38.967Z","sequence":15516,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:38.967Z","sequence":15517,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:38.98Z","sequence":15518,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7bebe039-a48e-45bb-bf73-8ac5804824e0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:39.551Z","sequence":15519,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:39.551Z","sequence":15520,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006C4] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:39.557Z","sequence":15521,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:39.557Z","sequence":15522,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:39.563Z","sequence":15523,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-addd6c78-0dd9-4eab-8671-484f83b36edc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:40.863Z","sequence":15524,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:40.864Z","sequence":15525,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001EA] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:40.87Z","sequence":15526,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:40.87Z","sequence":15527,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:40.873Z","sequence":15528,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-83f08c26-df84-4f8f-8773-058d52ceb39a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:40.889Z","sequence":15529,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:40.889Z","sequence":15530,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001EA] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:40.895Z","sequence":15531,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:40.895Z","sequence":15532,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:40.899Z","sequence":15533,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-df710666-1d00-4fd7-b419-66de413593d4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:46.991Z","sequence":15534,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:46.991Z","sequence":15535,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB100086A] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:46.998Z","sequence":15536,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:46.998Z","sequence":15537,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:47.004Z","sequence":15538,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-680f004c-d3a2-49e6-a08b-c43ad23c44af, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:47.289Z","sequence":15539,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:47.289Z","sequence":15540,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB100052B] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:47.297Z","sequence":15541,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:47.297Z","sequence":15542,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:47.305Z","sequence":15543,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2af19a7f-9904-4e1d-bc8b-e4c52b346e2b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:55.29Z","sequence":15544,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:55.29Z","sequence":15545,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:55.302Z","sequence":15546,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f8b79e4a-b07e-48bf-9098-eef3e7eb4268, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:58.988Z","sequence":15547,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:58.988Z","sequence":15548,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A1E] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:58.996Z","sequence":15549,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:58.996Z","sequence":15550,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:33:59.044Z","sequence":15551,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-937558b1-0a33-4aad-bbff-32369a1096cb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:04.236Z","sequence":15552,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191060]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"69c848d93c5ab84c","parentId":"acaf7abf83652a94","traceId":"00000000000000003783b961f134252d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:04.305Z","sequence":15553,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191060, resource-version: 34a74cef-8c41-4056-b439-6679f2809f96]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"69c848d93c5ab84c","parentId":"acaf7abf83652a94","traceId":"00000000000000003783b961f134252d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:04.345Z","sequence":15554,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191060, resource-version: da1d0061-301a-4bf8-9a0d-ab748f288ee9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"69c848d93c5ab84c","parentId":"acaf7abf83652a94","traceId":"00000000000000003783b961f134252d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:04.348Z","sequence":15555,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191060]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0dc1ff16eb9bf5dc","parentId":"df19d02d069aad33","traceId":"00000000000000003783b961f134252d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:04.467Z","sequence":15556,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/repsol:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:04.468Z","sequence":15557,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: repsol, device-id: 0008004A37FF]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:04.513Z","sequence":15558,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1a5b5a4a-6bfc-45d7-8057-c6f7998fade6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:04.517Z","sequence":15559,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:04.517Z","sequence":15560,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: repsol]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:04.525Z","sequence":15561,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-6a2400f9-23d6-4492-adc0-21483f3ad594, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:04.548Z","sequence":15562,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191060]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0dc1ff16eb9bf5dc","parentId":"df19d02d069aad33","traceId":"00000000000000003783b961f134252d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:05.493Z","sequence":15563,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF71502DE0991D8]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a4bde851812b2b54","parentId":"376237554c4fd9c3","traceId":"0000000000000000eccfa5ccc8d051a4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:05.511Z","sequence":15564,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF71502DE0991D8, resource-version: 9f576a7b-ca14-4f62-bc78-00ebee451949]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a4bde851812b2b54","parentId":"376237554c4fd9c3","traceId":"0000000000000000eccfa5ccc8d051a4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:05.543Z","sequence":15565,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF71502DE0991D8, resource-version: d3ad9cee-bf1e-4ddb-98e1-755eaf11867a]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a4bde851812b2b54","parentId":"376237554c4fd9c3","traceId":"0000000000000000eccfa5ccc8d051a4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:06.639Z","sequence":15566,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:06.64Z","sequence":15567,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:06.645Z","sequence":15568,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-89715907-fbf6-4c9c-8d63-8440f112d192, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:06.648Z","sequence":15569,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:06.648Z","sequence":15570,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191060]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:06.657Z","sequence":15571,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-008f1c6f-27c5-468d-820f-7cf17aa79bc6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:06.78Z","sequence":15572,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:06.78Z","sequence":15573,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF71502DE0991D8] for gateway [gateway_integrationtest_network_191060]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:06.78Z","sequence":15574,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:06.781Z","sequence":15575,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191060]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:06.798Z","sequence":15576,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:06.798Z","sequence":15577,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:06.799Z","sequence":15578,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4e6dc9e9-56ca-45c9-b895-53032a9a47fe, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:07.18Z","sequence":15579,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-33341a56-b912-44a0-8af4-53026e39637f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:07.18Z","sequence":15580,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:07.181Z","sequence":15581,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C07] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:07.189Z","sequence":15582,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:07.19Z","sequence":15583,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:07.198Z","sequence":15584,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8c53b903-fe07-472a-a5be-99dd936feb08, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:11.245Z","sequence":15585,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:11.246Z","sequence":15586,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000218] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:11.268Z","sequence":15587,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:11.268Z","sequence":15588,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000218] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:11.301Z","sequence":15589,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:11.302Z","sequence":15590,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:11.302Z","sequence":15591,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:11.302Z","sequence":15592,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:11.305Z","sequence":15593,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c358550d-391b-44eb-a6ae-d68a8bf01220, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:11.306Z","sequence":15594,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1e20b1b2-3fe1-4732-84e2-f3828eafdbf5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:15.316Z","sequence":15595,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:15.316Z","sequence":15596,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: shell]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:15.319Z","sequence":15597,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-b8fc8375-f0e6-49df-8a2f-c4124b5435e6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:15.323Z","sequence":15598,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/shell:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:15.323Z","sequence":15599,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: shell, type: hashed-password, auth-id: auth-gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:15.332Z","sequence":15600,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-94c36342-8f31-4aa6-8299-8b5489a94888, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:15.456Z","sequence":15601,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:15.457Z","sequence":15602,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006C8] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:15.463Z","sequence":15603,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:15.463Z","sequence":15604,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:15.47Z","sequence":15605,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-70ca239b-e4bf-42b9-9f33-86c667ddcf65, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:17.335Z","sequence":15606,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF71502DE0991D8]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3bde35f3b8708a09","parentId":"aeccdc9ea54f7696","traceId":"00000000000000001444d92aa59d0657","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:17.364Z","sequence":15607,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF71502DE0991D8]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3bde35f3b8708a09","parentId":"aeccdc9ea54f7696","traceId":"00000000000000001444d92aa59d0657","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:17.853Z","sequence":15608,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191060]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7d34f52d30585c2c","parentId":"9fadd3e305740128","traceId":"000000000000000016d7d489f7ab6560","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:17.9Z","sequence":15609,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191060]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7d34f52d30585c2c","parentId":"9fadd3e305740128","traceId":"000000000000000016d7d489f7ab6560","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:18.604Z","sequence":15610,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 6E1FB1BD66B5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4d45d41b6876ac9a","parentId":"1585f93fc7e1430f","traceId":"00000000000000008eee736861d9ffd1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:18.786Z","sequence":15611,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 6E1FB1BD66B5, resource-version: b2368826-992a-4d22-886a-ac71ed2cf215]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4d45d41b6876ac9a","parentId":"1585f93fc7e1430f","traceId":"00000000000000008eee736861d9ffd1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:18.794Z","sequence":15612,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 6E1FB1BD66B5, resource-version: ae1d7c3d-8d46-49c2-ba37-ca4c3af7f695]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4d45d41b6876ac9a","parentId":"1585f93fc7e1430f","traceId":"00000000000000008eee736861d9ffd1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:18.797Z","sequence":15613,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 6E1FB1BD66B5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f35726c6edf75c5c","parentId":"3f79f0a073714818","traceId":"00000000000000008eee736861d9ffd1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:19.053Z","sequence":15614,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 6E1FB1BD66B5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f35726c6edf75c5c","parentId":"3f79f0a073714818","traceId":"00000000000000008eee736861d9ffd1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:19.519Z","sequence":15615,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF96BA79EBAFAC0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d7c8258daf51f6f2","parentId":"160f3367c06b3717","traceId":"0000000000000000b4b90ba2203258e7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:19.548Z","sequence":15616,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF96BA79EBAFAC0, resource-version: b3bf1107-e4ef-48b3-9a8d-792bb3d1eec0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d7c8258daf51f6f2","parentId":"160f3367c06b3717","traceId":"0000000000000000b4b90ba2203258e7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:19.555Z","sequence":15617,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF96BA79EBAFAC0, resource-version: 53a76b14-7a0d-4dd5-a976-2c8c9bdf183f]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d7c8258daf51f6f2","parentId":"160f3367c06b3717","traceId":"0000000000000000b4b90ba2203258e7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:20.617Z","sequence":15618,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:20.617Z","sequence":15619,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:20.62Z","sequence":15620,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-494d0b97-a6b2-4c1b-ade4-4a76c0039fea, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:20.627Z","sequence":15621,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:20.627Z","sequence":15622,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-6E1FB1BD66B5]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:20.637Z","sequence":15623,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-476ea421-c346-497f-bac3-dc15c7d0d47d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:20.788Z","sequence":15624,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:20.788Z","sequence":15625,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 6E1FB1BD66B5]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:20.794Z","sequence":15626,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ceafd0f7-7612-4a9f-bbad-608645c92958, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:20.799Z","sequence":15627,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:20.799Z","sequence":15628,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF96BA79EBAFAC0] for gateway [6E1FB1BD66B5]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:20.806Z","sequence":15629,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:20.806Z","sequence":15630,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:20.969Z","sequence":15631,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-810926f5-71ec-4d8a-aed4-c64da65b68a4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:23.949Z","sequence":15632,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:23.949Z","sequence":15633,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006BE] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:23.992Z","sequence":15634,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:23.992Z","sequence":15635,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:24.003Z","sequence":15636,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-11aa2fc6-1f9f-48df-8aa4-e5e282acca0b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:26.213Z","sequence":15637,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:26.213Z","sequence":15638,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 0008004B51D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:26.22Z","sequence":15639,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b8db18a5-2e6c-44ea-b95c-740e97b35887, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:26.223Z","sequence":15640,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:26.223Z","sequence":15641,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: dow]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:26.227Z","sequence":15642,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-0d2bc89f-d7c1-4590-a3b9-48e93b39bbfc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:26.592Z","sequence":15643,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:26.592Z","sequence":15644,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10018F5] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:26.601Z","sequence":15645,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:26.601Z","sequence":15646,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:26.607Z","sequence":15647,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-30902cce-3502-4640-b66e-5e670fa2d086, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:29.135Z","sequence":15648,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:29.135Z","sequence":15649,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000208] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:29.142Z","sequence":15650,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:29.142Z","sequence":15651,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:29.145Z","sequence":15652,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7ab6a118-1a53-4031-a3a3-d8c4ab927bda, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:29.151Z","sequence":15653,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:29.151Z","sequence":15654,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000208] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:29.156Z","sequence":15655,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:29.156Z","sequence":15656,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:29.158Z","sequence":15657,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-cb3565d0-f0d7-45b8-8c44-6c2fe8655797, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:30.85Z","sequence":15658,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF96BA79EBAFAC0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"45f1937493195164","parentId":"e148a514c2c3baed","traceId":"0000000000000000fd6dab048b7a253a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:30.902Z","sequence":15659,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF96BA79EBAFAC0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"45f1937493195164","parentId":"e148a514c2c3baed","traceId":"0000000000000000fd6dab048b7a253a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:31.25Z","sequence":15660,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 6E1FB1BD66B5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4ba8f652a21e2431","parentId":"36a82defb6a87564","traceId":"0000000000000000124b889bb079930d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:31.295Z","sequence":15661,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 6E1FB1BD66B5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4ba8f652a21e2431","parentId":"36a82defb6a87564","traceId":"0000000000000000124b889bb079930d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:40.793Z","sequence":15662,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:40.793Z","sequence":15663,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B2A] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:40.836Z","sequence":15664,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:40.836Z","sequence":15665,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:40.845Z","sequence":15666,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-02431885-1dac-4bf5-8f49-b7dddea84e25, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:48.986Z","sequence":15667,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:48.986Z","sequence":15668,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000820] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:49.005Z","sequence":15669,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:49.005Z","sequence":15670,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:49.012Z","sequence":15671,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0056e63f-a168-489a-b520-e439da846c1e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:51.845Z","sequence":15672,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:51.845Z","sequence":15673,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000692] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:51.851Z","sequence":15674,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:51.851Z","sequence":15675,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:51.893Z","sequence":15676,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-11851f26-b8be-4600-b7ce-829cc1e05346, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:52.761Z","sequence":15677,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/repsol:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:52.767Z","sequence":15678,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: repsol, device-id: 70B3D57BB1000187] for gateway [0008004A37FF]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:52.806Z","sequence":15679,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:0.4.1\"\n },\n \"viaGroups\" : [ \"gateways_repsol\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:52.807Z","sequence":15680,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_repsol\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:52.827Z","sequence":15681,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-77dd9570-d418-44ea-bd2e-b3566e06ad75, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:58.525Z","sequence":15682,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:58.525Z","sequence":15683,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A1D] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:58.547Z","sequence":15684,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:58.547Z","sequence":15685,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:58.595Z","sequence":15686,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ef6d2de8-e9ce-44d9-8e4e-e104fe9077d6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:59.377Z","sequence":15687,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:59.377Z","sequence":15688,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100078F] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:59.405Z","sequence":15689,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:59.405Z","sequence":15690,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:34:59.418Z","sequence":15691,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9447da12-9014-4c76-87ea-2a5690fe4aa1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:35:02.179Z","sequence":15692,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/conditionall:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:35:02.179Z","sequence":15693,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: conditionall, device-id: 0008004B512D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:35:02.202Z","sequence":15694,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ef250d73-42d8-45bc-ab19-01a56ced7067, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:35:02.205Z","sequence":15695,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:35:02.206Z","sequence":15696,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: conditionall]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:35:02.209Z","sequence":15697,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-fa0af882-b6cb-4f1f-9484-7a9a3adb9090, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:35:05.236Z","sequence":15698,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:35:05.237Z","sequence":15699,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006DC] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:35:05.243Z","sequence":15700,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:35:05.243Z","sequence":15701,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:35:05.25Z","sequence":15702,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-968211a0-1b4c-43c6-8a5e-655ad95ecdad, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:35:09.929Z","sequence":15703,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:35:09.929Z","sequence":15704,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:35:09.946Z","sequence":15705,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-fb11466a-6846-4370-b7db-3604f0b6eb8b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:35:25.991Z","sequence":15706,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:35:25.991Z","sequence":15707,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10009B4] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:35:26.002Z","sequence":15708,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:35:26.002Z","sequence":15709,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:35:26.045Z","sequence":15710,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-28ab051a-4782-4f68-9d79-bf6f9845b3b3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:35:31.159Z","sequence":15711,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:35:31.159Z","sequence":15712,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C4A] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:35:31.192Z","sequence":15713,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:35:31.192Z","sequence":15714,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:35:31.301Z","sequence":15715,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-533c4f92-df26-4775-b69e-b90a11848121, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:35:31.934Z","sequence":15716,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:35:31.934Z","sequence":15717,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001E9] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:35:31.94Z","sequence":15718,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:35:31.94Z","sequence":15719,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:35:31.943Z","sequence":15720,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e83e25d8-8d33-41b5-9aec-cbcebf7283e2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:35:31.951Z","sequence":15721,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:35:31.951Z","sequence":15722,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001E9] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:35:31.956Z","sequence":15723,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:35:31.956Z","sequence":15724,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:35:31.961Z","sequence":15725,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d3a999b3-5ccd-4038-a0fe-de2e520e5714, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:35:32.994Z","sequence":15726,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:35:32.994Z","sequence":15727,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BA6] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:35:33.002Z","sequence":15728,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:35:33.002Z","sequence":15729,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:35:33.007Z","sequence":15730,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-019f5739-5cea-4a1c-a544-a943a28eb7c4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:35:34.219Z","sequence":15731,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:35:34.219Z","sequence":15732,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BA2] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:35:34.226Z","sequence":15733,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:35:34.226Z","sequence":15734,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:35:34.233Z","sequence":15735,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-54425663-798e-40dd-a1df-2bfccb2183d6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:35:34.488Z","sequence":15736,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:35:34.488Z","sequence":15737,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B88] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:35:34.502Z","sequence":15738,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:35:34.502Z","sequence":15739,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:35:34.508Z","sequence":15740,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4fbfed1a-1b4d-4d7c-90ba-40df3cff13de, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:35:37.335Z","sequence":15741,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:35:37.335Z","sequence":15742,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019C9] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:35:37.341Z","sequence":15743,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:35:37.342Z","sequence":15744,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:35:37.348Z","sequence":15745,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-65d0adba-8504-4e90-8900-93b8bc82fb0c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:35:38.077Z","sequence":15746,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:35:38.077Z","sequence":15747,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BB84C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:35:38.082Z","sequence":15748,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e481fd70-4f1d-43d5-97cf-ee9a327df2b9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:35:39.778Z","sequence":15749,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:35:39.778Z","sequence":15750,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 0008004B5135]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:35:39.789Z","sequence":15751,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d8355e27-d3f1-4821-b1bc-482a085f6d52, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:35:39.792Z","sequence":15752,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:35:39.793Z","sequence":15753,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: ineos]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:35:39.795Z","sequence":15754,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-31f15d59-dfe0-417c-91ea-69184e3b291a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:35:42.915Z","sequence":15755,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:35:42.915Z","sequence":15756,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001938] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:35:42.92Z","sequence":15757,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:35:42.921Z","sequence":15758,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:35:42.997Z","sequence":15759,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b6805e1f-75db-4a63-9e3a-cf52db452221, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:35:44.099Z","sequence":15760,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:35:44.099Z","sequence":15761,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BBD1B]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:35:44.137Z","sequence":15762,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-80145dca-08df-4c4b-8574-d74643246fde, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:35:47.713Z","sequence":15763,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:35:47.713Z","sequence":15764,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001937] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:35:47.737Z","sequence":15765,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:35:47.738Z","sequence":15766,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:35:47.748Z","sequence":15767,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2071132a-3e23-4207-bc27-901db3a7562d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:35:50.312Z","sequence":15768,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/arkema:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:35:50.312Z","sequence":15769,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: arkema, device-id: 0008004AE119]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:35:50.318Z","sequence":15770,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-fb2c361c-2e87-4989-bb7e-008ae534f8b1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:35:50.323Z","sequence":15771,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:35:50.323Z","sequence":15772,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: arkema]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:35:50.326Z","sequence":15773,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-d64d5b4f-d272-4536-b0eb-6a1ec7eec308, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:35:50.63Z","sequence":15774,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:35:50.63Z","sequence":15775,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000202] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:35:50.637Z","sequence":15776,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:35:50.637Z","sequence":15777,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:35:50.641Z","sequence":15778,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ee52170e-0eb0-4ec6-85e7-43524af7bb21, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:35:50.745Z","sequence":15779,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:35:50.745Z","sequence":15780,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000202] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:35:50.762Z","sequence":15781,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:35:50.763Z","sequence":15782,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:35:50.771Z","sequence":15783,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d12f70bf-43b6-4835-a8a5-68ac4cc58e1c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:35:58.764Z","sequence":15784,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:35:58.764Z","sequence":15785,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100016C] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:35:58.778Z","sequence":15786,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:35:58.778Z","sequence":15787,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100016C] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:35:58.791Z","sequence":15788,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:35:58.791Z","sequence":15789,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:35:58.792Z","sequence":15790,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:35:58.792Z","sequence":15791,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:35:58.796Z","sequence":15792,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-90ec3fad-c414-42cb-a7ca-afadcae10f3c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:35:58.796Z","sequence":15793,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1f2d365b-0eab-436a-95cb-bb3620c3d559, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:02.216Z","sequence":15794,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:02.216Z","sequence":15795,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001930] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:02.217Z","sequence":15796,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:02.217Z","sequence":15797,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:02.237Z","sequence":15798,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-aa772b68-67fb-4f0c-9660-ee626d9ca91f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:02.244Z","sequence":15799,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:02.244Z","sequence":15800,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:02.294Z","sequence":15801,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2e2572d4-8269-4514-9c1e-e632b1acc264, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:02.383Z","sequence":15802,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:02.383Z","sequence":15803,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: indeel]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:02.399Z","sequence":15804,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-c89c944f-36d2-4c6a-8da2-47f92a08d912, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:02.401Z","sequence":15805,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Source{address='credentials/indeel/4c536c75-904f-47e7-acf4-2e9f8eb519b0', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:02.401Z","sequence":15806,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-18]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:02.402Z","sequence":15807,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@7e04e89b] for replies to [credentials/indeel/4c536c75-904f-47e7-acf4-2e9f8eb519b0]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:02.404Z","sequence":15808,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Target{address='credentials/indeel', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:02.404Z","sequence":15809,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-19]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:02.404Z","sequence":15810,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:02.406Z","sequence":15811,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/indeel:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:02.406Z","sequence":15812,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: indeel, type: hashed-password, auth-id: auth-gateway_indeel_network_40884]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:02.447Z","sequence":15813,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-936072c1-5694-4e2c-a07c-10c4f476f0e2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:02.577Z","sequence":15814,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] wants to open a link [address: Source{address='registration/indeel/a10dc9a7-0df0-442c-b8df-00ae9a44819e', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:02.577Z","sequence":15815,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-18]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:02.577Z","sequence":15816,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@752c2a77] for replies to [registration/indeel/a10dc9a7-0df0-442c-b8df-00ae9a44819e]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:02.579Z","sequence":15817,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] wants to open a link [address: Target{address='registration/indeel', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:02.579Z","sequence":15818,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-19]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:02.579Z","sequence":15819,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:02.582Z","sequence":15820,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/indeel:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:02.582Z","sequence":15821,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: indeel, device-id: 70B3D57BB10013FB] for gateway [gateway_indeel_network_40884]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:02.583Z","sequence":15822,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/indeel:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:02.583Z","sequence":15823,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: indeel, device-id: gateway_indeel_network_40884]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:02.589Z","sequence":15824,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_indeel\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:02.589Z","sequence":15825,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_indeel\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:02.59Z","sequence":15826,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e3f77f5e-d16d-4f66-8ff0-df2c98927ad6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:02.592Z","sequence":15827,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-870707fd-2834-4f4d-b9e3-8111ed40f4c8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:04.224Z","sequence":15828,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191062]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"18ad0b91637c5c58","parentId":"afcb9ae70d15e7e5","traceId":"0000000000000000a47aa49e26f64c06","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:04.286Z","sequence":15829,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191062, resource-version: ab208435-e622-4bc1-9585-cef8a77fc984]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"18ad0b91637c5c58","parentId":"afcb9ae70d15e7e5","traceId":"0000000000000000a47aa49e26f64c06","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:04.296Z","sequence":15830,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191062, resource-version: b54e3c35-be62-4e0f-99c4-9b171012a617]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"18ad0b91637c5c58","parentId":"afcb9ae70d15e7e5","traceId":"0000000000000000a47aa49e26f64c06","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:04.3Z","sequence":15831,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191062]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6b249f33fbc46e03","parentId":"fe12251a3e67913d","traceId":"0000000000000000a47aa49e26f64c06","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:04.462Z","sequence":15832,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:04.462Z","sequence":15833,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10009D4] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:04.47Z","sequence":15834,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:04.47Z","sequence":15835,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:04.471Z","sequence":15836,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191062]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6b249f33fbc46e03","parentId":"fe12251a3e67913d","traceId":"0000000000000000a47aa49e26f64c06","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:04.478Z","sequence":15837,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-55ffabcb-32ca-49cf-9bac-957666c7b002, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:05.264Z","sequence":15838,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:05.265Z","sequence":15839,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001933] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:05.281Z","sequence":15840,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:05.284Z","sequence":15841,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:05.291Z","sequence":15842,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF9C6D23057BB6C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e77c13b487b9fa54","parentId":"9de149615171a0e5","traceId":"00000000000000008e69d70c849e49a3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:05.293Z","sequence":15843,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-aeb7664c-9b3d-4f2f-8eab-6ace5167c064, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:05.345Z","sequence":15844,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF9C6D23057BB6C, resource-version: 7f1d9fb4-5eb2-4edf-9ed6-bed181660f3b]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e77c13b487b9fa54","parentId":"9de149615171a0e5","traceId":"00000000000000008e69d70c849e49a3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:05.353Z","sequence":15845,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF9C6D23057BB6C, resource-version: 0be0b052-e53a-4c23-8def-e0515218ecaf]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e77c13b487b9fa54","parentId":"9de149615171a0e5","traceId":"00000000000000008e69d70c849e49a3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:06.045Z","sequence":15846,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:06.045Z","sequence":15847,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006D1] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:06.061Z","sequence":15848,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:06.061Z","sequence":15849,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:06.069Z","sequence":15850,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b43c58e0-91bf-462a-8daa-6936a1d87a06, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:06.473Z","sequence":15851,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:06.473Z","sequence":15852,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191062]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:06.489Z","sequence":15853,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-9b3c7d29-5fc5-43d8-b978-5a49c92e3092, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:06.613Z","sequence":15854,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:06.613Z","sequence":15855,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF9C6D23057BB6C] for gateway [gateway_integrationtest_network_191062]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:06.614Z","sequence":15856,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:06.614Z","sequence":15857,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191062]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:06.632Z","sequence":15858,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-eafec326-e531-490b-94e6-2cf1632fb2f4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:06.633Z","sequence":15859,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:06.633Z","sequence":15860,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:07.068Z","sequence":15861,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-dfbc1a2e-8774-473b-b52a-c2db78adc141, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:11.765Z","sequence":15862,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:11.769Z","sequence":15863,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001926] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:11.787Z","sequence":15864,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:11.787Z","sequence":15865,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:11.799Z","sequence":15866,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c638ee4f-e9fb-439a-8650-72f6c6ca531a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:14.18Z","sequence":15867,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:14.181Z","sequence":15868,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006B8] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:14.186Z","sequence":15869,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:14.187Z","sequence":15870,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:14.193Z","sequence":15871,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-10e41f76-e828-475f-8385-01b0e143ff54, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:14.221Z","sequence":15872,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:14.222Z","sequence":15873,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001940] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:14.227Z","sequence":15874,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:14.228Z","sequence":15875,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:14.24Z","sequence":15876,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-23b4396c-bdf5-4c60-b66b-45ba352da608, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:15.989Z","sequence":15877,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:15.989Z","sequence":15878,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006B3] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:16.001Z","sequence":15879,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:16.001Z","sequence":15880,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:16.009Z","sequence":15881,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e3fec861-c6c1-470f-b8b1-da047be62f77, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:19.327Z","sequence":15882,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF9C6D23057BB6C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fdc10c9e3b37f9b0","parentId":"ca0975ce469d9235","traceId":"00000000000000008608baf491c89a19","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:19.353Z","sequence":15883,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF9C6D23057BB6C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fdc10c9e3b37f9b0","parentId":"ca0975ce469d9235","traceId":"00000000000000008608baf491c89a19","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:19.621Z","sequence":15884,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191062]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"289aa8f443921140","parentId":"4128a7b64cd949f2","traceId":"00000000000000008f45902becb2be99","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:19.66Z","sequence":15885,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191062]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"289aa8f443921140","parentId":"4128a7b64cd949f2","traceId":"00000000000000008f45902becb2be99","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:20.228Z","sequence":15886,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: B0FE187C1CDC]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"416d2582d6e9e93f","parentId":"b4635da57948a193","traceId":"00000000000000000b760bbe9de44666","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:20.261Z","sequence":15887,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: B0FE187C1CDC, resource-version: f6081a06-c343-4f9b-a250-5c18cf19459a]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"416d2582d6e9e93f","parentId":"b4635da57948a193","traceId":"00000000000000000b760bbe9de44666","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:20.269Z","sequence":15888,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: B0FE187C1CDC, resource-version: 33d7b7e0-68a5-47ae-8f91-ec53cc66a877]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"416d2582d6e9e93f","parentId":"b4635da57948a193","traceId":"00000000000000000b760bbe9de44666","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:20.273Z","sequence":15889,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: B0FE187C1CDC]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3099df838d1733a8","parentId":"b3d4e4fcb64eac6f","traceId":"00000000000000000b760bbe9de44666","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:20.421Z","sequence":15890,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: B0FE187C1CDC]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3099df838d1733a8","parentId":"b3d4e4fcb64eac6f","traceId":"00000000000000000b760bbe9de44666","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:20.53Z","sequence":15891,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:20.53Z","sequence":15892,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BBD1C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:20.556Z","sequence":15893,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3f83ccb1-e38d-4ea1-899a-d0514b14e9c6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:20.559Z","sequence":15894,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:20.559Z","sequence":15895,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: lanxess]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:20.563Z","sequence":15896,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-03f92a7c-72a6-4fbd-8661-5c8e62aa9800, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:21.072Z","sequence":15897,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF6F8E60ECB7280]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6dee729325686fa0","parentId":"2d4597e03404fcfe","traceId":"0000000000000000be4abf1d69d908fc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:21.111Z","sequence":15898,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF6F8E60ECB7280, resource-version: 759988a1-9e8e-4fab-8f92-a7e13086d739]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6dee729325686fa0","parentId":"2d4597e03404fcfe","traceId":"0000000000000000be4abf1d69d908fc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:21.122Z","sequence":15899,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF6F8E60ECB7280, resource-version: 484d35df-cfa1-4fc3-be36-15cf43f3a0ca]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6dee729325686fa0","parentId":"2d4597e03404fcfe","traceId":"0000000000000000be4abf1d69d908fc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:22.167Z","sequence":15900,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:22.167Z","sequence":15901,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-B0FE187C1CDC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:22.177Z","sequence":15902,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-f2e868ca-08b4-413e-93c8-918aac0df644, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:22.298Z","sequence":15903,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:22.298Z","sequence":15904,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: B0FE187C1CDC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:22.304Z","sequence":15905,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7a8e436f-09d8-4f2f-813d-76fbc2cd36cb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:22.309Z","sequence":15906,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:22.309Z","sequence":15907,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF6F8E60ECB7280] for gateway [B0FE187C1CDC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:22.321Z","sequence":15908,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:22.321Z","sequence":15909,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:22.69Z","sequence":15910,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-fd97c0c1-5b13-40d3-b312-6719b2aa2e3d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:23.622Z","sequence":15911,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:23.622Z","sequence":15912,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BFE] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:23.647Z","sequence":15913,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:23.647Z","sequence":15914,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:23.658Z","sequence":15915,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-60ba5213-8cbd-4faa-8ce3-640c0fbddae5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:24.717Z","sequence":15916,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:24.717Z","sequence":15917,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100057A] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:24.722Z","sequence":15918,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:24.722Z","sequence":15919,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:24.728Z","sequence":15920,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-752a5c26-928f-4d30-8cfd-d9b2734cee93, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:24.972Z","sequence":15921,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:24.972Z","sequence":15922,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C49] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:24.978Z","sequence":15923,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:24.978Z","sequence":15924,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:24.984Z","sequence":15925,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-283361a7-6711-4e9a-ab55-7ad4e934c240, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:29.001Z","sequence":15926,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:29.001Z","sequence":15927,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AF7] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:29.007Z","sequence":15928,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:29.007Z","sequence":15929,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:29.013Z","sequence":15930,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b834a8a7-d37b-4530-9b46-0688c06c55a2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:29.217Z","sequence":15931,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:29.217Z","sequence":15932,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006C3] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:29.223Z","sequence":15933,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:29.223Z","sequence":15934,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:29.229Z","sequence":15935,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7f3ef926-efed-4ad2-bc80-677d76aa2172, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:32.747Z","sequence":15936,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:32.747Z","sequence":15937,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:32.794Z","sequence":15938,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-84447e31-e2f2-4732-a9e8-92a132b8302a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:33.129Z","sequence":15939,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF6F8E60ECB7280]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"89df005d94c16f75","parentId":"ba4b4050ebe30720","traceId":"00000000000000005b41f0d8fe9c01f9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:33.156Z","sequence":15940,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF6F8E60ECB7280]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"89df005d94c16f75","parentId":"ba4b4050ebe30720","traceId":"00000000000000005b41f0d8fe9c01f9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:33.469Z","sequence":15941,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: B0FE187C1CDC]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"67fba8b673a88879","parentId":"7418df0039bf3a01","traceId":"00000000000000004f6bf37d7dd147ac","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:33.505Z","sequence":15942,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: B0FE187C1CDC]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"67fba8b673a88879","parentId":"7418df0039bf3a01","traceId":"00000000000000004f6bf37d7dd147ac","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:35.984Z","sequence":15943,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:35.984Z","sequence":15944,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: dow]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:35.987Z","sequence":15945,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-7aff3b0b-2e1a-4f1a-9dc4-e6a9326a52ba, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:35.989Z","sequence":15946,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/dow:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:35.989Z","sequence":15947,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: dow, type: hashed-password, auth-id: auth-gateway_dow_network_39199]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:36.047Z","sequence":15948,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-9a90a1a0-d14a-4544-aa3e-219c58bab79b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:36.31Z","sequence":15949,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:36.31Z","sequence":15950,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 70B3D57BB10014EE] for gateway [gateway_dow_network_39199]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:36.311Z","sequence":15951,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:36.311Z","sequence":15952,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: gateway_dow_network_39199]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:36.317Z","sequence":15953,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-87ec5f6e-8168-437f-ad4d-6051cd5706f1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:36.348Z","sequence":15954,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:36.348Z","sequence":15955,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:36.399Z","sequence":15956,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f34fa1c6-95c2-4786-a76d-09b0ff5db6cb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:40.729Z","sequence":15957,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:40.729Z","sequence":15958,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BA5] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:40.74Z","sequence":15959,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:40.74Z","sequence":15960,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:40.792Z","sequence":15961,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c348ce48-620a-4c95-841b-b49390c99a82, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:44.814Z","sequence":15962,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:44.814Z","sequence":15963,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BA0] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:44.837Z","sequence":15964,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:44.837Z","sequence":15965,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:44.849Z","sequence":15966,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f91e16c4-6fb8-4ca0-b631-745a1e16fea4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:45.876Z","sequence":15967,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:45.876Z","sequence":15968,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: flint]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:45.89Z","sequence":15969,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-416aea42-229d-4bbc-9d41-28efa8a1f654, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:45.892Z","sequence":15970,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/flint:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:45.892Z","sequence":15971,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: flint, type: hashed-password, auth-id: auth-flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:45.942Z","sequence":15972,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-c311ed89-973c-4863-9225-11fd19d7d5aa, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:46.063Z","sequence":15973,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:46.063Z","sequence":15974,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000892] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:46.064Z","sequence":15975,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:46.064Z","sequence":15976,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:46.07Z","sequence":15977,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:46.07Z","sequence":15978,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:46.071Z","sequence":15979,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f18dba48-8608-415a-a020-30facb79952a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:46.087Z","sequence":15980,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-90baa5d8-3059-40f6-8881-9b49b87d7f63, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:47.142Z","sequence":15981,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:47.143Z","sequence":15982,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006A4] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:47.148Z","sequence":15983,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:47.148Z","sequence":15984,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:47.155Z","sequence":15985,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9d54ca74-b93e-4506-8297-455808b6f950, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:54.021Z","sequence":15986,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:54.021Z","sequence":15987,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B8D] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:54.044Z","sequence":15988,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:54.044Z","sequence":15989,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:54.094Z","sequence":15990,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-83e9850d-4cef-44d8-bee8-e078a498c93e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:56.687Z","sequence":15991,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:56.688Z","sequence":15992,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB1000A72] for gateway [0008004B5135]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:56.696Z","sequence":15993,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:56.696Z","sequence":15994,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:56.701Z","sequence":15995,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8c26ba42-582b-47ae-9f59-139592879614, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:57.725Z","sequence":15996,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:57.725Z","sequence":15997,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB1000A72] for gateway [0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:57.742Z","sequence":15998,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:57.742Z","sequence":15999,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:36:57.749Z","sequence":16000,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-85fbc00f-a432-43cc-a601-8f2f8acb44a1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:37:00.409Z","sequence":16001,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:37:00.41Z","sequence":16002,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oiltanking]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:37:00.444Z","sequence":16003,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-b9538671-c157-407f-a193-17b3d57b8dd9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:37:00.447Z","sequence":16004,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oiltanking:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:37:00.447Z","sequence":16005,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oiltanking, device-id: 70B3D57BB10001C6] for gateway [0008004BB60F]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:37:00.486Z","sequence":16006,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.8.0\"\n },\n \"viaGroups\" : [ \"gateways_oiltanking\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:37:00.487Z","sequence":16007,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oiltanking\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:37:00.491Z","sequence":16008,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-56078439-6ddf-4d8d-89cf-c86db5732416, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:37:02.346Z","sequence":16009,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/dow:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:37:02.347Z","sequence":16010,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: dow, type: hashed-password, auth-id: auth-gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:37:02.359Z","sequence":16011,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-3003349e-69d8-48b5-9f06-017d8a175335, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:37:02.672Z","sequence":16012,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:37:02.672Z","sequence":16013,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 70B3D57BB1001279] for gateway [gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:37:02.678Z","sequence":16014,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:37:02.678Z","sequence":16015,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:37:02.684Z","sequence":16016,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9b09e586-20ce-4a4e-8b54-9d9c2bf7c02a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:37:04.721Z","sequence":16017,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:37:04.721Z","sequence":16018,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 0008004C80F4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:37:04.727Z","sequence":16019,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7ec4ca81-3e55-4564-ae4f-e8a2f674de0d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:37:04.875Z","sequence":16020,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:37:04.875Z","sequence":16021,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BB1] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:37:04.882Z","sequence":16022,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:37:04.882Z","sequence":16023,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:37:04.891Z","sequence":16024,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-85ddf81a-73d2-4b5c-8036-6abd9d6c2258, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:37:13.513Z","sequence":16025,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/conditionall:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:37:13.514Z","sequence":16026,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: conditionall, device-id: 70B3D57BB1000228] for gateway [0008004B512D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:37:13.525Z","sequence":16027,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_conditionall\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:37:13.525Z","sequence":16028,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_conditionall\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:37:13.531Z","sequence":16029,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-309433d1-8470-461c-b7d5-f9ca6b3b6d27, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:37:16.986Z","sequence":16030,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:37:16.987Z","sequence":16031,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: shell]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:37:16.991Z","sequence":16032,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-34bc40e8-5db7-4990-ba0c-8a3cc59e29bc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:37:16.993Z","sequence":16033,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/shell:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:37:16.993Z","sequence":16034,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: shell, type: hashed-password, auth-id: auth-gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:37:17.007Z","sequence":16035,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-61112403-78e6-460b-88df-7eef0feb316d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:37:17.141Z","sequence":16036,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:37:17.141Z","sequence":16037,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C32] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:37:17.149Z","sequence":16038,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:37:17.151Z","sequence":16039,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:37:17.158Z","sequence":16040,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8e36cf2e-fd61-4f21-912b-9772ae34444b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:37:18.99Z","sequence":16041,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oiltanking:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:37:18.99Z","sequence":16042,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oiltanking, device-id: 0008004BB60F]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:37:18.996Z","sequence":16043,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-73562b76-44af-470f-b841-bce97e9c0d52, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:37:23.688Z","sequence":16044,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:37:23.688Z","sequence":16045,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001936] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:37:23.694Z","sequence":16046,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:37:23.694Z","sequence":16047,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:37:23.7Z","sequence":16048,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-915ef203-2a93-40a4-b0d6-99e9b07cadf8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:37:35.721Z","sequence":16049,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:37:35.721Z","sequence":16050,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: chevron]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:37:35.725Z","sequence":16051,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-bd5e9b75-9608-44a8-b635-b06683bfdd3c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:37:35.727Z","sequence":16052,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/chevron:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:37:35.727Z","sequence":16053,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: chevron, type: hashed-password, auth-id: auth-CHEVRON-ORBIWISE-EL-SEGUNDO]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:37:35.74Z","sequence":16054,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-830a64d0-3189-4323-9078-3232afd62e14, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:37:35.861Z","sequence":16055,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/chevron:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:37:35.861Z","sequence":16056,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: chevron, device-id: 70B3D57BB1000257] for gateway [CHEVRON-ORBIWISE-EL-SEGUNDO]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:37:35.868Z","sequence":16057,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_chevron\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:37:35.868Z","sequence":16058,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_chevron\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:37:35.872Z","sequence":16059,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-62849ea1-1769-46bd-868d-e1c769528598, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:37:51.1Z","sequence":16060,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:37:51.1Z","sequence":16061,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000809] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:37:51.112Z","sequence":16062,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:37:51.112Z","sequence":16063,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:37:51.119Z","sequence":16064,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-07ff4a14-1c5b-434c-90dd-800559ceaab9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:37:53.779Z","sequence":16065,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:37:53.779Z","sequence":16066,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BB4] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:37:53.786Z","sequence":16067,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:37:53.786Z","sequence":16068,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:37:53.792Z","sequence":16069,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-68af536d-17d4-481b-aae5-2b689cd05e10, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:37:54.253Z","sequence":16070,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:37:54.256Z","sequence":16071,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oci]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:37:54.284Z","sequence":16072,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-0ed02353-c59a-4f21-9888-c9edfa8b43e4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:37:54.288Z","sequence":16073,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:37:54.289Z","sequence":16074,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100016F] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:37:54.33Z","sequence":16075,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:37:54.33Z","sequence":16076,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:37:54.337Z","sequence":16077,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-32792f9c-9e5e-445a-8bb8-7e0ccc070db7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:37:56.714Z","sequence":16078,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:37:56.714Z","sequence":16079,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB100082C] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:37:56.72Z","sequence":16080,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:37:56.72Z","sequence":16081,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:37:56.723Z","sequence":16082,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a9085bfa-5939-4f8b-b82a-e7ebfb77eba3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:01.098Z","sequence":16083,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/aloxy:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:01.098Z","sequence":16084,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: aloxy, device-id: 0008004A8F68]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:01.109Z","sequence":16085,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b17353c1-634c-4938-a1df-1e5ba447f9af, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:01.114Z","sequence":16086,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:01.114Z","sequence":16087,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: aloxy]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:01.117Z","sequence":16088,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-a0e759c3-f2a6-4f11-bb6e-7bb046500715, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:01.658Z","sequence":16089,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:01.659Z","sequence":16090,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB100087D] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:01.665Z","sequence":16091,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:01.665Z","sequence":16092,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:01.669Z","sequence":16093,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8e3442a9-ccfe-4798-b434-0fba4b0dacf3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:04.224Z","sequence":16094,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191064]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"72501e9207d543a2","parentId":"d06f3959a2e260ad","traceId":"0000000000000000b22d346e1102ad9e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:04.245Z","sequence":16095,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191064, resource-version: acc29ac1-7836-4ce7-b853-4c14bf06a865]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"72501e9207d543a2","parentId":"d06f3959a2e260ad","traceId":"0000000000000000b22d346e1102ad9e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:04.256Z","sequence":16096,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191064, resource-version: 54444deb-6373-445a-b6f0-ee08da8b4b8d]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"72501e9207d543a2","parentId":"d06f3959a2e260ad","traceId":"0000000000000000b22d346e1102ad9e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:04.259Z","sequence":16097,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191064]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3d526a8aff66ea9c","parentId":"51a189557d94a3c0","traceId":"0000000000000000b22d346e1102ad9e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:04.409Z","sequence":16098,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191064]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3d526a8aff66ea9c","parentId":"51a189557d94a3c0","traceId":"0000000000000000b22d346e1102ad9e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:05.342Z","sequence":16099,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF093EE903E43A9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e6a6293e70c90793","parentId":"b0ce801f04d7503f","traceId":"0000000000000000625a359e9ed643ca","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:05.359Z","sequence":16100,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF093EE903E43A9, resource-version: a0ffa8a6-044d-4da1-84f0-4732d6ca8a99]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e6a6293e70c90793","parentId":"b0ce801f04d7503f","traceId":"0000000000000000625a359e9ed643ca","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:05.367Z","sequence":16101,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF093EE903E43A9, resource-version: 439929b4-3a0f-4365-988c-246216ac25b0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e6a6293e70c90793","parentId":"b0ce801f04d7503f","traceId":"0000000000000000625a359e9ed643ca","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:06.449Z","sequence":16102,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:06.449Z","sequence":16103,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:06.452Z","sequence":16104,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-219bb076-eb7f-4277-9874-0716f3cf2fad, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:06.456Z","sequence":16105,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:06.457Z","sequence":16106,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191064]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:06.467Z","sequence":16107,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-16248058-8fbb-485e-aa0c-80164f3635ed, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:06.594Z","sequence":16108,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:06.594Z","sequence":16109,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF093EE903E43A9] for gateway [gateway_integrationtest_network_191064]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:06.595Z","sequence":16110,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:06.595Z","sequence":16111,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191064]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:06.599Z","sequence":16112,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:06.6Z","sequence":16113,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:06.601Z","sequence":16114,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3768a35f-a95c-4980-ad7d-86a7b407973a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:06.925Z","sequence":16115,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ec671a2e-0645-4e84-85cf-f751b9bf745e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:10.934Z","sequence":16116,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:10.935Z","sequence":16117,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100140C] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:10.94Z","sequence":16118,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:10.94Z","sequence":16119,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:10.947Z","sequence":16120,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-bee49d22-8fe7-4bf8-9023-4832e29fb22c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:11.411Z","sequence":16121,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:11.412Z","sequence":16122,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BB3] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:11.429Z","sequence":16123,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:11.429Z","sequence":16124,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:11.435Z","sequence":16125,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6496699a-c600-488d-a500-58820c59052c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:11.74Z","sequence":16126,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:11.74Z","sequence":16127,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006C9] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:11.757Z","sequence":16128,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:11.757Z","sequence":16129,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:11.765Z","sequence":16130,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-772e1fa3-6de4-4170-98c0-4ac985a56afc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:12.12Z","sequence":16131,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:12.121Z","sequence":16132,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001409] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:12.129Z","sequence":16133,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:12.129Z","sequence":16134,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:12.136Z","sequence":16135,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e4a34360-a6b6-47d9-b4c2-9551f33c3e3c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:12.481Z","sequence":16136,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:12.481Z","sequence":16137,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BB613]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:12.524Z","sequence":16138,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-284cb787-95c1-4aaa-9c7b-7b93de951ff1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:14.785Z","sequence":16139,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:14.785Z","sequence":16140,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000204] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:14.787Z","sequence":16141,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:14.787Z","sequence":16142,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000204] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:14.791Z","sequence":16143,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:14.792Z","sequence":16144,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:14.793Z","sequence":16145,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:14.793Z","sequence":16146,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:14.794Z","sequence":16147,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7150282e-0515-4494-b028-0c9a73f42928, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:14.796Z","sequence":16148,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2dce23a6-e920-40d1-a95f-091e821df065, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:17.362Z","sequence":16149,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF093EE903E43A9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"09933e7a2c9d1ff7","parentId":"9e5f2615f7cb8876","traceId":"00000000000000009aab6aa4d53305b1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:17.381Z","sequence":16150,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF093EE903E43A9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"09933e7a2c9d1ff7","parentId":"9e5f2615f7cb8876","traceId":"00000000000000009aab6aa4d53305b1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:17.761Z","sequence":16151,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191064]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b1502173bbb4546f","parentId":"c4647ed7b91b431b","traceId":"0000000000000000f39bc480291b96b2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:17.782Z","sequence":16152,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191064]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b1502173bbb4546f","parentId":"c4647ed7b91b431b","traceId":"0000000000000000f39bc480291b96b2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:18.278Z","sequence":16153,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 3AAB5F61BA5E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e0bfe7fed72a716c","parentId":"9bfe76dd6011fb8f","traceId":"0000000000000000ec2025db05c6b9b4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:18.296Z","sequence":16154,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 3AAB5F61BA5E, resource-version: 8754e5bb-aef3-4087-b5ed-eb18d2bdb770]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e0bfe7fed72a716c","parentId":"9bfe76dd6011fb8f","traceId":"0000000000000000ec2025db05c6b9b4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:18.303Z","sequence":16155,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 3AAB5F61BA5E, resource-version: d21ffbbd-c862-4cd0-85ca-12deca38e67c]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e0bfe7fed72a716c","parentId":"9bfe76dd6011fb8f","traceId":"0000000000000000ec2025db05c6b9b4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:18.307Z","sequence":16156,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 3AAB5F61BA5E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"50d292c31d54ff6f","parentId":"2396b263342663fe","traceId":"0000000000000000ec2025db05c6b9b4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:18.526Z","sequence":16157,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 3AAB5F61BA5E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"50d292c31d54ff6f","parentId":"2396b263342663fe","traceId":"0000000000000000ec2025db05c6b9b4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:19.283Z","sequence":16158,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF8CD2AE1203DD0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ced837388d9927d2","parentId":"4e62d1c9c9a63821","traceId":"00000000000000003acc7811cfb8a6ce","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:19.302Z","sequence":16159,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF8CD2AE1203DD0, resource-version: 38f22c91-b825-47cb-86f1-3c470c9f296a]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ced837388d9927d2","parentId":"4e62d1c9c9a63821","traceId":"00000000000000003acc7811cfb8a6ce","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:19.31Z","sequence":16160,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF8CD2AE1203DD0, resource-version: 5f4eea1d-3fd0-4715-b531-8e609b00b0fd]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ced837388d9927d2","parentId":"4e62d1c9c9a63821","traceId":"00000000000000003acc7811cfb8a6ce","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:20.353Z","sequence":16161,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:20.353Z","sequence":16162,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:20.357Z","sequence":16163,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-784ce462-a163-42cc-9d86-c087d3dab7f4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:20.362Z","sequence":16164,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:20.362Z","sequence":16165,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-3AAB5F61BA5E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:20.372Z","sequence":16166,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-a8b9e378-8418-4f34-90b9-9825b7eec2a2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:20.503Z","sequence":16167,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:20.503Z","sequence":16168,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 3AAB5F61BA5E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:20.508Z","sequence":16169,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ead6fefa-6c7d-4f21-8148-3bb0aad9d27a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:20.512Z","sequence":16170,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:20.512Z","sequence":16171,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF8CD2AE1203DD0] for gateway [3AAB5F61BA5E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:20.517Z","sequence":16172,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:20.517Z","sequence":16173,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:20.691Z","sequence":16174,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-35943fe9-a8d4-4437-93b5-0d402c9bfaa4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:30.68Z","sequence":16175,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF8CD2AE1203DD0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7996929d1b6ea6e9","parentId":"21a587c001dfedec","traceId":"00000000000000008983e19d6e9fd755","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:30.696Z","sequence":16176,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF8CD2AE1203DD0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7996929d1b6ea6e9","parentId":"21a587c001dfedec","traceId":"00000000000000008983e19d6e9fd755","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:31.05Z","sequence":16177,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 3AAB5F61BA5E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5e4777c84594f263","parentId":"0d671a40e735ad26","traceId":"0000000000000000188b90f62c2ee6ec","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:31.067Z","sequence":16178,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 3AAB5F61BA5E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5e4777c84594f263","parentId":"0d671a40e735ad26","traceId":"0000000000000000188b90f62c2ee6ec","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:32.228Z","sequence":16179,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:32.228Z","sequence":16180,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C02] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:32.234Z","sequence":16181,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:32.234Z","sequence":16182,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:32.241Z","sequence":16183,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-13a7a535-fe9f-46fd-bb19-cf10022663b6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:33.296Z","sequence":16184,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:33.297Z","sequence":16185,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10017A7] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:33.303Z","sequence":16186,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:33.303Z","sequence":16187,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:33.309Z","sequence":16188,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-687b2694-f7cb-4e27-9497-c4eba6063d69, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:34.085Z","sequence":16189,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/acta:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:34.085Z","sequence":16190,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: acta, device-id: 0008004AAAA3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:34.101Z","sequence":16191,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ca1124d9-0bf2-4e36-8aed-64bd20e711bd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:34.105Z","sequence":16192,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:34.105Z","sequence":16193,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: acta]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:34.107Z","sequence":16194,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-496a6c30-2d19-4cba-a4e8-3d04778cf57a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:35.99Z","sequence":16195,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:35.991Z","sequence":16196,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001F4] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:35.997Z","sequence":16197,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:35.997Z","sequence":16198,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:36.001Z","sequence":16199,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3a1427b4-5e16-43cd-9998-4edfea138860, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:36.035Z","sequence":16200,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:36.035Z","sequence":16201,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001F4] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:36.04Z","sequence":16202,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:36.04Z","sequence":16203,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:36.042Z","sequence":16204,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3ffd64fe-794e-40b3-b7d1-2a3c3808cb13, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:50.944Z","sequence":16205,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:50.945Z","sequence":16206,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 70B3D57BB1000190] for gateway [0008004BB613]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:50.951Z","sequence":16207,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_lanxess\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:50.951Z","sequence":16208,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_lanxess\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:50.954Z","sequence":16209,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1f5000ab-a30f-4ebd-a1a4-ad9cf4c7e7a6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:55.864Z","sequence":16210,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:55.864Z","sequence":16211,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A34] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:55.87Z","sequence":16212,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:55.87Z","sequence":16213,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:55.876Z","sequence":16214,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2957c993-98c8-4488-b631-b125acb45eaa, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:56.92Z","sequence":16215,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:56.92Z","sequence":16216,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:56.926Z","sequence":16217,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d85afa70-3852-421c-b8bc-8c6a09d293fb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:57.453Z","sequence":16218,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:57.453Z","sequence":16219,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AFA] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:57.459Z","sequence":16220,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:57.459Z","sequence":16221,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:38:57.472Z","sequence":16222,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3be66df7-f969-492d-ba5e-f876f695ca8d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:39:01.869Z","sequence":16223,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:39:01.869Z","sequence":16224,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A25] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:39:01.875Z","sequence":16225,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:39:01.875Z","sequence":16226,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:39:01.881Z","sequence":16227,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-48f1c44c-f0bd-439b-a8db-c5a4e0e58535, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:39:06.184Z","sequence":16228,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/repsol:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:39:06.184Z","sequence":16229,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: repsol, device-id: 0008004A37FF]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:39:06.195Z","sequence":16230,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2a9fca2c-9797-417e-a79f-5a4a5e239068, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:39:06.198Z","sequence":16231,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:39:06.199Z","sequence":16232,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: repsol]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:39:06.202Z","sequence":16233,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-e81646ba-02a7-40df-bcff-697fdf162b77, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:39:11.298Z","sequence":16234,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:39:11.298Z","sequence":16235,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C12] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:39:11.304Z","sequence":16236,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:39:11.304Z","sequence":16237,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:39:11.311Z","sequence":16238,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-bbf52d77-347e-491c-a09d-ff89b4812c65, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:39:28.091Z","sequence":16239,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:39:28.091Z","sequence":16240,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 0008004B51D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:39:28.096Z","sequence":16241,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d45f424b-9da2-4afb-8c23-5a1f2d3bc6eb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:39:28.1Z","sequence":16242,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:39:28.1Z","sequence":16243,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: dow]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:39:28.103Z","sequence":16244,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-07301c8b-53c9-48d2-9255-a652ad828442, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:39:36.161Z","sequence":16245,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:39:36.162Z","sequence":16246,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BFD] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:39:36.168Z","sequence":16247,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:39:36.168Z","sequence":16248,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:39:36.175Z","sequence":16249,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-851150ad-5d95-4484-8929-c514fb9208cc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:39:36.21Z","sequence":16250,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:39:36.21Z","sequence":16251,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: lanxess]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:39:36.214Z","sequence":16252,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-077f4a34-f368-4558-b1d3-88e749019485, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:39:38.47Z","sequence":16253,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:39:38.47Z","sequence":16254,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006A5] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:39:38.475Z","sequence":16255,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:39:38.475Z","sequence":16256,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:39:38.481Z","sequence":16257,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-982fe62b-eab1-47fc-b4cc-c42b35d6401d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:39:40.583Z","sequence":16258,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:39:40.584Z","sequence":16259,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A27] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:39:40.589Z","sequence":16260,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:39:40.59Z","sequence":16261,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:39:40.595Z","sequence":16262,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e07974f1-6d12-412e-86f3-c006f287cf2f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:39:41.534Z","sequence":16263,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:39:41.534Z","sequence":16264,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB100088E] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:39:41.541Z","sequence":16265,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:39:41.541Z","sequence":16266,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:39:41.545Z","sequence":16267,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0f0b4817-990b-44ad-9cba-b36f54c32c64, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:39:48.741Z","sequence":16268,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:39:48.741Z","sequence":16269,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000571] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:39:48.751Z","sequence":16270,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:39:48.751Z","sequence":16271,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:39:48.764Z","sequence":16272,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-af602d1b-9ca8-47d1-a008-62dd01c645cf, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:39:54.372Z","sequence":16273,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:39:54.372Z","sequence":16274,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BD7] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:39:54.378Z","sequence":16275,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:39:54.379Z","sequence":16276,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:39:54.385Z","sequence":16277,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-15661a5d-e357-4c56-b30b-f546bf41de0c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:39:56.88Z","sequence":16278,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:39:56.88Z","sequence":16279,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BA8] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:39:56.887Z","sequence":16280,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:39:56.887Z","sequence":16281,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:39:56.893Z","sequence":16282,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d6a45b9c-d05d-474a-a032-f40843caddd6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:39:58.591Z","sequence":16283,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:39:58.592Z","sequence":16284,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001931] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:39:58.597Z","sequence":16285,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:39:58.597Z","sequence":16286,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:39:58.603Z","sequence":16287,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a384b53b-74ad-4aa5-b5d1-620370ee27ae, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:00.458Z","sequence":16288,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:00.458Z","sequence":16289,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A19] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:00.464Z","sequence":16290,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:00.464Z","sequence":16291,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:00.47Z","sequence":16292,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4ad81000-485c-45a6-8d1a-d9388a0850a8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:02.375Z","sequence":16293,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:02.375Z","sequence":16294,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10018AC] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:02.381Z","sequence":16295,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:02.382Z","sequence":16296,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:02.387Z","sequence":16297,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-82702b29-c02f-4581-a770-f94067e596a1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:02.681Z","sequence":16298,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/repsol:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:02.681Z","sequence":16299,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: repsol, device-id: 70B3D57BB1000229] for gateway [0008004A37FF]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:02.689Z","sequence":16300,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:0.4.1\"\n },\n \"viaGroups\" : [ \"gateways_repsol\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:02.689Z","sequence":16301,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_repsol\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:02.693Z","sequence":16302,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f6304e44-9066-441c-a855-62bca29f86e8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:03.899Z","sequence":16303,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/conditionall:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:03.899Z","sequence":16304,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: conditionall, device-id: 0008004B512D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:03.906Z","sequence":16305,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d9db98b6-f693-45ad-b518-9a0bf4c5ae74, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:03.909Z","sequence":16306,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:03.909Z","sequence":16307,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: conditionall]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:03.911Z","sequence":16308,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-00e1ea2c-50cd-43de-9cbc-1e0ef2be2fac, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:04.244Z","sequence":16309,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191066]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8a2afde1bd6b3a13","parentId":"6c3d418ba6e409ff","traceId":"000000000000000020edfc357c53d56c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:04.262Z","sequence":16310,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191066, resource-version: 50ed84ea-a5f2-4c04-a7cb-c93e27b77e34]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8a2afde1bd6b3a13","parentId":"6c3d418ba6e409ff","traceId":"000000000000000020edfc357c53d56c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:04.268Z","sequence":16311,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191066, resource-version: 87a9dd50-d995-4bfd-8ea7-3e32c742e75d]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8a2afde1bd6b3a13","parentId":"6c3d418ba6e409ff","traceId":"000000000000000020edfc357c53d56c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:04.272Z","sequence":16312,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191066]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cebd59f51ee35910","parentId":"39aec5c8f94ca576","traceId":"000000000000000020edfc357c53d56c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:04.288Z","sequence":16313,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:04.288Z","sequence":16314,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000200] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:04.292Z","sequence":16315,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:04.292Z","sequence":16316,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:04.295Z","sequence":16317,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6b1f1e80-1719-4ec6-be44-6294c82c0a64, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:04.384Z","sequence":16318,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191066]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cebd59f51ee35910","parentId":"39aec5c8f94ca576","traceId":"000000000000000020edfc357c53d56c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:04.419Z","sequence":16319,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:04.419Z","sequence":16320,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000200] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:04.424Z","sequence":16321,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:04.425Z","sequence":16322,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:04.428Z","sequence":16323,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3fd07212-c214-4b9b-89a5-e60ab0b853e1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:05.757Z","sequence":16324,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFF2A4100602DE6]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"caadc49c817811a3","parentId":"bd08f4908ec8c6a2","traceId":"00000000000000003ecd1d3aa0ed0271","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:05.797Z","sequence":16325,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFF2A4100602DE6, resource-version: 3fe0318a-8e70-4a8a-828f-d33df423b610]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"caadc49c817811a3","parentId":"bd08f4908ec8c6a2","traceId":"00000000000000003ecd1d3aa0ed0271","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:05.806Z","sequence":16326,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFF2A4100602DE6, resource-version: 24769e59-e2dc-4a06-8daf-9466fa1c564a]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"caadc49c817811a3","parentId":"bd08f4908ec8c6a2","traceId":"00000000000000003ecd1d3aa0ed0271","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:06.937Z","sequence":16327,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:06.937Z","sequence":16328,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191066]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:06.947Z","sequence":16329,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-f8ae34ab-4e31-4ed8-9e3a-aeaee7027bad, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:07.08Z","sequence":16330,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:07.08Z","sequence":16331,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFF2A4100602DE6] for gateway [gateway_integrationtest_network_191066]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:07.081Z","sequence":16332,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:07.082Z","sequence":16333,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191066]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:07.087Z","sequence":16334,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f8219abf-2fa6-444e-8717-d7a7a67357ca, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:07.089Z","sequence":16335,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:07.089Z","sequence":16336,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:07.454Z","sequence":16337,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d875e3bc-f0a2-4f13-83e4-005749fabaf8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:10.015Z","sequence":16338,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:10.016Z","sequence":16339,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: terega]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:10.021Z","sequence":16340,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-44eb4c69-f009-4a60-83e9-4b61b5ac43df, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:10.028Z","sequence":16341,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/terega:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:10.028Z","sequence":16342,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: terega, type: hashed-password, auth-id: auth-gateway_terega_network_27]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:10.038Z","sequence":16343,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-e52208e2-ab4e-4b83-9cb1-96881c8c4604, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:10.211Z","sequence":16344,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/terega:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:10.211Z","sequence":16345,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: terega, device-id: 70B3D57BB10000A2] for gateway [gateway_terega_network_27]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:10.212Z","sequence":16346,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/terega:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:10.212Z","sequence":16347,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: terega, device-id: gateway_terega_network_27]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:10.219Z","sequence":16348,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_terega\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:10.219Z","sequence":16349,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_terega\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:10.22Z","sequence":16350,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7a142e7e-e746-48bb-b1d3-858a7b67c6a6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:10.222Z","sequence":16351,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-68e2cc34-9cde-45ea-a093-25d6e01510b7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:11.653Z","sequence":16352,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:11.653Z","sequence":16353,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:11.659Z","sequence":16354,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b7e20a8c-ee05-411f-8638-290e41ab2783, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:16.833Z","sequence":16355,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:16.833Z","sequence":16356,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: flint]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:16.837Z","sequence":16357,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-ef0c136f-b0ab-4874-9989-7b0242332eb4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:16.839Z","sequence":16358,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/flint:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:16.839Z","sequence":16359,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: flint, type: hashed-password, auth-id: auth-flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:16.85Z","sequence":16360,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-42f80839-b48a-4309-86e9-091419379431, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:16.979Z","sequence":16361,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:16.979Z","sequence":16362,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000826] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:16.993Z","sequence":16363,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:16.993Z","sequence":16364,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:17.006Z","sequence":16365,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b58ca82d-5ce7-4f43-aeae-c3d96db66d5c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:20.631Z","sequence":16366,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFF2A4100602DE6]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d44f7c0aad268026","parentId":"a7009809248d793a","traceId":"000000000000000067733ffd1bc6898b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:20.652Z","sequence":16367,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFF2A4100602DE6]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d44f7c0aad268026","parentId":"a7009809248d793a","traceId":"000000000000000067733ffd1bc6898b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:20.771Z","sequence":16368,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191066]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"01ffd9f55b086c76","parentId":"984a3ec734a5a66b","traceId":"000000000000000023b6a064c2227ef0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:20.788Z","sequence":16369,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191066]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"01ffd9f55b086c76","parentId":"984a3ec734a5a66b","traceId":"000000000000000023b6a064c2227ef0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:21.54Z","sequence":16370,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 3F805C634AE1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"dd8c532a7aebbdb7","parentId":"a6f93bd172f7da70","traceId":"00000000000000000d520775ea1274a6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:21.559Z","sequence":16371,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 3F805C634AE1, resource-version: ae496397-683d-4968-8235-ca7639be1d6a]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"dd8c532a7aebbdb7","parentId":"a6f93bd172f7da70","traceId":"00000000000000000d520775ea1274a6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:21.569Z","sequence":16372,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 3F805C634AE1, resource-version: 0ad7ab44-d223-463e-a0d1-9444944182f3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"dd8c532a7aebbdb7","parentId":"a6f93bd172f7da70","traceId":"00000000000000000d520775ea1274a6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:21.572Z","sequence":16373,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 3F805C634AE1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ff3f81a8ec7495c0","parentId":"280678696cf3e2da","traceId":"00000000000000000d520775ea1274a6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:21.694Z","sequence":16374,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 3F805C634AE1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ff3f81a8ec7495c0","parentId":"280678696cf3e2da","traceId":"00000000000000000d520775ea1274a6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:21.893Z","sequence":16375,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:21.894Z","sequence":16376,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: rigstar]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:21.897Z","sequence":16377,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-f18b2e96-d35a-4c53-992a-688b266e310a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:21.9Z","sequence":16378,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/rigstar:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:21.9Z","sequence":16379,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: rigstar, type: hashed-password, auth-id: auth-gateway_rigstar_network_38]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:21.91Z","sequence":16380,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-9fa21815-d45f-41b8-b413-794b3e12dd6a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:22.049Z","sequence":16381,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/rigstar:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:22.049Z","sequence":16382,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: rigstar, device-id: 70B3D57BB100094E] for gateway [gateway_rigstar_network_38]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:22.05Z","sequence":16383,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/rigstar:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:22.05Z","sequence":16384,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: rigstar, device-id: gateway_rigstar_network_38]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:22.055Z","sequence":16385,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_rigstar\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:22.055Z","sequence":16386,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_rigstar\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:22.056Z","sequence":16387,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1ae0f119-6930-4a79-8870-51a04afeb48c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:22.058Z","sequence":16388,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-759a627b-165d-4c85-bd87-447fe0ca3803, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:22.305Z","sequence":16389,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFAD6AA3D8FFCF7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e44e9c5888d7f31c","parentId":"98d905d6e0d1ec05","traceId":"000000000000000051c85cd51935c1ff","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:22.326Z","sequence":16390,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFAD6AA3D8FFCF7, resource-version: 55f82810-f851-489d-bb8c-c05872ebed02]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e44e9c5888d7f31c","parentId":"98d905d6e0d1ec05","traceId":"000000000000000051c85cd51935c1ff","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:22.333Z","sequence":16391,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFAD6AA3D8FFCF7, resource-version: 960f3d56-3230-4006-a936-88b1ae1fb33d]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e44e9c5888d7f31c","parentId":"98d905d6e0d1ec05","traceId":"000000000000000051c85cd51935c1ff","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:23.39Z","sequence":16392,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:23.39Z","sequence":16393,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-3F805C634AE1]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:23.409Z","sequence":16394,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-df8131a3-db75-4a5a-92c1-fb5e4e02155f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:23.544Z","sequence":16395,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:23.544Z","sequence":16396,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 3F805C634AE1]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:23.55Z","sequence":16397,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ed4f3bf4-96f1-4a61-a5d4-bdee06214a2e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:23.554Z","sequence":16398,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:23.555Z","sequence":16399,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFAD6AA3D8FFCF7] for gateway [3F805C634AE1]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:23.561Z","sequence":16400,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:23.561Z","sequence":16401,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:23.76Z","sequence":16402,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-95b58a1e-33ae-422b-911d-1e1ecb58eaed, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:34.693Z","sequence":16403,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:34.693Z","sequence":16404,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000899] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:34.699Z","sequence":16405,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:34.699Z","sequence":16406,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:34.703Z","sequence":16407,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e9d44606-4119-4889-847b-4bd341c14456, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:35.602Z","sequence":16408,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:35.602Z","sequence":16409,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: shell]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:35.608Z","sequence":16410,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-1c9cb1d4-439d-4b18-aa0d-4455d21613dd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:35.612Z","sequence":16411,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/shell:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:35.612Z","sequence":16412,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: shell, type: hashed-password, auth-id: auth-gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:35.623Z","sequence":16413,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-030e26b1-23c7-4eaa-ac87-e2fa7301b5c7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:35.741Z","sequence":16414,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:35.741Z","sequence":16415,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A1B] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:35.748Z","sequence":16416,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:35.748Z","sequence":16417,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:35.76Z","sequence":16418,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-906fe391-432c-4f3e-94cb-3fedd7c03055, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:36.483Z","sequence":16419,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:36.483Z","sequence":16420,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000179] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:36.488Z","sequence":16421,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:36.488Z","sequence":16422,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:36.491Z","sequence":16423,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-09f3f006-59c7-4ef9-9a06-87ad20c7068d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:36.625Z","sequence":16424,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:36.625Z","sequence":16425,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000179] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:36.634Z","sequence":16426,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:36.634Z","sequence":16427,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:36.644Z","sequence":16428,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-aa821ed5-ea2f-4051-b8f5-fbc3ea5c61ca, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:37.306Z","sequence":16429,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFAD6AA3D8FFCF7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"78a840e888b1256b","parentId":"d562fb73f50abf36","traceId":"00000000000000005e69a3a0875849a2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:37.323Z","sequence":16430,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFAD6AA3D8FFCF7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"78a840e888b1256b","parentId":"d562fb73f50abf36","traceId":"00000000000000005e69a3a0875849a2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:37.897Z","sequence":16431,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 3F805C634AE1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cf7e70073523bfae","parentId":"f3260370da5b4a3d","traceId":"00000000000000003e4404768ad98681","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:37.914Z","sequence":16432,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 3F805C634AE1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cf7e70073523bfae","parentId":"f3260370da5b4a3d","traceId":"00000000000000003e4404768ad98681","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:39.705Z","sequence":16433,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:39.705Z","sequence":16434,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A2F] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:39.711Z","sequence":16435,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:39.711Z","sequence":16436,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:39.717Z","sequence":16437,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9253d2eb-887d-4d64-ba12-48f381969099, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:39.835Z","sequence":16438,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:39.835Z","sequence":16439,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BB84C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:39.84Z","sequence":16440,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-732ed2f7-dbdf-4ccf-8385-489bc46c619b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:41.528Z","sequence":16441,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:41.528Z","sequence":16442,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 0008004B5135]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:41.535Z","sequence":16443,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ec2446b3-cb41-4ef6-bd78-c7993bb0150b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:41.54Z","sequence":16444,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:41.54Z","sequence":16445,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: ineos]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:41.543Z","sequence":16446,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-68ba9451-59f7-4981-a365-648a0c72264b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:44.493Z","sequence":16447,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:44.493Z","sequence":16448,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006CF] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:44.505Z","sequence":16449,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:44.505Z","sequence":16450,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:44.513Z","sequence":16451,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-28a98297-41b2-42b9-b420-d4458b4f42db, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:45.188Z","sequence":16452,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:45.188Z","sequence":16453,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001929] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:45.194Z","sequence":16454,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:45.195Z","sequence":16455,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:45.201Z","sequence":16456,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5fdd5086-bbaf-4d88-a960-52b75f0fb6c1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:45.866Z","sequence":16457,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:45.866Z","sequence":16458,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BBD1B]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:45.891Z","sequence":16459,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b1f59ce7-d7e0-490c-bf4c-1eebccfb451e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:46.296Z","sequence":16460,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:46.296Z","sequence":16461,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: dow]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:46.3Z","sequence":16462,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-3c6ee711-2a7c-4f2b-8cfe-c54e946b9ba7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:46.302Z","sequence":16463,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/dow:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:46.302Z","sequence":16464,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: dow, type: hashed-password, auth-id: auth-gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:46.312Z","sequence":16465,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-2b95900f-6dc2-4424-bcd6-e3b7b2aba404, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:46.587Z","sequence":16466,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:46.587Z","sequence":16467,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 70B3D57BB1001282] for gateway [gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:46.587Z","sequence":16468,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:46.588Z","sequence":16469,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:46.595Z","sequence":16470,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-558c011e-feae-4eea-a8e4-05cc65811fc7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:46.596Z","sequence":16471,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:46.596Z","sequence":16472,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:46.6Z","sequence":16473,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-48fb1a29-6f8e-45bb-8a94-88c7a9205ce3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:47.812Z","sequence":16474,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:47.813Z","sequence":16475,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A62] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:47.825Z","sequence":16476,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:47.825Z","sequence":16477,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:47.833Z","sequence":16478,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-289606db-4324-44eb-8bec-0ec75e20323d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:52.103Z","sequence":16479,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/arkema:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:52.104Z","sequence":16480,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: arkema, device-id: 0008004AE119]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:52.11Z","sequence":16481,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-07d35d35-1f2f-4fa5-989b-2a35e91fac78, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:52.113Z","sequence":16482,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:52.113Z","sequence":16483,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: arkema]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:52.116Z","sequence":16484,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-fc44b152-41af-4a50-9d6f-142e9ec9e463, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:52.657Z","sequence":16485,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:52.66Z","sequence":16486,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A57] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:52.669Z","sequence":16487,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:52.669Z","sequence":16488,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:52.678Z","sequence":16489,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-67709001-1adc-4b86-b474-e853219a7d80, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:53.302Z","sequence":16490,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:53.303Z","sequence":16491,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB100084F] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:53.31Z","sequence":16492,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:53.31Z","sequence":16493,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:53.314Z","sequence":16494,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-09e70d52-b2e3-49de-8619-4ebe5625bb3a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:56.975Z","sequence":16495,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:56.975Z","sequence":16496,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B94] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:56.981Z","sequence":16497,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:56.981Z","sequence":16498,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:56.987Z","sequence":16499,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-cc9d9a0a-aa6d-4589-9e31-639351f7d6f8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:58.177Z","sequence":16500,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:58.177Z","sequence":16501,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A26] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:58.195Z","sequence":16502,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:58.195Z","sequence":16503,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:40:58.207Z","sequence":16504,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5a39b8f8-5017-4f87-9c62-cacacd14c20f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:41:01.101Z","sequence":16505,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:41:01.102Z","sequence":16506,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A28] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:41:01.11Z","sequence":16507,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:41:01.11Z","sequence":16508,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:41:01.117Z","sequence":16509,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-59338bc0-08df-4f67-8fb4-ae76898216b3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:41:01.209Z","sequence":16510,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:41:01.209Z","sequence":16511,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A1A] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:41:01.215Z","sequence":16512,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:41:01.215Z","sequence":16513,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:41:01.221Z","sequence":16514,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0c936e49-7406-412e-a64f-1c6641b284cd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:41:02.279Z","sequence":16515,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:41:02.279Z","sequence":16516,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C1B] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:41:02.28Z","sequence":16517,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:41:02.28Z","sequence":16518,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:41:02.285Z","sequence":16519,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:41:02.289Z","sequence":16520,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:41:02.29Z","sequence":16521,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-80b4a0f4-2d64-4303-9e28-5b60a75f8077, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:41:02.296Z","sequence":16522,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-43926c20-76f3-45e5-8633-fca091d86304, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:41:02.866Z","sequence":16523,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:41:02.866Z","sequence":16524,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BF8] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:41:02.882Z","sequence":16525,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:41:02.882Z","sequence":16526,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:41:02.888Z","sequence":16527,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e6cbd151-d9a7-47c0-9ccc-4f608299ce35, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:41:03.904Z","sequence":16528,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:41:03.905Z","sequence":16529,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A22] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:41:03.912Z","sequence":16530,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:41:03.913Z","sequence":16531,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:41:03.918Z","sequence":16532,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4670e8b8-96b4-47b9-b590-323a881e2e07, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:41:14.428Z","sequence":16533,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:41:14.428Z","sequence":16534,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A60] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:41:14.442Z","sequence":16535,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:41:14.442Z","sequence":16536,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:41:14.448Z","sequence":16537,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-021e981c-7062-4e8c-84aa-eff3b57c9944, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:41:17.733Z","sequence":16538,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:41:17.733Z","sequence":16539,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000695] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:41:17.739Z","sequence":16540,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:41:17.739Z","sequence":16541,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:41:17.745Z","sequence":16542,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-88e554a3-41f2-48f9-ae0e-e41f8ab4c595, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:41:17.957Z","sequence":16543,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:41:17.957Z","sequence":16544,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C08] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:41:17.971Z","sequence":16545,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:41:17.971Z","sequence":16546,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:41:17.984Z","sequence":16547,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f33be2fb-8d2c-4661-af80-4c20968699b6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:41:24.078Z","sequence":16548,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:41:24.078Z","sequence":16549,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BBD1C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:41:24.084Z","sequence":16550,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-097ebe96-7b06-46ad-a9a4-a8b9fb6ddf6b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:41:25.995Z","sequence":16551,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/terega:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:41:25.995Z","sequence":16552,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: terega, device-id: 39383837002C0033] for gateway [gateway_terega_network_27]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:41:26.004Z","sequence":16553,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_terega\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:41:26.004Z","sequence":16554,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_terega\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:41:26.007Z","sequence":16555,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0caae1ed-fbde-46b2-812f-188174140213, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:41:33.997Z","sequence":16556,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:41:33.997Z","sequence":16557,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A23] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:41:34.004Z","sequence":16558,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:41:34.004Z","sequence":16559,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:41:34.015Z","sequence":16560,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-22b16376-0cea-4621-a445-d846ca4f4368, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:41:35.163Z","sequence":16561,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:41:35.163Z","sequence":16562,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:41:35.17Z","sequence":16563,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-631ab4c4-1264-4d73-9443-70a104175dbc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:41:36.265Z","sequence":16564,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:41:36.265Z","sequence":16565,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A6B] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:41:36.27Z","sequence":16566,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:41:36.27Z","sequence":16567,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:41:36.279Z","sequence":16568,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4ab87c40-25b1-4c31-b9e1-f393085d710f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:41:48.177Z","sequence":16569,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:41:48.177Z","sequence":16570,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A5C] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:41:48.191Z","sequence":16571,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:41:48.191Z","sequence":16572,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:41:48.197Z","sequence":16573,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1d1f2815-901a-40e3-93be-71175b7234d9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:41:50.171Z","sequence":16574,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:41:50.172Z","sequence":16575,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B5B] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:41:50.178Z","sequence":16576,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:41:50.178Z","sequence":16577,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:41:50.184Z","sequence":16578,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-37c98655-e43a-42a4-be3f-dadb112a2374, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:41:50.936Z","sequence":16579,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:41:50.936Z","sequence":16580,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB100081C] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:41:50.937Z","sequence":16581,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:41:50.937Z","sequence":16582,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:41:50.943Z","sequence":16583,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:41:50.947Z","sequence":16584,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:41:50.948Z","sequence":16585,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-53983e65-668b-4fdc-abdc-cfb07c45eb0b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:41:50.953Z","sequence":16586,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0b112962-952c-4124-8ec3-1112531199d1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:41:56.702Z","sequence":16587,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:41:56.702Z","sequence":16588,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10013F8] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:41:56.717Z","sequence":16589,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:41:56.717Z","sequence":16590,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:41:56.723Z","sequence":16591,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e3d5befb-9bdc-47c4-91e3-040dafeaf954, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:03.812Z","sequence":16592,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:03.813Z","sequence":16593,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10007F7] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:03.818Z","sequence":16594,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:03.819Z","sequence":16595,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:03.822Z","sequence":16596,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-94afc320-b223-4553-8ce6-91d15f089d39, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:04.304Z","sequence":16597,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191068]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9255b41143649aba","parentId":"551c77f19ee9c6d2","traceId":"0000000000000000ea79aa8b6d63562e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:04.321Z","sequence":16598,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191068, resource-version: cc3c0487-17db-4e01-b8c5-878400b6ee33]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9255b41143649aba","parentId":"551c77f19ee9c6d2","traceId":"0000000000000000ea79aa8b6d63562e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:04.327Z","sequence":16599,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191068, resource-version: 5d8fe9de-fc9b-4126-8f09-5b859afac062]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9255b41143649aba","parentId":"551c77f19ee9c6d2","traceId":"0000000000000000ea79aa8b6d63562e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:04.331Z","sequence":16600,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191068]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b04e4a89bfd6bf33","parentId":"24e36cdc41421387","traceId":"0000000000000000ea79aa8b6d63562e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:04.44Z","sequence":16601,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191068]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b04e4a89bfd6bf33","parentId":"24e36cdc41421387","traceId":"0000000000000000ea79aa8b6d63562e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:04.925Z","sequence":16602,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:04.925Z","sequence":16603,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C00] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:04.96Z","sequence":16604,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:04.961Z","sequence":16605,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:04.981Z","sequence":16606,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-563e4beb-72b5-4cd3-96cc-5e256b4ca222, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:05.591Z","sequence":16607,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF87E7A6CA4C5A5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9319ecff6b0b88f6","parentId":"6f87d7578d729341","traceId":"0000000000000000ea71b8abd287d6b7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:05.63Z","sequence":16608,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF87E7A6CA4C5A5, resource-version: f710926d-ab6c-4f1a-b3b4-28d7f0712580]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9319ecff6b0b88f6","parentId":"6f87d7578d729341","traceId":"0000000000000000ea71b8abd287d6b7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:05.643Z","sequence":16609,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF87E7A6CA4C5A5, resource-version: 33bc5537-60ca-47fe-8326-0e9deb2f67c1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9319ecff6b0b88f6","parentId":"6f87d7578d729341","traceId":"0000000000000000ea71b8abd287d6b7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:06.361Z","sequence":16610,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:06.361Z","sequence":16611,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 0008004C80F4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:06.371Z","sequence":16612,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d9b11556-a120-4027-b7d6-c6406741be44, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:06.793Z","sequence":16613,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:06.793Z","sequence":16614,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:06.809Z","sequence":16615,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-f7dd4b37-f89f-4e0b-a54a-90c0e4c955aa, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:06.812Z","sequence":16616,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:06.812Z","sequence":16617,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191068]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:06.826Z","sequence":16618,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-09641f8c-8332-46ed-8906-f4571ee4a04a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:06.96Z","sequence":16619,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:06.96Z","sequence":16620,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF87E7A6CA4C5A5] for gateway [gateway_integrationtest_network_191068]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:06.961Z","sequence":16621,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:06.961Z","sequence":16622,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191068]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:06.977Z","sequence":16623,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:06.979Z","sequence":16624,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:06.979Z","sequence":16625,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-48f537c7-819e-47fd-906c-6854bc8e7616, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:07.213Z","sequence":16626,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-65a640ae-152d-4287-8d9a-59f915b232b7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:18.405Z","sequence":16627,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF87E7A6CA4C5A5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"551e4c3c9356a470","parentId":"29fa295b63b81652","traceId":"000000000000000009eb80b310ef372b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:18.421Z","sequence":16628,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF87E7A6CA4C5A5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"551e4c3c9356a470","parentId":"29fa295b63b81652","traceId":"000000000000000009eb80b310ef372b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:18.766Z","sequence":16629,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191068]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fb5c6e01681d18b8","parentId":"f53971106e691b7c","traceId":"0000000000000000af084c0a42a70018","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:18.785Z","sequence":16630,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191068]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fb5c6e01681d18b8","parentId":"f53971106e691b7c","traceId":"0000000000000000af084c0a42a70018","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:19.306Z","sequence":16631,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 8ACC08BB23B3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ea36a9b12076d0f3","parentId":"2a7bde9cb56ecd4e","traceId":"00000000000000004fc5a1c61d208195","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:19.323Z","sequence":16632,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 8ACC08BB23B3, resource-version: f5be110b-3b4b-4589-b594-81a5c21e0c20]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ea36a9b12076d0f3","parentId":"2a7bde9cb56ecd4e","traceId":"00000000000000004fc5a1c61d208195","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:19.333Z","sequence":16633,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 8ACC08BB23B3, resource-version: e2ebb291-86b2-4962-8a8f-c5c8fbb00b57]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ea36a9b12076d0f3","parentId":"2a7bde9cb56ecd4e","traceId":"00000000000000004fc5a1c61d208195","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:19.336Z","sequence":16634,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 8ACC08BB23B3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d5cb871b40c5d638","parentId":"65b058a6874841a0","traceId":"00000000000000004fc5a1c61d208195","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:19.521Z","sequence":16635,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 8ACC08BB23B3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d5cb871b40c5d638","parentId":"65b058a6874841a0","traceId":"00000000000000004fc5a1c61d208195","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:20.147Z","sequence":16636,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFB6B310F65A26B]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8ac6e796ac6c467a","parentId":"c35830b5d55dbb9b","traceId":"0000000000000000ea588f896ef29cad","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:20.163Z","sequence":16637,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFB6B310F65A26B, resource-version: ab9d54be-01e5-4062-b7b0-23c3ab6f465f]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8ac6e796ac6c467a","parentId":"c35830b5d55dbb9b","traceId":"0000000000000000ea588f896ef29cad","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:20.171Z","sequence":16638,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFB6B310F65A26B, resource-version: ea95df97-4664-4239-86ac-59213cc4cdf0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8ac6e796ac6c467a","parentId":"c35830b5d55dbb9b","traceId":"0000000000000000ea588f896ef29cad","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:21.091Z","sequence":16639,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oiltanking:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:21.091Z","sequence":16640,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oiltanking, device-id: 0008004BB60F]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:21.096Z","sequence":16641,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ed562c5b-6dbf-42a5-989b-bd735e3f82cd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:21.1Z","sequence":16642,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:21.1Z","sequence":16643,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oiltanking]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:21.108Z","sequence":16644,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-8ea024ff-6e94-4940-9b09-42c1e8a88620, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:21.227Z","sequence":16645,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:21.227Z","sequence":16646,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:21.233Z","sequence":16647,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-c32cecca-ff37-4df1-a7d3-d18f241c787e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:21.235Z","sequence":16648,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:21.235Z","sequence":16649,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-8ACC08BB23B3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:21.271Z","sequence":16650,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-c623bb19-b4ed-490a-beba-a81f84dd0cea, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:21.428Z","sequence":16651,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:21.428Z","sequence":16652,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 8ACC08BB23B3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:21.433Z","sequence":16653,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9b35d8dd-b0f4-44aa-b076-4067166fe025, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:21.437Z","sequence":16654,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:21.437Z","sequence":16655,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFB6B310F65A26B] for gateway [8ACC08BB23B3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:21.442Z","sequence":16656,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:21.442Z","sequence":16657,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:21.672Z","sequence":16658,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-259463d0-929f-49f3-95df-e5f3cb60576c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:30.106Z","sequence":16659,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:30.106Z","sequence":16660,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oci]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:30.11Z","sequence":16661,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-3d61282b-d694-45f0-b5e2-d77b6b21bfb2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:30.112Z","sequence":16662,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:30.112Z","sequence":16663,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000173] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:30.117Z","sequence":16664,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:30.118Z","sequence":16665,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:30.121Z","sequence":16666,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8c7f6929-68f8-4f6b-8ba6-95c383b56fb0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:30.129Z","sequence":16667,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:30.129Z","sequence":16668,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000173] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:30.133Z","sequence":16669,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:30.133Z","sequence":16670,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:30.136Z","sequence":16671,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e57f802f-1389-4209-8b27-65032b130bb9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:30.885Z","sequence":16672,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/conditionall:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:30.885Z","sequence":16673,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: conditionall, device-id: 70B3D57BB1000211] for gateway [0008004B512D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:30.895Z","sequence":16674,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_conditionall\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:30.896Z","sequence":16675,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_conditionall\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:30.899Z","sequence":16676,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-51e914ce-5587-4324-b714-8bcffe8d399f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:34.515Z","sequence":16677,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFB6B310F65A26B]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c0f336f83388cb87","parentId":"84f1ca027942832f","traceId":"00000000000000005d0a633f3493b898","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:34.531Z","sequence":16678,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFB6B310F65A26B]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c0f336f83388cb87","parentId":"84f1ca027942832f","traceId":"00000000000000005d0a633f3493b898","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:34.882Z","sequence":16679,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 8ACC08BB23B3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3c0ab195412f1b11","parentId":"f0512478ccaa417a","traceId":"0000000000000000861cf3565a28f085","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:34.897Z","sequence":16680,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 8ACC08BB23B3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3c0ab195412f1b11","parentId":"f0512478ccaa417a","traceId":"0000000000000000861cf3565a28f085","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:35.012Z","sequence":16681,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:35.012Z","sequence":16682,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BF6] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:35.018Z","sequence":16683,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:35.018Z","sequence":16684,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:35.026Z","sequence":16685,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a3fc00a1-81e3-4272-809e-2faa89c08b0d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:44.093Z","sequence":16686,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:44.093Z","sequence":16687,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A51] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:44.125Z","sequence":16688,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:44.125Z","sequence":16689,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:44.133Z","sequence":16690,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f2f964cc-41e7-4e5f-80c0-bb8f8cf18f81, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:51.98Z","sequence":16691,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:51.98Z","sequence":16692,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000154] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:51.986Z","sequence":16693,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:51.986Z","sequence":16694,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:51.989Z","sequence":16695,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b5d3987e-8118-40e3-b9f0-bf1d7e6acb2a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:52.07Z","sequence":16696,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:52.07Z","sequence":16697,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000154] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:52.078Z","sequence":16698,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:52.078Z","sequence":16699,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:52.082Z","sequence":16700,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9765fb4d-982e-410b-ae32-383e6ed892e5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:56.245Z","sequence":16701,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:56.245Z","sequence":16702,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10004F9] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:56.272Z","sequence":16703,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:56.273Z","sequence":16704,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:56.289Z","sequence":16705,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-679c4921-504c-4298-8ada-40eeafc6e8ba, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:57.141Z","sequence":16706,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:57.141Z","sequence":16707,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 70B3D57BB100126F] for gateway [gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:57.167Z","sequence":16708,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:57.167Z","sequence":16709,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:57.177Z","sequence":16710,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7e028c3e-c374-4cc8-84d4-f4a667a0fe33, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:57.882Z","sequence":16711,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:57.882Z","sequence":16712,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000683] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:57.893Z","sequence":16713,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:57.893Z","sequence":16714,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:42:57.899Z","sequence":16715,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d839d7d9-890c-44e4-b42d-3d494971f4f5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:43:02.359Z","sequence":16716,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/aloxy:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:43:02.359Z","sequence":16717,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: aloxy, device-id: 0008004A8F68]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:43:02.373Z","sequence":16718,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-31bdaee9-632c-4fc3-9d12-5b0aa27df281, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:43:02.376Z","sequence":16719,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:43:02.377Z","sequence":16720,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: aloxy]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:43:02.397Z","sequence":16721,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-03e33be7-9ae4-4b00-ab9e-bb05361f7c82, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:43:12.125Z","sequence":16722,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:43:12.125Z","sequence":16723,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100021A] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:43:12.131Z","sequence":16724,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:0.4.1\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:43:12.131Z","sequence":16725,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:43:12.136Z","sequence":16726,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9f478d15-7213-447e-a130-d766152ef101, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:43:13.107Z","sequence":16727,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:43:13.108Z","sequence":16728,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BA7] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:43:13.117Z","sequence":16729,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:43:13.117Z","sequence":16730,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:43:13.123Z","sequence":16731,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8dc15095-f9cb-49ed-bbf7-191b1be9cb25, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:43:14.222Z","sequence":16732,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:43:14.222Z","sequence":16733,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BB613]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:43:14.229Z","sequence":16734,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-29056158-a01e-403f-8268-5757af91c502, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:43:14.232Z","sequence":16735,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:43:14.232Z","sequence":16736,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: lanxess]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:43:14.237Z","sequence":16737,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-92718f85-1764-416f-959d-c72f983940b1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:43:19.017Z","sequence":16738,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:43:19.017Z","sequence":16739,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BC6] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:43:19.027Z","sequence":16740,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:43:19.027Z","sequence":16741,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:43:19.034Z","sequence":16742,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-80ad4347-dd46-415d-aa5a-7fb0c2e0235a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:43:21.397Z","sequence":16743,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:43:21.398Z","sequence":16744,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: acta]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:43:21.401Z","sequence":16745,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-9444575c-df05-4205-a3d5-d18994ece2eb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:43:21.403Z","sequence":16746,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/acta:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:43:21.403Z","sequence":16747,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: acta, device-id: 353438340047002F] for gateway [0008004AAAA3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:43:21.409Z","sequence":16748,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.3.0\"\n },\n \"viaGroups\" : [ \"gateways_acta\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:43:21.409Z","sequence":16749,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_acta\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:43:21.413Z","sequence":16750,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-329b462b-a949-46c3-a4f0-5da6fa727a42, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:43:21.832Z","sequence":16751,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:43:21.832Z","sequence":16752,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C0C] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:43:21.839Z","sequence":16753,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:43:21.839Z","sequence":16754,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:43:21.845Z","sequence":16755,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-46b87298-0d6a-44e5-b8a6-fc5cd2aebd54, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:43:29.691Z","sequence":16756,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:43:29.692Z","sequence":16757,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B5C] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:43:29.697Z","sequence":16758,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:43:29.697Z","sequence":16759,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:43:29.703Z","sequence":16760,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-bd33c787-abc4-4c89-95e3-eee42f2046b0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:43:33.731Z","sequence":16761,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:43:33.731Z","sequence":16762,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C03] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:43:33.737Z","sequence":16763,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:43:33.737Z","sequence":16764,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:43:33.743Z","sequence":16765,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-900c8024-8e62-4dde-8a4d-fd0a5f9e1202, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:43:36.981Z","sequence":16766,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/acta:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:43:36.981Z","sequence":16767,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: acta, device-id: 0008004AAAA3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:43:36.987Z","sequence":16768,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a5042181-a6ab-4974-b1ca-baeed5f74d74, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:43:58.661Z","sequence":16769,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:43:58.661Z","sequence":16770,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:43:58.673Z","sequence":16771,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-69a8de71-5a01-4577-85b0-839827bae5de, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:01.567Z","sequence":16772,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:01.568Z","sequence":16773,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: shell]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:01.571Z","sequence":16774,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-cba6c8ef-5307-47d9-9f74-2e443acc9592, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:01.573Z","sequence":16775,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/shell:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:01.573Z","sequence":16776,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: shell, type: hashed-password, auth-id: auth-gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:01.583Z","sequence":16777,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-67174e7a-b4f4-4f74-9e6b-195eb43f294e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:01.703Z","sequence":16778,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:01.704Z","sequence":16779,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100067C] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:01.709Z","sequence":16780,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:01.71Z","sequence":16781,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:01.717Z","sequence":16782,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d5b4b92f-68a5-468a-9c0e-3878374f3e9f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:01.734Z","sequence":16783,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:01.735Z","sequence":16784,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 70B3D57BB10001A5] for gateway [0008004BB84C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:01.74Z","sequence":16785,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:0.4.1\"\n },\n \"viaGroups\" : [ \"gateways_lanxess\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:01.74Z","sequence":16786,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_lanxess\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:01.743Z","sequence":16787,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7764ef5d-2571-40ae-b3d0-187c5ce01751, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:04.371Z","sequence":16788,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191070]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"01cff6f14a926530","parentId":"f23759856bd6cfcb","traceId":"00000000000000003e9f145f21ac91b5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:04.392Z","sequence":16789,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191070, resource-version: 6722f73f-865a-41b0-9ea8-b6500facb675]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"01cff6f14a926530","parentId":"f23759856bd6cfcb","traceId":"00000000000000003e9f145f21ac91b5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:04.4Z","sequence":16790,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191070, resource-version: da1f7688-ebb5-44ea-b92a-6fcceefa258a]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"01cff6f14a926530","parentId":"f23759856bd6cfcb","traceId":"00000000000000003e9f145f21ac91b5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:04.403Z","sequence":16791,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191070]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f2118b3c749b54a3","parentId":"31a7d8ba3d856308","traceId":"00000000000000003e9f145f21ac91b5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:04.589Z","sequence":16792,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191070]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f2118b3c749b54a3","parentId":"31a7d8ba3d856308","traceId":"00000000000000003e9f145f21ac91b5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:05.605Z","sequence":16793,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFCBBAB9CF9692E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e98478e614797d8d","parentId":"8b284caad2fd765a","traceId":"000000000000000082c4a71c3402ff67","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:05.628Z","sequence":16794,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFCBBAB9CF9692E, resource-version: 9ca53683-606a-4a3a-a880-aaf8bf1dda6c]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e98478e614797d8d","parentId":"8b284caad2fd765a","traceId":"000000000000000082c4a71c3402ff67","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:05.636Z","sequence":16795,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFCBBAB9CF9692E, resource-version: 0132d5bf-0053-40f0-bda0-f26176e4e7cd]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e98478e614797d8d","parentId":"8b284caad2fd765a","traceId":"000000000000000082c4a71c3402ff67","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:06.262Z","sequence":16796,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:06.263Z","sequence":16797,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AC7] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:06.268Z","sequence":16798,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:06.269Z","sequence":16799,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:06.274Z","sequence":16800,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-63697c9d-325a-4260-b7c6-a8b33adee8e2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:06.713Z","sequence":16801,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:06.714Z","sequence":16802,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191070]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:06.731Z","sequence":16803,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-0557777c-28fc-454f-a1a1-b172c6ca460b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:06.86Z","sequence":16804,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:06.863Z","sequence":16805,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCBBAB9CF9692E] for gateway [gateway_integrationtest_network_191070]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:06.864Z","sequence":16806,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:06.864Z","sequence":16807,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191070]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:06.873Z","sequence":16808,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:06.873Z","sequence":16809,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:06.874Z","sequence":16810,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4a397a08-e61f-41bc-9958-d047350ceaa4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:07.417Z","sequence":16811,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-19db11d8-9b2e-461a-947e-8dc9ba41a12c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:07.939Z","sequence":16812,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/repsol:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:07.939Z","sequence":16813,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: repsol, device-id: 0008004A37FF]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:07.953Z","sequence":16814,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3e4f3346-a9e7-4bb2-ae85-88b3a6066f29, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:07.956Z","sequence":16815,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:07.956Z","sequence":16816,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: repsol]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:07.961Z","sequence":16817,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-8a21dcd4-cd1c-4f86-9889-9fadcc316f7a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:12.52Z","sequence":16818,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:12.52Z","sequence":16819,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BF5] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:12.526Z","sequence":16820,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:12.526Z","sequence":16821,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:12.532Z","sequence":16822,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a71f7f27-9f38-4804-942e-3e72cd6abb42, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:19.166Z","sequence":16823,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFCBBAB9CF9692E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9a0dee00d1c3aaae","parentId":"7703ce52bc7c5321","traceId":"0000000000000000d45d8a9d07f305ab","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:19.198Z","sequence":16824,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFCBBAB9CF9692E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9a0dee00d1c3aaae","parentId":"7703ce52bc7c5321","traceId":"0000000000000000d45d8a9d07f305ab","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:19.324Z","sequence":16825,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191070]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f079491b174d3e6f","parentId":"19bbbf6a93ab7e5e","traceId":"0000000000000000c2002e7ca833589d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:19.357Z","sequence":16826,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191070]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f079491b174d3e6f","parentId":"19bbbf6a93ab7e5e","traceId":"0000000000000000c2002e7ca833589d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:19.768Z","sequence":16827,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: B1D690038B46]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3bec5209614de997","parentId":"ff6c517b222926ef","traceId":"000000000000000055b154d9b7f381b7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:19.783Z","sequence":16828,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: B1D690038B46, resource-version: f65d2b57-3fb3-455c-9da9-40e9d80921cb]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3bec5209614de997","parentId":"ff6c517b222926ef","traceId":"000000000000000055b154d9b7f381b7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:19.789Z","sequence":16829,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: B1D690038B46, resource-version: f302d68f-a9ea-4ddd-8c1a-728448d65ad0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3bec5209614de997","parentId":"ff6c517b222926ef","traceId":"000000000000000055b154d9b7f381b7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:19.793Z","sequence":16830,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: B1D690038B46]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8568cbb231abed09","parentId":"610a1790a8ea9130","traceId":"000000000000000055b154d9b7f381b7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:19.914Z","sequence":16831,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: B1D690038B46]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8568cbb231abed09","parentId":"610a1790a8ea9130","traceId":"000000000000000055b154d9b7f381b7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:20.649Z","sequence":16832,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF1D7489E865153]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"dea1d9b3570cfdca","parentId":"f78521eea4777199","traceId":"0000000000000000f3f25298ac8c5987","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:20.664Z","sequence":16833,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF1D7489E865153, resource-version: af1a94f6-68e3-4b78-a135-a7b660313136]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"dea1d9b3570cfdca","parentId":"f78521eea4777199","traceId":"0000000000000000f3f25298ac8c5987","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:20.671Z","sequence":16834,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF1D7489E865153, resource-version: 9070023f-54bd-4afb-8e75-53f0824d52fe]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"dea1d9b3570cfdca","parentId":"f78521eea4777199","traceId":"0000000000000000f3f25298ac8c5987","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:21.714Z","sequence":16835,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:21.714Z","sequence":16836,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-B1D690038B46]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:21.728Z","sequence":16837,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-45c55ffd-6117-4516-9947-6c0e6aa1042d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:21.846Z","sequence":16838,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:21.846Z","sequence":16839,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: B1D690038B46]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:21.852Z","sequence":16840,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4027c87d-288e-442f-8346-1c27bdc0a81e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:21.856Z","sequence":16841,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:21.856Z","sequence":16842,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF1D7489E865153] for gateway [B1D690038B46]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:21.861Z","sequence":16843,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:21.861Z","sequence":16844,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:22.026Z","sequence":16845,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-75121774-d8d2-46d3-b2f9-830942acaf9e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:25.951Z","sequence":16846,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:25.951Z","sequence":16847,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001C0] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:25.954Z","sequence":16848,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:25.954Z","sequence":16849,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001C0] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:25.959Z","sequence":16850,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:25.959Z","sequence":16851,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:25.96Z","sequence":16852,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:25.96Z","sequence":16853,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:25.962Z","sequence":16854,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6f2ea651-8136-4ccd-b253-e0cbef9d77af, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:25.963Z","sequence":16855,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f71d0f59-f25a-42c4-a63e-11d4abd3d0d9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:29.554Z","sequence":16856,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:29.554Z","sequence":16857,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: flint]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:29.557Z","sequence":16858,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-f10074fd-38cb-4268-94bd-29cf70dbe129, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:29.559Z","sequence":16859,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/flint:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:29.56Z","sequence":16860,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: flint, type: hashed-password, auth-id: auth-flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:29.569Z","sequence":16861,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-786d03af-6cc2-402a-a777-d115b0e2f480, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:29.688Z","sequence":16862,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:29.688Z","sequence":16863,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000824] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:29.695Z","sequence":16864,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:29.695Z","sequence":16865,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:29.699Z","sequence":16866,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1a0cf736-2a07-48fa-ad43-dea08cb769a7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:30.045Z","sequence":16867,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:30.045Z","sequence":16868,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 0008004B51D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:30.051Z","sequence":16869,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3e349825-e272-4cab-a6b5-8749c2915c8a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:30.054Z","sequence":16870,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:30.055Z","sequence":16871,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: dow]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:30.057Z","sequence":16872,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-2c8bbfc7-77e8-46c6-8e29-8f30d35ff0b1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:31.708Z","sequence":16873,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:31.708Z","sequence":16874,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000169] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:31.714Z","sequence":16875,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:31.714Z","sequence":16876,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:31.717Z","sequence":16877,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5d294e1b-ef22-4ee5-9e0e-703335482179, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:31.732Z","sequence":16878,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:31.732Z","sequence":16879,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000169] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:31.738Z","sequence":16880,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:31.738Z","sequence":16881,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:31.741Z","sequence":16882,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1e88b554-cc56-4398-8991-bc9acf306b3f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:34.882Z","sequence":16883,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:34.882Z","sequence":16884,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A5B] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:34.887Z","sequence":16885,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:34.888Z","sequence":16886,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:34.894Z","sequence":16887,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1791e3ce-840c-417b-83c8-36bd2b2377ac, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:35.206Z","sequence":16888,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF1D7489E865153]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"643f45536040868b","parentId":"5111ff28b9ca8606","traceId":"00000000000000005bbd1ae5c64858e4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:35.222Z","sequence":16889,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF1D7489E865153]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"643f45536040868b","parentId":"5111ff28b9ca8606","traceId":"00000000000000005bbd1ae5c64858e4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:35.527Z","sequence":16890,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: B1D690038B46]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a9ea08212b0a126a","parentId":"bf24273fcc8a01e3","traceId":"00000000000000004e877d3ec56ccfcb","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:35.544Z","sequence":16891,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: B1D690038B46]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a9ea08212b0a126a","parentId":"bf24273fcc8a01e3","traceId":"00000000000000004e877d3ec56ccfcb","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:52.096Z","sequence":16892,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:52.096Z","sequence":16893,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BC2] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:52.106Z","sequence":16894,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:52.106Z","sequence":16895,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:52.113Z","sequence":16896,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9985fd7e-6808-4106-9982-a5e96f7f0013, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:54.894Z","sequence":16897,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:54.894Z","sequence":16898,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10007FE] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:54.9Z","sequence":16899,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:54.9Z","sequence":16900,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:44:54.904Z","sequence":16901,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6f9bd5b3-287e-4aad-8428-1b65e7667092, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:45:00.007Z","sequence":16902,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:45:00.007Z","sequence":16903,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006E0] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:45:00.021Z","sequence":16904,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:45:00.021Z","sequence":16905,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:45:00.027Z","sequence":16906,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a4e9378e-cb50-431a-a34c-d8538f233693, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:45:01.161Z","sequence":16907,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:45:01.161Z","sequence":16908,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 70B3D57BB10001AE] for gateway [0008004BB84C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:45:01.166Z","sequence":16909,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:0.4.0\"\n },\n \"viaGroups\" : [ \"gateways_lanxess\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:45:01.167Z","sequence":16910,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_lanxess\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:45:01.169Z","sequence":16911,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a2b74b56-c41a-4098-8ab6-cdaef9298ae7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:45:01.485Z","sequence":16912,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:45:01.485Z","sequence":16913,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001E8] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:45:01.492Z","sequence":16914,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:45:01.492Z","sequence":16915,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:45:01.495Z","sequence":16916,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4ba43197-6ec1-404a-8354-9d7f03d820e6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:45:01.511Z","sequence":16917,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:45:01.511Z","sequence":16918,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001E8] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:45:01.517Z","sequence":16919,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:45:01.517Z","sequence":16920,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:45:01.519Z","sequence":16921,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b46c3755-3805-4578-b998-39a91c0ebbc8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:45:05.557Z","sequence":16922,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/conditionall:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:45:05.557Z","sequence":16923,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: conditionall, device-id: 0008004B512D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:45:05.562Z","sequence":16924,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9841be77-9453-4bb2-9ac4-bd8d5c77ff8d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:45:05.565Z","sequence":16925,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:45:05.566Z","sequence":16926,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: conditionall]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:45:05.568Z","sequence":16927,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-6d109fca-78a0-49db-97ec-d79eeaad9c43, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:45:06.364Z","sequence":16928,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:45:06.364Z","sequence":16929,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B98] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:45:06.369Z","sequence":16930,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:45:06.37Z","sequence":16931,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:45:06.376Z","sequence":16932,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d2932806-4da3-4e02-bc4e-4707141f70fb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:45:07.246Z","sequence":16933,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:45:07.246Z","sequence":16934,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000836] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:45:07.265Z","sequence":16935,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.8.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:45:07.265Z","sequence":16936,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:45:07.269Z","sequence":16937,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-497a90d4-bf33-424b-9f39-624e1fce6b54, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:45:09.677Z","sequence":16938,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:45:09.677Z","sequence":16939,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000804] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:45:09.683Z","sequence":16940,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:45:09.683Z","sequence":16941,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:45:09.687Z","sequence":16942,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5079ec55-6600-4c2d-999c-429836c308ff, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:45:13.64Z","sequence":16943,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:45:13.64Z","sequence":16944,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:45:13.645Z","sequence":16945,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-937df292-c077-4be8-af0b-c850970ff5c4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:45:21.127Z","sequence":16946,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:45:21.127Z","sequence":16947,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000579] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:45:21.134Z","sequence":16948,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:45:21.134Z","sequence":16949,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:45:21.14Z","sequence":16950,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e18e51c0-a647-4f6b-a8ef-ad3df5c17ecd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:45:28.332Z","sequence":16951,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:45:28.332Z","sequence":16952,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10009B8] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:45:28.338Z","sequence":16953,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:45:28.338Z","sequence":16954,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:45:28.341Z","sequence":16955,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-75e7900b-dafd-4a34-adff-64068ffdfaa9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:45:41.598Z","sequence":16956,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:45:41.598Z","sequence":16957,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BB84C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:45:41.604Z","sequence":16958,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0c72ea69-dca5-47c7-9f2e-6d562d0bd72b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:45:43.296Z","sequence":16959,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:45:43.296Z","sequence":16960,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 0008004B5135]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:45:43.302Z","sequence":16961,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-42b68ab5-de2e-421c-ae92-4185d7dd1964, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:45:43.313Z","sequence":16962,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:45:43.313Z","sequence":16963,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: ineos]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:45:43.316Z","sequence":16964,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-f9d1efb1-456b-44a8-aca0-2682ce12595c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:45:43.936Z","sequence":16965,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:45:43.936Z","sequence":16966,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BA4] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:45:43.943Z","sequence":16967,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:45:43.943Z","sequence":16968,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:45:43.949Z","sequence":16969,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-47b7b749-579d-4c1c-ab2d-023dd8738698, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:45:44.72Z","sequence":16970,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:45:44.721Z","sequence":16971,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B61] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:45:44.731Z","sequence":16972,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:45:44.731Z","sequence":16973,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:45:44.738Z","sequence":16974,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-208888ee-7993-4233-9195-1147a8cc7170, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:45:46.836Z","sequence":16975,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:45:46.837Z","sequence":16976,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BAC] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:45:46.845Z","sequence":16977,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:45:46.847Z","sequence":16978,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:45:46.854Z","sequence":16979,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b69418e1-f15a-4c69-bdd6-ae8f9a3e7e3f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:45:47.607Z","sequence":16980,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:45:47.608Z","sequence":16981,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BBD1B]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:45:47.617Z","sequence":16982,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-839154f1-f654-4f55-897d-818d0f45c685, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:45:52.144Z","sequence":16983,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:45:52.144Z","sequence":16984,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100069D] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:45:52.15Z","sequence":16985,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:45:52.15Z","sequence":16986,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:45:52.156Z","sequence":16987,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-dab90788-86d8-4a91-9942-5cb2ab024435, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:45:54.043Z","sequence":16988,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/arkema:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:45:54.043Z","sequence":16989,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: arkema, device-id: 0008004AE119]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:45:54.05Z","sequence":16990,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-cdb2c69e-175a-40e8-9036-aa018acc7a33, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:45:54.054Z","sequence":16991,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:45:54.054Z","sequence":16992,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: arkema]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:45:54.057Z","sequence":16993,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-bc951158-5534-4b47-b6c8-ff30bfe58949, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:45:56.824Z","sequence":16994,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:45:56.824Z","sequence":16995,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000684] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:45:56.83Z","sequence":16996,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:45:56.83Z","sequence":16997,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:45:56.837Z","sequence":16998,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7a58e81a-fef0-4ad4-ab20-f248f78d83ab, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:03.949Z","sequence":16999,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:03.95Z","sequence":17000,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B9A] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:03.955Z","sequence":17001,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:03.955Z","sequence":17002,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:03.961Z","sequence":17003,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:03.962Z","sequence":17004,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:03.963Z","sequence":17005,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9d013232-7024-48fc-91f0-fd2fe681d2b4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:03.968Z","sequence":17006,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-cdb7aa95-716d-4a19-927a-920ed0d1771f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:04.517Z","sequence":17007,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191072]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fd07fabffb45c0f2","parentId":"80f0b9e3ed252a0e","traceId":"0000000000000000e4805e6a8758443c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:04.545Z","sequence":17008,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191072, resource-version: 0c43d8b7-8526-4bc5-8c46-ee711d37685b]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fd07fabffb45c0f2","parentId":"80f0b9e3ed252a0e","traceId":"0000000000000000e4805e6a8758443c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:04.551Z","sequence":17009,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191072, resource-version: 0dab83e6-e49a-46b3-a96c-44c00a73ace8]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fd07fabffb45c0f2","parentId":"80f0b9e3ed252a0e","traceId":"0000000000000000e4805e6a8758443c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:04.56Z","sequence":17010,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191072]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"53a6baeccc6c57a5","parentId":"728524dad8516070","traceId":"0000000000000000e4805e6a8758443c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:04.744Z","sequence":17011,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191072]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"53a6baeccc6c57a5","parentId":"728524dad8516070","traceId":"0000000000000000e4805e6a8758443c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:06.091Z","sequence":17012,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFE893ECA22DCB5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7291cbe255bb527d","parentId":"2607ed3668752215","traceId":"0000000000000000cf31829196a1b2d1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:06.108Z","sequence":17013,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFE893ECA22DCB5, resource-version: 9815794b-bf20-49d2-b428-c17ee26799d1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7291cbe255bb527d","parentId":"2607ed3668752215","traceId":"0000000000000000cf31829196a1b2d1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:06.115Z","sequence":17014,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFE893ECA22DCB5, resource-version: 96cae5a5-8c62-4fb9-a2cd-26d7bda41411]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7291cbe255bb527d","parentId":"2607ed3668752215","traceId":"0000000000000000cf31829196a1b2d1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:07.177Z","sequence":17015,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:07.177Z","sequence":17016,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:07.185Z","sequence":17017,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-6a8e8974-8e95-4ecd-acce-a0c16eed4eed, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:07.195Z","sequence":17018,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:07.195Z","sequence":17019,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191072]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:07.211Z","sequence":17020,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-b4e0a0db-5b43-4dda-983c-714df5998903, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:07.339Z","sequence":17021,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:07.339Z","sequence":17022,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFE893ECA22DCB5] for gateway [gateway_integrationtest_network_191072]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:07.34Z","sequence":17023,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:07.34Z","sequence":17024,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191072]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:07.347Z","sequence":17025,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-25a6f60e-18e2-4ac1-935a-c560ac38d33e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:07.349Z","sequence":17026,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:07.349Z","sequence":17027,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:07.757Z","sequence":17028,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7cef2f46-1632-4b08-b51b-2f5ce94bdaee, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:14.373Z","sequence":17029,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/acta:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:14.373Z","sequence":17030,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: acta, device-id: 35343834001F0046] for gateway [0008004AAAA3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:14.379Z","sequence":17031,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.3.0\"\n },\n \"viaGroups\" : [ \"gateways_acta\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:14.379Z","sequence":17032,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_acta\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:14.382Z","sequence":17033,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0813a5d3-532e-4187-bd3a-43c2724771e5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:21.241Z","sequence":17034,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFE893ECA22DCB5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"364a704c016ea354","parentId":"94ae42d2207211aa","traceId":"0000000000000000e324d779af8571d9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:21.344Z","sequence":17035,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFE893ECA22DCB5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"364a704c016ea354","parentId":"94ae42d2207211aa","traceId":"0000000000000000e324d779af8571d9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:21.468Z","sequence":17036,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191072]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e46a76011a11bb9f","parentId":"6e01e875a244d852","traceId":"0000000000000000695e87eb0c0d3e59","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:21.598Z","sequence":17037,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191072]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e46a76011a11bb9f","parentId":"6e01e875a244d852","traceId":"0000000000000000695e87eb0c0d3e59","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:22.021Z","sequence":17038,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EDE6898AB96]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"893ee92f2aecbaf2","parentId":"63bbe7269fe64eac","traceId":"0000000000000000cd876f5763ddff8e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:22.039Z","sequence":17039,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EDE6898AB96, resource-version: a1e97926-c1c9-447d-a890-b15096784cf1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"893ee92f2aecbaf2","parentId":"63bbe7269fe64eac","traceId":"0000000000000000cd876f5763ddff8e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:22.045Z","sequence":17040,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EDE6898AB96, resource-version: 01741c84-6b24-4cf9-9be8-a7431abcaca8]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"893ee92f2aecbaf2","parentId":"63bbe7269fe64eac","traceId":"0000000000000000cd876f5763ddff8e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:22.048Z","sequence":17041,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 0EDE6898AB96]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0ff34063b5e2b18b","parentId":"8fdf343be3e52246","traceId":"0000000000000000cd876f5763ddff8e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:22.172Z","sequence":17042,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 0EDE6898AB96]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0ff34063b5e2b18b","parentId":"8fdf343be3e52246","traceId":"0000000000000000cd876f5763ddff8e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:22.55Z","sequence":17043,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF36E1E5A0B0313]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8039d52e881c1634","parentId":"99c40a78a8cc345c","traceId":"00000000000000006e55187d7d2f29d8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:22.573Z","sequence":17044,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF36E1E5A0B0313, resource-version: 35b6bb45-97c5-4cfd-b5c0-b0f04c381b32]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8039d52e881c1634","parentId":"99c40a78a8cc345c","traceId":"00000000000000006e55187d7d2f29d8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:22.578Z","sequence":17045,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF36E1E5A0B0313, resource-version: 051d5fec-b16e-42fb-bc27-97fbe4678d52]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8039d52e881c1634","parentId":"99c40a78a8cc345c","traceId":"00000000000000006e55187d7d2f29d8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:23.63Z","sequence":17046,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:23.631Z","sequence":17047,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:23.635Z","sequence":17048,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-eecec5a2-05f6-4d2c-b3a8-52fda3d93f88, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:23.64Z","sequence":17049,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:23.64Z","sequence":17050,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-0EDE6898AB96]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:23.65Z","sequence":17051,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-9a791149-c018-4abe-9631-177b9bf1c684, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:23.783Z","sequence":17052,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:23.784Z","sequence":17053,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EDE6898AB96]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:23.789Z","sequence":17054,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-32e8f519-5ab4-4784-b2a4-9dba50762c04, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:23.795Z","sequence":17055,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:23.795Z","sequence":17056,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF36E1E5A0B0313] for gateway [0EDE6898AB96]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:23.8Z","sequence":17057,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:23.8Z","sequence":17058,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:23.983Z","sequence":17059,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-cdb4475a-663c-49a9-afa0-dd1e5629bccf, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:27.582Z","sequence":17060,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:27.582Z","sequence":17061,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BBD1C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:27.588Z","sequence":17062,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-877493d0-67e5-48a1-9902-97587c727f0d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:27.591Z","sequence":17063,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:27.591Z","sequence":17064,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: lanxess]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:27.593Z","sequence":17065,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-c216f822-36cc-45f1-bf29-eb5bf6649642, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:31.242Z","sequence":17066,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:31.242Z","sequence":17067,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AB0] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:31.247Z","sequence":17068,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:31.247Z","sequence":17069,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:31.254Z","sequence":17070,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-45417279-1196-4900-80b2-70475167337b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:32.686Z","sequence":17071,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:32.686Z","sequence":17072,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006A1] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:32.693Z","sequence":17073,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:32.693Z","sequence":17074,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:32.699Z","sequence":17075,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-760409b9-443b-4ff3-ae66-8d11170b30d1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:35.931Z","sequence":17076,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:35.931Z","sequence":17077,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000699] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:35.937Z","sequence":17078,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:35.937Z","sequence":17079,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:35.943Z","sequence":17080,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-dec73e41-d894-4172-b8c4-da65932f415d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:36.173Z","sequence":17081,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF36E1E5A0B0313]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4df37cb66b17fbd8","parentId":"431abff9403c2f94","traceId":"00000000000000000e276300d102c396","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:36.199Z","sequence":17082,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF36E1E5A0B0313]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4df37cb66b17fbd8","parentId":"431abff9403c2f94","traceId":"00000000000000000e276300d102c396","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:36.496Z","sequence":17083,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EDE6898AB96]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a5716d25749f325a","parentId":"e176aa79040c111d","traceId":"00000000000000005c3109cb1910ccef","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:36.517Z","sequence":17084,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EDE6898AB96]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a5716d25749f325a","parentId":"e176aa79040c111d","traceId":"00000000000000005c3109cb1910ccef","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:37.062Z","sequence":17085,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:37.062Z","sequence":17086,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:37.068Z","sequence":17087,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1be89b2a-fa79-496c-a49b-b5c70c7ffc9f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:37.998Z","sequence":17088,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:37.998Z","sequence":17089,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C14] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:38.005Z","sequence":17090,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:38.005Z","sequence":17091,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:38.011Z","sequence":17092,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9be0611e-3c21-455c-b3b6-7248e960713e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:45.244Z","sequence":17093,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:45.244Z","sequence":17094,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BB5] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:45.254Z","sequence":17095,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:45.254Z","sequence":17096,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:45.261Z","sequence":17097,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-62fc2945-0e6f-4463-bff1-2feecb7c8965, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:45.611Z","sequence":17098,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:45.612Z","sequence":17099,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oci]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:45.623Z","sequence":17100,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-10c2a97d-d6a6-4cee-b3b1-31170cd3cb07, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:45.628Z","sequence":17101,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:45.629Z","sequence":17102,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000203] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:45.649Z","sequence":17103,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:45.649Z","sequence":17104,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000203] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:45.651Z","sequence":17105,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:45.651Z","sequence":17106,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:45.658Z","sequence":17107,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-00b573b8-b40f-48c8-80d2-ee0ac2b727c9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:45.661Z","sequence":17108,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:45.661Z","sequence":17109,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:45.665Z","sequence":17110,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-df222615-e559-4df4-a2f6-a92a3a7a235a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:51.902Z","sequence":17111,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:51.902Z","sequence":17112,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AF9] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:51.915Z","sequence":17113,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:51.915Z","sequence":17114,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:51.921Z","sequence":17115,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6a91e8d3-7954-4036-955b-de14680616dd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:53.2Z","sequence":17116,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:53.201Z","sequence":17117,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10007F4] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:53.201Z","sequence":17118,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:53.201Z","sequence":17119,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:53.207Z","sequence":17120,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:53.208Z","sequence":17121,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:53.209Z","sequence":17122,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-71a4076a-cae4-448d-b969-4562090542ae, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:53.213Z","sequence":17123,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-51f49c47-8847-4c41-97e2-6f73a79123ae, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:57.792Z","sequence":17124,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:57.792Z","sequence":17125,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A39] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:57.802Z","sequence":17126,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:57.802Z","sequence":17127,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:46:57.808Z","sequence":17128,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-089bd357-3219-4258-940a-5975632da3e1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:47:01.189Z","sequence":17129,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:47:01.189Z","sequence":17130,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: acta]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:47:01.193Z","sequence":17131,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-2f1cad05-3a53-4fe8-b6e5-354cfb0e17b3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:47:08.083Z","sequence":17132,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:47:08.084Z","sequence":17133,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 0008004C80F4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:47:08.091Z","sequence":17134,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b7e47a11-8cfb-4331-8d72-9b391c98af6b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:47:10.51Z","sequence":17135,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:47:10.51Z","sequence":17136,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000159] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:47:10.516Z","sequence":17137,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:47:10.517Z","sequence":17138,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:47:10.519Z","sequence":17139,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-876d9a57-4412-4683-98b0-99aa16c495f8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:47:10.52Z","sequence":17140,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:47:10.52Z","sequence":17141,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000159] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:47:10.526Z","sequence":17142,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:47:10.526Z","sequence":17143,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:47:10.529Z","sequence":17144,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a1f25e4c-36d6-4f67-9b15-6e67e6e0e2e7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:47:10.912Z","sequence":17145,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:47:10.912Z","sequence":17146,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: shell]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:47:10.916Z","sequence":17147,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-0f1d1e37-53ab-4240-9f71-3f2426f67ed0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:47:10.918Z","sequence":17148,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/shell:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:47:10.921Z","sequence":17149,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: shell, type: hashed-password, auth-id: auth-gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:47:10.935Z","sequence":17150,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-672d67f1-6bce-4d71-b3b2-e2fbbbddd274, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:47:11.055Z","sequence":17151,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:47:11.056Z","sequence":17152,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AC2] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:47:11.061Z","sequence":17153,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:47:11.062Z","sequence":17154,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:47:11.068Z","sequence":17155,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d8b3a651-5c27-483f-82fe-01de792de2e4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:47:12.767Z","sequence":17156,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:47:12.767Z","sequence":17157,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100078B] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:47:12.777Z","sequence":17158,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:47:12.777Z","sequence":17159,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:47:12.783Z","sequence":17160,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e35f9457-17db-4313-b91d-30c46fa8f2d4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:47:15.094Z","sequence":17161,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:47:15.094Z","sequence":17162,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A4A] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:47:15.11Z","sequence":17163,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:47:15.112Z","sequence":17164,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:47:15.12Z","sequence":17165,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-fbc97bfc-f5ca-4cba-ba7b-635a3104cba9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:47:22.667Z","sequence":17166,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oiltanking:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:47:22.667Z","sequence":17167,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oiltanking, device-id: 0008004BB60F]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:47:22.675Z","sequence":17168,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6df35109-1741-4ec8-93b5-1e691db9ce6a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:47:22.678Z","sequence":17169,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:47:22.678Z","sequence":17170,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oiltanking]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:47:22.682Z","sequence":17171,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-a251b2e8-73dc-4665-98ae-81420547c3b8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:47:23.973Z","sequence":17172,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:47:23.973Z","sequence":17173,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BFB] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:47:23.978Z","sequence":17174,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:47:23.978Z","sequence":17175,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:47:23.985Z","sequence":17176,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ca328f30-2938-4421-86b8-704816fea9ec, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:47:25.336Z","sequence":17177,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:47:25.336Z","sequence":17178,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10013EB] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:47:25.342Z","sequence":17179,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:47:25.343Z","sequence":17180,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:47:25.349Z","sequence":17181,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-01e86d7b-d86b-4733-8c0a-e6ae0fcaef9d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:47:31.259Z","sequence":17182,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:47:31.259Z","sequence":17183,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A37] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:47:31.264Z","sequence":17184,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:47:31.264Z","sequence":17185,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:47:31.271Z","sequence":17186,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5a34f43e-36db-47f0-9a5e-0d9672d68811, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:47:47.398Z","sequence":17187,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:47:47.399Z","sequence":17188,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A45] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:47:47.404Z","sequence":17189,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:47:47.404Z","sequence":17190,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:47:47.41Z","sequence":17191,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1305509c-8a84-447f-b5dd-890fbfc47331, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:47:59.584Z","sequence":17192,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:47:59.584Z","sequence":17193,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: flint]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:47:59.587Z","sequence":17194,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-5d88980a-6fd7-437a-b04b-254f9c1a946c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:47:59.589Z","sequence":17195,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/flint:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:47:59.59Z","sequence":17196,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: flint, type: hashed-password, auth-id: auth-flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:47:59.598Z","sequence":17197,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-33c0cf31-20df-429f-8883-ce8125159fde, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:47:59.716Z","sequence":17198,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:47:59.717Z","sequence":17199,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10009D7] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:47:59.723Z","sequence":17200,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:47:59.723Z","sequence":17201,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:47:59.727Z","sequence":17202,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e56c5675-0a0e-4e4c-a853-deaa24aabe14, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:00.466Z","sequence":17203,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:00.467Z","sequence":17204,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006DE] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:00.481Z","sequence":17205,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.8.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:00.482Z","sequence":17206,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:00.489Z","sequence":17207,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9d7ff695-c66f-4c2d-b764-6c786ed02dd8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:03.601Z","sequence":17208,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/aloxy:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:03.601Z","sequence":17209,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: aloxy, device-id: 0008004A8F68]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:03.611Z","sequence":17210,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3d22571f-fe1d-428a-9910-bdb7824c819d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:03.614Z","sequence":17211,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:03.614Z","sequence":17212,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: aloxy]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:03.618Z","sequence":17213,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-12adc264-2310-49f0-bed3-03bbecf512ef, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:03.741Z","sequence":17214,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:03.741Z","sequence":17215,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A49] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:03.748Z","sequence":17216,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:03.752Z","sequence":17217,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:03.767Z","sequence":17218,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2d2bff25-aab2-4e91-835d-cedc823625f2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:03.995Z","sequence":17219,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:03.996Z","sequence":17220,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A31] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:04.005Z","sequence":17221,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:04.005Z","sequence":17222,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:04.011Z","sequence":17223,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f39e43ce-6e82-4e64-9d43-db905c2a36d0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:05.069Z","sequence":17224,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF8899100D2F4FD]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"df42f4443cc23c10","parentId":"63c9f0f876e132c6","traceId":"00000000000000001df21697ba1a974e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:05.1Z","sequence":17225,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF8899100D2F4FD]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"df42f4443cc23c10","parentId":"63c9f0f876e132c6","traceId":"00000000000000001df21697ba1a974e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:05.269Z","sequence":17226,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF8BDE5D387F442]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d3115279b320831f","parentId":"9d6b138e9caea7f9","traceId":"00000000000000008d9f97fc0a6ea169","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:05.303Z","sequence":17227,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF8BDE5D387F442]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d3115279b320831f","parentId":"9d6b138e9caea7f9","traceId":"00000000000000008d9f97fc0a6ea169","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:05.506Z","sequence":17228,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF8862F34F9ED14]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"288c3a9a9a9c5d1a","parentId":"0785845bcef95c0b","traceId":"0000000000000000e30b5b9038f75409","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:05.522Z","sequence":17229,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF8862F34F9ED14]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"288c3a9a9a9c5d1a","parentId":"0785845bcef95c0b","traceId":"0000000000000000e30b5b9038f75409","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:05.553Z","sequence":17230,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFCC3D460ED0346]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5adb609ed69470ed","parentId":"dd9bb55720ee3aa9","traceId":"00000000000000002dbbc03e32e3f09b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:05.569Z","sequence":17231,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF206718B4852B7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ae0ac7f7d545378b","parentId":"96d9923daf0e4e43","traceId":"0000000000000000461fdad3a3227f89","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:05.57Z","sequence":17232,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFCC3D460ED0346]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5adb609ed69470ed","parentId":"dd9bb55720ee3aa9","traceId":"00000000000000002dbbc03e32e3f09b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:05.584Z","sequence":17233,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF206718B4852B7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ae0ac7f7d545378b","parentId":"96d9923daf0e4e43","traceId":"0000000000000000461fdad3a3227f89","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:05.713Z","sequence":17234,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFD6625575B4C6E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"00673d1f19d9f61e","parentId":"65f4002ae5cddde4","traceId":"00000000000000000760fb48dcae7c8c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:05.733Z","sequence":17235,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFD6625575B4C6E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"00673d1f19d9f61e","parentId":"65f4002ae5cddde4","traceId":"00000000000000000760fb48dcae7c8c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:06.008Z","sequence":17236,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_190989]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"810afe1954a3cf36","parentId":"201f43e8037c0dbe","traceId":"0000000000000000acd53dd23678b96e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:06.029Z","sequence":17237,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190989]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"810afe1954a3cf36","parentId":"201f43e8037c0dbe","traceId":"0000000000000000acd53dd23678b96e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:06.136Z","sequence":17238,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_190983]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"413129badca1272d","parentId":"2c80b23acb88493c","traceId":"0000000000000000f405c64f80f9567f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:06.157Z","sequence":17239,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190983]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"413129badca1272d","parentId":"2c80b23acb88493c","traceId":"0000000000000000f405c64f80f9567f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:06.388Z","sequence":17240,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_190953]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5d871994527882e4","parentId":"21082576477fe63d","traceId":"000000000000000073687efe8429a12e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:06.413Z","sequence":17241,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_190953]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5d871994527882e4","parentId":"21082576477fe63d","traceId":"000000000000000073687efe8429a12e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:08.281Z","sequence":17242,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:08.281Z","sequence":17243,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C17] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:08.287Z","sequence":17244,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:08.288Z","sequence":17245,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:08.293Z","sequence":17246,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:08.293Z","sequence":17247,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB1000A75] for gateway [0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:08.294Z","sequence":17248,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c4714836-29aa-49f0-8e9f-62c160a6c615, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:08.3Z","sequence":17249,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:08.3Z","sequence":17250,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:08.303Z","sequence":17251,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4c9282da-b1ef-458d-a14e-584b244b3702, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:09.733Z","sequence":17252,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:09.733Z","sequence":17253,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A30] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:09.784Z","sequence":17254,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:09.784Z","sequence":17255,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:09.792Z","sequence":17256,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6408fc23-1d90-43d9-9398-885a2c3878d1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:11.6Z","sequence":17257,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191074]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"20aeb5f03355fd6f","parentId":"c6a1e39907541d1a","traceId":"00000000000000005ceaeffd9844a39a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:11.616Z","sequence":17258,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191074, resource-version: 705debe1-e6e3-45f7-8e83-f6c9d9d5ef95]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"20aeb5f03355fd6f","parentId":"c6a1e39907541d1a","traceId":"00000000000000005ceaeffd9844a39a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:11.623Z","sequence":17259,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191074, resource-version: 70fc6339-b85a-43e9-b001-58e53cae46d8]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"20aeb5f03355fd6f","parentId":"c6a1e39907541d1a","traceId":"00000000000000005ceaeffd9844a39a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:11.626Z","sequence":17260,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191074]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7b4281a404429d37","parentId":"c636f92e005f58c9","traceId":"00000000000000005ceaeffd9844a39a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:11.778Z","sequence":17261,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191074]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7b4281a404429d37","parentId":"c636f92e005f58c9","traceId":"00000000000000005ceaeffd9844a39a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:12.565Z","sequence":17262,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFFD57498E165C8]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"23f1f1457acd7b14","parentId":"c4318bce2bff8d54","traceId":"0000000000000000fe77faf005daf66c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:12.586Z","sequence":17263,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFFD57498E165C8, resource-version: c7a69db1-5f24-48d6-b474-820d6882f9e7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"23f1f1457acd7b14","parentId":"c4318bce2bff8d54","traceId":"0000000000000000fe77faf005daf66c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:12.594Z","sequence":17264,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFFD57498E165C8, resource-version: 9a89d295-90ce-4134-bd74-6a86384a367b]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"23f1f1457acd7b14","parentId":"c4318bce2bff8d54","traceId":"0000000000000000fe77faf005daf66c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:13.094Z","sequence":17265,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFFD57498E165C8]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f852a248cfcf3c1e","parentId":"2c14475983c57df5","traceId":"000000000000000042562f04e95d1748","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:13.114Z","sequence":17266,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFFD57498E165C8]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f852a248cfcf3c1e","parentId":"2c14475983c57df5","traceId":"000000000000000042562f04e95d1748","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:13.245Z","sequence":17267,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191074]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"997b7771ad48dd4d","parentId":"6b3cd70fc70ac035","traceId":"00000000000000001924349c89090a66","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:13.27Z","sequence":17268,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191074]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"997b7771ad48dd4d","parentId":"6b3cd70fc70ac035","traceId":"00000000000000001924349c89090a66","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:15.407Z","sequence":17269,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:15.407Z","sequence":17270,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BC0] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:15.413Z","sequence":17271,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:15.413Z","sequence":17272,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:15.42Z","sequence":17273,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-95362984-7df6-437a-ad22-9d44f629480d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:15.97Z","sequence":17274,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:15.97Z","sequence":17275,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BB613]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:15.976Z","sequence":17276,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2f776472-d8d2-4112-bf13-d8c64f8b2d82, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:16.687Z","sequence":17277,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:16.687Z","sequence":17278,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100021F] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:16.692Z","sequence":17279,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:0.4.1\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:16.692Z","sequence":17280,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:16.698Z","sequence":17281,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:16.698Z","sequence":17282,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100067D] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:16.699Z","sequence":17283,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-439e16ea-8e96-4404-a2c4-770457eb6ffc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:16.704Z","sequence":17284,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:16.704Z","sequence":17285,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:16.71Z","sequence":17286,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8759e7ee-f01e-4204-9802-7849eafaac42, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:17.963Z","sequence":17287,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:17.964Z","sequence":17288,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10009C3] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:17.989Z","sequence":17289,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:17.989Z","sequence":17290,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:17.993Z","sequence":17291,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3207954c-d557-4518-ab06-686317b445f0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:18.937Z","sequence":17292,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191075]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7b6f94a455c6b04a","parentId":"61ebff4a555c8edd","traceId":"0000000000000000a65ce1273b4adbab","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:18.955Z","sequence":17293,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191075, resource-version: e61fb3ff-9c5b-42ee-a230-66c4b5d1e028]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7b6f94a455c6b04a","parentId":"61ebff4a555c8edd","traceId":"0000000000000000a65ce1273b4adbab","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:18.961Z","sequence":17294,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191075, resource-version: e3c0aa3e-eb41-44c4-a8b1-9587bd8592db]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7b6f94a455c6b04a","parentId":"61ebff4a555c8edd","traceId":"0000000000000000a65ce1273b4adbab","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:18.964Z","sequence":17295,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191075]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e711ba215694060f","parentId":"b78bbde81f15f6e1","traceId":"0000000000000000a65ce1273b4adbab","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:19.095Z","sequence":17296,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191075]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e711ba215694060f","parentId":"b78bbde81f15f6e1","traceId":"0000000000000000a65ce1273b4adbab","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:19.656Z","sequence":17297,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:19.656Z","sequence":17298,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000687] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:19.663Z","sequence":17299,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:19.664Z","sequence":17300,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:19.67Z","sequence":17301,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-28aea8dd-3922-4a72-8359-67bb5460f223, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:19.865Z","sequence":17302,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF92004717B2540]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e2a11d77dee8bbd4","parentId":"e62ac53198441f6c","traceId":"0000000000000000af6a9c77343e738b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:19.888Z","sequence":17303,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF92004717B2540, resource-version: 5c470a20-b5d1-4eb2-ad4b-5a5ea5c4b93f]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e2a11d77dee8bbd4","parentId":"e62ac53198441f6c","traceId":"0000000000000000af6a9c77343e738b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:19.897Z","sequence":17304,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF92004717B2540, resource-version: 94aa2c1b-84e9-47fd-b7c5-7569970bd0c3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e2a11d77dee8bbd4","parentId":"e62ac53198441f6c","traceId":"0000000000000000af6a9c77343e738b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:21.027Z","sequence":17305,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:21.027Z","sequence":17306,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191075]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:21.038Z","sequence":17307,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-91a922d1-0133-4bb2-8d3c-bb37c82cfbec, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:21.158Z","sequence":17308,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:21.159Z","sequence":17309,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF92004717B2540] for gateway [gateway_integrationtest_network_191075]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:21.159Z","sequence":17310,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:21.159Z","sequence":17311,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191075]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:21.165Z","sequence":17312,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:21.165Z","sequence":17313,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:21.166Z","sequence":17314,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-60760369-4c27-4174-8031-b9e021348aa5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:21.47Z","sequence":17315,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-861e93fd-aad7-47c5-b2d1-a93f3aee7ed5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:21.598Z","sequence":17316,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"retrieving device [tenant: integrationtest, device-id: 0EF92004717B2540]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"962db705e005142d","parentId":"ef874e156583c0d1","traceId":"e86bee85d45ff8dfcdc7be15fa0c7617","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:22.202Z","sequence":17317,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:22.202Z","sequence":17318,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BD4] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:22.208Z","sequence":17319,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:22.208Z","sequence":17320,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:22.215Z","sequence":17321,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-92344549-27f2-417e-9421-754a316978f5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:25.179Z","sequence":17322,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:25.179Z","sequence":17323,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A38] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:25.19Z","sequence":17324,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:25.19Z","sequence":17325,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:25.197Z","sequence":17326,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8a28703f-db47-4628-90cf-a1f8edfb1856, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:31.944Z","sequence":17327,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF92004717B2540]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2a578599a00d1c4a","parentId":"c976c134a78c58c3","traceId":"00000000000000002846e6b9c77d9ae0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:31.959Z","sequence":17328,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:31.959Z","sequence":17329,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AD0] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:31.959Z","sequence":17330,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF92004717B2540]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2a578599a00d1c4a","parentId":"c976c134a78c58c3","traceId":"00000000000000002846e6b9c77d9ae0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:31.964Z","sequence":17331,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:31.965Z","sequence":17332,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:31.972Z","sequence":17333,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7e7aacf4-d7da-40fc-b533-bd2fceeaaf75, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:32.084Z","sequence":17334,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191075]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"578a1e6ad98bc20b","parentId":"fa395eca0a591ea7","traceId":"000000000000000012ce03c10ed4cd84","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:32.106Z","sequence":17335,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191075]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"578a1e6ad98bc20b","parentId":"fa395eca0a591ea7","traceId":"000000000000000012ce03c10ed4cd84","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:32.612Z","sequence":17336,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 8EC9FD8558BE]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7193a4b39bbc7fc8","parentId":"4caa94181aad9790","traceId":"000000000000000098b77f797057e195","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:32.631Z","sequence":17337,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 8EC9FD8558BE, resource-version: 1536ca3e-9ad9-4527-9c58-2200cc8993bd]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7193a4b39bbc7fc8","parentId":"4caa94181aad9790","traceId":"000000000000000098b77f797057e195","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:32.641Z","sequence":17338,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 8EC9FD8558BE, resource-version: 49f08468-dee6-4591-9428-babb46179d69]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7193a4b39bbc7fc8","parentId":"4caa94181aad9790","traceId":"000000000000000098b77f797057e195","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:32.644Z","sequence":17339,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 8EC9FD8558BE]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9a154ee0593b6b0e","parentId":"99c9764cd62916fd","traceId":"000000000000000098b77f797057e195","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:32.786Z","sequence":17340,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 8EC9FD8558BE]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9a154ee0593b6b0e","parentId":"99c9764cd62916fd","traceId":"000000000000000098b77f797057e195","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:33.224Z","sequence":17341,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF353D872BDC7C4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"422a2238a38b9c58","parentId":"ea1309718e38011e","traceId":"00000000000000003306a514d100a27a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:33.243Z","sequence":17342,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF353D872BDC7C4, resource-version: 88848b69-dd65-4893-b5ca-6b1d17b04905]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"422a2238a38b9c58","parentId":"ea1309718e38011e","traceId":"00000000000000003306a514d100a27a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:33.257Z","sequence":17343,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF353D872BDC7C4, resource-version: 03848bb4-3a08-43cf-8f25-955cc88f44d7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"422a2238a38b9c58","parentId":"ea1309718e38011e","traceId":"00000000000000003306a514d100a27a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:34.309Z","sequence":17344,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:34.309Z","sequence":17345,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-8EC9FD8558BE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:34.32Z","sequence":17346,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-8f6a4a8f-a1e4-48c7-9b4b-53f565d03b97, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:34.456Z","sequence":17347,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:34.456Z","sequence":17348,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 8EC9FD8558BE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:34.461Z","sequence":17349,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9e117594-3dd1-4c87-a28a-b5041f715192, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:34.467Z","sequence":17350,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:34.467Z","sequence":17351,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF353D872BDC7C4] for gateway [8EC9FD8558BE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:34.472Z","sequence":17352,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:34.472Z","sequence":17353,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:34.795Z","sequence":17354,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d75ef8d7-62cd-4221-9a92-3b47b4444f02, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:35.354Z","sequence":17355,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:35.354Z","sequence":17356,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BEF] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:35.361Z","sequence":17357,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:35.361Z","sequence":17358,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:35.368Z","sequence":17359,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9db07d13-793e-4a20-b921-40b74d078510, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:37.213Z","sequence":17360,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:37.213Z","sequence":17361,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AC3] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:37.22Z","sequence":17362,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:37.22Z","sequence":17363,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:37.226Z","sequence":17364,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c67eb3c2-e55a-478c-9d70-45fb6e5d5d98, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:39.839Z","sequence":17365,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/acta:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:39.839Z","sequence":17366,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: acta, device-id: 0008004AAAA3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:39.845Z","sequence":17367,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1ef5c95f-2df9-4c52-9615-479982de463b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:41.74Z","sequence":17368,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:41.74Z","sequence":17369,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: dow]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:41.749Z","sequence":17370,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-ea7c8379-f0bd-401e-b80a-f4a8223bdb76, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:41.751Z","sequence":17371,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/dow:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:41.751Z","sequence":17372,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: dow, type: hashed-password, auth-id: auth-gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:41.761Z","sequence":17373,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-ffaf5a3f-754f-4889-8e5c-44de1b53fb32, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:42.051Z","sequence":17374,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:42.051Z","sequence":17375,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 70B3D57BB100128C] for gateway [gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:42.052Z","sequence":17376,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:42.052Z","sequence":17377,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:42.057Z","sequence":17378,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b1d9074d-c9b9-470d-b1dd-da53a37c3645, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:42.058Z","sequence":17379,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:42.058Z","sequence":17380,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:42.061Z","sequence":17381,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-093dc95b-8866-4520-b20f-9ab2149911b5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:43.678Z","sequence":17382,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:43.678Z","sequence":17383,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AC1] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:43.691Z","sequence":17384,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:43.691Z","sequence":17385,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:43.698Z","sequence":17386,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a7832c3e-6194-49d0-a03b-782125b84c6b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:45.382Z","sequence":17387,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:45.382Z","sequence":17388,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 70B3D57BB1000196] for gateway [0008004BB84C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:45.388Z","sequence":17389,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:0.4.1\"\n },\n \"viaGroups\" : [ \"gateways_lanxess\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:45.388Z","sequence":17390,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_lanxess\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:45.393Z","sequence":17391,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f9182da7-12e8-4125-a01b-feeff93e10cd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:46.31Z","sequence":17392,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:46.31Z","sequence":17393,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 70B3D57BB1000196] for gateway [0008004BBD1B]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:46.317Z","sequence":17394,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:0.4.1\"\n },\n \"viaGroups\" : [ \"gateways_lanxess\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:46.317Z","sequence":17395,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_lanxess\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:46.32Z","sequence":17396,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8858b50f-d8ef-4887-9560-df328f854e2a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:46.571Z","sequence":17397,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:46.571Z","sequence":17398,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AD2] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:46.601Z","sequence":17399,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:46.601Z","sequence":17400,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:46.609Z","sequence":17401,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b605d7a0-2c96-4338-9751-31aa46928b53, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:47.094Z","sequence":17402,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF353D872BDC7C4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b29b2269a8aee827","parentId":"56c0fb47e16a5671","traceId":"000000000000000094ceda07226c362f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:47.132Z","sequence":17403,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF353D872BDC7C4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b29b2269a8aee827","parentId":"56c0fb47e16a5671","traceId":"000000000000000094ceda07226c362f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:48.041Z","sequence":17404,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 8EC9FD8558BE]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b48bf5cfa337eecd","parentId":"d6ef527f5625e5a1","traceId":"00000000000000005bf69985cb5f63b8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:48.074Z","sequence":17405,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 8EC9FD8558BE]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b48bf5cfa337eecd","parentId":"d6ef527f5625e5a1","traceId":"00000000000000005bf69985cb5f63b8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:51.473Z","sequence":17406,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 747A56A96529]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b71f997d61e074a1","parentId":"9f2a1c4077b252b9","traceId":"0000000000000000660e2d76b8275598","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:51.491Z","sequence":17407,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 747A56A96529, resource-version: 30de29e7-34e0-4baa-ba9b-2655a1d6c982]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b71f997d61e074a1","parentId":"9f2a1c4077b252b9","traceId":"0000000000000000660e2d76b8275598","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:51.498Z","sequence":17408,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 747A56A96529, resource-version: a9a7d831-f5b6-4fde-9022-563b21490bc1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b71f997d61e074a1","parentId":"9f2a1c4077b252b9","traceId":"0000000000000000660e2d76b8275598","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:51.51Z","sequence":17409,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 747A56A96529]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ce96e88949ea01f9","parentId":"824b6c5ed2eb715a","traceId":"0000000000000000660e2d76b8275598","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:51.715Z","sequence":17410,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 747A56A96529]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ce96e88949ea01f9","parentId":"824b6c5ed2eb715a","traceId":"0000000000000000660e2d76b8275598","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:52.317Z","sequence":17411,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF3DE011CC0B124]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8f608612adc25369","parentId":"e81db52f781623f8","traceId":"000000000000000008b7cab97ae43278","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:52.339Z","sequence":17412,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF3DE011CC0B124, resource-version: 5a5051b1-f18d-470f-aab3-01623e91c771]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8f608612adc25369","parentId":"e81db52f781623f8","traceId":"000000000000000008b7cab97ae43278","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:52.347Z","sequence":17413,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF3DE011CC0B124, resource-version: a646ec59-882f-4041-b2f4-faedc07f080e]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8f608612adc25369","parentId":"e81db52f781623f8","traceId":"000000000000000008b7cab97ae43278","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:53.433Z","sequence":17414,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF3DE011CC0B124]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8710e79f6da2526f","parentId":"01c72bc2a1f783b4","traceId":"00000000000000007385fd0455c7dc79","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:53.453Z","sequence":17415,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF3DE011CC0B124]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8710e79f6da2526f","parentId":"01c72bc2a1f783b4","traceId":"00000000000000007385fd0455c7dc79","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:54.078Z","sequence":17416,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 747A56A96529]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"aa5b982db98cdc3a","parentId":"5f678a2ba3e1bf03","traceId":"0000000000000000bf6a151f8cfd8678","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:48:54.148Z","sequence":17417,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 747A56A96529]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"aa5b982db98cdc3a","parentId":"5f678a2ba3e1bf03","traceId":"0000000000000000bf6a151f8cfd8678","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:00.397Z","sequence":17418,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:00.397Z","sequence":17419,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:00.403Z","sequence":17420,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b329d49c-ef52-4d8d-a703-1781834c90f7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:01.199Z","sequence":17421,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 2A19F93B1B77]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c28028c2c8ef2326","parentId":"ce25719b42de1924","traceId":"0000000000000000f7abf2f2d8a3a93a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:01.222Z","sequence":17422,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 2A19F93B1B77, resource-version: 939afef3-c873-4225-a23a-1ac85057cfd2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c28028c2c8ef2326","parentId":"ce25719b42de1924","traceId":"0000000000000000f7abf2f2d8a3a93a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:01.229Z","sequence":17423,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 2A19F93B1B77, resource-version: 65ad7a95-9944-43a7-8371-bf2a00032734]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c28028c2c8ef2326","parentId":"ce25719b42de1924","traceId":"0000000000000000f7abf2f2d8a3a93a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:01.233Z","sequence":17424,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 2A19F93B1B77]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"71fb180b19e1e41e","parentId":"03d47a925779d831","traceId":"0000000000000000f7abf2f2d8a3a93a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:01.394Z","sequence":17425,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 2A19F93B1B77]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"71fb180b19e1e41e","parentId":"03d47a925779d831","traceId":"0000000000000000f7abf2f2d8a3a93a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:02.363Z","sequence":17426,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF6EF65501E822F]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"45d31fc6426f31a1","parentId":"3a5790bfad555621","traceId":"0000000000000000286b75633752135e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:02.38Z","sequence":17427,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF6EF65501E822F, resource-version: 4f7b6ae2-d29a-400a-9a0a-5014613cde7c]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"45d31fc6426f31a1","parentId":"3a5790bfad555621","traceId":"0000000000000000286b75633752135e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:02.385Z","sequence":17428,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF6EF65501E822F, resource-version: 9056de99-44f3-40d6-b82c-e1455f1cd42e]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"45d31fc6426f31a1","parentId":"3a5790bfad555621","traceId":"0000000000000000286b75633752135e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:03.435Z","sequence":17429,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:03.435Z","sequence":17430,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-2A19F93B1B77]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:03.45Z","sequence":17431,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-5e1574a0-83a9-4e8c-8f71-fdd03990d326, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:03.593Z","sequence":17432,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:03.593Z","sequence":17433,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 2A19F93B1B77]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:03.597Z","sequence":17434,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:03.597Z","sequence":17435,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000688] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:03.613Z","sequence":17436,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0ab9a266-e0c2-4bea-bbbc-8a85a6b9ff81, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:03.614Z","sequence":17437,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:03.614Z","sequence":17438,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:03.618Z","sequence":17439,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:03.618Z","sequence":17440,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF6EF65501E822F] for gateway [2A19F93B1B77]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:03.622Z","sequence":17441,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-bf1a179e-8c1c-47bd-8d12-895fcde7849b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:03.624Z","sequence":17442,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.5.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:03.624Z","sequence":17443,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:04.121Z","sequence":17444,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-cb9b857a-bd82-430a-bb4b-dfe973b2d912, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:04.44Z","sequence":17445,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:04.44Z","sequence":17446,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-2A19F93B1B77]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:04.474Z","sequence":17447,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-bc59164f-0b66-4887-af2d-0c07eeb0c33d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:08.846Z","sequence":17448,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:08.846Z","sequence":17449,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A40] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:08.852Z","sequence":17450,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:08.852Z","sequence":17451,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:08.858Z","sequence":17452,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1359c52c-5da0-4a91-9ad3-7b419eb184ab, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:09.618Z","sequence":17453,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/repsol:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:09.618Z","sequence":17454,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: repsol, device-id: 0008004A37FF]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:09.625Z","sequence":17455,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c28a91ff-726f-40f8-ae2a-cdc4314202c0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:09.628Z","sequence":17456,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:09.628Z","sequence":17457,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: repsol]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:09.643Z","sequence":17458,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-a20ec176-c8bf-4de7-b297-aa9818e95132, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:10.561Z","sequence":17459,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:10.561Z","sequence":17460,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AF2] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:10.566Z","sequence":17461,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:10.566Z","sequence":17462,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:10.572Z","sequence":17463,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-bbadb1be-ff96-4add-b5e3-8aba69d93503, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:11.075Z","sequence":17464,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:11.075Z","sequence":17465,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-00GWALP120IT]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:11.094Z","sequence":17466,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-217f876c-4b7d-4333-af50-77ffbf280f63, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:11.217Z","sequence":17467,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:11.217Z","sequence":17468,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 00GWALP120IT]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:11.232Z","sequence":17469,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9d034e16-aa3d-4834-a75c-bd45c82ca30e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:11.24Z","sequence":17470,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:11.241Z","sequence":17471,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 4A38383700300023] for gateway [00GWALP120IT]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:11.254Z","sequence":17472,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:0.3.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:11.254Z","sequence":17473,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7\",\n \"upstream-message-mapper\" : \"upstream_dash7\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:11.871Z","sequence":17474,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d3d848cf-d4ba-44b6-99b9-8d8fc97348ed, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:12.693Z","sequence":17475,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF6EF65501E822F]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"54e99f2c456d2533","parentId":"187b0450da2085be","traceId":"00000000000000001dbe5ab20eca72e4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:12.728Z","sequence":17476,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF6EF65501E822F]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"54e99f2c456d2533","parentId":"187b0450da2085be","traceId":"00000000000000001dbe5ab20eca72e4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:13.047Z","sequence":17477,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 2A19F93B1B77]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b669ba6487aaade6","parentId":"cee163cd769d6a6d","traceId":"0000000000000000c75949eae6896780","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:13.067Z","sequence":17478,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 2A19F93B1B77]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b669ba6487aaade6","parentId":"cee163cd769d6a6d","traceId":"0000000000000000c75949eae6896780","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:14.665Z","sequence":17479,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:14.665Z","sequence":17480,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AD1] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:14.712Z","sequence":17481,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:14.712Z","sequence":17482,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:14.729Z","sequence":17483,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-cd8c2593-7587-4682-8c2d-d19a74049358, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:16.949Z","sequence":17484,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191079]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1056204d5e8106d6","parentId":"5189aab23d139b5f","traceId":"0000000000000000e35b08ada6d731b6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:16.969Z","sequence":17485,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191079, resource-version: 2fec0eaa-662a-458b-9dff-d976203d93f3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1056204d5e8106d6","parentId":"5189aab23d139b5f","traceId":"0000000000000000e35b08ada6d731b6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:16.977Z","sequence":17486,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191079, resource-version: 113d6b2e-5e91-42cd-ab9c-f8743320638f]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1056204d5e8106d6","parentId":"5189aab23d139b5f","traceId":"0000000000000000e35b08ada6d731b6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:16.981Z","sequence":17487,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191079]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b4d8a918f7a4a665","parentId":"f0dee0718ad60d19","traceId":"0000000000000000e35b08ada6d731b6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:17.145Z","sequence":17488,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191079]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b4d8a918f7a4a665","parentId":"f0dee0718ad60d19","traceId":"0000000000000000e35b08ada6d731b6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:18.093Z","sequence":17489,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF83EE63A34348F]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e797a8c99bcd6609","parentId":"6e172cfe93dae915","traceId":"00000000000000000dda05c5e79f52d5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:18.112Z","sequence":17490,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF83EE63A34348F, resource-version: 9a075f7b-1db5-4c75-9ae9-a5afbbdd8191]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e797a8c99bcd6609","parentId":"6e172cfe93dae915","traceId":"00000000000000000dda05c5e79f52d5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:18.119Z","sequence":17491,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF83EE63A34348F, resource-version: 7877b5de-80e0-4270-9f79-a4347d86871b]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e797a8c99bcd6609","parentId":"6e172cfe93dae915","traceId":"00000000000000000dda05c5e79f52d5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:19.219Z","sequence":17492,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:19.219Z","sequence":17493,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:19.223Z","sequence":17494,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-47b32787-6c23-4cd0-8311-d4700a417e80, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:19.225Z","sequence":17495,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:19.225Z","sequence":17496,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191079]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:19.244Z","sequence":17497,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-8c950cde-55e1-4f68-a448-37d9e2d2454f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:19.367Z","sequence":17498,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:19.367Z","sequence":17499,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF83EE63A34348F] for gateway [gateway_integrationtest_network_191079]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:19.368Z","sequence":17500,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:19.368Z","sequence":17501,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191079]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:19.384Z","sequence":17502,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.7.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:19.384Z","sequence":17503,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:19.385Z","sequence":17504,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d6848b07-2c37-4d61-bccb-6ec2441c9399, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:19.775Z","sequence":17505,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9c443ec0-b565-4891-a227-3b1021329422, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:27.805Z","sequence":17506,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: D6F41DB07E2E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4801dfd293a142de","parentId":"5dcafe27d8b59e93","traceId":"00000000000000001542bc56f7b5f077","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:27.824Z","sequence":17507,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: D6F41DB07E2E, resource-version: 56de40b5-589b-4d24-9fb8-132c3ffd8eb2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4801dfd293a142de","parentId":"5dcafe27d8b59e93","traceId":"00000000000000001542bc56f7b5f077","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:27.83Z","sequence":17508,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: D6F41DB07E2E, resource-version: 266a4f3f-0e8c-4559-895c-c9dca2160571]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4801dfd293a142de","parentId":"5dcafe27d8b59e93","traceId":"00000000000000001542bc56f7b5f077","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:27.833Z","sequence":17509,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: D6F41DB07E2E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4f2cff3eb4886c91","parentId":"726a10bee96c916a","traceId":"00000000000000001542bc56f7b5f077","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:27.952Z","sequence":17510,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: D6F41DB07E2E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4f2cff3eb4886c91","parentId":"726a10bee96c916a","traceId":"00000000000000001542bc56f7b5f077","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:28.409Z","sequence":17511,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF854055B30C18E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"29867a8ca3b2aced","parentId":"3f5b89b8ab040279","traceId":"00000000000000002c8028b08ed59a1b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:28.426Z","sequence":17512,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF854055B30C18E, resource-version: 4e84404b-618e-4313-a894-28030b49812a]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"29867a8ca3b2aced","parentId":"3f5b89b8ab040279","traceId":"00000000000000002c8028b08ed59a1b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:28.433Z","sequence":17513,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF854055B30C18E, resource-version: 16fe3a82-0784-41ec-949d-39b59e8ae07f]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"29867a8ca3b2aced","parentId":"3f5b89b8ab040279","traceId":"00000000000000002c8028b08ed59a1b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:29.328Z","sequence":17514,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF83EE63A34348F]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d6cb01dde9d6f173","parentId":"9004dcf7a7d58362","traceId":"0000000000000000d8e05e943c564893","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:29.349Z","sequence":17515,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF83EE63A34348F]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d6cb01dde9d6f173","parentId":"9004dcf7a7d58362","traceId":"0000000000000000d8e05e943c564893","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:29.47Z","sequence":17516,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191079]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b079edd4e33b8f0f","parentId":"481d91d833dd0374","traceId":"0000000000000000ef9f4a48234e84b1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:29.479Z","sequence":17517,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:29.479Z","sequence":17518,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:29.482Z","sequence":17519,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-659b157b-60fd-47f8-8515-70b12e450aa5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:29.484Z","sequence":17520,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:29.484Z","sequence":17521,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-D6F41DB07E2E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:29.493Z","sequence":17522,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-5be09a82-ef50-42b1-97a1-77cd90173a40, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:29.493Z","sequence":17523,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191079]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b079edd4e33b8f0f","parentId":"481d91d833dd0374","traceId":"0000000000000000ef9f4a48234e84b1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:29.619Z","sequence":17524,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:29.619Z","sequence":17525,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: D6F41DB07E2E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:29.623Z","sequence":17526,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c2af2e9b-16fc-474b-91dd-518c2d51fb69, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:29.629Z","sequence":17527,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:29.629Z","sequence":17528,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF854055B30C18E] for gateway [D6F41DB07E2E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:29.649Z","sequence":17529,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.5.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:29.649Z","sequence":17530,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:29.871Z","sequence":17531,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-23bec5a0-44d6-424a-b077-8afcab9e561d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:29.906Z","sequence":17532,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: B24462F30A81]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"652832f51f03d666","parentId":"8c03e76581864c64","traceId":"00000000000000004b2976b66fd796c7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:29.923Z","sequence":17533,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: B24462F30A81, resource-version: 08c0681c-9d73-4d49-9881-4f5054774aa8]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"652832f51f03d666","parentId":"8c03e76581864c64","traceId":"00000000000000004b2976b66fd796c7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:29.931Z","sequence":17534,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: B24462F30A81, resource-version: 184a2641-b748-4efb-ad8f-ca9b71e25ef6]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"652832f51f03d666","parentId":"8c03e76581864c64","traceId":"00000000000000004b2976b66fd796c7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:29.935Z","sequence":17535,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: B24462F30A81]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8943b744aa259b0b","parentId":"3f331a3aa2c785c0","traceId":"00000000000000004b2976b66fd796c7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:30.073Z","sequence":17536,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: B24462F30A81]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8943b744aa259b0b","parentId":"3f331a3aa2c785c0","traceId":"00000000000000004b2976b66fd796c7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:30.554Z","sequence":17537,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF86F7C1AB20832]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c4dcfceb2111144b","parentId":"58f6df36bb4462c5","traceId":"00000000000000005a98d266f8cff0da","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:30.571Z","sequence":17538,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF86F7C1AB20832, resource-version: 42c86bf8-131b-4d69-a109-00cb69b88759]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c4dcfceb2111144b","parentId":"58f6df36bb4462c5","traceId":"00000000000000005a98d266f8cff0da","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:30.577Z","sequence":17539,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF86F7C1AB20832, resource-version: 372aadc7-3bf3-4b21-a804-222c3a17af93]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c4dcfceb2111144b","parentId":"58f6df36bb4462c5","traceId":"00000000000000005a98d266f8cff0da","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:31.522Z","sequence":17540,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:31.522Z","sequence":17541,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001ACF] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:31.528Z","sequence":17542,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:31.528Z","sequence":17543,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:31.536Z","sequence":17544,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e6893307-ec58-4abd-aaf6-1f24b0fe7ffa, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:31.631Z","sequence":17545,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:31.631Z","sequence":17546,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-B24462F30A81]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:31.641Z","sequence":17547,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-bbf6b8f6-971b-4e2a-b99f-0de2e8c08f5a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:31.763Z","sequence":17548,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:31.763Z","sequence":17549,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: B24462F30A81]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:31.77Z","sequence":17550,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2497f376-74e8-4c49-88e1-cba9dad95994, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:31.774Z","sequence":17551,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:31.774Z","sequence":17552,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF86F7C1AB20832] for gateway [B24462F30A81]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:31.783Z","sequence":17553,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:31.783Z","sequence":17554,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:31.958Z","sequence":17555,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-60a129a2-d38f-44b5-abfa-17172e88c0c3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:31.958Z","sequence":17556,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:31.958Z","sequence":17557,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 0008004B51D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:31.965Z","sequence":17558,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f9512768-173e-4ce3-9e5a-e550dd0000af, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:31.968Z","sequence":17559,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:31.968Z","sequence":17560,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: dow]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:31.971Z","sequence":17561,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-6e87540d-85e9-49d1-9a18-9a7a06a4c086, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:33.282Z","sequence":17562,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:33.283Z","sequence":17563,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10002D7] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:33.297Z","sequence":17564,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:33.298Z","sequence":17565,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:33.306Z","sequence":17566,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c11a96eb-f591-4c82-8c4e-2d6a2998ca57, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:33.487Z","sequence":17567,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:33.487Z","sequence":17568,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C21] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:33.492Z","sequence":17569,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:33.492Z","sequence":17570,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:33.498Z","sequence":17571,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-204a5821-e5e3-4f1a-8da3-fb746a605969, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:35.024Z","sequence":17572,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:35.024Z","sequence":17573,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000508] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:35.029Z","sequence":17574,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:35.029Z","sequence":17575,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:35.035Z","sequence":17576,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-907ac6a7-e6fd-42c3-9673-78211c0f1b6b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:35.371Z","sequence":17577,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:35.371Z","sequence":17578,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001ACE] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:35.377Z","sequence":17579,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:35.377Z","sequence":17580,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:35.383Z","sequence":17581,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-267cdb70-5953-44c9-b1f4-1688aeba3905, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:40.096Z","sequence":17582,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF86F7C1AB20832]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7e4c375ceb35f7c6","parentId":"ea07cee266964845","traceId":"00000000000000009a8722c2a321da50","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:40.115Z","sequence":17583,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF86F7C1AB20832]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7e4c375ceb35f7c6","parentId":"ea07cee266964845","traceId":"00000000000000009a8722c2a321da50","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:40.31Z","sequence":17584,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:40.31Z","sequence":17585,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C43] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:40.316Z","sequence":17586,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:40.316Z","sequence":17587,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:40.322Z","sequence":17588,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4045d331-de17-43b4-896a-f8025685edeb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:40.444Z","sequence":17589,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: B24462F30A81]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1c56da62f51e34e3","parentId":"dd8894ebe6ec216c","traceId":"0000000000000000ad387972d549e06e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:40.459Z","sequence":17590,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: B24462F30A81]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1c56da62f51e34e3","parentId":"dd8894ebe6ec216c","traceId":"0000000000000000ad387972d549e06e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:40.778Z","sequence":17591,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191082]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"dcf4be39cd022347","parentId":"c6c9795346372582","traceId":"00000000000000007464849282f74021","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:40.798Z","sequence":17592,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191082, resource-version: 5f11513f-803e-4a9a-9273-173c5f358797]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"dcf4be39cd022347","parentId":"c6c9795346372582","traceId":"00000000000000007464849282f74021","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:40.805Z","sequence":17593,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191082, resource-version: 57c8bb83-8431-4cd4-bff1-b9c838843ff3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"dcf4be39cd022347","parentId":"c6c9795346372582","traceId":"00000000000000007464849282f74021","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:40.808Z","sequence":17594,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191082]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1729fbf21811ffc5","parentId":"a39f77a3cdf44dd0","traceId":"00000000000000007464849282f74021","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:40.947Z","sequence":17595,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191082]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1729fbf21811ffc5","parentId":"a39f77a3cdf44dd0","traceId":"00000000000000007464849282f74021","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:41.463Z","sequence":17596,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF89E11B8A61D3D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ee47da633d98663b","parentId":"612a9d33761699db","traceId":"00000000000000001cd35ea4e1b3332f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:41.492Z","sequence":17597,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF89E11B8A61D3D, resource-version: 62fa3054-d684-4c4e-b812-ddf9029fd86b]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ee47da633d98663b","parentId":"612a9d33761699db","traceId":"00000000000000001cd35ea4e1b3332f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:41.504Z","sequence":17598,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF89E11B8A61D3D, resource-version: 5499cd3d-c685-458a-9fe4-524ba6c11b19]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ee47da633d98663b","parentId":"612a9d33761699db","traceId":"00000000000000001cd35ea4e1b3332f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:42.558Z","sequence":17599,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:42.558Z","sequence":17600,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191082]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:42.569Z","sequence":17601,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-5dbb5346-acdf-43ce-b921-3bdcd71a84d6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:42.688Z","sequence":17602,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:42.688Z","sequence":17603,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF89E11B8A61D3D] for gateway [gateway_integrationtest_network_191082]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:42.689Z","sequence":17604,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:42.689Z","sequence":17605,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191082]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:42.694Z","sequence":17606,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:42.694Z","sequence":17607,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:42.694Z","sequence":17608,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0ae74410-a2c1-487d-8c0d-595a5a679ce4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:42.856Z","sequence":17609,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e7416fb8-8827-480a-b1a8-49915ba31b05, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:44.197Z","sequence":17610,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF854055B30C18E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2b2e2fb8915cf1be","parentId":"cf2470c5f91f369d","traceId":"000000000000000059909f2a7b66e50d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:44.22Z","sequence":17611,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF854055B30C18E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2b2e2fb8915cf1be","parentId":"cf2470c5f91f369d","traceId":"000000000000000059909f2a7b66e50d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:44.713Z","sequence":17612,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: D6F41DB07E2E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"88a8866b6632c146","parentId":"cdc54372809dd7e6","traceId":"0000000000000000293d9549d658e989","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:44.733Z","sequence":17613,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: D6F41DB07E2E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"88a8866b6632c146","parentId":"cdc54372809dd7e6","traceId":"0000000000000000293d9549d658e989","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:45.657Z","sequence":17614,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:45.657Z","sequence":17615,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100069F] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:45.68Z","sequence":17616,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:45.68Z","sequence":17617,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:45.693Z","sequence":17618,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e88e8372-8dd7-464f-b691-9d6e1ff34a00, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:47.901Z","sequence":17619,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:47.901Z","sequence":17620,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006A9] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:47.919Z","sequence":17621,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:47.919Z","sequence":17622,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:47.926Z","sequence":17623,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2287585c-5107-4e4e-b382-1c3bc42f15c3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:51.534Z","sequence":17624,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:51.535Z","sequence":17625,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001ACC] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:51.541Z","sequence":17626,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:51.541Z","sequence":17627,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:51.547Z","sequence":17628,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ac9bca87-c938-47a3-bb2e-44907c841833, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:52.325Z","sequence":17629,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:52.325Z","sequence":17630,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A2E] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:52.331Z","sequence":17631,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:52.332Z","sequence":17632,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:52.343Z","sequence":17633,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ac685473-cbec-48a7-9ea8-f727d869a742, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:54.315Z","sequence":17634,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:54.315Z","sequence":17635,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006C1] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:54.346Z","sequence":17636,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:54.347Z","sequence":17637,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:54.372Z","sequence":17638,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-521d62ec-a009-4937-bec2-22234f20f437, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:55.467Z","sequence":17639,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF89E11B8A61D3D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c0090de85fd4c596","parentId":"44c02f53a088e95e","traceId":"0000000000000000f7d33271ce3ad0e4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:55.513Z","sequence":17640,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF89E11B8A61D3D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c0090de85fd4c596","parentId":"44c02f53a088e95e","traceId":"0000000000000000f7d33271ce3ad0e4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:56.055Z","sequence":17641,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191082]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"99c58244db40d018","parentId":"36ddd864e87b26a4","traceId":"000000000000000072e0b5ca0ab4cbd0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:56.075Z","sequence":17642,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191082]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"99c58244db40d018","parentId":"36ddd864e87b26a4","traceId":"000000000000000072e0b5ca0ab4cbd0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:57.127Z","sequence":17643,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:57.128Z","sequence":17644,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10013E2] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:57.14Z","sequence":17645,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:57.14Z","sequence":17646,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:57.146Z","sequence":17647,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-59c37c45-c94e-4b8a-9a3d-377bef59269f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:58.299Z","sequence":17648,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:58.3Z","sequence":17649,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000874] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:58.307Z","sequence":17650,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:58.307Z","sequence":17651,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:58.311Z","sequence":17652,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5e3ba234-1979-4041-8d2b-aa64f5575eb9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:59.091Z","sequence":17653,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:59.092Z","sequence":17654,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000F84] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:59.108Z","sequence":17655,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:59.109Z","sequence":17656,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:49:59.115Z","sequence":17657,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-194e4184-5062-4cde-9c72-8bc8b264344d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:00.506Z","sequence":17658,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191083]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a8bbeab783c7b31e","parentId":"8576a1e5ed7e7f3c","traceId":"0000000000000000aa995a54b95c5ebd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:00.547Z","sequence":17659,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191083, resource-version: 7dae5725-02df-4487-936e-5f5557bc6a0b]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a8bbeab783c7b31e","parentId":"8576a1e5ed7e7f3c","traceId":"0000000000000000aa995a54b95c5ebd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:00.555Z","sequence":17660,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191083, resource-version: 189e369b-4a27-4558-ac95-f1a1041787f6]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a8bbeab783c7b31e","parentId":"8576a1e5ed7e7f3c","traceId":"0000000000000000aa995a54b95c5ebd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:00.56Z","sequence":17661,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191083]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2a742dc8552fcddf","parentId":"98f7792e61e5271d","traceId":"0000000000000000aa995a54b95c5ebd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:00.645Z","sequence":17662,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:00.645Z","sequence":17663,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000ADE] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:00.665Z","sequence":17664,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:00.665Z","sequence":17665,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:00.681Z","sequence":17666,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-cbca49d0-5a49-48f0-8724-c804775d345e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:00.766Z","sequence":17667,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191083]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2a742dc8552fcddf","parentId":"98f7792e61e5271d","traceId":"0000000000000000aa995a54b95c5ebd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:01.469Z","sequence":17668,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191084]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"104c3d7ceed97b0d","parentId":"59699157cad1a69a","traceId":"00000000000000006296c33f8808c1a1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:01.489Z","sequence":17669,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191084, resource-version: f15cd7ec-40dd-4212-af33-f75e2425ec5c]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"104c3d7ceed97b0d","parentId":"59699157cad1a69a","traceId":"00000000000000006296c33f8808c1a1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:01.495Z","sequence":17670,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191084, resource-version: c10417ee-6ca8-4ad9-8c8e-34aa5bbf3b1c]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"104c3d7ceed97b0d","parentId":"59699157cad1a69a","traceId":"00000000000000006296c33f8808c1a1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:01.498Z","sequence":17671,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191084]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0019e21ad0350306","parentId":"8e21f34a18c586ba","traceId":"00000000000000006296c33f8808c1a1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:01.66Z","sequence":17672,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191084]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0019e21ad0350306","parentId":"8e21f34a18c586ba","traceId":"00000000000000006296c33f8808c1a1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:01.884Z","sequence":17673,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:01.885Z","sequence":17674,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000524] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:01.894Z","sequence":17675,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:01.894Z","sequence":17676,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:01.901Z","sequence":17677,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9aa0f415-7c4c-44d9-8464-bce430920ac9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:02.199Z","sequence":17678,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFBF93A837B0CE8]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b80720bc1fb0a8e7","parentId":"174ae40fb335240e","traceId":"0000000000000000acb1e6a28dd6192c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:02.22Z","sequence":17679,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFBF93A837B0CE8, resource-version: bf973ebd-9627-4b76-8c8b-399a5175274e]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b80720bc1fb0a8e7","parentId":"174ae40fb335240e","traceId":"0000000000000000acb1e6a28dd6192c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:02.228Z","sequence":17680,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFBF93A837B0CE8, resource-version: 075733e6-65c1-445f-88a2-fdf0b9c6e65e]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b80720bc1fb0a8e7","parentId":"174ae40fb335240e","traceId":"0000000000000000acb1e6a28dd6192c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:02.903Z","sequence":17681,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF4ABBE69A97321]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"052a79aeee6ce919","parentId":"3741f6a9917b9f35","traceId":"00000000000000001fa8b09f63c2f160","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:02.921Z","sequence":17682,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF4ABBE69A97321, resource-version: 25286607-f1a4-41a7-a6f6-4c846aa97056]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"052a79aeee6ce919","parentId":"3741f6a9917b9f35","traceId":"00000000000000001fa8b09f63c2f160","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:02.928Z","sequence":17683,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF4ABBE69A97321, resource-version: a21b115f-4545-490d-9426-2b16607f7825]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"052a79aeee6ce919","parentId":"3741f6a9917b9f35","traceId":"00000000000000001fa8b09f63c2f160","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:03.34Z","sequence":17684,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:03.34Z","sequence":17685,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191083]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:03.394Z","sequence":17686,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-6759b06d-ef12-41df-8e60-216592be0bcf, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:03.501Z","sequence":17687,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF4ABBE69A97321]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8b171cecc695f627","parentId":"4f5a10ee07f102bb","traceId":"00000000000000001ba01f2d29c6c48e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:03.541Z","sequence":17688,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF4ABBE69A97321]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8b171cecc695f627","parentId":"4f5a10ee07f102bb","traceId":"00000000000000001ba01f2d29c6c48e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:03.587Z","sequence":17689,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:03.587Z","sequence":17690,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFBF93A837B0CE8] for gateway [gateway_integrationtest_network_191083]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:03.588Z","sequence":17691,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:03.588Z","sequence":17692,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191083]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:03.595Z","sequence":17693,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:connect:0.1.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:03.595Z","sequence":17694,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:03.604Z","sequence":17695,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:03.605Z","sequence":17696,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFBF93A837B0CE8] for gateway [gateway_integrationtest_network_191083]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:03.605Z","sequence":17697,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:03.605Z","sequence":17698,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191083]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:03.609Z","sequence":17699,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ee84eed2-2386-444e-8008-964c87664cd6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:03.621Z","sequence":17700,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:connect:0.1.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:03.621Z","sequence":17701,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:03.622Z","sequence":17702,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-28aab42a-98e4-4803-82dd-c9c0f09ab852, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:03.932Z","sequence":17703,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191084]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9471867fba773075","parentId":"891a149f7557b9a2","traceId":"0000000000000000b2a56ed822ab9725","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:03.952Z","sequence":17704,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191084]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9471867fba773075","parentId":"891a149f7557b9a2","traceId":"0000000000000000b2a56ed822ab9725","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:04.018Z","sequence":17705,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0c6fc563-d316-4a24-841f-1587644743e5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:04.405Z","sequence":17706,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-567b6963-9d52-4dae-b652-c032b181a826, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:04.553Z","sequence":17707,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191085]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ba11cd366b4f69a3","parentId":"3da7f5f0a8944eb0","traceId":"00000000000000001f1b3e28fa146f99","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:04.625Z","sequence":17708,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191085, resource-version: 41b0e4b7-ed3e-4289-b08f-c7cf9bfa73cf]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ba11cd366b4f69a3","parentId":"3da7f5f0a8944eb0","traceId":"00000000000000001f1b3e28fa146f99","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:04.638Z","sequence":17709,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191085, resource-version: e5f76503-9e28-401c-b9f0-cdc2f2d641df]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ba11cd366b4f69a3","parentId":"3da7f5f0a8944eb0","traceId":"00000000000000001f1b3e28fa146f99","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:04.645Z","sequence":17710,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191085]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"29c6f848d811f9a7","parentId":"dfa32ac395eb0799","traceId":"00000000000000001f1b3e28fa146f99","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:04.901Z","sequence":17711,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191085]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"29c6f848d811f9a7","parentId":"dfa32ac395eb0799","traceId":"00000000000000001f1b3e28fa146f99","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:05.377Z","sequence":17712,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 12288963D8E3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7c6e16d0b4fbb113","parentId":"03a41d4356263b0c","traceId":"000000000000000058867bd6a413c20d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:05.393Z","sequence":17713,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 12288963D8E3, resource-version: 47c4407f-6456-4134-b3f8-4ee19e8095dc]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7c6e16d0b4fbb113","parentId":"03a41d4356263b0c","traceId":"000000000000000058867bd6a413c20d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:05.4Z","sequence":17714,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 12288963D8E3, resource-version: 03b57ed5-8dee-4bf1-867c-e38bec5ed18f]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7c6e16d0b4fbb113","parentId":"03a41d4356263b0c","traceId":"000000000000000058867bd6a413c20d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:05.404Z","sequence":17715,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 12288963D8E3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"06f2adc3a6e66567","parentId":"2fe99675e2305d72","traceId":"000000000000000058867bd6a413c20d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:05.588Z","sequence":17716,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 12288963D8E3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"06f2adc3a6e66567","parentId":"2fe99675e2305d72","traceId":"000000000000000058867bd6a413c20d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:05.771Z","sequence":17717,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:05.771Z","sequence":17718,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AD7] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:05.777Z","sequence":17719,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:05.777Z","sequence":17720,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:05.778Z","sequence":17721,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:05.778Z","sequence":17722,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100052A] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:05.784Z","sequence":17723,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-516c2426-9970-45bc-84bf-a583cdf38f59, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:05.786Z","sequence":17724,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:05.786Z","sequence":17725,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:05.792Z","sequence":17726,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a24eb8d1-3fe9-4049-85f3-9e33eccd2b25, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:06.193Z","sequence":17727,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF259A71EF57C17]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4d9a239b36f8bc4f","parentId":"814af99853865d26","traceId":"000000000000000064bcbfc977f2ca55","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:06.221Z","sequence":17728,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF259A71EF57C17, resource-version: 9f48617a-0cbc-4e25-96e2-bda8484c913a]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4d9a239b36f8bc4f","parentId":"814af99853865d26","traceId":"000000000000000064bcbfc977f2ca55","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:06.227Z","sequence":17729,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF259A71EF57C17, resource-version: 6346fc42-bccf-4114-8226-a3a65e12465e]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4d9a239b36f8bc4f","parentId":"814af99853865d26","traceId":"000000000000000064bcbfc977f2ca55","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:06.512Z","sequence":17730,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFAD0B251B9547C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c6052309ae806fd8","parentId":"5f885a60c2aca955","traceId":"000000000000000087fc872bf1e7e09a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:06.557Z","sequence":17731,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFAD0B251B9547C, resource-version: 123d08bd-1fa9-4aed-a0d3-eb03c3d8aeb1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c6052309ae806fd8","parentId":"5f885a60c2aca955","traceId":"000000000000000087fc872bf1e7e09a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:06.582Z","sequence":17732,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFAD0B251B9547C, resource-version: d830e832-236e-4d3a-998c-72eb28778658]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c6052309ae806fd8","parentId":"5f885a60c2aca955","traceId":"000000000000000087fc872bf1e7e09a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:07.334Z","sequence":17733,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:07.334Z","sequence":17734,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191085]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:07.393Z","sequence":17735,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-f2e6b265-b208-434c-87a0-12338f548ca2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:07.477Z","sequence":17736,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/conditionall:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:07.479Z","sequence":17737,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: conditionall, device-id: 0008004B512D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:07.496Z","sequence":17738,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d6871daa-d4a4-4de8-ab79-ae80b937d737, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:07.501Z","sequence":17739,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:07.501Z","sequence":17740,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: conditionall]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:07.533Z","sequence":17741,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-68317cea-9b6b-49c5-b995-b1c089666f1e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:07.605Z","sequence":17742,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:07.606Z","sequence":17743,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF259A71EF57C17] for gateway [gateway_integrationtest_network_191085]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:07.607Z","sequence":17744,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:07.607Z","sequence":17745,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191085]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:07.616Z","sequence":17746,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.3.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:07.617Z","sequence":17747,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:07.629Z","sequence":17748,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e29f480b-e6c4-49b7-a1d8-28775706f193, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:07.694Z","sequence":17749,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:07.694Z","sequence":17750,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10007CD] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:08.17Z","sequence":17751,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-af219f0b-22fa-4aa6-a14f-1a622ca13ec5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:08.171Z","sequence":17752,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:08.172Z","sequence":17753,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-12288963D8E3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:08.177Z","sequence":17754,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:08.178Z","sequence":17755,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:08.182Z","sequence":17756,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e3e7b8b8-c1f0-446d-8ca6-e59439858971, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:08.189Z","sequence":17757,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-2abac506-c982-4c3c-9bb3-9c430454dd36, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:08.315Z","sequence":17758,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:08.315Z","sequence":17759,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 12288963D8E3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:08.321Z","sequence":17760,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-174dceea-f466-4a08-b630-976cbbd13636, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:08.327Z","sequence":17761,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:08.327Z","sequence":17762,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFAD0B251B9547C] for gateway [12288963D8E3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:08.337Z","sequence":17763,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:08.337Z","sequence":17764,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:08.786Z","sequence":17765,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8dbfbb4f-9a07-42d2-9fee-7a058668c604, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:08.787Z","sequence":17766,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:08.787Z","sequence":17767,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFAD0B251B9547C] for gateway [12288963D8E3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:08.797Z","sequence":17768,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:08.797Z","sequence":17769,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:09.382Z","sequence":17770,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-fdc355eb-e1ef-47f5-81cb-25e21f05bfb2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:11.917Z","sequence":17771,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFAD0B251B9547C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d18df6da7a48be1e","parentId":"35393b52ba4e99e1","traceId":"0000000000000000a56a2947a2d72d6d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:11.964Z","sequence":17772,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFAD0B251B9547C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d18df6da7a48be1e","parentId":"35393b52ba4e99e1","traceId":"0000000000000000a56a2947a2d72d6d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:12.743Z","sequence":17773,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 12288963D8E3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8a0843e53d2b8434","parentId":"7aceb798e93abc1f","traceId":"0000000000000000f531250752bb5ff6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:12.79Z","sequence":17774,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 12288963D8E3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8a0843e53d2b8434","parentId":"7aceb798e93abc1f","traceId":"0000000000000000f531250752bb5ff6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:14.669Z","sequence":17775,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:14.669Z","sequence":17776,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: shell]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:14.694Z","sequence":17777,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-a654f465-4a0b-4f7f-b014-f8c997e4d7c2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:14.702Z","sequence":17778,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/shell:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:14.703Z","sequence":17779,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: shell, type: hashed-password, auth-id: auth-gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:14.795Z","sequence":17780,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-5760b603-f399-485b-b05d-03cf47b5ea35, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:14.918Z","sequence":17781,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:14.918Z","sequence":17782,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AC9] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:14.929Z","sequence":17783,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:14.929Z","sequence":17784,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:14.935Z","sequence":17785,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b4bd91ca-b11c-4383-9285-daa0288e8f0e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:15.406Z","sequence":17786,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:15.406Z","sequence":17787,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:15.413Z","sequence":17788,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7aa47d6b-6bdc-4f89-8c66-1f3cb59e8e3e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:15.418Z","sequence":17789,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:15.418Z","sequence":17790,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oci]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:15.425Z","sequence":17791,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-1f8eb32f-5c91-46a2-822b-4fc5fd55044d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:15.869Z","sequence":17792,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:15.869Z","sequence":17793,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AC4] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:15.881Z","sequence":17794,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:15.881Z","sequence":17795,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:15.887Z","sequence":17796,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-47929657-43ef-40b5-b60f-758c2b13b0dc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:17.717Z","sequence":17797,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFBF93A837B0CE8]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"124c79282e31d8fb","parentId":"4d8d41bd459767bb","traceId":"0000000000000000b004e0c149a7684f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:17.767Z","sequence":17798,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFBF93A837B0CE8]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"124c79282e31d8fb","parentId":"4d8d41bd459767bb","traceId":"0000000000000000b004e0c149a7684f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:17.793Z","sequence":17799,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF259A71EF57C17]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"297ff43d3e01edc7","parentId":"aca284dcfc07f1ba","traceId":"000000000000000013263efe4115247d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:17.813Z","sequence":17800,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF259A71EF57C17]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"297ff43d3e01edc7","parentId":"aca284dcfc07f1ba","traceId":"000000000000000013263efe4115247d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:18.529Z","sequence":17801,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191085]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1dc50e57b1db53d0","parentId":"ac7dc2cad6c95257","traceId":"0000000000000000f5dc09675388a490","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:18.554Z","sequence":17802,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191085]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1dc50e57b1db53d0","parentId":"ac7dc2cad6c95257","traceId":"0000000000000000f5dc09675388a490","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:19.245Z","sequence":17803,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191083]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a3572cbeb4c4246c","parentId":"c6f41ad966618c74","traceId":"00000000000000007c83658cff9b4f03","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:19.273Z","sequence":17804,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191083]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a3572cbeb4c4246c","parentId":"c6f41ad966618c74","traceId":"00000000000000007c83658cff9b4f03","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:20.247Z","sequence":17805,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 682EF081826E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"efda9b2765dc1556","parentId":"d2bd5a175f1460c2","traceId":"00000000000000009706355eb7349e6d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:20.275Z","sequence":17806,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 682EF081826E, resource-version: 3d79f29b-de41-4275-9ab4-f647d36e46ab]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"efda9b2765dc1556","parentId":"d2bd5a175f1460c2","traceId":"00000000000000009706355eb7349e6d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:20.282Z","sequence":17807,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 682EF081826E, resource-version: 9154e9be-e36d-43f7-89fd-35aa661fb77f]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"efda9b2765dc1556","parentId":"d2bd5a175f1460c2","traceId":"00000000000000009706355eb7349e6d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:20.286Z","sequence":17808,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 682EF081826E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4bd7148c2c46bbf2","parentId":"96e31b8937885723","traceId":"00000000000000009706355eb7349e6d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:20.463Z","sequence":17809,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 682EF081826E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4bd7148c2c46bbf2","parentId":"96e31b8937885723","traceId":"00000000000000009706355eb7349e6d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:20.636Z","sequence":17810,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: F2975C61D304]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f63100675a4336d3","parentId":"3f9fde9a8799f28b","traceId":"00000000000000002241bf6d9c9cff26","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:20.654Z","sequence":17811,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: F2975C61D304, resource-version: 73fc33d4-17af-4022-81e4-6d8662a323c1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f63100675a4336d3","parentId":"3f9fde9a8799f28b","traceId":"00000000000000002241bf6d9c9cff26","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:20.659Z","sequence":17812,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: F2975C61D304, resource-version: c5acd482-b5a4-42b5-828f-91760ab881f4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f63100675a4336d3","parentId":"3f9fde9a8799f28b","traceId":"00000000000000002241bf6d9c9cff26","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:20.663Z","sequence":17813,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: F2975C61D304]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"11dbbdd47d419c03","parentId":"cccf5b16c2be05b9","traceId":"00000000000000002241bf6d9c9cff26","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:20.819Z","sequence":17814,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: F2975C61D304]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"11dbbdd47d419c03","parentId":"cccf5b16c2be05b9","traceId":"00000000000000002241bf6d9c9cff26","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:21.149Z","sequence":17815,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFF8358CA9E60A1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"23605fb879565c5b","parentId":"3ad95448aaf491e3","traceId":"0000000000000000ceb7eb4fc09b1585","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:21.165Z","sequence":17816,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFF8358CA9E60A1, resource-version: 7aed50fc-f858-4266-a488-4625c61603ee]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"23605fb879565c5b","parentId":"3ad95448aaf491e3","traceId":"0000000000000000ceb7eb4fc09b1585","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:21.172Z","sequence":17817,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFF8358CA9E60A1, resource-version: ceac54c1-86a0-4e52-85a7-2deacd327043]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"23605fb879565c5b","parentId":"3ad95448aaf491e3","traceId":"0000000000000000ceb7eb4fc09b1585","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:21.373Z","sequence":17818,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:21.373Z","sequence":17819,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-00GWALP120IT]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:21.399Z","sequence":17820,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-211f6837-5074-42b6-a836-fee33e83ca33, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:21.527Z","sequence":17821,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:21.527Z","sequence":17822,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: C0FFEE2C0DE00000] for gateway [00GWALP120IT]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:21.533Z","sequence":17823,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:0.3.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:21.533Z","sequence":17824,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7\",\n \"upstream-message-mapper\" : \"upstream_dash7\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:21.801Z","sequence":17825,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF5040287FED0AB]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"de9f904a993d4532","parentId":"c6366ddd56aec7c4","traceId":"000000000000000060370df0327a6b8c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:21.84Z","sequence":17826,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF5040287FED0AB, resource-version: fd204dbb-04f9-4ba8-aee9-27ed28ba607f]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"de9f904a993d4532","parentId":"c6366ddd56aec7c4","traceId":"000000000000000060370df0327a6b8c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:21.851Z","sequence":17827,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF5040287FED0AB, resource-version: 9bf42727-5414-499c-94d6-03406466cb67]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"de9f904a993d4532","parentId":"c6366ddd56aec7c4","traceId":"000000000000000060370df0327a6b8c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:21.858Z","sequence":17828,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-bea77929-5e35-4f89-8738-83b86a13794e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:21.859Z","sequence":17829,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:21.859Z","sequence":17830,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BF9] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:21.866Z","sequence":17831,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:21.866Z","sequence":17832,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:21.872Z","sequence":17833,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7eb71f75-fa55-4605-9ed4-d352f765077d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:22.22Z","sequence":17834,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:22.22Z","sequence":17835,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-682EF081826E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:22.23Z","sequence":17836,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-52b89997-c656-4dc1-9abb-8e08697da83e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:22.352Z","sequence":17837,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:22.353Z","sequence":17838,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 682EF081826E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:22.36Z","sequence":17839,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ab8f4116-fe15-41aa-81eb-7c21fb7593aa, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:22.365Z","sequence":17840,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:22.365Z","sequence":17841,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFF8358CA9E60A1] for gateway [682EF081826E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:22.386Z","sequence":17842,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:22.386Z","sequence":17843,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:22.993Z","sequence":17844,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4708a729-da20-4d1e-908b-e7e280a32ca0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:22.997Z","sequence":17845,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:22.997Z","sequence":17846,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-F2975C61D304]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:23.017Z","sequence":17847,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-381a73ce-5818-4b91-bd9b-36eb09b974f5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:23.141Z","sequence":17848,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:23.141Z","sequence":17849,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: F2975C61D304]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:23.147Z","sequence":17850,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-01e86dfb-b893-4380-b91e-26fe4a96ccb1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:23.153Z","sequence":17851,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:23.153Z","sequence":17852,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF5040287FED0AB] for gateway [F2975C61D304]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:23.161Z","sequence":17853,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:23.161Z","sequence":17854,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:23.706Z","sequence":17855,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2a239037-b532-434d-b7e6-12f7d424da8e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:24.659Z","sequence":17856,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:24.659Z","sequence":17857,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AE1] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:24.673Z","sequence":17858,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:24.673Z","sequence":17859,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:24.685Z","sequence":17860,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ae52588a-fb6d-43ce-86bb-e827604d3612, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:27.285Z","sequence":17861,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFF8358CA9E60A1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d95cb8cefab11525","parentId":"aa4056eab8d7ce93","traceId":"00000000000000009a189363f0e643ef","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:27.34Z","sequence":17862,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFF8358CA9E60A1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d95cb8cefab11525","parentId":"aa4056eab8d7ce93","traceId":"00000000000000009a189363f0e643ef","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:28.649Z","sequence":17863,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 682EF081826E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a8c5b59ae15aa037","parentId":"5040d5b442d7d5fe","traceId":"0000000000000000065d11461b909167","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:28.687Z","sequence":17864,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 682EF081826E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a8c5b59ae15aa037","parentId":"5040d5b442d7d5fe","traceId":"0000000000000000065d11461b909167","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:30.685Z","sequence":17865,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: CA8A154EB474]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ae1fd1a06a700da3","parentId":"fe84db8f078d0bf8","traceId":"00000000000000001abc0c2346d59b5b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:30.744Z","sequence":17866,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: CA8A154EB474, resource-version: a9807d76-81f3-44d1-ac6f-d1b6070f6bad]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ae1fd1a06a700da3","parentId":"fe84db8f078d0bf8","traceId":"00000000000000001abc0c2346d59b5b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:30.804Z","sequence":17867,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: CA8A154EB474, resource-version: e47ff7d2-518f-47cc-a79d-da4cdb29dfda]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ae1fd1a06a700da3","parentId":"fe84db8f078d0bf8","traceId":"00000000000000001abc0c2346d59b5b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:30.809Z","sequence":17868,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: CA8A154EB474]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"33d533a3d29fcfc0","parentId":"031efcf7a6a60790","traceId":"00000000000000001abc0c2346d59b5b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:31.088Z","sequence":17869,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: CA8A154EB474]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"33d533a3d29fcfc0","parentId":"031efcf7a6a60790","traceId":"00000000000000001abc0c2346d59b5b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:31.839Z","sequence":17870,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFB9494D247832B]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"60687bf3d85d0a19","parentId":"fe1a97a8ccc2913f","traceId":"0000000000000000459584c50fa04ed5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:31.889Z","sequence":17871,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFB9494D247832B, resource-version: 4c0fb347-f7c8-4b25-8de5-2b48111fde3c]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"60687bf3d85d0a19","parentId":"fe1a97a8ccc2913f","traceId":"0000000000000000459584c50fa04ed5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:31.902Z","sequence":17872,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFB9494D247832B, resource-version: 8be56d2e-dd16-4412-a1c3-817854dcac8a]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"60687bf3d85d0a19","parentId":"fe1a97a8ccc2913f","traceId":"0000000000000000459584c50fa04ed5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:32.948Z","sequence":17873,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:32.949Z","sequence":17874,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-CA8A154EB474]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:32.96Z","sequence":17875,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-5d243199-789f-419a-85ad-213338a47105, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:33.079Z","sequence":17876,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:33.079Z","sequence":17877,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: CA8A154EB474]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:33.084Z","sequence":17878,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-393ac9cf-8055-4bb7-8e4d-6df3cda1d23c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:33.089Z","sequence":17879,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:33.089Z","sequence":17880,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFB9494D247832B] for gateway [CA8A154EB474]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:33.093Z","sequence":17881,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:33.093Z","sequence":17882,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:33.272Z","sequence":17883,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d94ea5f7-56e6-4e86-894d-5f4339e91d28, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:35.61Z","sequence":17884,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:35.61Z","sequence":17885,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: chevron]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:35.613Z","sequence":17886,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-3b51f22e-4843-4406-a961-07d93e52d70c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:35.617Z","sequence":17887,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/chevron:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:35.617Z","sequence":17888,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: chevron, type: hashed-password, auth-id: auth-CHEVRON-ORBIWISE-EL-SEGUNDO]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:35.653Z","sequence":17889,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-b1f1a5c8-b726-44cb-b752-d9c6bd017757, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:35.773Z","sequence":17890,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/chevron:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:35.773Z","sequence":17891,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: chevron, device-id: 70B3D57BB10005BF] for gateway [CHEVRON-ORBIWISE-EL-SEGUNDO]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:35.774Z","sequence":17892,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/chevron:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:35.774Z","sequence":17893,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: chevron, device-id: CHEVRON-ORBIWISE-EL-SEGUNDO]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:35.778Z","sequence":17894,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_chevron\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:35.778Z","sequence":17895,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_chevron\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:35.779Z","sequence":17896,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f8e6e7aa-6edb-4df0-beaf-35f2a8675c9b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:35.79Z","sequence":17897,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-26c7775f-9c1b-44b3-ae1d-f5499a543077, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:36.548Z","sequence":17898,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:36.549Z","sequence":17899,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: acta]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:36.551Z","sequence":17900,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-f7e02423-6fd5-4449-95fd-b1879ee0188e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:36.555Z","sequence":17901,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/acta:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:36.555Z","sequence":17902,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: acta, device-id: 39383837002B0047] for gateway [0008004AAAA3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:36.563Z","sequence":17903,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.3.0\"\n },\n \"viaGroups\" : [ \"gateways_acta\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:36.564Z","sequence":17904,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_acta\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:36.566Z","sequence":17905,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4f33181c-95d4-4c37-85d8-f225c3dc4015, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:37.223Z","sequence":17906,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:37.223Z","sequence":17907,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000489] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:37.23Z","sequence":17908,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:37.23Z","sequence":17909,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:37.236Z","sequence":17910,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-32df2fe9-aedc-4e46-8f25-e8f39a5f389b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:37.827Z","sequence":17911,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191090]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"44cc6fbb3a22f65a","parentId":"ab0509041369ef06","traceId":"000000000000000035c3f8c137aebe95","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:37.873Z","sequence":17912,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191090, resource-version: bdd73982-118f-4c93-bebc-d3a094c1e1fb]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"44cc6fbb3a22f65a","parentId":"ab0509041369ef06","traceId":"000000000000000035c3f8c137aebe95","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:37.905Z","sequence":17913,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191090, resource-version: 7584053a-9537-4b9f-acf7-dd6cd8c1f38f]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"44cc6fbb3a22f65a","parentId":"ab0509041369ef06","traceId":"000000000000000035c3f8c137aebe95","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:37.907Z","sequence":17914,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191090]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d9f7fbd1d2bca280","parentId":"11290d7bac54d38d","traceId":"000000000000000035c3f8c137aebe95","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:38.036Z","sequence":17915,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191090]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d9f7fbd1d2bca280","parentId":"11290d7bac54d38d","traceId":"000000000000000035c3f8c137aebe95","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:38.457Z","sequence":17916,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFA6E15678E6D89]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b011ded476250a7e","parentId":"93d189df77492f7f","traceId":"00000000000000005f31065aadcca9df","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:38.507Z","sequence":17917,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFA6E15678E6D89, resource-version: 2604cacf-1a1e-41cb-952b-d9908b8c7cee]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b011ded476250a7e","parentId":"93d189df77492f7f","traceId":"00000000000000005f31065aadcca9df","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:38.528Z","sequence":17918,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFA6E15678E6D89, resource-version: 9e639cc7-6439-42fd-b5e8-e796f2a6bdf6]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b011ded476250a7e","parentId":"93d189df77492f7f","traceId":"00000000000000005f31065aadcca9df","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:38.709Z","sequence":17919,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:38.709Z","sequence":17920,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A55] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:38.725Z","sequence":17921,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:38.725Z","sequence":17922,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:38.736Z","sequence":17923,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2e485ed5-4491-4fe4-a8d9-ff5e3941c89c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:39.61Z","sequence":17924,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:39.61Z","sequence":17925,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191090]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:39.647Z","sequence":17926,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-e228d3a9-07a8-4f66-b15e-6707c2b009fa, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:39.766Z","sequence":17927,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:39.766Z","sequence":17928,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFA6E15678E6D89] for gateway [gateway_integrationtest_network_191090]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:39.767Z","sequence":17929,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:39.767Z","sequence":17930,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191090]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:39.779Z","sequence":17931,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-05de6297-f87c-44b8-bf93-5a0d6ec45ee9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:39.779Z","sequence":17932,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:39.779Z","sequence":17933,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:40.022Z","sequence":17934,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-60b9720e-9ad3-4bd0-a74e-51b4e1162e50, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:40.998Z","sequence":17935,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:40.998Z","sequence":17936,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A3E] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:41.006Z","sequence":17937,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:41.006Z","sequence":17938,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:41.011Z","sequence":17939,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2931295b-09fc-493a-8a09-c998821119de, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:41.031Z","sequence":17940,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF5040287FED0AB]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"157f0ecbd0e5dc3f","parentId":"8d4bf8bdce1bf5c1","traceId":"00000000000000000910d6e9c564a5e6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:41.06Z","sequence":17941,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF5040287FED0AB]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"157f0ecbd0e5dc3f","parentId":"8d4bf8bdce1bf5c1","traceId":"00000000000000000910d6e9c564a5e6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:41.375Z","sequence":17942,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:41.376Z","sequence":17943,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100067A] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:41.39Z","sequence":17944,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:41.39Z","sequence":17945,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:41.401Z","sequence":17946,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-fff1446b-c239-48be-92a6-8610bdc5832a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:41.418Z","sequence":17947,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: F2975C61D304]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9f3820e90d8545c3","parentId":"128b0a09d25a63ed","traceId":"000000000000000070759069f281a2d4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:41.447Z","sequence":17948,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: F2975C61D304]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9f3820e90d8545c3","parentId":"128b0a09d25a63ed","traceId":"000000000000000070759069f281a2d4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:43.358Z","sequence":17949,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:43.358Z","sequence":17950,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BB84C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:43.364Z","sequence":17951,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2cba6430-8658-4e18-9215-2f847d40c263, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:43.367Z","sequence":17952,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:43.367Z","sequence":17953,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: lanxess]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:43.377Z","sequence":17954,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-3fe50d1f-3c44-4fb9-ae9b-bb0472404bbb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:45.029Z","sequence":17955,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 89A56D7F3F13]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"90f028aee4d6dfc3","parentId":"a205249fb9cb6b1e","traceId":"000000000000000040222ad4d099ead9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:45.067Z","sequence":17956,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 89A56D7F3F13, resource-version: 16817178-576d-4302-8ad1-6342b922967c]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"90f028aee4d6dfc3","parentId":"a205249fb9cb6b1e","traceId":"000000000000000040222ad4d099ead9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:45.07Z","sequence":17957,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:45.07Z","sequence":17958,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 0008004B5135]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:45.08Z","sequence":17959,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1462ad32-9941-4adf-b42e-5d5eed09e269, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:45.084Z","sequence":17960,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:45.084Z","sequence":17961,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: ineos]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:45.089Z","sequence":17962,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 89A56D7F3F13, resource-version: 2ec55b92-f3f8-4c9e-af00-1dd652f2a073]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"90f028aee4d6dfc3","parentId":"a205249fb9cb6b1e","traceId":"000000000000000040222ad4d099ead9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:45.089Z","sequence":17963,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-d07deb78-a243-4821-9d3a-f94a07bc5c7e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:45.101Z","sequence":17964,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 89A56D7F3F13]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ddca5dbb12ac1d0d","parentId":"7209f721ba3360b6","traceId":"000000000000000040222ad4d099ead9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:45.274Z","sequence":17965,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 89A56D7F3F13]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ddca5dbb12ac1d0d","parentId":"7209f721ba3360b6","traceId":"000000000000000040222ad4d099ead9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:45.569Z","sequence":17966,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF93381B0B4E846]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d0cc4c32b762ba38","parentId":"1569d4179ffb84aa","traceId":"000000000000000003fb64d4dda58d52","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:45.598Z","sequence":17967,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF93381B0B4E846, resource-version: 9eee8615-eed1-4efc-a647-df09de2bfbe5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d0cc4c32b762ba38","parentId":"1569d4179ffb84aa","traceId":"000000000000000003fb64d4dda58d52","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:45.605Z","sequence":17968,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF93381B0B4E846, resource-version: d76c7e1a-149d-4eea-85e6-f6e0733fafc3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d0cc4c32b762ba38","parentId":"1569d4179ffb84aa","traceId":"000000000000000003fb64d4dda58d52","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:45.672Z","sequence":17969,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFB9494D247832B]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"11e15e15e082350d","parentId":"0c68778941df9ff6","traceId":"0000000000000000876b401132784801","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:45.695Z","sequence":17970,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFB9494D247832B]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"11e15e15e082350d","parentId":"0c68778941df9ff6","traceId":"0000000000000000876b401132784801","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:46.148Z","sequence":17971,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: CA8A154EB474]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"355640d3d91b3fce","parentId":"87e9e2028eb68d25","traceId":"00000000000000006d6e1f4a4024dc1a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:46.167Z","sequence":17972,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: CA8A154EB474]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"355640d3d91b3fce","parentId":"87e9e2028eb68d25","traceId":"00000000000000006d6e1f4a4024dc1a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:46.655Z","sequence":17973,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:46.655Z","sequence":17974,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-89A56D7F3F13]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:46.669Z","sequence":17975,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-9699eb4b-dd7e-4ebe-976d-1f7a7a9c3c2e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:46.789Z","sequence":17976,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:46.789Z","sequence":17977,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 89A56D7F3F13]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:46.806Z","sequence":17978,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-79e83c7d-2555-4589-9114-5f1a76d73b1f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:46.81Z","sequence":17979,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:46.81Z","sequence":17980,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF93381B0B4E846] for gateway [89A56D7F3F13]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:46.824Z","sequence":17981,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:46.825Z","sequence":17982,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:47.238Z","sequence":17983,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-87de59f0-6e5e-4197-b269-edb2d8872964, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:47.288Z","sequence":17984,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:47.288Z","sequence":17985,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006AD] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:47.298Z","sequence":17986,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:47.298Z","sequence":17987,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:47.32Z","sequence":17988,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-049c8eca-ab66-4ce4-88a5-bac39a91a0ac, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:47.328Z","sequence":17989,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:47.328Z","sequence":17990,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10007F2] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:47.333Z","sequence":17991,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:47.334Z","sequence":17992,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:47.343Z","sequence":17993,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-fe4b055f-fd67-4f61-9e8e-840d8c483ef6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:49.374Z","sequence":17994,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:49.374Z","sequence":17995,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BBD1B]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:49.39Z","sequence":17996,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-bae6f999-4919-45f1-bb02-1e24322f468c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:50.205Z","sequence":17997,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:50.205Z","sequence":17998,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006C5] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:50.217Z","sequence":17999,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:50.218Z","sequence":18000,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:50.224Z","sequence":18001,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9b36fab1-0818-4061-be01-f42804b501d3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:51.747Z","sequence":18002,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:51.748Z","sequence":18003,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10013DC] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:51.76Z","sequence":18004,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:51.76Z","sequence":18005,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:51.774Z","sequence":18006,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2df05f08-f26a-4a95-ba4b-9a78a1502bc4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:52.051Z","sequence":18007,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:52.052Z","sequence":18008,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB100089C] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:52.058Z","sequence":18009,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:52.058Z","sequence":18010,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:52.062Z","sequence":18011,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-67edb2da-dd2b-4cad-8e11-e224b43aac3e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:53.708Z","sequence":18012,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFA6E15678E6D89]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4f5fdb7debd4feef","parentId":"178097ed57f3d857","traceId":"0000000000000000d600611677ac5d84","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:53.752Z","sequence":18013,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFA6E15678E6D89]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4f5fdb7debd4feef","parentId":"178097ed57f3d857","traceId":"0000000000000000d600611677ac5d84","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:54.087Z","sequence":18014,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191090]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"afdc8922bd532bb4","parentId":"9cfa73dbd46ed845","traceId":"00000000000000008b3b41abcdde84da","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:54.141Z","sequence":18015,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191090]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"afdc8922bd532bb4","parentId":"9cfa73dbd46ed845","traceId":"00000000000000008b3b41abcdde84da","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:56.477Z","sequence":18016,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/arkema:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:56.477Z","sequence":18017,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: arkema, device-id: 0008004AE119]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:56.485Z","sequence":18018,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f4cee879-cf1f-49c6-8f9c-621a1adc42c0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:56.488Z","sequence":18019,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:56.488Z","sequence":18020,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: arkema]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:56.491Z","sequence":18021,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-aa8500dc-122e-4e67-b7f1-992701ae952b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:59.561Z","sequence":18022,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:59.561Z","sequence":18023,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001D4] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:59.569Z","sequence":18024,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:59.569Z","sequence":18025,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001D4] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:59.587Z","sequence":18026,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:59.589Z","sequence":18027,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:59.589Z","sequence":18028,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:59.589Z","sequence":18029,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:59.659Z","sequence":18030,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-cd8f1604-4b3f-469f-91a6-ecc3839f5fd8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:59.659Z","sequence":18031,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4cd7bd24-54d3-47c4-94a5-af2222b89df9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:59.784Z","sequence":18032,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:59.784Z","sequence":18033,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: flint]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:59.788Z","sequence":18034,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-53d9d75b-31a6-4bcf-842b-b4f274f82c3d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:59.797Z","sequence":18035,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/flint:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:59.797Z","sequence":18036,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: flint, type: hashed-password, auth-id: auth-flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:59.842Z","sequence":18037,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-d2796090-774f-40a1-a3d2-7fe553909507, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:59.966Z","sequence":18038,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:59.966Z","sequence":18039,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10002AC] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:59.976Z","sequence":18040,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:50:59.976Z","sequence":18041,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:00.007Z","sequence":18042,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b8037315-845b-414e-b229-a0d5224a8d20, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:01.693Z","sequence":18043,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/conditionall:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:01.693Z","sequence":18044,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: conditionall, device-id: 70B3D57BB10001F0] for gateway [0008004B512D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:01.749Z","sequence":18045,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF93381B0B4E846]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"283b0831a4e1d6ba","parentId":"ac8974510876da84","traceId":"000000000000000084b1040844002bd0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:01.75Z","sequence":18046,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_conditionall\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:01.753Z","sequence":18047,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_conditionall\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:01.757Z","sequence":18048,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-564cf0a7-b2b0-4906-9262-992ab7c16215, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:01.805Z","sequence":18049,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF93381B0B4E846]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"283b0831a4e1d6ba","parentId":"ac8974510876da84","traceId":"000000000000000084b1040844002bd0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:02.366Z","sequence":18050,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 89A56D7F3F13]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"77095dcfcc1c04bb","parentId":"e50ee1d70fecfeb6","traceId":"00000000000000001d00e271a1ab2e49","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:02.404Z","sequence":18051,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 89A56D7F3F13]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"77095dcfcc1c04bb","parentId":"e50ee1d70fecfeb6","traceId":"00000000000000001d00e271a1ab2e49","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:05.726Z","sequence":18052,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:05.727Z","sequence":18053,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100069E] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:05.728Z","sequence":18054,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:05.728Z","sequence":18055,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:05.745Z","sequence":18056,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:05.745Z","sequence":18057,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:05.746Z","sequence":18058,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ca125dc6-96f3-4c6b-a3d0-96bb26226fc7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:05.767Z","sequence":18059,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1640a962-128c-47eb-8955-68c830674c19, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:08.238Z","sequence":18060,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:08.238Z","sequence":18061,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000574] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:08.244Z","sequence":18062,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:08.244Z","sequence":18063,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:08.25Z","sequence":18064,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ca201b90-f007-4bd0-9b61-18785698736e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:09.003Z","sequence":18065,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:09.004Z","sequence":18066,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AE0] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:09.01Z","sequence":18067,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:09.01Z","sequence":18068,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:09.016Z","sequence":18069,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-947aecfa-bcc1-494d-bdea-251ed4712c2e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:10.504Z","sequence":18070,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:10.504Z","sequence":18071,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB1000A84] for gateway [0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:10.543Z","sequence":18072,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:10.543Z","sequence":18073,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:10.546Z","sequence":18074,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-15cacaec-c65f-4bf7-a9e4-1af3c302370d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:15.555Z","sequence":18075,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:15.555Z","sequence":18076,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A5A] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:15.561Z","sequence":18077,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:15.561Z","sequence":18078,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:15.593Z","sequence":18079,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b8168cc4-42a7-4576-9a2c-b262490f3356, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:15.942Z","sequence":18080,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:15.942Z","sequence":18081,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 70B3D57BB100018E] for gateway [0008004BB84C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:15.948Z","sequence":18082,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_lanxess\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:15.948Z","sequence":18083,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_lanxess\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:15.951Z","sequence":18084,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-72dcd854-9983-4b5b-b439-c8b07a71c8d0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:31.044Z","sequence":18085,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:31.044Z","sequence":18086,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BBD1C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:31.051Z","sequence":18087,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0974ee8d-0dfc-4fa7-af4a-9e65e9577095, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:31.524Z","sequence":18088,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:31.524Z","sequence":18089,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000F82] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:31.53Z","sequence":18090,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:31.53Z","sequence":18091,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:31.536Z","sequence":18092,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5044b8d1-2fe9-4752-a186-d0e9fddff6b2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:32.531Z","sequence":18093,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:32.531Z","sequence":18094,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C2F] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:32.537Z","sequence":18095,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:32.537Z","sequence":18096,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:32.545Z","sequence":18097,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a5f05659-04a1-446c-a5e3-05dd820086b0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:38.853Z","sequence":18098,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:38.853Z","sequence":18099,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:38.859Z","sequence":18100,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ceadc9a5-b6b5-4e2c-a137-c52870607469, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:43.095Z","sequence":18101,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:43.095Z","sequence":18102,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: indeel]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:43.099Z","sequence":18103,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-559e25ad-6b67-4a2b-9fd4-bba5a60e7467, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:43.101Z","sequence":18104,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/indeel:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:43.101Z","sequence":18105,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: indeel, type: hashed-password, auth-id: auth-gateway_indeel_network_40884]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:43.112Z","sequence":18106,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-6ca57b14-4460-4e69-9ba0-9ff79f92201c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:43.425Z","sequence":18107,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/indeel:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:43.426Z","sequence":18108,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: indeel, device-id: 70B3D57BB1001408] for gateway [gateway_indeel_network_40884]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:43.427Z","sequence":18109,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/indeel:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:43.427Z","sequence":18110,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: indeel, device-id: gateway_indeel_network_40884]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:43.434Z","sequence":18111,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-dfc3f1bc-86d9-4d49-8419-b5a9bf99f6d9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:43.434Z","sequence":18112,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_indeel\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:43.435Z","sequence":18113,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_indeel\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:43.437Z","sequence":18114,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e30b1a74-61b0-4be8-89d3-13fb06cf7260, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:52.441Z","sequence":18115,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:52.442Z","sequence":18116,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: exxon]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:52.447Z","sequence":18117,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-f03f9d80-46ab-4437-97f8-17a1077456c3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:52.449Z","sequence":18118,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Source{address='credentials/exxon/92ea2516-cf2c-4a7e-9ccd-b5982f80748c', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:52.449Z","sequence":18119,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-20]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:52.449Z","sequence":18120,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@6535fad1] for replies to [credentials/exxon/92ea2516-cf2c-4a7e-9ccd-b5982f80748c]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:52.451Z","sequence":18121,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Target{address='credentials/exxon', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:52.452Z","sequence":18122,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-21]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:52.452Z","sequence":18123,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:52.454Z","sequence":18124,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/exxon:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:52.454Z","sequence":18125,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: exxon, type: hashed-password, auth-id: auth-gateway_exxon_network_2559]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:52.485Z","sequence":18126,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-b0600912-c579-442d-baec-a76c68e6a2ef, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:52.609Z","sequence":18127,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] wants to open a link [address: Source{address='registration/exxon/c56b4e74-db97-4b27-92bd-c7af0aa41326', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:52.609Z","sequence":18128,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-20]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:52.609Z","sequence":18129,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@93bebcf] for replies to [registration/exxon/c56b4e74-db97-4b27-92bd-c7af0aa41326]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:52.611Z","sequence":18130,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] wants to open a link [address: Target{address='registration/exxon', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:52.611Z","sequence":18131,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-21]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:52.611Z","sequence":18132,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:52.614Z","sequence":18133,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/exxon:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:52.614Z","sequence":18134,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: exxon, device-id: 70B3D57BB10013EC] for gateway [gateway_exxon_network_2559]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:52.614Z","sequence":18135,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/exxon:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:52.614Z","sequence":18136,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: exxon, device-id: gateway_exxon_network_2559]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:52.631Z","sequence":18137,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-fc5c4b20-ff97-4843-9cb7-3623ee596bc0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:52.643Z","sequence":18138,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_exxon\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:52.643Z","sequence":18139,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_exxon\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:52.649Z","sequence":18140,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6744308d-8ba4-4bac-adba-630813bc0d98, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:52.744Z","sequence":18141,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"retrieving device [tenant: exxon, device-id: 70B3D57BB10013EC]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6d2a110a70e7d438","parentId":"8e48e01ee5d6e083","traceId":"7d7ba158200021f7508f81bc129a3c9c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:52.875Z","sequence":18142,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:52.876Z","sequence":18143,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BB0] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:52.898Z","sequence":18144,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:52.898Z","sequence":18145,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:52.95Z","sequence":18146,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-65b2fef6-f4d9-4f64-9113-52dcf1d94c1b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:54.117Z","sequence":18147,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:54.118Z","sequence":18148,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AEE] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:54.123Z","sequence":18149,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:54.123Z","sequence":18150,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:54.129Z","sequence":18151,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5ed5413d-90e3-45f9-91f7-9ff7d05c169e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:54.248Z","sequence":18152,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:54.248Z","sequence":18153,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB100089F] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:54.248Z","sequence":18154,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:54.249Z","sequence":18155,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:54.265Z","sequence":18156,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-73123705-2b55-415c-8fe2-1fa6c69043d2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:54.265Z","sequence":18157,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:54.265Z","sequence":18158,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:51:54.273Z","sequence":18159,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-da813a7c-52e7-46d1-84b3-5c7e4e2ff973, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:00.079Z","sequence":18160,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:00.079Z","sequence":18161,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A4B] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:00.088Z","sequence":18162,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:00.088Z","sequence":18163,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:00.096Z","sequence":18164,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d3ac2748-9dd3-4117-b40e-ef86e7e7524d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:04.689Z","sequence":18165,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: B4F3989DF094]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7a945b3484d00c72","parentId":"7ae34f27cc2fe9c2","traceId":"00000000000000001f8d4df0aa157b87","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:04.751Z","sequence":18166,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: B4F3989DF094, resource-version: a6edb3f9-a317-49a7-9a58-d6e7144f8976]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7a945b3484d00c72","parentId":"7ae34f27cc2fe9c2","traceId":"00000000000000001f8d4df0aa157b87","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:04.759Z","sequence":18167,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: B4F3989DF094, resource-version: 3e3b8172-e89e-4389-8e6d-921f0b39586f]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7a945b3484d00c72","parentId":"7ae34f27cc2fe9c2","traceId":"00000000000000001f8d4df0aa157b87","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:04.764Z","sequence":18168,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: B4F3989DF094]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6ce5af1e2be0e5ee","parentId":"2e2c1f436ca61b90","traceId":"00000000000000001f8d4df0aa157b87","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:04.939Z","sequence":18169,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: B4F3989DF094]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6ce5af1e2be0e5ee","parentId":"2e2c1f436ca61b90","traceId":"00000000000000001f8d4df0aa157b87","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:06.086Z","sequence":18170,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:06.086Z","sequence":18171,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000680] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:06.093Z","sequence":18172,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:06.095Z","sequence":18173,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:06.103Z","sequence":18174,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-64850d18-da64-40b3-8662-69676620a153, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:06.115Z","sequence":18175,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFC9948468E1E9E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d9f00bb70d6ff3aa","parentId":"4523d554827d867d","traceId":"0000000000000000cb0ba0fe45739c1b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:06.143Z","sequence":18176,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFC9948468E1E9E, resource-version: 02b3d3dc-0e55-4015-a859-e94df89a4b45]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d9f00bb70d6ff3aa","parentId":"4523d554827d867d","traceId":"0000000000000000cb0ba0fe45739c1b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:06.15Z","sequence":18177,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFC9948468E1E9E, resource-version: 62cbb072-0aab-4df2-b082-f92224785b7c]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d9f00bb70d6ff3aa","parentId":"4523d554827d867d","traceId":"0000000000000000cb0ba0fe45739c1b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:06.202Z","sequence":18178,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:06.202Z","sequence":18179,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-B4F3989DF094]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:06.212Z","sequence":18180,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-b045ab49-d336-45cb-9ae0-ba2ac5070be1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:06.343Z","sequence":18181,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:06.343Z","sequence":18182,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: B4F3989DF094]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:06.349Z","sequence":18183,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a0703731-cec2-4ee8-b730-b76800ea2ec5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:06.353Z","sequence":18184,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [command-router@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:06.353Z","sequence":18185,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:06.357Z","sequence":18186,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-ad12d0f0-03a4-4944-94db-e63bbd59382a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:09.853Z","sequence":18187,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:09.853Z","sequence":18188,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 0008004C80F4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:09.877Z","sequence":18189,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-97c66d0e-51d4-4d1e-a402-2799961cea3a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:11.307Z","sequence":18190,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:11.307Z","sequence":18191,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A6D] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:11.321Z","sequence":18192,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:11.321Z","sequence":18193,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:11.328Z","sequence":18194,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1c7ff60e-62de-4d92-84bb-23562aac6208, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:12.371Z","sequence":18195,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono service-command-router-Device Registration-6b43a4ef-0980-4edd-b8fb-ab7a8b085811] wants to open a link [address: Source{address='registration/integrationtest/99b07e8e-4f92-495e-804e-62046dcf03dd', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:12.371Z","sequence":18196,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-0]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:12.371Z","sequence":18197,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@616aa644] for replies to [registration/integrationtest/99b07e8e-4f92-495e-804e-62046dcf03dd]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:12.374Z","sequence":18198,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono service-command-router-Device Registration-6b43a4ef-0980-4edd-b8fb-ab7a8b085811] wants to open a link [address: Target{address='registration/integrationtest', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:12.374Z","sequence":18199,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-1]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:12.374Z","sequence":18200,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:12.376Z","sequence":18201,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [command-router@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:12.377Z","sequence":18202,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFC9948468E1E9E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:12.77Z","sequence":18203,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f7312646-c309-4ffb-b516-1ccfd88f83f9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:16.065Z","sequence":18204,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:16.065Z","sequence":18205,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B68] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:16.075Z","sequence":18206,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:16.075Z","sequence":18207,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:16.081Z","sequence":18208,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b6c101a9-f8ce-4367-887a-82c8bac1159c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:16.875Z","sequence":18209,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:16.875Z","sequence":18210,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BAE] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:16.9Z","sequence":18211,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:16.901Z","sequence":18212,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:16.925Z","sequence":18213,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-558ae2cd-ab62-4c47-ab8c-ad36bac2f124, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:22.433Z","sequence":18214,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:22.433Z","sequence":18215,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFC9948468E1E9E] for gateway [B4F3989DF094]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:22.443Z","sequence":18216,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:22.443Z","sequence":18217,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:22.679Z","sequence":18218,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-97a9566d-e7fb-4b63-aecc-9aa46435b8e4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:23.621Z","sequence":18219,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:23.621Z","sequence":18220,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AEF] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:23.644Z","sequence":18221,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:23.644Z","sequence":18222,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:23.651Z","sequence":18223,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1a008876-932f-4683-b0ca-b5c15512f6a9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:24.489Z","sequence":18224,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oiltanking:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:24.489Z","sequence":18225,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oiltanking, device-id: 0008004BB60F]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:24.503Z","sequence":18226,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6c2d0d9c-b958-448c-9f8b-4974c1fc31c5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:24.509Z","sequence":18227,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:24.509Z","sequence":18228,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oiltanking]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:24.512Z","sequence":18229,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-5df1dbf7-0de0-4a4b-bbf7-b7caea67b4c8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:24.923Z","sequence":18230,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFC9948468E1E9E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ab7563fa8557073a","parentId":"95d2536d8bd5c931","traceId":"0000000000000000cf02c714ec198985","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:24.943Z","sequence":18231,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFC9948468E1E9E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ab7563fa8557073a","parentId":"95d2536d8bd5c931","traceId":"0000000000000000cf02c714ec198985","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:25.445Z","sequence":18232,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: B4F3989DF094]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0ee06575dd1a5403","parentId":"9d45a798ff59343f","traceId":"0000000000000000dd79b22628b95b68","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:25.495Z","sequence":18233,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: B4F3989DF094]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0ee06575dd1a5403","parentId":"9d45a798ff59343f","traceId":"0000000000000000dd79b22628b95b68","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:25.757Z","sequence":18234,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191093]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"da6b77575335e15f","parentId":"a89eba97406f05df","traceId":"0000000000000000a3995475bce75458","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:25.794Z","sequence":18235,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191093, resource-version: 3dd475f8-51d5-44ad-b86e-82747ac349ff]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"da6b77575335e15f","parentId":"a89eba97406f05df","traceId":"0000000000000000a3995475bce75458","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:25.802Z","sequence":18236,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191093, resource-version: 4be429e2-5376-4dc0-957a-cf55cab092f6]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"da6b77575335e15f","parentId":"a89eba97406f05df","traceId":"0000000000000000a3995475bce75458","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:25.805Z","sequence":18237,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191093]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"edabf14fbea0110a","parentId":"dd121f75de808781","traceId":"0000000000000000a3995475bce75458","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:25.944Z","sequence":18238,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191093]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"edabf14fbea0110a","parentId":"dd121f75de808781","traceId":"0000000000000000a3995475bce75458","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:26.386Z","sequence":18239,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF9B4C0CEACDC64]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ab94d8c2c2ed0c18","parentId":"83535c8dac0af7ca","traceId":"0000000000000000c308de3cc49982a5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:26.408Z","sequence":18240,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF9B4C0CEACDC64, resource-version: c17e337f-c40d-4bd0-b017-5d4b41e6d6b6]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ab94d8c2c2ed0c18","parentId":"83535c8dac0af7ca","traceId":"0000000000000000c308de3cc49982a5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:26.437Z","sequence":18241,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/acta:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:26.437Z","sequence":18242,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: acta, device-id: 35343834003C0033] for gateway [0008004AAAA3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:26.445Z","sequence":18243,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.3.0\"\n },\n \"viaGroups\" : [ \"gateways_acta\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:26.445Z","sequence":18244,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_acta\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:26.448Z","sequence":18245,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6ee5b7f6-5770-4f01-8386-94f8e2d4f231, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:26.449Z","sequence":18246,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF9B4C0CEACDC64, resource-version: b12e9e33-e3a7-41a5-a092-206ebfb91904]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ab94d8c2c2ed0c18","parentId":"83535c8dac0af7ca","traceId":"0000000000000000c308de3cc49982a5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:27.527Z","sequence":18247,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:27.528Z","sequence":18248,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:27.532Z","sequence":18249,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-f5afe89d-2a37-48c6-9481-62bf985c5223, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:27.534Z","sequence":18250,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:27.534Z","sequence":18251,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191093]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:27.546Z","sequence":18252,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-b707884b-83b7-4fe7-b8a3-8a33ff12a07a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:27.667Z","sequence":18253,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:27.667Z","sequence":18254,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF9B4C0CEACDC64] for gateway [gateway_integrationtest_network_191093]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:27.667Z","sequence":18255,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:27.667Z","sequence":18256,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191093]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:27.674Z","sequence":18257,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:27.674Z","sequence":18258,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:27.675Z","sequence":18259,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-be807242-bf2a-47f3-ba39-d0fbbde9e986, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:27.866Z","sequence":18260,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3534c2b2-a7cb-4dcd-9659-c1f4b2e327fe, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:30.127Z","sequence":18261,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:30.127Z","sequence":18262,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10001DE] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:30.135Z","sequence":18263,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:0.4.1\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:30.135Z","sequence":18264,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:30.143Z","sequence":18265,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-dce63f50-300f-4d8f-89e3-f9aa12ba477e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:31.506Z","sequence":18266,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:31.506Z","sequence":18267,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006B9] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:31.512Z","sequence":18268,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:31.512Z","sequence":18269,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:31.519Z","sequence":18270,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-45e30c6d-f956-4376-a137-f677d901d3d8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:37.685Z","sequence":18271,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF9B4C0CEACDC64]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c6d792193eb777c4","parentId":"69a87091a497e5ef","traceId":"0000000000000000b9459b9da838831f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:37.707Z","sequence":18272,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF9B4C0CEACDC64]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c6d792193eb777c4","parentId":"69a87091a497e5ef","traceId":"0000000000000000b9459b9da838831f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:37.854Z","sequence":18273,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191093]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c99d948da5337ae7","parentId":"652c3119863dec1c","traceId":"00000000000000005bfff9bb300c6e52","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:37.893Z","sequence":18274,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191093]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c99d948da5337ae7","parentId":"652c3119863dec1c","traceId":"00000000000000005bfff9bb300c6e52","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:38.318Z","sequence":18275,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191094]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7e112e9685c0604e","parentId":"4591131b1102957c","traceId":"00000000000000008bbb1a75b5ee47e2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:38.356Z","sequence":18276,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191094, resource-version: d840a48a-bdd1-4a45-b044-6fdeba312112]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7e112e9685c0604e","parentId":"4591131b1102957c","traceId":"00000000000000008bbb1a75b5ee47e2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:38.393Z","sequence":18277,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191094, resource-version: f6a63302-a93c-405f-b975-eff0b2028798]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7e112e9685c0604e","parentId":"4591131b1102957c","traceId":"00000000000000008bbb1a75b5ee47e2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:38.396Z","sequence":18278,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191094]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1419de77d69860dc","parentId":"3f6dd72d60fcc506","traceId":"00000000000000008bbb1a75b5ee47e2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:38.551Z","sequence":18279,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191094]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1419de77d69860dc","parentId":"3f6dd72d60fcc506","traceId":"00000000000000008bbb1a75b5ee47e2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:39.106Z","sequence":18280,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFA5C37602365E2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"85fcb4120c97e7e5","parentId":"bf697adfcf83c3f3","traceId":"0000000000000000f1f4622d0ee7cfa2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:39.136Z","sequence":18281,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFA5C37602365E2, resource-version: a56d697a-9824-47d0-a66d-2107d429b6c0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"85fcb4120c97e7e5","parentId":"bf697adfcf83c3f3","traceId":"0000000000000000f1f4622d0ee7cfa2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:39.143Z","sequence":18282,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFA5C37602365E2, resource-version: cc8c92a9-b8ba-4c33-852c-f81ae631f2ac]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"85fcb4120c97e7e5","parentId":"bf697adfcf83c3f3","traceId":"0000000000000000f1f4622d0ee7cfa2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:40.217Z","sequence":18283,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:40.217Z","sequence":18284,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191094]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:40.227Z","sequence":18285,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-8afdd989-23b1-4882-8c29-d088107385ea, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:40.35Z","sequence":18286,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:40.35Z","sequence":18287,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFA5C37602365E2] for gateway [gateway_integrationtest_network_191094]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:40.351Z","sequence":18288,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:40.351Z","sequence":18289,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191094]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:40.357Z","sequence":18290,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-71b8950c-a8b7-4cf8-8d8b-f4bc8aec8950, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:40.357Z","sequence":18291,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:40.357Z","sequence":18292,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:40.599Z","sequence":18293,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e931964a-ce87-4ee0-a8d1-4ed9b20ba088, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:45.805Z","sequence":18294,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:45.805Z","sequence":18295,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AD0] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:45.837Z","sequence":18296,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:45.837Z","sequence":18297,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:45.899Z","sequence":18298,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3d8a0a0e-d703-4466-8801-84196ca26a76, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:47.443Z","sequence":18299,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:47.444Z","sequence":18300,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C46] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:47.45Z","sequence":18301,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:47.45Z","sequence":18302,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:47.456Z","sequence":18303,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c0f1b6f1-a193-46bb-89b9-f723294b25b1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:50.194Z","sequence":18304,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:50.194Z","sequence":18305,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006A6] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:50.199Z","sequence":18306,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:50.199Z","sequence":18307,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:50.206Z","sequence":18308,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0c0cf42a-08f9-4017-af98-d7e51bfede7e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:53.828Z","sequence":18309,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:53.828Z","sequence":18310,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006E4] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:53.846Z","sequence":18311,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.8.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:53.846Z","sequence":18312,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:53.893Z","sequence":18313,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-15b5ebdc-f418-4bb7-bdfd-5ad6470d6b5c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:54.868Z","sequence":18314,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFA5C37602365E2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8805d1044b1f0be8","parentId":"52a75d880c7c501e","traceId":"000000000000000030f8c53a0e37a20a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:54.908Z","sequence":18315,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFA5C37602365E2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8805d1044b1f0be8","parentId":"52a75d880c7c501e","traceId":"000000000000000030f8c53a0e37a20a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:55.175Z","sequence":18316,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191094]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"499f42f97ed6c526","parentId":"78ba7dc86b042598","traceId":"0000000000000000a338aec56434a3ff","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:55.197Z","sequence":18317,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191094]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"499f42f97ed6c526","parentId":"78ba7dc86b042598","traceId":"0000000000000000a338aec56434a3ff","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:55.332Z","sequence":18318,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191095]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e5372cda0b05b98d","parentId":"5a3604610b2161bc","traceId":"00000000000000009554880f12d65231","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:55.35Z","sequence":18319,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191095, resource-version: afb4bd96-b065-4906-b934-7dbb2ea567b3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e5372cda0b05b98d","parentId":"5a3604610b2161bc","traceId":"00000000000000009554880f12d65231","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:55.356Z","sequence":18320,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191095, resource-version: 20e618c6-9c45-4ef7-93b6-25a073b38ccd]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e5372cda0b05b98d","parentId":"5a3604610b2161bc","traceId":"00000000000000009554880f12d65231","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:55.365Z","sequence":18321,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191095]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"eeaddea58ead43ff","parentId":"59741c3e8bd15559","traceId":"00000000000000009554880f12d65231","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:55.69Z","sequence":18322,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191095]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"eeaddea58ead43ff","parentId":"59741c3e8bd15559","traceId":"00000000000000009554880f12d65231","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:56.369Z","sequence":18323,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFBDD382FD63B7D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"82a885ce61efc8b6","parentId":"3198468114d39885","traceId":"000000000000000074a25278fde2417a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:56.45Z","sequence":18324,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFBDD382FD63B7D, resource-version: be53403a-f11c-4551-93e9-ee101e07ae22]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"82a885ce61efc8b6","parentId":"3198468114d39885","traceId":"000000000000000074a25278fde2417a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:56.458Z","sequence":18325,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFBDD382FD63B7D, resource-version: 65587244-885d-4c22-9ac2-b72f70cd6fb6]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"82a885ce61efc8b6","parentId":"3198468114d39885","traceId":"000000000000000074a25278fde2417a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:57.545Z","sequence":18326,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:57.545Z","sequence":18327,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191095]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:57.557Z","sequence":18328,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-e012c01f-773d-4719-ae81-5580ea7f01fb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:57.683Z","sequence":18329,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:57.684Z","sequence":18330,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFBDD382FD63B7D] for gateway [gateway_integrationtest_network_191095]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:57.684Z","sequence":18331,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:57.684Z","sequence":18332,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191095]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:57.689Z","sequence":18333,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:57.689Z","sequence":18334,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:57.69Z","sequence":18335,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d39ca140-f533-45b7-b5ae-b8bbebf887a2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:52:58.038Z","sequence":18336,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7b71308d-7bf5-4f56-94ef-3dbb78745e5a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:02.46Z","sequence":18337,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:02.461Z","sequence":18338,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BAB] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:02.468Z","sequence":18339,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:02.468Z","sequence":18340,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:02.475Z","sequence":18341,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f73aaea5-cdd0-4aba-961a-be2f646120e1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:04.23Z","sequence":18342,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191096]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f13447d04df4ed7e","parentId":"4bdd5844e345390b","traceId":"00000000000000004948dfecee30276f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:04.254Z","sequence":18343,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191096, resource-version: 205cd390-e8b6-45a4-87c8-5ef63c518e45]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f13447d04df4ed7e","parentId":"4bdd5844e345390b","traceId":"00000000000000004948dfecee30276f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:04.286Z","sequence":18344,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191096, resource-version: e0ebe0bf-3e19-46d7-81a5-8d2e2cde9a57]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f13447d04df4ed7e","parentId":"4bdd5844e345390b","traceId":"00000000000000004948dfecee30276f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:04.292Z","sequence":18345,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191096]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9dcdd95aad37b4c0","parentId":"8922613400920e10","traceId":"00000000000000004948dfecee30276f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:04.45Z","sequence":18346,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191096]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9dcdd95aad37b4c0","parentId":"8922613400920e10","traceId":"00000000000000004948dfecee30276f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:05.222Z","sequence":18347,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/aloxy:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:05.222Z","sequence":18348,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: aloxy, device-id: 0008004A8F68]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:05.231Z","sequence":18349,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c70e4b07-2659-411e-a14c-4b4bcb8d699a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:05.235Z","sequence":18350,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:05.235Z","sequence":18351,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: aloxy]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:05.238Z","sequence":18352,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-73b39d5e-02bc-4692-899c-8be69566f6ef, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:05.738Z","sequence":18353,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF74F1BE14C2BFF]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ceac9bad5034fc21","parentId":"eccf4eafdc1e6d8c","traceId":"0000000000000000ce25ff66ea953380","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:05.798Z","sequence":18354,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF74F1BE14C2BFF, resource-version: f4d65b36-3e71-4a7a-8a68-6fd51cc8e5bf]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ceac9bad5034fc21","parentId":"eccf4eafdc1e6d8c","traceId":"0000000000000000ce25ff66ea953380","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:05.805Z","sequence":18355,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF74F1BE14C2BFF, resource-version: c57631b6-d307-4728-8c9b-3d6c5b567f98]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ceac9bad5034fc21","parentId":"eccf4eafdc1e6d8c","traceId":"0000000000000000ce25ff66ea953380","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:06.886Z","sequence":18356,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:06.886Z","sequence":18357,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191096]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:06.897Z","sequence":18358,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-41cd0fbf-a488-487f-b9df-c91be02c390a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:07.064Z","sequence":18359,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:07.064Z","sequence":18360,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF74F1BE14C2BFF] for gateway [gateway_integrationtest_network_191096]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:07.065Z","sequence":18361,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:07.065Z","sequence":18362,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191096]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:07.071Z","sequence":18363,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8deebbf5-86fc-4c70-99c3-53794f135fe2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:07.071Z","sequence":18364,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.3.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:07.071Z","sequence":18365,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:07.339Z","sequence":18366,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-56156be8-cb5a-41c2-8555-3f43cc254b67, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:09.211Z","sequence":18367,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFBDD382FD63B7D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"110dd43efe850a4c","parentId":"7823ba781981b9a3","traceId":"000000000000000031879a80a9acff4f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:09.31Z","sequence":18368,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFBDD382FD63B7D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"110dd43efe850a4c","parentId":"7823ba781981b9a3","traceId":"000000000000000031879a80a9acff4f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:09.725Z","sequence":18369,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191095]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5ee36359e566976b","parentId":"7de4e4fc42eaaa69","traceId":"0000000000000000c0a1b558fc3ae27c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:09.859Z","sequence":18370,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191095]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5ee36359e566976b","parentId":"7de4e4fc42eaaa69","traceId":"0000000000000000c0a1b558fc3ae27c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:10.806Z","sequence":18371,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:10.807Z","sequence":18372,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AF6] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:10.815Z","sequence":18373,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:10.816Z","sequence":18374,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:10.823Z","sequence":18375,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-fc32db12-4efb-44be-8655-5aa75d7e527f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:13.773Z","sequence":18376,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191097]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"567eb7803acb8eda","parentId":"a9b6b1ad84664688","traceId":"000000000000000077e8eeadd7604efc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:13.809Z","sequence":18377,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191097, resource-version: 904ec62d-faf7-48ab-b5dc-27c097499d43]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"567eb7803acb8eda","parentId":"a9b6b1ad84664688","traceId":"000000000000000077e8eeadd7604efc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:13.845Z","sequence":18378,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191097, resource-version: 16737526-9323-4005-9e19-404f3f6288de]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"567eb7803acb8eda","parentId":"a9b6b1ad84664688","traceId":"000000000000000077e8eeadd7604efc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:13.849Z","sequence":18379,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191097]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e62ce1e9e897c761","parentId":"772988168f26f31e","traceId":"000000000000000077e8eeadd7604efc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:14.015Z","sequence":18380,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191097]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e62ce1e9e897c761","parentId":"772988168f26f31e","traceId":"000000000000000077e8eeadd7604efc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:14.855Z","sequence":18381,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:14.855Z","sequence":18382,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: shell]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:14.883Z","sequence":18383,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-69db71be-0c70-42be-9a1e-01ed3a4c8bb1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:14.89Z","sequence":18384,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/shell:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:14.89Z","sequence":18385,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: shell, type: hashed-password, auth-id: auth-gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:14.925Z","sequence":18386,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-6cdd2a70-d5cc-4441-8dc1-272d8107c881, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:15.052Z","sequence":18387,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:15.052Z","sequence":18388,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A5F] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:15.06Z","sequence":18389,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:15.06Z","sequence":18390,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:15.077Z","sequence":18391,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a3420aba-7b7c-44cb-b1fc-b1c8cb600b7c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:15.099Z","sequence":18392,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF6DF50A5ECAC2B]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ed5aad9910e180fc","parentId":"2b1e25e6661f865b","traceId":"000000000000000080669d46567aa4ba","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:15.147Z","sequence":18393,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF6DF50A5ECAC2B, resource-version: 11b71a37-2ea3-4f63-8626-5da5e87d8cc1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ed5aad9910e180fc","parentId":"2b1e25e6661f865b","traceId":"000000000000000080669d46567aa4ba","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:15.154Z","sequence":18394,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF6DF50A5ECAC2B, resource-version: 689d64de-b5b0-441a-bddd-7fb1f60538aa]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ed5aad9910e180fc","parentId":"2b1e25e6661f865b","traceId":"000000000000000080669d46567aa4ba","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:15.806Z","sequence":18395,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF74F1BE14C2BFF]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"126d02125b105acc","parentId":"da8b53c4ef4095b2","traceId":"0000000000000000677faf7095eff697","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:15.846Z","sequence":18396,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF74F1BE14C2BFF]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"126d02125b105acc","parentId":"da8b53c4ef4095b2","traceId":"0000000000000000677faf7095eff697","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:16.058Z","sequence":18397,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191096]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"734db8b210e03ce9","parentId":"5563ca5ef86a2c43","traceId":"000000000000000039032b6d86f45247","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:16.096Z","sequence":18398,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191096]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"734db8b210e03ce9","parentId":"5563ca5ef86a2c43","traceId":"000000000000000039032b6d86f45247","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:16.225Z","sequence":18399,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191098]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8fdcd75451b8eb7a","parentId":"3c7a292d7256230f","traceId":"0000000000000000759158db41794392","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:16.274Z","sequence":18400,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:16.274Z","sequence":18401,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191097]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:16.285Z","sequence":18402,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-66951c51-12d2-4d55-803a-6ce6ded7b5ac, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:16.296Z","sequence":18403,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191098, resource-version: 05f03517-1ca2-46b3-adb7-7c1b1762b493]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8fdcd75451b8eb7a","parentId":"3c7a292d7256230f","traceId":"0000000000000000759158db41794392","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:16.303Z","sequence":18404,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191098, resource-version: 1a141b40-6aca-4320-ac65-dd36e17b2703]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8fdcd75451b8eb7a","parentId":"3c7a292d7256230f","traceId":"0000000000000000759158db41794392","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:16.306Z","sequence":18405,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191098]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2f6da6300086fe54","parentId":"3f54bb764188bfef","traceId":"0000000000000000759158db41794392","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:16.419Z","sequence":18406,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:16.419Z","sequence":18407,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF6DF50A5ECAC2B] for gateway [gateway_integrationtest_network_191097]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:16.42Z","sequence":18408,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:16.42Z","sequence":18409,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191097]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:16.424Z","sequence":18410,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:16.425Z","sequence":18411,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:16.426Z","sequence":18412,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e786b027-78d2-4d53-97e6-0a9bf5803cb8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:16.502Z","sequence":18413,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191098]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2f6da6300086fe54","parentId":"3f54bb764188bfef","traceId":"0000000000000000759158db41794392","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:16.827Z","sequence":18414,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-be4edad9-181c-48b1-91af-22d7856165e8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:17.607Z","sequence":18415,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF32C0A238EAB59]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e018c0eca16e1b33","parentId":"31aecc5ccb9501e3","traceId":"000000000000000006c901469c80c4e0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:17.625Z","sequence":18416,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF32C0A238EAB59, resource-version: 7429a64b-b406-4afc-b91b-6be23942f074]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e018c0eca16e1b33","parentId":"31aecc5ccb9501e3","traceId":"000000000000000006c901469c80c4e0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:17.633Z","sequence":18417,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF32C0A238EAB59, resource-version: 87a55194-9b84-43af-a659-6b20e2117941]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e018c0eca16e1b33","parentId":"31aecc5ccb9501e3","traceId":"000000000000000006c901469c80c4e0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:17.733Z","sequence":18418,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:17.733Z","sequence":18419,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BB613]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:17.739Z","sequence":18420,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-12d13d03-01cf-459a-9f6f-8070db453e53, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:18.505Z","sequence":18421,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF32C0A238EAB59]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6cfa62e6703650ff","parentId":"92de7626ee84d430","traceId":"0000000000000000f3ea1a5523a09922","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:18.596Z","sequence":18422,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF32C0A238EAB59]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6cfa62e6703650ff","parentId":"92de7626ee84d430","traceId":"0000000000000000f3ea1a5523a09922","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:18.825Z","sequence":18423,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:18.825Z","sequence":18424,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000696] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:18.845Z","sequence":18425,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:18.845Z","sequence":18426,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:18.857Z","sequence":18427,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1650944e-3cf3-43a2-aaf5-731b215ef2c6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:18.931Z","sequence":18428,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191098]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c4cc684dce28a9af","parentId":"7df3263cc264cead","traceId":"000000000000000050a734c077144b8a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:18.958Z","sequence":18429,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191098]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c4cc684dce28a9af","parentId":"7df3263cc264cead","traceId":"000000000000000050a734c077144b8a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:21.413Z","sequence":18430,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: D88F06A5F53A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"dd39f6cb2818ca01","parentId":"331e40f0637b164c","traceId":"00000000000000002b647106bb9a5209","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:21.455Z","sequence":18431,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: D88F06A5F53A, resource-version: 107ec0a8-2df8-471f-8e57-69d4495a00ec]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"dd39f6cb2818ca01","parentId":"331e40f0637b164c","traceId":"00000000000000002b647106bb9a5209","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:21.464Z","sequence":18432,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: D88F06A5F53A, resource-version: a9aab08f-4fde-47e9-ae03-ee9f07fff5c8]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"dd39f6cb2818ca01","parentId":"331e40f0637b164c","traceId":"00000000000000002b647106bb9a5209","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:21.469Z","sequence":18433,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: D88F06A5F53A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c185b30d681edd25","parentId":"92195bd2991c393f","traceId":"00000000000000002b647106bb9a5209","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:21.776Z","sequence":18434,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: D88F06A5F53A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c185b30d681edd25","parentId":"92195bd2991c393f","traceId":"00000000000000002b647106bb9a5209","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:22.335Z","sequence":18435,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF6DF50A5ECAC2B]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2693c941cc0c4622","parentId":"544730d035bf488f","traceId":"0000000000000000b6c3d109a47d7fa0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:22.372Z","sequence":18436,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF6DF50A5ECAC2B]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2693c941cc0c4622","parentId":"544730d035bf488f","traceId":"0000000000000000b6c3d109a47d7fa0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:22.593Z","sequence":18437,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF96DCE9E7F6A2A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e5cb87dafa5ff0dd","parentId":"23c50d18f356f630","traceId":"00000000000000002f146b97ba5c2852","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:22.647Z","sequence":18438,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF96DCE9E7F6A2A, resource-version: 0344bff0-b9ad-4eca-98e4-57eb7abe74c5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e5cb87dafa5ff0dd","parentId":"23c50d18f356f630","traceId":"00000000000000002f146b97ba5c2852","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:22.654Z","sequence":18439,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF96DCE9E7F6A2A, resource-version: 4191b283-b315-41a0-86b0-849dfe280a77]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e5cb87dafa5ff0dd","parentId":"23c50d18f356f630","traceId":"00000000000000002f146b97ba5c2852","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:22.837Z","sequence":18440,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191097]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1a0293b7c348762c","parentId":"8db8bbc9494f1a0a","traceId":"0000000000000000c50da17d8887067a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:22.894Z","sequence":18441,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191097]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1a0293b7c348762c","parentId":"8db8bbc9494f1a0a","traceId":"0000000000000000c50da17d8887067a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:23.256Z","sequence":18442,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:23.257Z","sequence":18443,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006DA] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:23.288Z","sequence":18444,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.8.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:23.288Z","sequence":18445,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:23.298Z","sequence":18446,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-df85a37a-308e-4f7f-86ad-bcc59678373b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:23.537Z","sequence":18447,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:23.537Z","sequence":18448,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:23.541Z","sequence":18449,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-73fca661-17ec-4926-ba9b-2d612e77facf, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:23.545Z","sequence":18450,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:23.545Z","sequence":18451,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-D88F06A5F53A]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:23.577Z","sequence":18452,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-4d125723-505d-4e7b-bb06-9570e687cd08, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:23.707Z","sequence":18453,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:23.708Z","sequence":18454,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: D88F06A5F53A]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:23.733Z","sequence":18455,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-310101b9-caf8-4648-93d4-a8ebf78276b2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:24.923Z","sequence":18456,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:24.923Z","sequence":18457,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B5D] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:24.928Z","sequence":18458,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:24.929Z","sequence":18459,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:24.937Z","sequence":18460,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7373a74d-d133-4f3f-8322-ad2389e9f4f6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:26.722Z","sequence":18461,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:26.722Z","sequence":18462,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000691] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:26.727Z","sequence":18463,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:26.727Z","sequence":18464,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:26.735Z","sequence":18465,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-80615eb6-6636-4842-862e-1c933b9826cf, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:27.065Z","sequence":18466,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:27.065Z","sequence":18467,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oci]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:27.097Z","sequence":18468,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-bba79125-d908-4b55-b02b-79ca01213279, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:27.105Z","sequence":18469,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:27.105Z","sequence":18470,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100016A] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:27.113Z","sequence":18471,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:27.113Z","sequence":18472,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:27.116Z","sequence":18473,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-86aa8de3-afed-41e4-a212-cfce7dbb0f7b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:27.182Z","sequence":18474,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:27.183Z","sequence":18475,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100016A] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:27.189Z","sequence":18476,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:27.189Z","sequence":18477,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:27.193Z","sequence":18478,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-dac54217-ff9f-4ac6-95d3-5cf83facec79, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:28.648Z","sequence":18479,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: AA70322A5219]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bbf0e9d200694ed3","parentId":"1d44fd0033bf74b4","traceId":"0000000000000000eb8089eabfd1249e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:28.669Z","sequence":18480,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: AA70322A5219, resource-version: 1d8d2099-66f5-426e-9724-f8104b204d5c]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bbf0e9d200694ed3","parentId":"1d44fd0033bf74b4","traceId":"0000000000000000eb8089eabfd1249e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:28.708Z","sequence":18481,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: AA70322A5219, resource-version: 682f919d-60c4-4a2a-963b-48859d5bd91a]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bbf0e9d200694ed3","parentId":"1d44fd0033bf74b4","traceId":"0000000000000000eb8089eabfd1249e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:28.713Z","sequence":18482,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: AA70322A5219]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ea790784aca4e8b2","parentId":"825453b312a9d713","traceId":"0000000000000000eb8089eabfd1249e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:28.861Z","sequence":18483,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: AA70322A5219]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ea790784aca4e8b2","parentId":"825453b312a9d713","traceId":"0000000000000000eb8089eabfd1249e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:29.552Z","sequence":18484,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF1DDE397CD12F0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"dbec385a04b3bd5d","parentId":"8e725daae82f830d","traceId":"0000000000000000d0e1ef2266065459","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:29.569Z","sequence":18485,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [command-router@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:29.569Z","sequence":18486,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: D88F06A5F53A]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:29.581Z","sequence":18487,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f84d427a-fdee-4a21-b226-e0703ef584e9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:29.599Z","sequence":18488,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF1DDE397CD12F0, resource-version: 8f4770e2-17f3-4768-949b-ab8742b37532]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"dbec385a04b3bd5d","parentId":"8e725daae82f830d","traceId":"0000000000000000d0e1ef2266065459","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:29.646Z","sequence":18489,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF1DDE397CD12F0, resource-version: e8da32e7-5a21-4659-ae4f-06642b3dbe1c]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"dbec385a04b3bd5d","parentId":"8e725daae82f830d","traceId":"0000000000000000d0e1ef2266065459","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:30.729Z","sequence":18490,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:30.73Z","sequence":18491,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-AA70322A5219]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:30.739Z","sequence":18492,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-28c0fbe7-a81b-4c20-b1aa-639f3d8bb45e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:30.857Z","sequence":18493,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:30.857Z","sequence":18494,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: AA70322A5219]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:30.863Z","sequence":18495,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-80acf3c8-536c-427d-8551-94c40f848fb2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:30.867Z","sequence":18496,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:30.867Z","sequence":18497,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF1DDE397CD12F0] for gateway [AA70322A5219]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:30.874Z","sequence":18498,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:30.875Z","sequence":18499,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:31.237Z","sequence":18500,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c685454e-fe6b-4f3d-bbbf-28547153f15e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:34.031Z","sequence":18501,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:34.032Z","sequence":18502,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000170] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:34.052Z","sequence":18503,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:34.053Z","sequence":18504,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000170] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:34.065Z","sequence":18505,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:34.066Z","sequence":18506,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:34.084Z","sequence":18507,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:34.084Z","sequence":18508,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:34.084Z","sequence":18509,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-28e18e26-71e6-468a-8bad-f5fa3b5a61b3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:34.092Z","sequence":18510,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-bb1061b6-c21c-49e3-a511-d4cfe29446ea, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:35.323Z","sequence":18511,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:35.323Z","sequence":18512,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AB6] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:35.348Z","sequence":18513,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:35.348Z","sequence":18514,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:35.398Z","sequence":18515,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-167b2a66-8acb-4ea7-928d-e56330ea8b55, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:39.73Z","sequence":18516,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191101]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"56ddafd9fd90ba35","parentId":"5c9b33e589422b68","traceId":"000000000000000034a6abfc98f00198","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:39.791Z","sequence":18517,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191101, resource-version: 5143d1a0-c590-4b6a-a551-34f93d4e6f77]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"56ddafd9fd90ba35","parentId":"5c9b33e589422b68","traceId":"000000000000000034a6abfc98f00198","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:39.799Z","sequence":18518,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191101, resource-version: 39831138-5498-45e8-b719-5a86348b8981]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"56ddafd9fd90ba35","parentId":"5c9b33e589422b68","traceId":"000000000000000034a6abfc98f00198","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:39.803Z","sequence":18519,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191101]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"371591bc9027280e","parentId":"8cc3960ee8eb8837","traceId":"000000000000000034a6abfc98f00198","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:39.832Z","sequence":18520,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:39.833Z","sequence":18521,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100018D] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:39.833Z","sequence":18522,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:39.833Z","sequence":18523,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100018D] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:39.842Z","sequence":18524,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:39.842Z","sequence":18525,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:39.842Z","sequence":18526,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:39.842Z","sequence":18527,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:39.845Z","sequence":18528,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b9f37736-9137-41e7-b57b-ee0211a22a31, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:39.846Z","sequence":18529,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-91cd6eca-c78e-4bc6-b55e-6638685d20e7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:40.004Z","sequence":18530,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191101]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"371591bc9027280e","parentId":"8cc3960ee8eb8837","traceId":"000000000000000034a6abfc98f00198","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:40.58Z","sequence":18531,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF0B1D648588751]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3e73b1a2ada2ecc4","parentId":"d1759d283dd960ea","traceId":"000000000000000053bfad6400795131","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:40.644Z","sequence":18532,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF0B1D648588751, resource-version: 8604abcd-3fef-4445-a9c4-764b4b7abd03]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3e73b1a2ada2ecc4","parentId":"d1759d283dd960ea","traceId":"000000000000000053bfad6400795131","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:40.937Z","sequence":18533,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF0B1D648588751, resource-version: f6465b2d-db14-4a5e-8e49-d915955d901b]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3e73b1a2ada2ecc4","parentId":"d1759d283dd960ea","traceId":"000000000000000053bfad6400795131","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:41.065Z","sequence":18534,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF1DDE397CD12F0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7d9619e987f11a54","parentId":"4409ae5813df07a5","traceId":"0000000000000000f3d731b72768ff9d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:41.254Z","sequence":18535,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF1DDE397CD12F0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7d9619e987f11a54","parentId":"4409ae5813df07a5","traceId":"0000000000000000f3d731b72768ff9d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:41.561Z","sequence":18536,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: AA70322A5219]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b4855ed4db1be519","parentId":"21e937b5e5916583","traceId":"0000000000000000a2ae6f3893c63ae8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:41.605Z","sequence":18537,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: AA70322A5219]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b4855ed4db1be519","parentId":"21e937b5e5916583","traceId":"0000000000000000a2ae6f3893c63ae8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:41.991Z","sequence":18538,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:41.991Z","sequence":18539,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191101]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:42.004Z","sequence":18540,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-d62a2401-0c6b-461e-a1a7-bc9543fbc6fa, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:42.123Z","sequence":18541,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:42.123Z","sequence":18542,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF0B1D648588751] for gateway [gateway_integrationtest_network_191101]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:42.124Z","sequence":18543,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:42.124Z","sequence":18544,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191101]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:42.13Z","sequence":18545,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-bfcdee6a-1418-4bf6-abcf-362d9e5bfe01, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:42.13Z","sequence":18546,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:42.13Z","sequence":18547,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:42.317Z","sequence":18548,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e619ad1c-2121-4ba1-b8a8-b8f8d6a9e401, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:42.675Z","sequence":18549,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:42.675Z","sequence":18550,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BA9] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:42.682Z","sequence":18551,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:42.682Z","sequence":18552,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:42.689Z","sequence":18553,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a898451c-54a6-4ce6-815d-09ae362bd5a6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:43.759Z","sequence":18554,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/acta:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:43.76Z","sequence":18555,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: acta, device-id: 0008004AAAA3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:43.793Z","sequence":18556,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7521c094-464d-4e94-831e-9a2919d98313, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:43.797Z","sequence":18557,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:43.797Z","sequence":18558,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: acta]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:43.801Z","sequence":18559,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-95cd3f49-c788-4225-859d-759f92c1e409, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:46.19Z","sequence":18560,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oiltanking:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:46.19Z","sequence":18561,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oiltanking, device-id: 70B3D57BB10013ED] for gateway [0008004BB60F]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:46.197Z","sequence":18562,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_oiltanking\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:46.197Z","sequence":18563,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oiltanking\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:46.2Z","sequence":18564,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-737297c7-1c32-47a1-8a98-018500536443, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:47.045Z","sequence":18565,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:47.045Z","sequence":18566,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000575] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:47.057Z","sequence":18567,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:47.057Z","sequence":18568,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:47.073Z","sequence":18569,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-771ed3a8-8cc0-43e7-8892-9966c2dbdf87, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:49.325Z","sequence":18570,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:49.325Z","sequence":18571,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10008CD] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:49.331Z","sequence":18572,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:49.331Z","sequence":18573,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:49.337Z","sequence":18574,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2ce223c7-90a0-4dce-86b8-00238e99d8a1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:49.593Z","sequence":18575,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"retrieving device [tenant: shell, device-id: 70B3D57BB10008CD]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f195ad626f2a7a59","parentId":"896db8ba7788e36f","traceId":"bc60dafaba8628794afebfa852b1981a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:50.067Z","sequence":18576,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:50.067Z","sequence":18577,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019C6] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:50.072Z","sequence":18578,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:50.072Z","sequence":18579,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:50.078Z","sequence":18580,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a7b442c2-9db3-4a50-a0a6-98ec45202cd5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:52.971Z","sequence":18581,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF0B1D648588751]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"780e05ef6a123fab","parentId":"25d0a60ab422109b","traceId":"000000000000000013b36eda6c57b373","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:52.997Z","sequence":18582,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF0B1D648588751]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"780e05ef6a123fab","parentId":"25d0a60ab422109b","traceId":"000000000000000013b36eda6c57b373","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:53.193Z","sequence":18583,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191101]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a1c4ad583bdc3eed","parentId":"22140533129a4a8c","traceId":"0000000000000000eb0df5400eb48df0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:53.212Z","sequence":18584,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191101]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a1c4ad583bdc3eed","parentId":"22140533129a4a8c","traceId":"0000000000000000eb0df5400eb48df0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:53.438Z","sequence":18585,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191102]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"13ac43b71e8f4818","parentId":"adb857a029454658","traceId":"0000000000000000e8fdf3e8c866231c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:53.496Z","sequence":18586,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191102, resource-version: 5415a6d7-f6c9-4042-a550-bd8216ba2ce6]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"13ac43b71e8f4818","parentId":"adb857a029454658","traceId":"0000000000000000e8fdf3e8c866231c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:53.514Z","sequence":18587,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191102, resource-version: 41b3ddea-2eb0-4894-9e3a-ced9453abc5b]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"13ac43b71e8f4818","parentId":"adb857a029454658","traceId":"0000000000000000e8fdf3e8c866231c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:53.518Z","sequence":18588,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191102]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"086f496c3bf7258f","parentId":"52b0334213c48e82","traceId":"0000000000000000e8fdf3e8c866231c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:53.679Z","sequence":18589,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191102]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"086f496c3bf7258f","parentId":"52b0334213c48e82","traceId":"0000000000000000e8fdf3e8c866231c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:54.796Z","sequence":18590,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFE031AA22DB810]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c0874f6c09f5e306","parentId":"40ab851459e06832","traceId":"000000000000000069167469bddde71d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:54.841Z","sequence":18591,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFE031AA22DB810, resource-version: 89de1f16-9e30-4c67-a0c1-87c3dc8431be]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c0874f6c09f5e306","parentId":"40ab851459e06832","traceId":"000000000000000069167469bddde71d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:54.847Z","sequence":18592,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFE031AA22DB810, resource-version: 774de46a-32c0-410d-b985-2796abdd00cd]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c0874f6c09f5e306","parentId":"40ab851459e06832","traceId":"000000000000000069167469bddde71d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:55.931Z","sequence":18593,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:55.932Z","sequence":18594,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191102]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:55.942Z","sequence":18595,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-7b328a56-1fc8-4898-b1bc-9002fa6a0354, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:56.067Z","sequence":18596,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:56.067Z","sequence":18597,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFE031AA22DB810] for gateway [gateway_integrationtest_network_191102]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:56.068Z","sequence":18598,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:56.068Z","sequence":18599,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191102]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:56.074Z","sequence":18600,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4ec3da75-a1a1-48af-b450-5dfcca01beea, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:56.075Z","sequence":18601,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:56.076Z","sequence":18602,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:53:56.431Z","sequence":18603,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-25c2f5c5-038d-4947-b03b-184ca57029a0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:00.327Z","sequence":18604,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:00.327Z","sequence":18605,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: flint]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:00.341Z","sequence":18606,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-0a2fc7e8-f64c-4497-9e9b-cb1ae9d685ad, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:00.345Z","sequence":18607,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/flint:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:00.345Z","sequence":18608,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: flint, type: hashed-password, auth-id: auth-flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:00.348Z","sequence":18609,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/flint:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:00.349Z","sequence":18610,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: flint, type: hashed-password, auth-id: auth-flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:00.366Z","sequence":18611,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-5338b1b5-f82d-4840-b8b8-710590082a74, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:00.367Z","sequence":18612,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-b8340ed3-6f25-4e35-9763-a21b605d75dc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:00.704Z","sequence":18613,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:00.704Z","sequence":18614,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10007CE] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:00.711Z","sequence":18615,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:00.711Z","sequence":18616,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:00.752Z","sequence":18617,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d4d299db-a032-4637-b4b8-4699b9b2ccf3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:02.039Z","sequence":18618,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:02.04Z","sequence":18619,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:02.045Z","sequence":18620,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-997a42ff-5a6c-4c3e-8bbe-057ccf18df3c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:03.704Z","sequence":18621,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:03.704Z","sequence":18622,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AE7] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:03.71Z","sequence":18623,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:03.71Z","sequence":18624,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:03.717Z","sequence":18625,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-710cac49-5f4c-4e91-9440-42c4b4103e9e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:04.554Z","sequence":18626,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191103]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"788a5d19e691f803","parentId":"81621f4b06384ffe","traceId":"0000000000000000595ec34afc8a250a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:04.592Z","sequence":18627,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191103, resource-version: 13e57e2f-fdd1-4420-ad93-0763056bd34e]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"788a5d19e691f803","parentId":"81621f4b06384ffe","traceId":"0000000000000000595ec34afc8a250a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:04.598Z","sequence":18628,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191103, resource-version: a8a4d5fb-2b2c-4929-b533-dbbe08148ff1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"788a5d19e691f803","parentId":"81621f4b06384ffe","traceId":"0000000000000000595ec34afc8a250a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:04.603Z","sequence":18629,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191103]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cb6714eb61f59790","parentId":"27fb8a0c7753f9de","traceId":"0000000000000000595ec34afc8a250a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:04.774Z","sequence":18630,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191103]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cb6714eb61f59790","parentId":"27fb8a0c7753f9de","traceId":"0000000000000000595ec34afc8a250a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:05.487Z","sequence":18631,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:05.487Z","sequence":18632,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100015F] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:05.494Z","sequence":18633,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:05.494Z","sequence":18634,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:05.499Z","sequence":18635,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c2272bc4-d8b6-46f3-9de8-b517833bbdeb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:05.529Z","sequence":18636,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF18B8245973C3E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"dc883c5f8ae40c08","parentId":"14d1e3659ff7bb54","traceId":"000000000000000007f6878b6be4f947","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:05.544Z","sequence":18637,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF18B8245973C3E, resource-version: 03bd5781-19ce-4aae-bf2a-207cb1ed501a]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"dc883c5f8ae40c08","parentId":"14d1e3659ff7bb54","traceId":"000000000000000007f6878b6be4f947","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:05.553Z","sequence":18638,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF18B8245973C3E, resource-version: a28447a8-a9d7-46e3-bdd1-eae87a993861]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"dc883c5f8ae40c08","parentId":"14d1e3659ff7bb54","traceId":"000000000000000007f6878b6be4f947","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:05.567Z","sequence":18639,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:05.568Z","sequence":18640,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: ineos]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:05.573Z","sequence":18641,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-77578c0c-802b-4710-8754-6496cc8f9478, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:05.576Z","sequence":18642,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:05.577Z","sequence":18643,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB1000AC8] for gateway [0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:05.583Z","sequence":18644,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:05.584Z","sequence":18645,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:05.587Z","sequence":18646,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6d31704f-9e1c-494b-b279-80d26f028213, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:05.62Z","sequence":18647,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:05.62Z","sequence":18648,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100015F] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:05.626Z","sequence":18649,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:05.626Z","sequence":18650,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:05.629Z","sequence":18651,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5043e7b2-6be2-4665-a241-66364cc2ae68, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:06.036Z","sequence":18652,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF18B8245973C3E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b8a89a3112ef0280","parentId":"a2252034dd269b38","traceId":"000000000000000072a4d8329988e933","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:06.053Z","sequence":18653,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF18B8245973C3E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b8a89a3112ef0280","parentId":"a2252034dd269b38","traceId":"000000000000000072a4d8329988e933","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:06.256Z","sequence":18654,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFE031AA22DB810]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ebb05b34c17d649b","parentId":"c92e07b6e90206d8","traceId":"0000000000000000fecb157f576fc7cf","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:06.305Z","sequence":18655,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFE031AA22DB810]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ebb05b34c17d649b","parentId":"c92e07b6e90206d8","traceId":"0000000000000000fecb157f576fc7cf","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:07.017Z","sequence":18656,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191103]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"433db187c50627c7","parentId":"92c59ab8ce7803ce","traceId":"00000000000000008c010b13eaf17429","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:07.053Z","sequence":18657,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191103]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"433db187c50627c7","parentId":"92c59ab8ce7803ce","traceId":"00000000000000008c010b13eaf17429","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:07.879Z","sequence":18658,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191102]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f3dc60dea7de1aa7","parentId":"fee3e079bdd32942","traceId":"0000000000000000f13001ede268ed44","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:07.92Z","sequence":18659,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191102]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f3dc60dea7de1aa7","parentId":"fee3e079bdd32942","traceId":"0000000000000000f13001ede268ed44","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:08.188Z","sequence":18660,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0C6CCFE8B4A1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ec2fa9505d38d073","parentId":"dc6ff32ea60ee6c1","traceId":"0000000000000000b9f334c367fc63d1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:08.206Z","sequence":18661,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0C6CCFE8B4A1, resource-version: 45c9d865-10a1-4267-9b57-2416fb80565c]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ec2fa9505d38d073","parentId":"dc6ff32ea60ee6c1","traceId":"0000000000000000b9f334c367fc63d1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:08.214Z","sequence":18662,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0C6CCFE8B4A1, resource-version: e39cffd4-6a0f-4ee8-9ea6-52e1525e8141]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ec2fa9505d38d073","parentId":"dc6ff32ea60ee6c1","traceId":"0000000000000000b9f334c367fc63d1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:08.217Z","sequence":18663,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 0C6CCFE8B4A1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e07c02a0b2c91697","parentId":"8cb2b547f13f2877","traceId":"0000000000000000b9f334c367fc63d1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:08.446Z","sequence":18664,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 0C6CCFE8B4A1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e07c02a0b2c91697","parentId":"8cb2b547f13f2877","traceId":"0000000000000000b9f334c367fc63d1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:08.575Z","sequence":18665,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 91319808519A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"84a2d8b64abdee7c","parentId":"be6feccae5ec3924","traceId":"0000000000000000369dbec80e06dd78","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:08.598Z","sequence":18666,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 91319808519A, resource-version: 1642200b-990f-4624-b3ed-277d5929e765]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"84a2d8b64abdee7c","parentId":"be6feccae5ec3924","traceId":"0000000000000000369dbec80e06dd78","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:08.608Z","sequence":18667,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 91319808519A, resource-version: aa0e4d15-a5c5-44cb-a8f7-68604959eee4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"84a2d8b64abdee7c","parentId":"be6feccae5ec3924","traceId":"0000000000000000369dbec80e06dd78","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:08.613Z","sequence":18668,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 91319808519A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5878d89c6493763f","parentId":"f50e5e5d85fb0995","traceId":"0000000000000000369dbec80e06dd78","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:08.845Z","sequence":18669,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 91319808519A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5878d89c6493763f","parentId":"f50e5e5d85fb0995","traceId":"0000000000000000369dbec80e06dd78","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:09.037Z","sequence":18670,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFC8D6F62C9F38E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"956d56eb21dd75cb","parentId":"734f0b03ddc71197","traceId":"0000000000000000bf35a4f3b7d69013","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:09.053Z","sequence":18671,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFC8D6F62C9F38E, resource-version: 895e8d5a-bf0e-48f8-b7b3-a00f92506489]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"956d56eb21dd75cb","parentId":"734f0b03ddc71197","traceId":"0000000000000000bf35a4f3b7d69013","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:09.059Z","sequence":18672,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFC8D6F62C9F38E, resource-version: 4f210e0a-163b-4d9d-8ea6-f35d3b46c683]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"956d56eb21dd75cb","parentId":"734f0b03ddc71197","traceId":"0000000000000000bf35a4f3b7d69013","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:09.656Z","sequence":18673,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF04FD18ECC5728]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b67fd3a1466270e6","parentId":"b3ea08a8cd574740","traceId":"000000000000000095133678bd7ce019","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:09.674Z","sequence":18674,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF04FD18ECC5728, resource-version: ac15b495-5ed6-45d6-8697-3e7ae3c9a1ef]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b67fd3a1466270e6","parentId":"b3ea08a8cd574740","traceId":"000000000000000095133678bd7ce019","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:09.681Z","sequence":18675,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF04FD18ECC5728, resource-version: 215ff03b-15e9-45f1-baad-9669c6f9ef11]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b67fd3a1466270e6","parentId":"b3ea08a8cd574740","traceId":"000000000000000095133678bd7ce019","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:10.131Z","sequence":18676,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:10.132Z","sequence":18677,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-0C6CCFE8B4A1]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:10.142Z","sequence":18678,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-8faf8be6-0077-49ee-8eeb-5b2d39fff5a2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:10.355Z","sequence":18679,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:10.355Z","sequence":18680,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0C6CCFE8B4A1]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:10.362Z","sequence":18681,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-bb033b24-689b-4b88-9c70-1c829733a8da, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:10.368Z","sequence":18682,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:10.368Z","sequence":18683,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFC8D6F62C9F38E] for gateway [0C6CCFE8B4A1]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:10.376Z","sequence":18684,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:10.376Z","sequence":18685,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:10.733Z","sequence":18686,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ea252309-c6c0-408a-94c9-c144e7f3c8f6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:10.783Z","sequence":18687,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:10.784Z","sequence":18688,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-91319808519A]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:10.833Z","sequence":18689,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-97252327-bc34-46bb-b66f-5159033c8806, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:10.972Z","sequence":18690,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:10.972Z","sequence":18691,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 91319808519A]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:10.978Z","sequence":18692,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7cec6796-a27e-4de0-824e-f3dcc3bcf5f2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:10.983Z","sequence":18693,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:10.983Z","sequence":18694,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF04FD18ECC5728] for gateway [91319808519A]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:10.99Z","sequence":18695,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.7.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:10.991Z","sequence":18696,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:11.405Z","sequence":18697,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1566cd78-9350-48fc-8bc4-ef625be4eb1d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:11.408Z","sequence":18698,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/repsol:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:11.408Z","sequence":18699,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: repsol, device-id: 0008004A37FF]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:11.459Z","sequence":18700,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2ffc9de7-1126-4b6c-a545-9c70dc43d7c7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:11.465Z","sequence":18701,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:11.465Z","sequence":18702,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: repsol]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:11.481Z","sequence":18703,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-f98f2e28-ce6f-429e-a11a-60dc490d1e5e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:11.619Z","sequence":18704,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:11.619Z","sequence":18705,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C1D] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:11.649Z","sequence":18706,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:11.649Z","sequence":18707,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:11.677Z","sequence":18708,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8baa6a64-5e72-41c5-a35f-24ca23a1b2fe, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:16.365Z","sequence":18709,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF04FD18ECC5728]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bc455eac5f90ad4d","parentId":"1e661ac8c4214d81","traceId":"00000000000000008f2fd31e2ee46425","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:16.402Z","sequence":18710,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF04FD18ECC5728]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bc455eac5f90ad4d","parentId":"1e661ac8c4214d81","traceId":"00000000000000008f2fd31e2ee46425","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:16.945Z","sequence":18711,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 91319808519A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ad1ce3c20100bb29","parentId":"1b251c621f20c934","traceId":"000000000000000039bba3c211daeb6f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:16.963Z","sequence":18712,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 91319808519A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ad1ce3c20100bb29","parentId":"1b251c621f20c934","traceId":"000000000000000039bba3c211daeb6f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:20.196Z","sequence":18713,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191106]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b2e03a012dde2869","parentId":"34a8d74bb64f4c61","traceId":"00000000000000002230b6091fb9d0b1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:20.216Z","sequence":18714,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191106, resource-version: 5228382b-6c41-4de4-888c-2e4cc17337dc]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b2e03a012dde2869","parentId":"34a8d74bb64f4c61","traceId":"00000000000000002230b6091fb9d0b1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:20.222Z","sequence":18715,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191106, resource-version: cb2abb14-10cc-4e64-88ce-4dc484e9b50b]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b2e03a012dde2869","parentId":"34a8d74bb64f4c61","traceId":"00000000000000002230b6091fb9d0b1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:20.226Z","sequence":18716,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191106]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"aa468729137d10e0","parentId":"60741487e29db20f","traceId":"00000000000000002230b6091fb9d0b1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:20.336Z","sequence":18717,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191106]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"aa468729137d10e0","parentId":"60741487e29db20f","traceId":"00000000000000002230b6091fb9d0b1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:21.089Z","sequence":18718,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF55E9214E8924C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1c7ca9f9a669cdfe","parentId":"ec421a6723437293","traceId":"00000000000000003a7014789ea9b855","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:21.114Z","sequence":18719,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF55E9214E8924C, resource-version: 7595b930-9c4d-44c1-9691-b73c82c9be11]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1c7ca9f9a669cdfe","parentId":"ec421a6723437293","traceId":"00000000000000003a7014789ea9b855","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:21.122Z","sequence":18720,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF55E9214E8924C, resource-version: a54ebb62-5108-44e2-97e9-02e204640adc]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1c7ca9f9a669cdfe","parentId":"ec421a6723437293","traceId":"00000000000000003a7014789ea9b855","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:21.458Z","sequence":18721,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFC8D6F62C9F38E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7eedc028b84e3d51","parentId":"27fb2342c8413b02","traceId":"0000000000000000e3a1c1fb59d52fc3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:21.478Z","sequence":18722,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFC8D6F62C9F38E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7eedc028b84e3d51","parentId":"27fb2342c8413b02","traceId":"0000000000000000e3a1c1fb59d52fc3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:22.143Z","sequence":18723,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0C6CCFE8B4A1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ab971135064abeea","parentId":"e587dda7c2183807","traceId":"0000000000000000aba7afc5513151c0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:22.161Z","sequence":18724,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0C6CCFE8B4A1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ab971135064abeea","parentId":"e587dda7c2183807","traceId":"0000000000000000aba7afc5513151c0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:22.19Z","sequence":18725,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:22.19Z","sequence":18726,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191106]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:22.202Z","sequence":18727,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-b0c737d2-5941-438b-8ba8-d2af19430f0f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:22.327Z","sequence":18728,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:22.327Z","sequence":18729,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF55E9214E8924C] for gateway [gateway_integrationtest_network_191106]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:22.328Z","sequence":18730,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:22.328Z","sequence":18731,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191106]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:22.334Z","sequence":18732,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d97e55f9-8482-4966-a45f-909b63738af5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:22.335Z","sequence":18733,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:22.335Z","sequence":18734,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:22.776Z","sequence":18735,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7ef29ab1-bbf6-4e88-9339-0042aa98bf16, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:23.095Z","sequence":18736,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191107]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ae47e68b6edb1af2","parentId":"02f240ebcb70f283","traceId":"0000000000000000520ce337265d987e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:23.124Z","sequence":18737,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191107, resource-version: a1f51d8a-41c1-4499-8c0b-bcff46fa26dd]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ae47e68b6edb1af2","parentId":"02f240ebcb70f283","traceId":"0000000000000000520ce337265d987e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:23.133Z","sequence":18738,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191107, resource-version: b1dfd980-b7f9-4c1e-a8f4-b4fa87b5c418]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ae47e68b6edb1af2","parentId":"02f240ebcb70f283","traceId":"0000000000000000520ce337265d987e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:23.137Z","sequence":18739,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191107]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"83c9e6b75f6eefc2","parentId":"bd320150ba76e2c0","traceId":"0000000000000000520ce337265d987e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:23.471Z","sequence":18740,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191107]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"83c9e6b75f6eefc2","parentId":"bd320150ba76e2c0","traceId":"0000000000000000520ce337265d987e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:24.668Z","sequence":18741,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF74D1ACCDD759B]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"528fc963d7be9887","parentId":"ea60042cd857ea0a","traceId":"000000000000000028ce8f4b53120d46","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:24.683Z","sequence":18742,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF74D1ACCDD759B, resource-version: e22243c5-df57-44ce-abcb-55e559f2c31f]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"528fc963d7be9887","parentId":"ea60042cd857ea0a","traceId":"000000000000000028ce8f4b53120d46","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:24.688Z","sequence":18743,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF74D1ACCDD759B, resource-version: 8ef3f8ab-72e8-441e-9027-9107a81bcee3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"528fc963d7be9887","parentId":"ea60042cd857ea0a","traceId":"000000000000000028ce8f4b53120d46","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:25.237Z","sequence":18744,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF74D1ACCDD759B]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b6dcd2b1f638dbf1","parentId":"c0bc1cd66b5c59f9","traceId":"000000000000000079192f0acbc00cf7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:25.26Z","sequence":18745,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF74D1ACCDD759B]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b6dcd2b1f638dbf1","parentId":"c0bc1cd66b5c59f9","traceId":"000000000000000079192f0acbc00cf7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:25.362Z","sequence":18746,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191107]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b286a3412460257e","parentId":"e8c212439ac0057d","traceId":"00000000000000007ce24f7fd9bcf97f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:25.383Z","sequence":18747,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191107]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b286a3412460257e","parentId":"e8c212439ac0057d","traceId":"00000000000000007ce24f7fd9bcf97f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:31.259Z","sequence":18748,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: A5C415AC298C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ef8505ae4a5308f4","parentId":"5258f76334c916ba","traceId":"0000000000000000d801a58536d376ca","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:31.275Z","sequence":18749,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: A5C415AC298C, resource-version: 51243c19-c8e6-4480-88d3-8dd6069155fb]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ef8505ae4a5308f4","parentId":"5258f76334c916ba","traceId":"0000000000000000d801a58536d376ca","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:31.282Z","sequence":18750,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: A5C415AC298C, resource-version: cc473808-9928-40a2-89be-d4185b27fe15]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ef8505ae4a5308f4","parentId":"5258f76334c916ba","traceId":"0000000000000000d801a58536d376ca","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:31.285Z","sequence":18751,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: A5C415AC298C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"dedecd387e28bf7a","parentId":"92194fe547c75586","traceId":"0000000000000000d801a58536d376ca","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:31.41Z","sequence":18752,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: A5C415AC298C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"dedecd387e28bf7a","parentId":"92194fe547c75586","traceId":"0000000000000000d801a58536d376ca","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:31.93Z","sequence":18753,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFADEF77AA2195F]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cec240df6ee42b41","parentId":"e8053ebef78d23a2","traceId":"0000000000000000fa830055dd43e1ca","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:31.948Z","sequence":18754,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFADEF77AA2195F, resource-version: 6560c970-1981-4e68-8f77-0f936c75df18]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cec240df6ee42b41","parentId":"e8053ebef78d23a2","traceId":"0000000000000000fa830055dd43e1ca","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:31.954Z","sequence":18755,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFADEF77AA2195F, resource-version: 4577f15b-e38a-4664-9dee-61587f50285f]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cec240df6ee42b41","parentId":"e8053ebef78d23a2","traceId":"0000000000000000fa830055dd43e1ca","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:32.269Z","sequence":18756,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFADEF77AA2195F]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"56b265a2ae23e097","parentId":"c34c889979f5ddd5","traceId":"00000000000000003ea18438124a77c8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:32.286Z","sequence":18757,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFADEF77AA2195F]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"56b265a2ae23e097","parentId":"c34c889979f5ddd5","traceId":"00000000000000003ea18438124a77c8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:32.617Z","sequence":18758,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: A5C415AC298C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4f01de44714cad99","parentId":"bd244af10ea7f623","traceId":"000000000000000069a4d21b02816a8e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:32.636Z","sequence":18759,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: A5C415AC298C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4f01de44714cad99","parentId":"bd244af10ea7f623","traceId":"000000000000000069a4d21b02816a8e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:33.882Z","sequence":18760,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:33.882Z","sequence":18761,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 0008004B51D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:33.89Z","sequence":18762,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-128e38fe-9883-46e1-9f8c-01de7a94a597, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:33.894Z","sequence":18763,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:33.894Z","sequence":18764,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: dow]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:33.897Z","sequence":18765,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-77a5cda5-f6e7-47fc-ac41-1c4921730d06, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:35.967Z","sequence":18766,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF55E9214E8924C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a63f79bca024d98b","parentId":"158bc9221c2613bf","traceId":"000000000000000022e74e86f05877c4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:35.985Z","sequence":18767,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF55E9214E8924C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a63f79bca024d98b","parentId":"158bc9221c2613bf","traceId":"000000000000000022e74e86f05877c4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:36.117Z","sequence":18768,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191106]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"be778125df135705","parentId":"7fa170435a513e57","traceId":"00000000000000007e81217c97308ffc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:36.134Z","sequence":18769,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191106]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"be778125df135705","parentId":"7fa170435a513e57","traceId":"00000000000000007e81217c97308ffc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:36.995Z","sequence":18770,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 5A4A8AFC332E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bf004208da2a74ee","parentId":"54bb0e8f5c9e42e1","traceId":"0000000000000000f87da99c6df19914","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:37.014Z","sequence":18771,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 5A4A8AFC332E, resource-version: c2a5ba4a-2c89-49c9-876f-fdc3db636e4b]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bf004208da2a74ee","parentId":"54bb0e8f5c9e42e1","traceId":"0000000000000000f87da99c6df19914","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:37.021Z","sequence":18772,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 5A4A8AFC332E, resource-version: 0f144b3f-ef4b-429a-bd7b-2f6138f9386a]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bf004208da2a74ee","parentId":"54bb0e8f5c9e42e1","traceId":"0000000000000000f87da99c6df19914","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:37.024Z","sequence":18773,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 5A4A8AFC332E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cd25f385c69a9ec2","parentId":"91d1def63f8fadfd","traceId":"0000000000000000f87da99c6df19914","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:37.145Z","sequence":18774,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 5A4A8AFC332E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cd25f385c69a9ec2","parentId":"91d1def63f8fadfd","traceId":"0000000000000000f87da99c6df19914","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:37.558Z","sequence":18775,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:37.558Z","sequence":18776,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A3D] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:37.565Z","sequence":18777,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:37.565Z","sequence":18778,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:37.571Z","sequence":18779,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-30ddbb9a-bdd7-44f2-bf74-486fb85244b0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:37.667Z","sequence":18780,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:37.667Z","sequence":18781,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-00GWALP120IT]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:37.677Z","sequence":18782,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-1856db7b-de10-4af4-9168-f88d204694da, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:37.737Z","sequence":18783,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: C31AF547A2A6A7C7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"eb318221102866f7","parentId":"740a2a96f7459e1e","traceId":"00000000000000000406f114e1c9f6f2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:37.759Z","sequence":18784,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: C31AF547A2A6A7C7, resource-version: 4a720924-f96a-4519-bb0c-9a003dd80d8d]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"eb318221102866f7","parentId":"740a2a96f7459e1e","traceId":"00000000000000000406f114e1c9f6f2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:37.767Z","sequence":18785,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: C31AF547A2A6A7C7, resource-version: f1de0b77-36d9-48f5-babd-6522cf4dc40d]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"eb318221102866f7","parentId":"740a2a96f7459e1e","traceId":"00000000000000000406f114e1c9f6f2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:37.814Z","sequence":18786,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:37.814Z","sequence":18787,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 00GWALP120IT]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:37.819Z","sequence":18788,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-42dddf47-fd7c-4b91-bfd0-f794e353b81d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:41.309Z","sequence":18789,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:41.309Z","sequence":18790,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-5A4A8AFC332E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:41.31Z","sequence":18791,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:41.31Z","sequence":18792,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-5A4A8AFC332E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:41.323Z","sequence":18793,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-41845c7a-8d06-4151-810d-ba721c3013b7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:41.325Z","sequence":18794,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-6108b423-0d9e-4081-8bb2-8a0c221dd206, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:41.498Z","sequence":18795,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:41.498Z","sequence":18796,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 5A4A8AFC332E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:41.505Z","sequence":18797,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:41.506Z","sequence":18798,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 5A4A8AFC332E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:41.507Z","sequence":18799,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c1b7af88-9359-4e1d-9067-89e6aacacc2a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:41.511Z","sequence":18800,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:41.511Z","sequence":18801,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: C31AF547A2A6A7C7] for gateway [5A4A8AFC332E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:41.511Z","sequence":18802,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-42c73b5e-5a73-4256-a051-bcd436b1c086, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:41.515Z","sequence":18803,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:41.515Z","sequence":18804,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: C31AF547A2A6A7C7] for gateway [5A4A8AFC332E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:41.516Z","sequence":18805,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:connect:0.1.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:41.516Z","sequence":18806,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:41.527Z","sequence":18807,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:connect:0.1.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:41.527Z","sequence":18808,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:41.738Z","sequence":18809,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-815f36ca-db45-4590-ba8e-cd4c801b0457, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:41.88Z","sequence":18810,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5ce5a39b-77c0-4614-a35a-3fb910ef3f70, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:44.772Z","sequence":18811,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:44.772Z","sequence":18812,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000682] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:44.789Z","sequence":18813,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:44.789Z","sequence":18814,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:44.802Z","sequence":18815,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-cf1e6e7a-11fb-4657-95ef-7501c1aba0c9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:45.001Z","sequence":18816,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:45.001Z","sequence":18817,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB1000A6B] for gateway [0008004B5135]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:45.007Z","sequence":18818,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:45.007Z","sequence":18819,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:45.01Z","sequence":18820,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-96e42dfe-31a3-4018-8c32-f07f82d5b6d8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:46.12Z","sequence":18821,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:46.12Z","sequence":18822,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A36] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:46.152Z","sequence":18823,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:46.152Z","sequence":18824,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:46.17Z","sequence":18825,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-de617484-5b68-4595-9f12-93470e76ab45, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:49.513Z","sequence":18826,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:49.514Z","sequence":18827,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A42] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:49.519Z","sequence":18828,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:49.519Z","sequence":18829,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:49.526Z","sequence":18830,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2ea845ff-9440-484f-a401-698e7f74faae, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:51.757Z","sequence":18831,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:51.757Z","sequence":18832,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100015B] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:51.765Z","sequence":18833,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:0.4.1\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:51.765Z","sequence":18834,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:51.772Z","sequence":18835,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6346df24-a3c9-4180-86ef-cdc342d70997, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:55.508Z","sequence":18836,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:55.508Z","sequence":18837,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006B7] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:55.529Z","sequence":18838,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:55.529Z","sequence":18839,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:55.537Z","sequence":18840,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9086b804-6f37-48aa-bb3c-2f924d3878a6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:55.645Z","sequence":18841,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: E349FF7FB98C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3ac8d8b2bfea0b8d","parentId":"0b0e5afb5398e259","traceId":"0000000000000000de84d55f54c95f8a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:55.684Z","sequence":18842,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: E349FF7FB98C, resource-version: e44f19dd-6664-4cae-b221-3e5c974618df]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3ac8d8b2bfea0b8d","parentId":"0b0e5afb5398e259","traceId":"0000000000000000de84d55f54c95f8a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:55.697Z","sequence":18843,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: E349FF7FB98C, resource-version: 1f32cc69-6bf5-452d-a59a-146cd079117b]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3ac8d8b2bfea0b8d","parentId":"0b0e5afb5398e259","traceId":"0000000000000000de84d55f54c95f8a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:55.705Z","sequence":18844,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: E349FF7FB98C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9502908bc41e4b63","parentId":"151fd245759283cd","traceId":"0000000000000000de84d55f54c95f8a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:55.977Z","sequence":18845,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: E349FF7FB98C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9502908bc41e4b63","parentId":"151fd245759283cd","traceId":"0000000000000000de84d55f54c95f8a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:57.096Z","sequence":18846,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF4887A0F539EB2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6e47901ac1d6b220","parentId":"f141c3736c83dca1","traceId":"0000000000000000adb9c67fcb99e5f7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:57.114Z","sequence":18847,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF4887A0F539EB2, resource-version: 5e6f02ad-fc01-4e34-b81f-981827044b69]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6e47901ac1d6b220","parentId":"f141c3736c83dca1","traceId":"0000000000000000adb9c67fcb99e5f7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:57.121Z","sequence":18848,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF4887A0F539EB2, resource-version: 242285e1-e0c6-41d3-ac37-22ed32d4aa9a]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6e47901ac1d6b220","parentId":"f141c3736c83dca1","traceId":"0000000000000000adb9c67fcb99e5f7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:57.17Z","sequence":18849,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:57.17Z","sequence":18850,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-E349FF7FB98C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:57.18Z","sequence":18851,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-a5d16b64-1069-489a-ab25-dd43b219b806, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:57.303Z","sequence":18852,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:57.303Z","sequence":18853,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: E349FF7FB98C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:57.308Z","sequence":18854,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-76a373d0-d043-4cf1-aa36-edd8083e02c4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:58.649Z","sequence":18855,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:58.65Z","sequence":18856,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A48] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:58.656Z","sequence":18857,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:58.656Z","sequence":18858,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:54:58.662Z","sequence":18859,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2704365d-84cc-437f-b162-380f2efb2869, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:00.675Z","sequence":18860,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: C31AF547A2A6A7C7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2d8110bc9210aeb9","parentId":"b6840c30c1c54391","traceId":"000000000000000090770a81c35a09bd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:00.693Z","sequence":18861,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: C31AF547A2A6A7C7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2d8110bc9210aeb9","parentId":"b6840c30c1c54391","traceId":"000000000000000090770a81c35a09bd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:01.04Z","sequence":18862,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 5A4A8AFC332E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"39d8107eb8e50fcb","parentId":"524c2f80cd850993","traceId":"0000000000000000ce192e025cc72b15","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:01.057Z","sequence":18863,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 5A4A8AFC332E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"39d8107eb8e50fcb","parentId":"524c2f80cd850993","traceId":"0000000000000000ce192e025cc72b15","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:01.426Z","sequence":18864,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:01.427Z","sequence":18865,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019D7] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:01.435Z","sequence":18866,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:01.435Z","sequence":18867,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:01.441Z","sequence":18868,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-013f9fc9-f69c-4da5-ac70-d344b24155c8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:04.839Z","sequence":18869,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191111]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"00b013e1aebcb40e","parentId":"4dc06c22b9103342","traceId":"0000000000000000d99c1674075d869e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:04.857Z","sequence":18870,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191111, resource-version: 0bc4705d-00ec-44cf-aa1b-fc0f8b57c2e0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"00b013e1aebcb40e","parentId":"4dc06c22b9103342","traceId":"0000000000000000d99c1674075d869e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:04.863Z","sequence":18871,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191111, resource-version: e228da1c-4d33-4951-8257-708504622f88]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"00b013e1aebcb40e","parentId":"4dc06c22b9103342","traceId":"0000000000000000d99c1674075d869e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:04.866Z","sequence":18872,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191111]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ccf6d746212ec1d8","parentId":"7e261a7b7204f008","traceId":"0000000000000000d99c1674075d869e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:05.056Z","sequence":18873,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191111]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ccf6d746212ec1d8","parentId":"7e261a7b7204f008","traceId":"0000000000000000d99c1674075d869e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:05.128Z","sequence":18874,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:05.129Z","sequence":18875,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A3A] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:05.134Z","sequence":18876,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:05.134Z","sequence":18877,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:05.141Z","sequence":18878,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0d7fe312-3c23-46db-a918-aae2419f8e62, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:08.027Z","sequence":18879,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:08.027Z","sequence":18880,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001934] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:08.04Z","sequence":18881,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:08.04Z","sequence":18882,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:08.046Z","sequence":18883,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1e246478-2f9b-4fb6-8c6e-45eb5aa01fc7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:09.114Z","sequence":18884,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:09.116Z","sequence":18885,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AD0] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:09.125Z","sequence":18886,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:09.125Z","sequence":18887,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:09.133Z","sequence":18888,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-56b5af07-5361-482f-ae57-6c416f2cfaf3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:09.225Z","sequence":18889,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/conditionall:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:09.226Z","sequence":18890,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: conditionall, device-id: 0008004B512D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:09.237Z","sequence":18891,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7fb21ccb-4319-4ebd-89f5-31c99d42873a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:09.241Z","sequence":18892,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:09.241Z","sequence":18893,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: conditionall]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:09.261Z","sequence":18894,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-cef0e1bb-967b-45b7-96bb-806c2fc478e2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:10.41Z","sequence":18895,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:10.41Z","sequence":18896,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B9E] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:10.416Z","sequence":18897,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:10.416Z","sequence":18898,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:10.422Z","sequence":18899,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e94eaf85-1d92-4cdf-802a-d2c88e82457f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:12.547Z","sequence":18900,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:12.547Z","sequence":18901,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100068D] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:12.555Z","sequence":18902,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:12.555Z","sequence":18903,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:12.563Z","sequence":18904,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a5269cca-fffb-4e55-8ab9-0949e9e1d91b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:13.476Z","sequence":18905,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:13.476Z","sequence":18906,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006D0] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:13.485Z","sequence":18907,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:13.486Z","sequence":18908,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:13.491Z","sequence":18909,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2e12705c-6c92-49ed-9a16-b9571d8039c0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:15.022Z","sequence":18910,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:15.023Z","sequence":18911,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100016D] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:15.037Z","sequence":18912,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:15.037Z","sequence":18913,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:15.041Z","sequence":18914,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-02e77085-3f3b-4be9-a1ec-7a109421fc82, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:15.125Z","sequence":18915,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:15.125Z","sequence":18916,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000833] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:15.133Z","sequence":18917,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:15.133Z","sequence":18918,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:15.141Z","sequence":18919,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-bb52b33f-53d8-4d91-b611-66e9b1aa057f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:15.23Z","sequence":18920,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:15.23Z","sequence":18921,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100016D] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:15.248Z","sequence":18922,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:15.248Z","sequence":18923,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:15.281Z","sequence":18924,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:15.281Z","sequence":18925,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006B0] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:15.281Z","sequence":18926,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-fdabdef3-fe7d-4b03-83f0-ba1bdce48e99, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:15.305Z","sequence":18927,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:15.305Z","sequence":18928,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:15.315Z","sequence":18929,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a3023b88-e7c6-4aaa-9fb4-f7346f397bec, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:17.201Z","sequence":18930,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:17.201Z","sequence":18931,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001EB] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:17.207Z","sequence":18932,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:17.207Z","sequence":18933,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:17.214Z","sequence":18934,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4b5921bf-9f91-4244-93f6-987aa1baab89, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:17.616Z","sequence":18935,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:17.616Z","sequence":18936,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:17.628Z","sequence":18937,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-991cfb0b-7fad-4c2d-ab57-8e1999237ce5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:17.673Z","sequence":18938,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:17.674Z","sequence":18939,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A32] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:17.68Z","sequence":18940,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:17.68Z","sequence":18941,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:17.686Z","sequence":18942,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4940505d-3e80-4ca5-a30d-6f6942371961, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:17.913Z","sequence":18943,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:17.913Z","sequence":18944,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001EB] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:17.935Z","sequence":18945,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:17.935Z","sequence":18946,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:17.943Z","sequence":18947,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1dec63c6-dbff-4027-82bb-13e7cbf93be2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:20.741Z","sequence":18948,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:20.741Z","sequence":18949,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001939] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:20.756Z","sequence":18950,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:20.756Z","sequence":18951,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:20.764Z","sequence":18952,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-05317d48-103d-441f-9a3e-b4e5d77d7f8a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:28.327Z","sequence":18953,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:28.327Z","sequence":18954,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB1000A7B] for gateway [0008004B5135]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:28.348Z","sequence":18955,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:28.348Z","sequence":18956,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:28.351Z","sequence":18957,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-100b4b28-a0f8-4e5b-9622-efc540bca84e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:32.526Z","sequence":18958,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF4887A0F539EB2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"83d79d838ac99279","parentId":"a573ff1cdf1e24d6","traceId":"0000000000000000de7f9f2051374061","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:32.543Z","sequence":18959,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF4887A0F539EB2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"83d79d838ac99279","parentId":"a573ff1cdf1e24d6","traceId":"0000000000000000de7f9f2051374061","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:33.757Z","sequence":18960,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:33.757Z","sequence":18961,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B84] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:33.763Z","sequence":18962,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:33.763Z","sequence":18963,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:33.771Z","sequence":18964,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-784ab1ab-e253-4982-8efe-14bd23e0923e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:42.293Z","sequence":18965,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191114]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"78e405a6e2544da9","parentId":"3882095db9f82d04","traceId":"00000000000000001711913e419e6496","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:42.311Z","sequence":18966,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191114, resource-version: 389faf48-b191-4772-b1c6-3011e229d780]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"78e405a6e2544da9","parentId":"3882095db9f82d04","traceId":"00000000000000001711913e419e6496","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:42.317Z","sequence":18967,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191114, resource-version: 38f8debf-77b3-4cb2-9f5f-36f6f79ef6f6]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"78e405a6e2544da9","parentId":"3882095db9f82d04","traceId":"00000000000000001711913e419e6496","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:42.32Z","sequence":18968,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191114]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b506d8c77399abbf","parentId":"6ab5276976c9a426","traceId":"00000000000000001711913e419e6496","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:42.4Z","sequence":18969,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:42.4Z","sequence":18970,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A43] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:42.405Z","sequence":18971,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:42.405Z","sequence":18972,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:42.412Z","sequence":18973,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b9d04b29-a5b9-47bd-b691-a2762a7d7f7f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:42.433Z","sequence":18974,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191114]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b506d8c77399abbf","parentId":"6ab5276976c9a426","traceId":"00000000000000001711913e419e6496","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:42.886Z","sequence":18975,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:42.886Z","sequence":18976,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AF3] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:42.908Z","sequence":18977,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:42.908Z","sequence":18978,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:42.914Z","sequence":18979,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a63581e4-6b55-422c-a06a-bd9ca8efd72e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:43.293Z","sequence":18980,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:43.293Z","sequence":18981,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000828] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:43.332Z","sequence":18982,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:43.332Z","sequence":18983,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:43.346Z","sequence":18984,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3923e284-00f0-49c0-89fd-af990a458299, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:44.723Z","sequence":18985,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:44.723Z","sequence":18986,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100193A] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:44.745Z","sequence":18987,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:44.745Z","sequence":18988,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:44.753Z","sequence":18989,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-12153bbc-4d88-4215-84dc-c7cbca18bfcf, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:45.097Z","sequence":18990,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:45.097Z","sequence":18991,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BB84C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:45.127Z","sequence":18992,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c7484cbc-9dd2-4b07-839e-adb623c78aa1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:45.133Z","sequence":18993,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:45.133Z","sequence":18994,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: lanxess]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:45.145Z","sequence":18995,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-35ee4588-29cc-4520-81ba-e577cfd806a8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:46.823Z","sequence":18996,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:46.824Z","sequence":18997,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 0008004B5135]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:46.841Z","sequence":18998,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2a304e6c-043c-422d-90b7-f57f50065257, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:51.256Z","sequence":18999,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:51.256Z","sequence":19000,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BBD1B]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:51.269Z","sequence":19001,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c859c933-9e34-42a1-9111-c921c6d2dfd4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:56.146Z","sequence":19002,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:56.147Z","sequence":19003,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100022B] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:56.175Z","sequence":19004,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:56.176Z","sequence":19005,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:56.189Z","sequence":19006,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-afc9971e-a76b-4a25-b5d6-59f0d2bc1443, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:57.698Z","sequence":19007,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:57.698Z","sequence":19008,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100193F] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:57.703Z","sequence":19009,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:57.703Z","sequence":19010,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:57.709Z","sequence":19011,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ac29c24d-4646-4f42-b5a0-e22742c09fb1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:58.264Z","sequence":19012,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/arkema:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:58.264Z","sequence":19013,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: arkema, device-id: 0008004AE119]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:58.275Z","sequence":19014,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2868689c-6ed4-4cef-b36e-bfa93f2ca617, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:58.278Z","sequence":19015,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:58.279Z","sequence":19016,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: arkema]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:55:58.282Z","sequence":19017,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-38ee704d-714d-4ef1-a8f2-1dbf3d3ef979, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:00.005Z","sequence":19018,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:00.005Z","sequence":19019,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AF7] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:00.013Z","sequence":19020,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:00.013Z","sequence":19021,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:00.02Z","sequence":19022,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c024bd99-eb5d-438e-8f1d-89fcf6a2c5fa, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:01.256Z","sequence":19023,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:01.256Z","sequence":19024,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AE6] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:01.273Z","sequence":19025,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:01.273Z","sequence":19026,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:01.279Z","sequence":19027,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-36086d04-b8b3-48ef-8c03-31c0014ce8a0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:02.619Z","sequence":19028,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: E349FF7FB98C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a686c3a401bf983e","parentId":"97a4087ff3a08e0c","traceId":"0000000000000000f03082d1bd065e3e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:02.637Z","sequence":19029,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: E349FF7FB98C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a686c3a401bf983e","parentId":"97a4087ff3a08e0c","traceId":"0000000000000000f03082d1bd065e3e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:03.517Z","sequence":19030,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: B8D43942D81F]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"46d77da54aa335ba","parentId":"debcf8b78410ab17","traceId":"0000000000000000c7f0bd71564d2104","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:03.534Z","sequence":19031,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: B8D43942D81F, resource-version: 58011bee-1be0-471a-95d0-0e986a8cf8cf]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"46d77da54aa335ba","parentId":"debcf8b78410ab17","traceId":"0000000000000000c7f0bd71564d2104","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:03.54Z","sequence":19032,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: B8D43942D81F, resource-version: b2e24d2d-2b61-4ab4-b580-4b24aae57673]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"46d77da54aa335ba","parentId":"debcf8b78410ab17","traceId":"0000000000000000c7f0bd71564d2104","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:03.543Z","sequence":19033,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: B8D43942D81F]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1b96f6d86209b6c3","parentId":"c0e527548c6495f6","traceId":"0000000000000000c7f0bd71564d2104","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:03.807Z","sequence":19034,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: B8D43942D81F]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1b96f6d86209b6c3","parentId":"c0e527548c6495f6","traceId":"0000000000000000c7f0bd71564d2104","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:03.914Z","sequence":19035,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF5C546345694A5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cb0b8f10e0f3a411","parentId":"4b3e17014501ec61","traceId":"0000000000000000af903f7cbf035c55","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:03.936Z","sequence":19036,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF5C546345694A5, resource-version: e92b6737-d5dc-4d79-9bca-067bd46be620]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cb0b8f10e0f3a411","parentId":"4b3e17014501ec61","traceId":"0000000000000000af903f7cbf035c55","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:03.943Z","sequence":19037,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF5C546345694A5, resource-version: c45e96bf-f905-4886-9f73-4aad173e20bd]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cb0b8f10e0f3a411","parentId":"4b3e17014501ec61","traceId":"0000000000000000af903f7cbf035c55","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:04.694Z","sequence":19038,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF93C3A26D3F798]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1e3668578b30f07f","parentId":"5ff47a96728e80a2","traceId":"000000000000000049b59f8601d21b1d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:04.71Z","sequence":19039,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF93C3A26D3F798, resource-version: 778df212-26a7-4e82-b9a8-79645bf26577]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1e3668578b30f07f","parentId":"5ff47a96728e80a2","traceId":"000000000000000049b59f8601d21b1d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:04.716Z","sequence":19040,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF93C3A26D3F798, resource-version: 6b5aef8a-9254-4e6d-bad5-4a97066967b6]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1e3668578b30f07f","parentId":"5ff47a96728e80a2","traceId":"000000000000000049b59f8601d21b1d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:05.008Z","sequence":19041,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:05.009Z","sequence":19042,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:05.018Z","sequence":19043,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-4bf2e60e-2f55-4fdf-baab-747d6740d731, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:05.022Z","sequence":19044,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:05.022Z","sequence":19045,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191114]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:05.035Z","sequence":19046,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-48872f7a-2ad4-454f-9966-8d1fe662ddae, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:05.157Z","sequence":19047,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:05.158Z","sequence":19048,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF5C546345694A5] for gateway [gateway_integrationtest_network_191114]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:05.158Z","sequence":19049,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:05.158Z","sequence":19050,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191114]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:05.164Z","sequence":19051,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f27f1477-4541-454d-81f0-057350d14827, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:05.166Z","sequence":19052,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.3.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:05.166Z","sequence":19053,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:05.504Z","sequence":19054,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-803a2230-db4b-4ad5-9f4b-a4ff448b62a4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:05.774Z","sequence":19055,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:05.774Z","sequence":19056,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-B8D43942D81F]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:05.81Z","sequence":19057,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-6db74d5d-b775-4639-b7d8-20c104a95dc6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:05.939Z","sequence":19058,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:05.939Z","sequence":19059,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A2D] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:05.942Z","sequence":19060,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:05.942Z","sequence":19061,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:05.945Z","sequence":19062,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:05.948Z","sequence":19063,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: B8D43942D81F]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:05.952Z","sequence":19064,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:05.954Z","sequence":19065,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:05.955Z","sequence":19066,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0294541b-6f20-4129-b8c7-2c0484b220b8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:05.965Z","sequence":19067,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-cb017a60-2e3f-4d84-bc96-90f76a548190, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:05.965Z","sequence":19068,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-72dae405-289e-4659-9965-c85923a18be7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:05.972Z","sequence":19069,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:05.972Z","sequence":19070,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF93C3A26D3F798] for gateway [B8D43942D81F]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:05.981Z","sequence":19071,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:05.981Z","sequence":19072,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:06.402Z","sequence":19073,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-fa653cee-056a-4298-a4d1-affca4ee7bcd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:06.639Z","sequence":19074,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:06.639Z","sequence":19075,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100192E] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:06.651Z","sequence":19076,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:06.652Z","sequence":19077,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:06.665Z","sequence":19078,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3980545d-fb58-4ae1-9b2b-80273f29f8eb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:09.639Z","sequence":19079,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF5C546345694A5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ea02e021a4363ed6","parentId":"96207a86f4310196","traceId":"000000000000000085bbc918fcf32629","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:09.656Z","sequence":19080,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF5C546345694A5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ea02e021a4363ed6","parentId":"96207a86f4310196","traceId":"000000000000000085bbc918fcf32629","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:09.849Z","sequence":19081,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:09.849Z","sequence":19082,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BFA] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:09.872Z","sequence":19083,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:09.872Z","sequence":19084,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:09.901Z","sequence":19085,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4db13bef-0583-4913-87ad-9f84a6de16b1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:10.381Z","sequence":19086,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191114]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"502c0b75af76ccda","parentId":"003503b3e0f2d14f","traceId":"000000000000000039d7e3c73fa5da90","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:10.404Z","sequence":19087,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191114]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"502c0b75af76ccda","parentId":"003503b3e0f2d14f","traceId":"000000000000000039d7e3c73fa5da90","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:11.086Z","sequence":19088,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF93C3A26D3F798]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b7ba3c3ac93540ed","parentId":"8464b8916eb817a1","traceId":"0000000000000000ac52f7ab7193be7f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:11.111Z","sequence":19089,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF93C3A26D3F798]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b7ba3c3ac93540ed","parentId":"8464b8916eb817a1","traceId":"0000000000000000ac52f7ab7193be7f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:11.503Z","sequence":19090,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: B8D43942D81F]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"37c258a855184e4a","parentId":"4985ff5ce23bd6b5","traceId":"00000000000000008ae4f4529c77d345","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:11.521Z","sequence":19091,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: B8D43942D81F]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"37c258a855184e4a","parentId":"4985ff5ce23bd6b5","traceId":"00000000000000008ae4f4529c77d345","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:12.442Z","sequence":19092,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:12.442Z","sequence":19093,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000690] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:12.449Z","sequence":19094,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:12.449Z","sequence":19095,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:12.457Z","sequence":19096,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9ab91747-95c3-45e5-9b24-18b2a9624b15, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:13.043Z","sequence":19097,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: AF793265E6DF]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c1dcbd44d53647a4","parentId":"956a1e31310d0c00","traceId":"0000000000000000c256e7bdb4c01827","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:13.061Z","sequence":19098,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191116]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f862e28723188071","parentId":"9e208e95b12103bb","traceId":"00000000000000007f34baf8e0f003e1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:13.12Z","sequence":19099,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: AF793265E6DF, resource-version: 41b6da97-0ad3-45f6-ad81-64d17a469907]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c1dcbd44d53647a4","parentId":"956a1e31310d0c00","traceId":"0000000000000000c256e7bdb4c01827","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:13.121Z","sequence":19100,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191116, resource-version: 45f87065-fbf5-4a6f-b734-3f8480971400]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f862e28723188071","parentId":"9e208e95b12103bb","traceId":"00000000000000007f34baf8e0f003e1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:13.128Z","sequence":19101,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191116, resource-version: 277e0fe7-1c9e-4cf8-8727-d2b4865015cf]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f862e28723188071","parentId":"9e208e95b12103bb","traceId":"00000000000000007f34baf8e0f003e1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:13.13Z","sequence":19102,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: AF793265E6DF, resource-version: e85a3e1d-5058-416b-8a26-b0ec7655eb7c]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c1dcbd44d53647a4","parentId":"956a1e31310d0c00","traceId":"0000000000000000c256e7bdb4c01827","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:13.131Z","sequence":19103,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191116]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f93239db9a994cbb","parentId":"bbd020741b202a9a","traceId":"00000000000000007f34baf8e0f003e1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:13.134Z","sequence":19104,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: AF793265E6DF]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3c39a5dfb043a7f6","parentId":"cedcecbf402078c5","traceId":"0000000000000000c256e7bdb4c01827","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:13.475Z","sequence":19105,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191116]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f93239db9a994cbb","parentId":"bbd020741b202a9a","traceId":"00000000000000007f34baf8e0f003e1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:13.668Z","sequence":19106,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: AF793265E6DF]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3c39a5dfb043a7f6","parentId":"cedcecbf402078c5","traceId":"0000000000000000c256e7bdb4c01827","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:14.823Z","sequence":19107,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF41848C176F3F1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f6fef6b94792eef7","parentId":"b484a40953a5537f","traceId":"0000000000000000960f410b29e8936d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:14.88Z","sequence":19108,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF41848C176F3F1, resource-version: 41d2cd5c-8b4f-4a65-888b-21b449f0344d]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f6fef6b94792eef7","parentId":"b484a40953a5537f","traceId":"0000000000000000960f410b29e8936d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:14.901Z","sequence":19109,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF41848C176F3F1, resource-version: 604420e0-eba9-4fbc-a4f5-982a75c34c68]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f6fef6b94792eef7","parentId":"b484a40953a5537f","traceId":"0000000000000000960f410b29e8936d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:15.08Z","sequence":19110,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:15.08Z","sequence":19111,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191116]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:15.08Z","sequence":19112,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:15.08Z","sequence":19113,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191116]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:15.139Z","sequence":19114,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-ea947d2d-7d6e-4521-bc30-a2bd8b5f1b39, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:15.14Z","sequence":19115,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-80c61964-89b9-4ef9-a432-8183feccd037, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:15.375Z","sequence":19116,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFA52FFA9FF0785]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d852e6539003657a","parentId":"000dedb80935aa12","traceId":"0000000000000000fb0dbcb6d9077d21","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:15.398Z","sequence":19117,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFA52FFA9FF0785, resource-version: 81d53808-3d49-455e-94e9-cd7d5216aeca]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d852e6539003657a","parentId":"000dedb80935aa12","traceId":"0000000000000000fb0dbcb6d9077d21","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:15.405Z","sequence":19118,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFA52FFA9FF0785, resource-version: d2e65949-a801-49d3-865f-e7e4be831c58]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d852e6539003657a","parentId":"000dedb80935aa12","traceId":"0000000000000000fb0dbcb6d9077d21","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:15.487Z","sequence":19119,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:15.488Z","sequence":19120,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF41848C176F3F1] for gateway [gateway_integrationtest_network_191116]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:15.488Z","sequence":19121,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:15.488Z","sequence":19122,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191116]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:15.489Z","sequence":19123,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:15.489Z","sequence":19124,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF41848C176F3F1] for gateway [gateway_integrationtest_network_191116]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:15.49Z","sequence":19125,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:15.49Z","sequence":19126,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191116]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:15.5Z","sequence":19127,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a3d63a40-0bd7-4e6b-943d-c93393e193e6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:15.501Z","sequence":19128,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6363d80f-2559-4e2c-9e06-cffee7f23798, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:15.501Z","sequence":19129,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:15.502Z","sequence":19130,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:15.502Z","sequence":19131,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:15.502Z","sequence":19132,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:15.551Z","sequence":19133,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:15.552Z","sequence":19134,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-AF793265E6DF]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:15.705Z","sequence":19135,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 4FB8009B496B]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a73bdbd28a724b0b","parentId":"94bbfcc8f6c5a6c2","traceId":"00000000000000001983d3ec5193dfe8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:15.723Z","sequence":19136,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 4FB8009B496B, resource-version: cf19ab19-45ed-4f8d-8ec8-7b40e4e45a56]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a73bdbd28a724b0b","parentId":"94bbfcc8f6c5a6c2","traceId":"00000000000000001983d3ec5193dfe8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:15.729Z","sequence":19137,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 4FB8009B496B, resource-version: 69a7db2b-6d5d-405a-bff2-61083f6f4f45]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a73bdbd28a724b0b","parentId":"94bbfcc8f6c5a6c2","traceId":"00000000000000001983d3ec5193dfe8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:15.733Z","sequence":19138,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 4FB8009B496B]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a288f595bf9d5d81","parentId":"f9d6406bd2cba06e","traceId":"00000000000000001983d3ec5193dfe8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:16.301Z","sequence":19139,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 4FB8009B496B]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a288f595bf9d5d81","parentId":"f9d6406bd2cba06e","traceId":"00000000000000001983d3ec5193dfe8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:16.342Z","sequence":19140,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2154c197-ce0c-40c3-a810-5c589f14aab4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:16.861Z","sequence":19141,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-84adad19-a639-4695-b74e-0f8bf81a5524, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:16.862Z","sequence":19142,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:16.862Z","sequence":19143,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF41848C176F3F1] for gateway [gateway_integrationtest_network_191116]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:16.862Z","sequence":19144,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:16.862Z","sequence":19145,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF41848C176F3F1] for gateway [gateway_integrationtest_network_191116]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:16.869Z","sequence":19146,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-8a7e038e-4bff-41ed-baa8-9c17143403d1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:16.875Z","sequence":19147,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:16.875Z","sequence":19148,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:16.875Z","sequence":19149,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:16.875Z","sequence":19150,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:17.31Z","sequence":19151,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF418D5C18C659A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"be28e39191a3d9b8","parentId":"6fbff8c64d29a810","traceId":"000000000000000017710f29a0953fe9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:17.345Z","sequence":19152,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF418D5C18C659A, resource-version: 5dd101dc-5108-4bfa-a2b2-8e980361a44c]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"be28e39191a3d9b8","parentId":"6fbff8c64d29a810","traceId":"000000000000000017710f29a0953fe9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:17.364Z","sequence":19153,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF418D5C18C659A, resource-version: 08c6a571-1c09-4298-a563-ed99ffc085cb]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"be28e39191a3d9b8","parentId":"6fbff8c64d29a810","traceId":"000000000000000017710f29a0953fe9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:17.609Z","sequence":19154,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b85e1874-f285-4f2f-91a8-cc083f82cdbe, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:18.238Z","sequence":19155,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-32ee2e68-80b4-4732-9a12-e6b7985b5d2b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:20.129Z","sequence":19156,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:20.129Z","sequence":19157,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-4FB8009B496B]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:20.145Z","sequence":19158,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-1b64e6d1-1aff-476e-a76b-8c0637f2fd1c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:20.309Z","sequence":19159,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:20.309Z","sequence":19160,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 4FB8009B496B]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:20.316Z","sequence":19161,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f86ca9ea-8744-40e0-8303-da7e06ab2837, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:20.321Z","sequence":19162,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:20.321Z","sequence":19163,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF418D5C18C659A] for gateway [4FB8009B496B]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:20.327Z","sequence":19164,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:20.327Z","sequence":19165,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:20.96Z","sequence":19166,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2c03a3ca-c9d7-4a87-8125-e16121766ddf, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:22.066Z","sequence":19167,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [command-router@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:22.066Z","sequence":19168,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:22.07Z","sequence":19169,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-56231b72-5218-4661-9651-d18b63d1de12, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:22.081Z","sequence":19170,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [command-router@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:22.081Z","sequence":19171,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFA52FFA9FF0785]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:22.61Z","sequence":19172,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a621c9ff-7c33-4400-bbc1-48921f7d8a29, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:23.276Z","sequence":19173,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:23.277Z","sequence":19174,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: terega]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:23.281Z","sequence":19175,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-54a06a16-519e-4419-aa7b-691bb690f1b7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:23.285Z","sequence":19176,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/terega:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:23.285Z","sequence":19177,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: terega, type: hashed-password, auth-id: auth-gateway_terega_network_27]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:23.299Z","sequence":19178,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-00a80b72-e1a1-4704-8ef5-ff362e3f486c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:24.063Z","sequence":19179,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/terega:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:24.064Z","sequence":19180,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: terega, device-id: 39383837002F003F] for gateway [gateway_terega_network_27]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:24.07Z","sequence":19181,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/terega:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:24.082Z","sequence":19182,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: terega, device-id: gateway_terega_network_27]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:24.083Z","sequence":19183,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_terega\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:24.084Z","sequence":19184,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_terega\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:24.093Z","sequence":19185,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-73aee82d-18d4-4768-84f1-71ce2f5149ea, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:24.097Z","sequence":19186,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-92076e7a-3d42-4563-89be-1ca1d43e7794, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:28.161Z","sequence":19187,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:28.161Z","sequence":19188,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: shell]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:28.17Z","sequence":19189,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-297aea71-ed60-4aed-b144-9d78486dc400, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:28.18Z","sequence":19190,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/shell:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:28.18Z","sequence":19191,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: shell, type: hashed-password, auth-id: auth-gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:28.241Z","sequence":19192,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-f073f131-a9d6-414b-a88d-16e3e204059a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:28.873Z","sequence":19193,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:28.873Z","sequence":19194,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001ACD] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:28.889Z","sequence":19195,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:28.889Z","sequence":19196,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:28.894Z","sequence":19197,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-15253dc2-e937-437b-bfc9-ba2fd0e5d367, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:29.869Z","sequence":19198,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: F6CF518E4974]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0741a84743c4e527","parentId":"672040a18d27510b","traceId":"0000000000000000ed62eb2522006719","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:29.897Z","sequence":19199,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: F6CF518E4974, resource-version: 59a488bf-99c9-479d-b466-b4c969347991]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0741a84743c4e527","parentId":"672040a18d27510b","traceId":"0000000000000000ed62eb2522006719","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:29.902Z","sequence":19200,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: F6CF518E4974, resource-version: a1dd19b3-92c9-4283-b6e8-8c5652104036]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0741a84743c4e527","parentId":"672040a18d27510b","traceId":"0000000000000000ed62eb2522006719","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:29.907Z","sequence":19201,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: F6CF518E4974]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0a3d047462b63dd8","parentId":"4a3b3f1d02a106b4","traceId":"0000000000000000ed62eb2522006719","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:30.087Z","sequence":19202,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: F6CF518E4974]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0a3d047462b63dd8","parentId":"4a3b3f1d02a106b4","traceId":"0000000000000000ed62eb2522006719","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:30.739Z","sequence":19203,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFB4A6E5E958B7D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"31aaa4ab9fa61faf","parentId":"c1134e3ed9e93485","traceId":"000000000000000075e88ac46ce7b800","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:30.76Z","sequence":19204,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFB4A6E5E958B7D, resource-version: 51f22d92-7f60-4407-a5e3-4c517ffcd407]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"31aaa4ab9fa61faf","parentId":"c1134e3ed9e93485","traceId":"000000000000000075e88ac46ce7b800","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:30.767Z","sequence":19205,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFB4A6E5E958B7D, resource-version: a9c1e39c-7941-47ac-b077-a8639c1c4b3c]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"31aaa4ab9fa61faf","parentId":"c1134e3ed9e93485","traceId":"000000000000000075e88ac46ce7b800","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:31.175Z","sequence":19206,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:31.175Z","sequence":19207,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001935] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:31.182Z","sequence":19208,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:31.182Z","sequence":19209,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:31.187Z","sequence":19210,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6c2cc2cf-710a-4f04-8917-cf98484124c9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:31.475Z","sequence":19211,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:31.475Z","sequence":19212,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000500] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:31.481Z","sequence":19213,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:31.481Z","sequence":19214,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:31.489Z","sequence":19215,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5b09f69c-5935-4c0c-8a0a-70e769a89525, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:31.825Z","sequence":19216,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:31.825Z","sequence":19217,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:31.84Z","sequence":19218,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-b282fd6f-b9b1-445f-bda9-bdde82ec4bc7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:31.843Z","sequence":19219,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:31.843Z","sequence":19220,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-F6CF518E4974]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:31.863Z","sequence":19221,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-757eca5f-f033-4c72-bd6a-ea4e8642e456, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:32.037Z","sequence":19222,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:32.037Z","sequence":19223,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: F6CF518E4974]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:32.053Z","sequence":19224,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-46a922e6-d846-4b06-913b-6b8702e94660, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:32.058Z","sequence":19225,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:32.058Z","sequence":19226,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFB4A6E5E958B7D] for gateway [F6CF518E4974]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:32.072Z","sequence":19227,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:32.072Z","sequence":19228,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:32.398Z","sequence":19229,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9c4be637-4d99-4ac9-b167-00f9675937cb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:34.325Z","sequence":19230,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:34.326Z","sequence":19231,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BBD1C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:34.335Z","sequence":19232,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6800affd-09c6-4dbc-9bb3-69643e91bd10, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:34.578Z","sequence":19233,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF418D5C18C659A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c4a4dc010f7a8892","parentId":"150b512cdb70e8f2","traceId":"0000000000000000018928c9de4324e0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:34.592Z","sequence":19234,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF418D5C18C659A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c4a4dc010f7a8892","parentId":"150b512cdb70e8f2","traceId":"0000000000000000018928c9de4324e0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:35.648Z","sequence":19235,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 4FB8009B496B]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0f0c63db95baa9bc","parentId":"c33cb95b54a1ef56","traceId":"00000000000000009eb8e1b34da282dc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:35.688Z","sequence":19236,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 4FB8009B496B]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0f0c63db95baa9bc","parentId":"c33cb95b54a1ef56","traceId":"00000000000000009eb8e1b34da282dc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:36.398Z","sequence":19237,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191119]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c6ecaa06f4665de9","parentId":"dbc8897727363e1a","traceId":"0000000000000000c287f454e9e77fca","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:36.433Z","sequence":19238,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191119, resource-version: bf549261-b3c4-40c6-863c-6c9a54de6ca1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c6ecaa06f4665de9","parentId":"dbc8897727363e1a","traceId":"0000000000000000c287f454e9e77fca","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:36.444Z","sequence":19239,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191119, resource-version: 098d8f30-62ce-4200-bce9-2269d0ef9bc4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c6ecaa06f4665de9","parentId":"dbc8897727363e1a","traceId":"0000000000000000c287f454e9e77fca","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:36.448Z","sequence":19240,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191119]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c49c4d66e3b52372","parentId":"84ab7dc6865fec4d","traceId":"0000000000000000c287f454e9e77fca","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:36.645Z","sequence":19241,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191119]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c49c4d66e3b52372","parentId":"84ab7dc6865fec4d","traceId":"0000000000000000c287f454e9e77fca","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:37.132Z","sequence":19242,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFED65FABE08CD0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bb303597782259ec","parentId":"82f403fa3727a0af","traceId":"00000000000000005dae078402c720f4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:37.164Z","sequence":19243,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFED65FABE08CD0, resource-version: 8489004f-b081-4d03-80cf-c12c66372ad8]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bb303597782259ec","parentId":"82f403fa3727a0af","traceId":"00000000000000005dae078402c720f4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:37.173Z","sequence":19244,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFED65FABE08CD0, resource-version: b0bcbe34-70b7-43de-b3b5-bd9c99fdf2d0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bb303597782259ec","parentId":"82f403fa3727a0af","traceId":"00000000000000005dae078402c720f4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:38.399Z","sequence":19245,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:38.399Z","sequence":19246,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191119]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:38.41Z","sequence":19247,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-30387c6f-229e-4db2-9a74-06f945402a42, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:38.545Z","sequence":19248,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:38.545Z","sequence":19249,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFED65FABE08CD0] for gateway [gateway_integrationtest_network_191119]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:38.545Z","sequence":19250,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:38.545Z","sequence":19251,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191119]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:38.565Z","sequence":19252,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:38.565Z","sequence":19253,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:38.565Z","sequence":19254,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-fa0e4dbc-e618-4dea-a5b9-07670bc688c9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:38.889Z","sequence":19255,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b535d2fe-0c51-4ab9-b084-93c8513e6306, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:38.984Z","sequence":19256,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:38.984Z","sequence":19257,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10008BC] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:38.991Z","sequence":19258,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:38.991Z","sequence":19259,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:38.997Z","sequence":19260,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1941d0eb-b77a-460b-8f88-041b35fd18d2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:40.324Z","sequence":19261,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFB4A6E5E958B7D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ad21322b0d824e63","parentId":"95c0fefe2bf9d8dd","traceId":"00000000000000007e5dc9b789aa7e04","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:40.361Z","sequence":19262,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFB4A6E5E958B7D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ad21322b0d824e63","parentId":"95c0fefe2bf9d8dd","traceId":"00000000000000007e5dc9b789aa7e04","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:40.455Z","sequence":19263,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: F6CF518E4974]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"56e430e63e3502b2","parentId":"1a391b26f69070a0","traceId":"00000000000000005b40bd1797006887","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:40.481Z","sequence":19264,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: F6CF518E4974]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"56e430e63e3502b2","parentId":"1a391b26f69070a0","traceId":"00000000000000005b40bd1797006887","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:40.593Z","sequence":19265,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:40.593Z","sequence":19266,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:40.609Z","sequence":19267,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-33d20ab1-4c84-453f-8e53-c0c0d945c86c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:40.798Z","sequence":19268,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/repsol:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:40.799Z","sequence":19269,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: repsol, device-id: 70B3D57BB1000207] for gateway [0008004A37FF]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:40.805Z","sequence":19270,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:0.4.1\"\n },\n \"viaGroups\" : [ \"gateways_repsol\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:40.806Z","sequence":19271,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_repsol\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:40.809Z","sequence":19272,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a8aede99-46ea-41a7-ad8c-866ff5303fd0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:41.101Z","sequence":19273,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191120]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ef251b5fcb385870","parentId":"76fbc63bc2dc576a","traceId":"0000000000000000bcd25217280efb7d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:41.124Z","sequence":19274,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191120, resource-version: 33bb1477-d692-4b20-a944-9298b371ffad]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ef251b5fcb385870","parentId":"76fbc63bc2dc576a","traceId":"0000000000000000bcd25217280efb7d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:41.131Z","sequence":19275,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191120, resource-version: 1262e515-f588-444d-98ca-32266a8766a3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ef251b5fcb385870","parentId":"76fbc63bc2dc576a","traceId":"0000000000000000bcd25217280efb7d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:41.134Z","sequence":19276,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191120]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cd3efe76b428efd5","parentId":"b3cd753efef2105c","traceId":"0000000000000000bcd25217280efb7d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:41.292Z","sequence":19277,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191120]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cd3efe76b428efd5","parentId":"b3cd753efef2105c","traceId":"0000000000000000bcd25217280efb7d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:41.963Z","sequence":19278,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF9824F81430F47]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4dc421027676aa31","parentId":"12376c8036bc5422","traceId":"0000000000000000216ab5f779c4c817","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:41.992Z","sequence":19279,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF9824F81430F47, resource-version: af112627-a689-44be-aa7a-d89117b2a5f6]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4dc421027676aa31","parentId":"12376c8036bc5422","traceId":"0000000000000000216ab5f779c4c817","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:42.006Z","sequence":19280,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF9824F81430F47, resource-version: a9c61e05-3694-4128-ba3c-51f2a09984d0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4dc421027676aa31","parentId":"12376c8036bc5422","traceId":"0000000000000000216ab5f779c4c817","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:42.471Z","sequence":19281,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF9824F81430F47]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"60f0d10276c52079","parentId":"9d20564616b2f89f","traceId":"0000000000000000fa9b46e77a72d452","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:42.489Z","sequence":19282,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF9824F81430F47]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"60f0d10276c52079","parentId":"9d20564616b2f89f","traceId":"0000000000000000fa9b46e77a72d452","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:42.63Z","sequence":19283,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191120]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b69549115a09fc08","parentId":"032ab7ba9332967c","traceId":"00000000000000007801c3d5322a4a74","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:42.656Z","sequence":19284,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191120]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b69549115a09fc08","parentId":"032ab7ba9332967c","traceId":"00000000000000007801c3d5322a4a74","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:42.862Z","sequence":19285,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 185E3FA86651]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3aa83ca557850a74","parentId":"c7b580a1be1727c2","traceId":"00000000000000002f44ac6125653a47","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:42.883Z","sequence":19286,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 185E3FA86651, resource-version: 4d50d4cd-b1ac-4007-aad7-c26216f46193]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3aa83ca557850a74","parentId":"c7b580a1be1727c2","traceId":"00000000000000002f44ac6125653a47","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:42.892Z","sequence":19287,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 185E3FA86651, resource-version: 6cec6dbe-cf22-40e2-b331-b70a0b31d0f6]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3aa83ca557850a74","parentId":"c7b580a1be1727c2","traceId":"00000000000000002f44ac6125653a47","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:42.895Z","sequence":19288,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 185E3FA86651]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2645e6361b43123d","parentId":"ef8beac8e2779157","traceId":"00000000000000002f44ac6125653a47","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:43.085Z","sequence":19289,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 185E3FA86651]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2645e6361b43123d","parentId":"ef8beac8e2779157","traceId":"00000000000000002f44ac6125653a47","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:43.209Z","sequence":19290,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191122]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"418c099f66e54569","parentId":"94ecd374b436a352","traceId":"0000000000000000729bdecb48bbc1f7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:43.239Z","sequence":19291,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191122, resource-version: b92e482a-4d1d-43f9-994d-c7d7515167b8]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"418c099f66e54569","parentId":"94ecd374b436a352","traceId":"0000000000000000729bdecb48bbc1f7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:43.25Z","sequence":19292,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191122, resource-version: 174f1621-aece-4701-b111-ea3e87a87590]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"418c099f66e54569","parentId":"94ecd374b436a352","traceId":"0000000000000000729bdecb48bbc1f7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:43.269Z","sequence":19293,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191122]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f77b6ff8ef8eb269","parentId":"deea64da81194b35","traceId":"0000000000000000729bdecb48bbc1f7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:43.357Z","sequence":19294,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF41848C176F3F1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a98bb9f006309716","parentId":"931304220b0f81be","traceId":"00000000000000007fe0d5f580fdaf5e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:43.381Z","sequence":19295,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF41848C176F3F1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a98bb9f006309716","parentId":"931304220b0f81be","traceId":"00000000000000007fe0d5f580fdaf5e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:43.652Z","sequence":19296,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191122]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f77b6ff8ef8eb269","parentId":"deea64da81194b35","traceId":"0000000000000000729bdecb48bbc1f7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:43.941Z","sequence":19297,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191116]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"16bef1665ebd9ba3","parentId":"7bd7928019eaa888","traceId":"0000000000000000c2ea8791a76ed684","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:43.988Z","sequence":19298,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191116]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"16bef1665ebd9ba3","parentId":"7bd7928019eaa888","traceId":"0000000000000000c2ea8791a76ed684","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:44.696Z","sequence":19299,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191123]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1e3287dad391cbe7","parentId":"0b65d0fafc2ad6bb","traceId":"00000000000000006519af633ad9dd72","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:44.751Z","sequence":19300,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191123, resource-version: 693608e1-d8b7-475e-a435-96268eb2c344]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1e3287dad391cbe7","parentId":"0b65d0fafc2ad6bb","traceId":"00000000000000006519af633ad9dd72","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:44.753Z","sequence":19301,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFEF5750A135623]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"29774dacad16b4a2","parentId":"beca18db5efe57ea","traceId":"000000000000000070518505efc4c93e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:44.758Z","sequence":19302,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191123, resource-version: 3baae675-f86c-439b-a081-baa1b51092df]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1e3287dad391cbe7","parentId":"0b65d0fafc2ad6bb","traceId":"00000000000000006519af633ad9dd72","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:44.768Z","sequence":19303,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191123]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3b6b489a7cacf0ba","parentId":"f252463d6c330c95","traceId":"00000000000000006519af633ad9dd72","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:44.813Z","sequence":19304,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFEF5750A135623, resource-version: 68552d4d-bc79-4f8c-89a0-d3f76b9e4f2b]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"29774dacad16b4a2","parentId":"beca18db5efe57ea","traceId":"000000000000000070518505efc4c93e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:44.834Z","sequence":19305,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFEF5750A135623, resource-version: 1ba58653-4a03-4a2f-85ce-2d17cb6d708a]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"29774dacad16b4a2","parentId":"beca18db5efe57ea","traceId":"000000000000000070518505efc4c93e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:45.009Z","sequence":19306,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFEADD18DF8E89C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e3a4d2593c6f1291","parentId":"20c8e3f9a8a35bce","traceId":"00000000000000005ca7bba1e1225c7f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:45.069Z","sequence":19307,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFEADD18DF8E89C, resource-version: bc26baa0-aaed-4c57-af77-4a837b37f729]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e3a4d2593c6f1291","parentId":"20c8e3f9a8a35bce","traceId":"00000000000000005ca7bba1e1225c7f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:45.085Z","sequence":19308,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFEADD18DF8E89C, resource-version: 80c4a89b-226f-4ef2-9a0f-d190dc5048b7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e3a4d2593c6f1291","parentId":"20c8e3f9a8a35bce","traceId":"00000000000000005ca7bba1e1225c7f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:45.261Z","sequence":19309,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191123]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3b6b489a7cacf0ba","parentId":"f252463d6c330c95","traceId":"00000000000000006519af633ad9dd72","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:45.277Z","sequence":19310,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:45.277Z","sequence":19311,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-185E3FA86651]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:45.286Z","sequence":19312,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:45.287Z","sequence":19313,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB100080A] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:45.306Z","sequence":19314,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:45.307Z","sequence":19315,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:45.31Z","sequence":19316,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-2f953127-61df-4ea6-8a5e-8f1f80ada36d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:45.317Z","sequence":19317,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c24593b2-91d3-4de1-a0bc-6ea6a6328dca, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:45.435Z","sequence":19318,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:45.435Z","sequence":19319,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 185E3FA86651]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:45.445Z","sequence":19320,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-416ed181-5e69-495f-824a-d73e8ef083c0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:46.294Z","sequence":19321,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:46.295Z","sequence":19322,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191122]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:46.331Z","sequence":19323,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-6d4a0520-bd0f-4f29-92c2-a9c62c8b7f30, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:46.454Z","sequence":19324,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:46.455Z","sequence":19325,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFEF5750A135623] for gateway [gateway_integrationtest_network_191122]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:46.456Z","sequence":19326,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:46.461Z","sequence":19327,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191122]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:46.481Z","sequence":19328,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.8.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:46.481Z","sequence":19329,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:46.501Z","sequence":19330,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-05591b10-716a-44b1-a88e-37628545b60c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:46.965Z","sequence":19331,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF2EFD781C8C80E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ae457cba2c0a925d","parentId":"1eed0c02d26c7347","traceId":"000000000000000020fae9a0b0d0b430","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:47.057Z","sequence":19332,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF2EFD781C8C80E, resource-version: 5275b51d-337b-405e-9a47-66dfac5c827a]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ae457cba2c0a925d","parentId":"1eed0c02d26c7347","traceId":"000000000000000020fae9a0b0d0b430","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:47.084Z","sequence":19333,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF2EFD781C8C80E, resource-version: 0c5b6267-4264-456b-ac02-d9b9e7f1be8d]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ae457cba2c0a925d","parentId":"1eed0c02d26c7347","traceId":"000000000000000020fae9a0b0d0b430","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:47.313Z","sequence":19334,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d09be8c5-71a8-41c6-93ac-f19f54a879cb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:48.352Z","sequence":19335,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:48.352Z","sequence":19336,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191123]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:48.379Z","sequence":19337,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-64ae2060-4317-4716-bfd5-2761115e35d0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:48.576Z","sequence":19338,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:48.576Z","sequence":19339,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF2EFD781C8C80E] for gateway [gateway_integrationtest_network_191123]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:48.577Z","sequence":19340,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:48.577Z","sequence":19341,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191123]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:48.587Z","sequence":19342,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-85f810ac-0bb9-4c45-ad43-758787c07e8e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:48.587Z","sequence":19343,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:48.587Z","sequence":19344,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:48.624Z","sequence":19345,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:48.633Z","sequence":19346,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100192A] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:48.657Z","sequence":19347,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:48.66Z","sequence":19348,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:49.28Z","sequence":19349,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-12881c65-ce89-4213-82fe-934dce00bd66, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:49.281Z","sequence":19350,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-81f04b9e-3e9c-4fd8-a5c2-a520a2c7d3ea, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:49.941Z","sequence":19351,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:49.941Z","sequence":19352,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000821] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:49.957Z","sequence":19353,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:49.957Z","sequence":19354,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:49.969Z","sequence":19355,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-64002a3f-d91d-41cd-894e-d867119b04b8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:50.981Z","sequence":19356,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFEF5750A135623]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"085d994e37a467eb","parentId":"0795a00347c334ff","traceId":"00000000000000000831b783089c62c2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:51.02Z","sequence":19357,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFEF5750A135623]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"085d994e37a467eb","parentId":"0795a00347c334ff","traceId":"00000000000000000831b783089c62c2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:51.413Z","sequence":19358,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:51.413Z","sequence":19359,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oci]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:51.421Z","sequence":19360,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-01d16853-dfaf-4155-95c0-ad1c77c7227e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:51.424Z","sequence":19361,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:51.425Z","sequence":19362,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001C1] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:51.425Z","sequence":19363,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:51.425Z","sequence":19364,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001C1] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:51.449Z","sequence":19365,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:51.449Z","sequence":19366,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:51.45Z","sequence":19367,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:51.45Z","sequence":19368,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:51.461Z","sequence":19369,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-93f805da-ebae-46bf-a23c-ae0fd0f07ad0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:51.465Z","sequence":19370,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1c9ac82f-2cbf-4528-a6b7-336ff2fba2cd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:51.536Z","sequence":19371,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:51.537Z","sequence":19372,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100056E] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:51.555Z","sequence":19373,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:51.555Z","sequence":19374,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:51.565Z","sequence":19375,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c22ad49a-8311-49e5-9e4f-527cdba319d7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:51.691Z","sequence":19376,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191122]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"130701ad4a200e91","parentId":"8bdb0d9798daa655","traceId":"00000000000000006186c8f43432f6a9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:51.736Z","sequence":19377,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191122]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"130701ad4a200e91","parentId":"8bdb0d9798daa655","traceId":"00000000000000006186c8f43432f6a9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:51.831Z","sequence":19378,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFED65FABE08CD0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"46be77fe971a3dc6","parentId":"1be77a22265537ee","traceId":"000000000000000097cbbf8e2abce7ab","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:51.856Z","sequence":19379,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFED65FABE08CD0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"46be77fe971a3dc6","parentId":"1be77a22265537ee","traceId":"000000000000000097cbbf8e2abce7ab","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:51.935Z","sequence":19380,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [command-router@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:51.935Z","sequence":19381,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFEADD18DF8E89C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:52.588Z","sequence":19382,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-da03d9a9-878b-445f-bf94-b2bec85979be, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:52.725Z","sequence":19383,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191119]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ae82513776d7142a","parentId":"cbe301f005ec756f","traceId":"0000000000000000f1096867d37b4b37","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:52.753Z","sequence":19384,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191119]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ae82513776d7142a","parentId":"cbe301f005ec756f","traceId":"0000000000000000f1096867d37b4b37","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:53.749Z","sequence":19385,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: C1767E1A2B18]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8d11506e88cb8c8a","parentId":"bc67be9c4d844504","traceId":"000000000000000016ee254f90113e76","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:53.772Z","sequence":19386,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: C1767E1A2B18, resource-version: 23deb31a-3215-4c1a-8d40-c53a1c17d35e]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8d11506e88cb8c8a","parentId":"bc67be9c4d844504","traceId":"000000000000000016ee254f90113e76","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:53.781Z","sequence":19387,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: C1767E1A2B18, resource-version: 7258f194-d5bb-48eb-98a8-5bf2d1788ab7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8d11506e88cb8c8a","parentId":"bc67be9c4d844504","traceId":"000000000000000016ee254f90113e76","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:53.785Z","sequence":19388,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: C1767E1A2B18]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"94f71ee28888290c","parentId":"239289e5a269dcb5","traceId":"000000000000000016ee254f90113e76","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:54.087Z","sequence":19389,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: C1767E1A2B18]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"94f71ee28888290c","parentId":"239289e5a269dcb5","traceId":"000000000000000016ee254f90113e76","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:55.351Z","sequence":19390,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:55.352Z","sequence":19391,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AD4] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:55.363Z","sequence":19392,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:55.363Z","sequence":19393,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:55.375Z","sequence":19394,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-cd615a16-fbcd-4e17-abeb-523420a361ea, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:56.565Z","sequence":19395,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:56.565Z","sequence":19396,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B80] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:56.587Z","sequence":19397,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:56.588Z","sequence":19398,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:56.594Z","sequence":19399,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-571d925c-6883-4be9-86b0-c79fb54cf31e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:58.352Z","sequence":19400,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF5F943988100D9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"793b2cbb1a219e6b","parentId":"147b4a69dc787258","traceId":"000000000000000041b663354424b382","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:58.374Z","sequence":19401,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF5F943988100D9, resource-version: 6a21b920-55b0-48f5-a0ad-38e7d317af35]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"793b2cbb1a219e6b","parentId":"147b4a69dc787258","traceId":"000000000000000041b663354424b382","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:58.38Z","sequence":19402,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF5F943988100D9, resource-version: 90f7a0b9-506f-4de9-85de-952902ff5f59]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"793b2cbb1a219e6b","parentId":"147b4a69dc787258","traceId":"000000000000000041b663354424b382","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:58.997Z","sequence":19403,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF2EFD781C8C80E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"53d726b956d512a0","parentId":"01876f1df9ea601b","traceId":"00000000000000004dfa4461c98be2a5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:59.021Z","sequence":19404,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF2EFD781C8C80E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"53d726b956d512a0","parentId":"01876f1df9ea601b","traceId":"00000000000000004dfa4461c98be2a5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:59.515Z","sequence":19405,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:59.515Z","sequence":19406,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-C1767E1A2B18]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:59.526Z","sequence":19407,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-5b88a890-2d9d-461e-8641-9c252838aace, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:59.593Z","sequence":19408,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191123]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9638c7da10808d2d","parentId":"176b6cfa86259a4f","traceId":"00000000000000009e62e07378b85cc9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:59.608Z","sequence":19409,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191123]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9638c7da10808d2d","parentId":"176b6cfa86259a4f","traceId":"00000000000000009e62e07378b85cc9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:59.647Z","sequence":19410,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:59.647Z","sequence":19411,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: C1767E1A2B18]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:59.659Z","sequence":19412,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c8931432-b8d5-4f21-835c-82d6fabb6dde, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:59.663Z","sequence":19413,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:59.664Z","sequence":19414,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF5F943988100D9] for gateway [C1767E1A2B18]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:59.7Z","sequence":19415,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:56:59.701Z","sequence":19416,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:00.272Z","sequence":19417,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-36711d1b-8dd0-4d91-8251-22db9abdab28, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:01.354Z","sequence":19418,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0B57DB8A285D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5b0f9c6ea77e3a3b","parentId":"620790f813e1b133","traceId":"0000000000000000def174c44e31a2ce","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:01.414Z","sequence":19419,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0B57DB8A285D, resource-version: 7cefe89e-b6f9-402a-89ae-e0b7d005def7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5b0f9c6ea77e3a3b","parentId":"620790f813e1b133","traceId":"0000000000000000def174c44e31a2ce","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:01.43Z","sequence":19420,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0B57DB8A285D, resource-version: 9dc9280a-251a-44fe-88e3-09cd75691241]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5b0f9c6ea77e3a3b","parentId":"620790f813e1b133","traceId":"0000000000000000def174c44e31a2ce","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:01.433Z","sequence":19421,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 0B57DB8A285D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4d792d96d074e516","parentId":"fc983f9a1e12fbc7","traceId":"0000000000000000def174c44e31a2ce","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:01.565Z","sequence":19422,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:01.565Z","sequence":19423,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006D4] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:01.64Z","sequence":19424,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:01.641Z","sequence":19425,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:01.674Z","sequence":19426,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7494889b-afac-4235-9146-a7b73222de89, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:01.851Z","sequence":19427,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 0B57DB8A285D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4d792d96d074e516","parentId":"fc983f9a1e12fbc7","traceId":"0000000000000000def174c44e31a2ce","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:02.217Z","sequence":19428,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFD2CBFCD11EA97]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"20aa3cc76359edc7","parentId":"832ddb9232985b07","traceId":"0000000000000000e511d7677f7cba96","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:02.256Z","sequence":19429,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFD2CBFCD11EA97, resource-version: 47f1a380-eae5-4dc5-b083-b182ef217290]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"20aa3cc76359edc7","parentId":"832ddb9232985b07","traceId":"0000000000000000e511d7677f7cba96","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:02.269Z","sequence":19430,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFD2CBFCD11EA97, resource-version: fda40add-732a-4284-b5d1-6525d6a0ac46]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"20aa3cc76359edc7","parentId":"832ddb9232985b07","traceId":"0000000000000000e511d7677f7cba96","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:03.513Z","sequence":19431,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:03.513Z","sequence":19432,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFEADD18DF8E89C] for gateway [185E3FA86651]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:03.541Z","sequence":19433,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:03.541Z","sequence":19434,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:04.219Z","sequence":19435,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8dc06ebc-0823-4dea-9fdd-c279be5d05db, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:04.297Z","sequence":19436,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFD2CBFCD11EA97]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"efda8373061acc07","parentId":"afe5bdac7db800f0","traceId":"00000000000000007ea985faa6506318","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:04.329Z","sequence":19437,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFD2CBFCD11EA97]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"efda8373061acc07","parentId":"afe5bdac7db800f0","traceId":"00000000000000007ea985faa6506318","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:05.436Z","sequence":19438,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0A666DF36CB0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4b1b1ac6a5d2e469","parentId":"e2aa38ac31740201","traceId":"000000000000000038b0e81ededee736","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:05.468Z","sequence":19439,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0A666DF36CB0, resource-version: 3f5c3688-adc7-44e5-8ba1-661b75840bb1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4b1b1ac6a5d2e469","parentId":"e2aa38ac31740201","traceId":"000000000000000038b0e81ededee736","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:05.481Z","sequence":19440,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0A666DF36CB0, resource-version: 457a4959-a756-4779-ba21-a4e9704ebd55]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4b1b1ac6a5d2e469","parentId":"e2aa38ac31740201","traceId":"000000000000000038b0e81ededee736","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:05.484Z","sequence":19441,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 0A666DF36CB0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c7f726e20c124925","parentId":"f5b36e3a326dd70f","traceId":"000000000000000038b0e81ededee736","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:05.677Z","sequence":19442,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 0A666DF36CB0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c7f726e20c124925","parentId":"f5b36e3a326dd70f","traceId":"000000000000000038b0e81ededee736","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:05.732Z","sequence":19443,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0B57DB8A285D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0eaecc32ad23ceb6","parentId":"f29c6f356f5ab9dd","traceId":"00000000000000005c7cd64364b07053","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:05.764Z","sequence":19444,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0B57DB8A285D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0eaecc32ad23ceb6","parentId":"f29c6f356f5ab9dd","traceId":"00000000000000005c7cd64364b07053","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:05.773Z","sequence":19445,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF5F943988100D9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5272b2780cace887","parentId":"dd7de74dd585a8dd","traceId":"0000000000000000c6d6924333d2fb28","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:05.807Z","sequence":19446,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF5F943988100D9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5272b2780cace887","parentId":"dd7de74dd585a8dd","traceId":"0000000000000000c6d6924333d2fb28","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:07.233Z","sequence":19447,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFAB1BB357522BC]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"79a865bc2edef577","parentId":"9bbcbd5571785fda","traceId":"00000000000000004f14038adf383f41","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:07.264Z","sequence":19448,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFAB1BB357522BC, resource-version: 54121c8b-cb26-46fb-bb8b-a1b930c8991e]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"79a865bc2edef577","parentId":"9bbcbd5571785fda","traceId":"00000000000000004f14038adf383f41","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:07.272Z","sequence":19449,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFAB1BB357522BC, resource-version: 384dd924-348a-4b69-8c68-04a95fe3bd8c]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"79a865bc2edef577","parentId":"9bbcbd5571785fda","traceId":"00000000000000004f14038adf383f41","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:07.345Z","sequence":19450,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: C974FCC852ED]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"275667cb78ed1a23","parentId":"707b62809dfb902a","traceId":"000000000000000046db16787827c583","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:07.366Z","sequence":19451,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: C974FCC852ED, resource-version: 1c6d6457-9fcb-4d8e-8467-8598a21493a9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"275667cb78ed1a23","parentId":"707b62809dfb902a","traceId":"000000000000000046db16787827c583","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:07.373Z","sequence":19452,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: C974FCC852ED, resource-version: 2007fb47-1053-44c0-9002-1310a6a46924]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"275667cb78ed1a23","parentId":"707b62809dfb902a","traceId":"000000000000000046db16787827c583","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:07.381Z","sequence":19453,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: C974FCC852ED]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"dc286431fe0b92c7","parentId":"e6a496fcdc72da88","traceId":"000000000000000046db16787827c583","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:07.384Z","sequence":19454,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: C1767E1A2B18]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2e52f193e13c584c","parentId":"6dfa3fb58a1d4953","traceId":"0000000000000000c25f894d25abf875","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:07.413Z","sequence":19455,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: C1767E1A2B18]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2e52f193e13c584c","parentId":"6dfa3fb58a1d4953","traceId":"0000000000000000c25f894d25abf875","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:07.641Z","sequence":19456,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: C974FCC852ED]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"dc286431fe0b92c7","parentId":"e6a496fcdc72da88","traceId":"000000000000000046db16787827c583","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:07.868Z","sequence":19457,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:07.868Z","sequence":19458,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AD6] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:07.881Z","sequence":19459,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:07.881Z","sequence":19460,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:07.901Z","sequence":19461,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-694f6c00-e7e2-4f38-a2b9-6005ae223394, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:09.013Z","sequence":19462,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF102ED71C2C163]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0c4335cd40bf7373","parentId":"cc4e0a8a5ed0ba44","traceId":"0000000000000000283e69fc8145b509","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:09.035Z","sequence":19463,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF102ED71C2C163, resource-version: 6b59b572-0c2d-400a-9e72-6f23abd28c89]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0c4335cd40bf7373","parentId":"cc4e0a8a5ed0ba44","traceId":"0000000000000000283e69fc8145b509","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:09.042Z","sequence":19464,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF102ED71C2C163, resource-version: 75a024b0-3062-4d46-82ee-1fe7a089f3af]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0c4335cd40bf7373","parentId":"cc4e0a8a5ed0ba44","traceId":"0000000000000000283e69fc8145b509","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:09.605Z","sequence":19465,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFAB1BB357522BC]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7a984f988bf553bd","parentId":"d877831f5df11b07","traceId":"000000000000000024c10b21a025ed75","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:09.617Z","sequence":19466,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191128]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"503972756b28e3ab","parentId":"4b66be645dbe12ad","traceId":"000000000000000066220f33f50198bc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:09.622Z","sequence":19467,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFAB1BB357522BC]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7a984f988bf553bd","parentId":"d877831f5df11b07","traceId":"000000000000000024c10b21a025ed75","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:09.636Z","sequence":19468,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191128, resource-version: b342bbe0-caf2-45c2-8e47-afcdd6dd9431]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"503972756b28e3ab","parentId":"4b66be645dbe12ad","traceId":"000000000000000066220f33f50198bc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:09.644Z","sequence":19469,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191128, resource-version: 4d8baf8d-e8fa-403d-8609-d77dff7bbd75]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"503972756b28e3ab","parentId":"4b66be645dbe12ad","traceId":"000000000000000066220f33f50198bc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:09.649Z","sequence":19470,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191128]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0ca723ec318bd751","parentId":"09beef552b8ea3f6","traceId":"000000000000000066220f33f50198bc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:09.749Z","sequence":19471,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:09.749Z","sequence":19472,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AC8] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:09.759Z","sequence":19473,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:09.764Z","sequence":19474,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:09.776Z","sequence":19475,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1372ba7d-ba2f-48b8-88f7-6210b89e77df, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:10.032Z","sequence":19476,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191128]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0ca723ec318bd751","parentId":"09beef552b8ea3f6","traceId":"000000000000000066220f33f50198bc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:10.402Z","sequence":19477,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0A666DF36CB0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"67b12523918c5ecc","parentId":"28ecf2ff1ef2bf21","traceId":"0000000000000000190dc4b484078173","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:10.425Z","sequence":19478,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0A666DF36CB0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"67b12523918c5ecc","parentId":"28ecf2ff1ef2bf21","traceId":"0000000000000000190dc4b484078173","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:10.478Z","sequence":19479,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:10.478Z","sequence":19480,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-C974FCC852ED]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:10.492Z","sequence":19481,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-7d41a7d7-6ec6-464e-9c6d-ce5860d63eb7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:10.616Z","sequence":19482,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:10.617Z","sequence":19483,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: C974FCC852ED]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:10.623Z","sequence":19484,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3caf1bb1-9bca-4fd9-9774-3893e17c0486, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:10.626Z","sequence":19485,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:10.627Z","sequence":19486,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF102ED71C2C163] for gateway [C974FCC852ED]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:10.633Z","sequence":19487,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.3.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:10.633Z","sequence":19488,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:10.845Z","sequence":19489,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191129]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"76a3d2b4c1f054db","parentId":"b28cb24d671b3db8","traceId":"000000000000000008aed8f2ce022cfe","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:10.873Z","sequence":19490,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191129, resource-version: 364bd3b5-f5ea-433e-a9fb-98611af99a29]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"76a3d2b4c1f054db","parentId":"b28cb24d671b3db8","traceId":"000000000000000008aed8f2ce022cfe","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:10.885Z","sequence":19491,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191129, resource-version: 47a4101e-f6aa-4234-bb4b-099fc90f44bf]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"76a3d2b4c1f054db","parentId":"b28cb24d671b3db8","traceId":"000000000000000008aed8f2ce022cfe","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:10.897Z","sequence":19492,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191129]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"dc88ab3e7f23e049","parentId":"23ecade2b2b77c39","traceId":"000000000000000008aed8f2ce022cfe","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:11.299Z","sequence":19493,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e492c743-f7dc-4095-ba60-59c2ade29641, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:11.386Z","sequence":19494,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191129]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"dc88ab3e7f23e049","parentId":"23ecade2b2b77c39","traceId":"000000000000000008aed8f2ce022cfe","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:11.593Z","sequence":19495,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:11.593Z","sequence":19496,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 0008004C80F4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:11.605Z","sequence":19497,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-da1c4be4-1405-4ed0-9459-016f15623b0b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:11.845Z","sequence":19498,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF46C5CA8A61346]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b22c3b19ec5bce00","parentId":"21db30254ee3444a","traceId":"00000000000000006e5cd691ec248826","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:11.873Z","sequence":19499,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF46C5CA8A61346, resource-version: 41c06a8d-1ab7-46bf-8cf6-4ccb69f0508f]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b22c3b19ec5bce00","parentId":"21db30254ee3444a","traceId":"00000000000000006e5cd691ec248826","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:11.881Z","sequence":19500,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF46C5CA8A61346, resource-version: 88a67780-d09d-4b47-9c86-7a7295e04cb0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b22c3b19ec5bce00","parentId":"21db30254ee3444a","traceId":"00000000000000006e5cd691ec248826","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:12.167Z","sequence":19501,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:12.167Z","sequence":19502,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: flint]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:12.173Z","sequence":19503,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-22d0fcae-90a9-421d-a47b-b8e8b1f5370e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:12.175Z","sequence":19504,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/flint:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:12.176Z","sequence":19505,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: flint, type: hashed-password, auth-id: auth-flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:12.187Z","sequence":19506,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-762c9a1d-9492-49f1-bf4c-b0cd6ea5c9b2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:12.289Z","sequence":19507,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191130]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"657ff89aca6a0e96","parentId":"27135895e591b99b","traceId":"0000000000000000caca89105eb6d3eb","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:12.317Z","sequence":19508,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191130, resource-version: 43df8b1d-ccc5-4541-9985-17b2dccd7221]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"657ff89aca6a0e96","parentId":"27135895e591b99b","traceId":"0000000000000000caca89105eb6d3eb","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:12.325Z","sequence":19509,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191130, resource-version: 59f577b5-fc41-4995-86aa-9325d54c6ec7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"657ff89aca6a0e96","parentId":"27135895e591b99b","traceId":"0000000000000000caca89105eb6d3eb","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:12.334Z","sequence":19510,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191130]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cd5160cc2d271f3e","parentId":"455c4bcb5ecf5bda","traceId":"0000000000000000caca89105eb6d3eb","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:12.372Z","sequence":19511,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:12.372Z","sequence":19512,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10002D2] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:12.373Z","sequence":19513,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:12.373Z","sequence":19514,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:12.401Z","sequence":19515,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-cd75b900-ea21-4ce8-acfd-3eab8bec31d1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:12.401Z","sequence":19516,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:12.401Z","sequence":19517,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:12.409Z","sequence":19518,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-667cc3c6-965a-4864-a110-e8a60bd941fb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:12.707Z","sequence":19519,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191130]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cd5160cc2d271f3e","parentId":"455c4bcb5ecf5bda","traceId":"0000000000000000caca89105eb6d3eb","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:12.901Z","sequence":19520,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF46C5CA8A61346]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5084d4eca28053ea","parentId":"e74f1dbb059d82eb","traceId":"00000000000000002ea97da38d691e0d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:12.916Z","sequence":19521,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF46C5CA8A61346]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5084d4eca28053ea","parentId":"e74f1dbb059d82eb","traceId":"00000000000000002ea97da38d691e0d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:13.131Z","sequence":19522,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF1BB669E7D3937]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9a0e41c31cf8b7b9","parentId":"eff5de097e8e96db","traceId":"00000000000000006128000c558c1927","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:13.18Z","sequence":19523,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF1BB669E7D3937, resource-version: 733c1d97-6f49-43ff-a623-bd78a3d47dab]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9a0e41c31cf8b7b9","parentId":"eff5de097e8e96db","traceId":"00000000000000006128000c558c1927","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:13.193Z","sequence":19524,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF1BB669E7D3937, resource-version: ddff2a4f-0048-49c0-8515-3443e2f88953]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9a0e41c31cf8b7b9","parentId":"eff5de097e8e96db","traceId":"00000000000000006128000c558c1927","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:13.471Z","sequence":19525,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191128]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"797f6142a2f4a1a0","parentId":"4ee01ebf78cfd54c","traceId":"0000000000000000d53a9de53cc6f768","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:13.497Z","sequence":19526,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191128]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"797f6142a2f4a1a0","parentId":"4ee01ebf78cfd54c","traceId":"0000000000000000d53a9de53cc6f768","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:13.656Z","sequence":19527,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFCD5167460F8C2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"17a07f96016fe9aa","parentId":"3e18bf3633d1a734","traceId":"00000000000000005de8a603ea12489b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:13.678Z","sequence":19528,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFCD5167460F8C2, resource-version: b3944feb-b361-4249-92b8-283e0f442863]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"17a07f96016fe9aa","parentId":"3e18bf3633d1a734","traceId":"00000000000000005de8a603ea12489b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:13.685Z","sequence":19529,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFCD5167460F8C2, resource-version: a71fbf65-7e35-4cad-a099-127c6d0ffdb8]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"17a07f96016fe9aa","parentId":"3e18bf3633d1a734","traceId":"00000000000000005de8a603ea12489b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:13.925Z","sequence":19530,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF102ED71C2C163]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7a680009f52be911","parentId":"0e67af1ec23acdb6","traceId":"0000000000000000e481874b3da21d7a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:13.943Z","sequence":19531,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF102ED71C2C163]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7a680009f52be911","parentId":"0e67af1ec23acdb6","traceId":"0000000000000000e481874b3da21d7a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:14.152Z","sequence":19532,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:14.153Z","sequence":19533,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-00GWALP120IT]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:14.165Z","sequence":19534,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-423b1e1e-69dd-4bb1-8296-59d30deb38bd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:14.292Z","sequence":19535,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:14.293Z","sequence":19536,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 4A38383700300023] for gateway [00GWALP120IT]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:14.3Z","sequence":19537,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:0.3.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:14.3Z","sequence":19538,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7\",\n \"upstream-message-mapper\" : \"upstream_dash7\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:14.567Z","sequence":19539,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: C974FCC852ED]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"edb2696386fc4f68","parentId":"7f44db8081b8c7de","traceId":"000000000000000007bc1dc5844d546d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:14.601Z","sequence":19540,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: C974FCC852ED]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"edb2696386fc4f68","parentId":"7f44db8081b8c7de","traceId":"000000000000000007bc1dc5844d546d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:15.164Z","sequence":19541,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-327d5ae9-8b42-4c16-878c-aa03465bc86b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:15.165Z","sequence":19542,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:15.165Z","sequence":19543,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191130]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:15.197Z","sequence":19544,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-764498bf-3241-4690-87d5-882b2e2e61b4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:15.216Z","sequence":19545,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:15.217Z","sequence":19546,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191129]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:15.277Z","sequence":19547,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-76013cea-f202-4020-b4a4-109b0b6174df, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:15.363Z","sequence":19548,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:15.363Z","sequence":19549,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCD5167460F8C2] for gateway [gateway_integrationtest_network_191130]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:15.364Z","sequence":19550,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:15.364Z","sequence":19551,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191130]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:15.394Z","sequence":19552,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.5.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:15.395Z","sequence":19553,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:15.395Z","sequence":19554,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4ef1c1ad-eb41-4872-a0f2-8af9349e3b8a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:15.448Z","sequence":19555,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:15.448Z","sequence":19556,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF1BB669E7D3937] for gateway [gateway_integrationtest_network_191129]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:15.449Z","sequence":19557,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:15.45Z","sequence":19558,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191129]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:15.488Z","sequence":19559,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.7.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:15.49Z","sequence":19560,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:15.49Z","sequence":19561,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-dbbc30af-5812-4fb7-bfeb-97e47e0d15a4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:15.996Z","sequence":19562,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-35c75ffa-35ae-4933-9dc8-8f7ab6428abb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:16.072Z","sequence":19563,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191131]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f4cf447c4b49330f","parentId":"dd58fc4735faf60d","traceId":"00000000000000009199a4208a122cca","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:16.107Z","sequence":19564,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191131, resource-version: e5a8ba01-d560-41ea-8979-6e200ec0a97b]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f4cf447c4b49330f","parentId":"dd58fc4735faf60d","traceId":"00000000000000009199a4208a122cca","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:16.115Z","sequence":19565,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191131, resource-version: 22d2b409-d8b7-48c6-89f6-89fbc7cf7622]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f4cf447c4b49330f","parentId":"dd58fc4735faf60d","traceId":"00000000000000009199a4208a122cca","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:16.121Z","sequence":19566,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191131]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6c493f31170f1aff","parentId":"ce519f2d9ababb7a","traceId":"00000000000000009199a4208a122cca","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:16.492Z","sequence":19567,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191131]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6c493f31170f1aff","parentId":"ce519f2d9ababb7a","traceId":"00000000000000009199a4208a122cca","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:16.518Z","sequence":19568,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0fbec2dd-4185-4070-b103-25845fd1a416, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:16.518Z","sequence":19569,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:16.518Z","sequence":19570,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCD5167460F8C2] for gateway [gateway_integrationtest_network_191130]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:16.524Z","sequence":19571,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:16.524Z","sequence":19572,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000883] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:16.525Z","sequence":19573,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:16.525Z","sequence":19574,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF1BB669E7D3937] for gateway [gateway_integrationtest_network_191129]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:16.538Z","sequence":19575,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.7.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:16.538Z","sequence":19576,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:16.544Z","sequence":19577,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:16.545Z","sequence":19578,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:16.545Z","sequence":19579,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.5.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:16.545Z","sequence":19580,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:16.563Z","sequence":19581,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3168da5f-28b5-44c1-b842-02e1dff63345, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:17.35Z","sequence":19582,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-cb97142b-4da2-46af-85dc-3786579ed61b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:17.419Z","sequence":19583,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF220074F915B11]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"71f0b2f5add8338a","parentId":"d12c462e3c4f53ca","traceId":"00000000000000003aa5a04d0e32f886","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:17.456Z","sequence":19584,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF220074F915B11, resource-version: 6727f939-dd4e-4687-b18a-f094150e3e29]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"71f0b2f5add8338a","parentId":"d12c462e3c4f53ca","traceId":"00000000000000003aa5a04d0e32f886","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:17.47Z","sequence":19585,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF220074F915B11, resource-version: e39714c1-7274-4ec6-9601-fc2ac55d940f]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"71f0b2f5add8338a","parentId":"d12c462e3c4f53ca","traceId":"00000000000000003aa5a04d0e32f886","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:17.865Z","sequence":19586,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3cdad830-8e8c-4331-83f9-9a760abdb313, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:17.866Z","sequence":19587,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:17.866Z","sequence":19588,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF1BB669E7D3937] for gateway [gateway_integrationtest_network_191129]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:17.887Z","sequence":19589,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.7.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:17.887Z","sequence":19590,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:18.802Z","sequence":19591,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-92c7af57-20d6-459a-9a7c-e56fa5ad582c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:18.805Z","sequence":19592,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:18.805Z","sequence":19593,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF1BB669E7D3937] for gateway [gateway_integrationtest_network_191129]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:18.805Z","sequence":19594,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:18.806Z","sequence":19595,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006C7] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:18.829Z","sequence":19596,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:18.829Z","sequence":19597,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:18.83Z","sequence":19598,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.7.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:18.831Z","sequence":19599,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:18.843Z","sequence":19600,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2724e2ec-f4ec-46db-a79f-3a3c06d1b481, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:19.402Z","sequence":19601,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c4c43f29-640e-403d-87e9-bdcfd4764c47, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:20.606Z","sequence":19602,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:20.606Z","sequence":19603,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191131]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:20.673Z","sequence":19604,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-69ab847c-4f49-47f0-acd7-8b68bbd7d17d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:20.864Z","sequence":19605,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:20.864Z","sequence":19606,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF220074F915B11] for gateway [gateway_integrationtest_network_191131]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:20.865Z","sequence":19607,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:20.865Z","sequence":19608,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191131]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:20.886Z","sequence":19609,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b4b0abd4-8d00-45ad-8ebe-74267f917f86, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:20.887Z","sequence":19610,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:20.887Z","sequence":19611,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:20.959Z","sequence":19612,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:20.959Z","sequence":19613,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A47] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:21.501Z","sequence":19614,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-87e07b53-b22a-41e8-9518-96685892cc92, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:21.501Z","sequence":19615,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:21.502Z","sequence":19616,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:21.508Z","sequence":19617,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5b84661d-fc20-4f82-a3ea-2f184bce7b20, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:21.633Z","sequence":19618,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:21.633Z","sequence":19619,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB100087A] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:21.641Z","sequence":19620,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:21.641Z","sequence":19621,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:21.645Z","sequence":19622,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5aa9789a-119f-4336-834c-cdb120d36c0f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:22.121Z","sequence":19623,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:22.121Z","sequence":19624,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF1BB669E7D3937] for gateway [gateway_integrationtest_network_191129]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:22.129Z","sequence":19625,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.7.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:22.129Z","sequence":19626,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:22.87Z","sequence":19627,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9c16b7c3-f71f-4755-9160-bb45cc484ad1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:25.688Z","sequence":19628,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:25.688Z","sequence":19629,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10008A1] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:25.721Z","sequence":19630,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:25.721Z","sequence":19631,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:25.741Z","sequence":19632,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0f6e7ddd-b021-45ce-af02-7fd85520d59e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:26.318Z","sequence":19633,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oiltanking:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:26.318Z","sequence":19634,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oiltanking, device-id: 0008004BB60F]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:26.329Z","sequence":19635,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6eaad625-419c-4348-917a-092a3fbeffaf, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:26.332Z","sequence":19636,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:26.333Z","sequence":19637,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oiltanking]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:26.344Z","sequence":19638,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-d09a4d47-bc95-4b9d-8377-37a0ee9eafa2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:26.953Z","sequence":19639,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:26.953Z","sequence":19640,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A41] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:26.968Z","sequence":19641,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:26.968Z","sequence":19642,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:26.992Z","sequence":19643,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3de1ebc2-550a-455e-b071-63e021359637, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:31.281Z","sequence":19644,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:31.281Z","sequence":19645,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: chevron]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:31.289Z","sequence":19646,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-3aa50c40-0937-4b98-8ffa-16d3f92fa98f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:31.293Z","sequence":19647,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/chevron:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:31.293Z","sequence":19648,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: chevron, type: hashed-password, auth-id: auth-CHEVRON-ORBIWISE-EL-SEGUNDO]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:31.35Z","sequence":19649,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-b3b6c50f-85b3-4351-8f9a-541457919011, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:31.48Z","sequence":19650,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/chevron:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:31.481Z","sequence":19651,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: chevron, device-id: 70B3D57BB100025E] for gateway [CHEVRON-ORBIWISE-EL-SEGUNDO]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:31.481Z","sequence":19652,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/chevron:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:31.484Z","sequence":19653,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: chevron, device-id: CHEVRON-ORBIWISE-EL-SEGUNDO]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:31.501Z","sequence":19654,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_chevron\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:31.501Z","sequence":19655,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_chevron\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:31.509Z","sequence":19656,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-46eca293-8ae9-4f4e-9cd1-8321bce00a08, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:31.511Z","sequence":19657,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0993c333-94a5-44e3-bb7b-ce1307c14933, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:31.928Z","sequence":19658,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:31.929Z","sequence":19659,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AC5] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:31.95Z","sequence":19660,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:31.95Z","sequence":19661,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:31.965Z","sequence":19662,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7a0b790e-30b3-4758-82a2-6259865f4121, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:32.959Z","sequence":19663,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191132]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7e5861f627ed45ee","parentId":"398c0bf3746a695b","traceId":"0000000000000000d1ad301cedc53607","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:32.992Z","sequence":19664,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191132, resource-version: 20abcf1b-1f0a-4d8d-9eaa-50f2121fe704]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7e5861f627ed45ee","parentId":"398c0bf3746a695b","traceId":"0000000000000000d1ad301cedc53607","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:33.008Z","sequence":19665,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191132, resource-version: 144b541e-3972-44d6-8c7e-57a5a6fba64c]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7e5861f627ed45ee","parentId":"398c0bf3746a695b","traceId":"0000000000000000d1ad301cedc53607","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:33.017Z","sequence":19666,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191132]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a0ba6f6d9c155970","parentId":"9f4ae2907f049e6a","traceId":"0000000000000000d1ad301cedc53607","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:33.241Z","sequence":19667,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191132]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a0ba6f6d9c155970","parentId":"9f4ae2907f049e6a","traceId":"0000000000000000d1ad301cedc53607","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:34.239Z","sequence":19668,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF1BB669E7D3937]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"930ceb4a797265a5","parentId":"4eafc6b1bafc40aa","traceId":"00000000000000006572eeb8fe0c1020","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:34.249Z","sequence":19669,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF15EF162241A02]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"62d8512e3c239553","parentId":"bd882e02574ca38d","traceId":"0000000000000000bec298d5a3222663","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:34.26Z","sequence":19670,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF1BB669E7D3937]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"930ceb4a797265a5","parentId":"4eafc6b1bafc40aa","traceId":"00000000000000006572eeb8fe0c1020","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:34.266Z","sequence":19671,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF15EF162241A02, resource-version: 90d87323-b44f-4fa6-aa18-718e37132d8b]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"62d8512e3c239553","parentId":"bd882e02574ca38d","traceId":"0000000000000000bec298d5a3222663","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:34.274Z","sequence":19672,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF15EF162241A02, resource-version: d8bfcfd7-68fb-432e-801d-7cd282e196e9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"62d8512e3c239553","parentId":"bd882e02574ca38d","traceId":"0000000000000000bec298d5a3222663","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:34.993Z","sequence":19673,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF220074F915B11]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b58b76f190f8dafd","parentId":"a24e199e4b86e0c3","traceId":"000000000000000087d6f65eb66e36d8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:35.011Z","sequence":19674,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF220074F915B11]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b58b76f190f8dafd","parentId":"a24e199e4b86e0c3","traceId":"000000000000000087d6f65eb66e36d8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:35.038Z","sequence":19675,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191129]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d9a56ef7c19246a1","parentId":"9ab966228a6697c3","traceId":"00000000000000005f4b60d40ccd496e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:35.057Z","sequence":19676,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191129]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d9a56ef7c19246a1","parentId":"9ab966228a6697c3","traceId":"00000000000000005f4b60d40ccd496e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:35.167Z","sequence":19677,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:35.167Z","sequence":19678,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C05] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:35.175Z","sequence":19679,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:35.175Z","sequence":19680,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:35.182Z","sequence":19681,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-af77226f-e85e-4b8e-823b-1dc0b2649397, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:35.716Z","sequence":19682,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:35.717Z","sequence":19683,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191132]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:35.765Z","sequence":19684,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-bc61fbc4-264b-4e5a-ab9e-f83d141e3e82, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:35.889Z","sequence":19685,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:35.889Z","sequence":19686,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF15EF162241A02] for gateway [gateway_integrationtest_network_191132]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:35.89Z","sequence":19687,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:35.89Z","sequence":19688,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191132]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:35.906Z","sequence":19689,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:35.907Z","sequence":19690,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:35.908Z","sequence":19691,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-dcd799b8-dace-45cc-8704-5643b042ee87, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:35.998Z","sequence":19692,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191133]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0f115a76475bfd8a","parentId":"d740c3b301429c22","traceId":"000000000000000036d13be1f3a75bc4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:36.034Z","sequence":19693,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191133, resource-version: 393a781a-1eeb-4809-a140-79cb94423c4e]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0f115a76475bfd8a","parentId":"d740c3b301429c22","traceId":"000000000000000036d13be1f3a75bc4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:36.041Z","sequence":19694,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191133, resource-version: 9d977019-aeaa-4631-b9d3-b0c40961d175]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0f115a76475bfd8a","parentId":"d740c3b301429c22","traceId":"000000000000000036d13be1f3a75bc4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:36.044Z","sequence":19695,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191133]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d8b18f25c2de7809","parentId":"296176048f2ae592","traceId":"000000000000000036d13be1f3a75bc4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:36.453Z","sequence":19696,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191133]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d8b18f25c2de7809","parentId":"296176048f2ae592","traceId":"000000000000000036d13be1f3a75bc4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:36.584Z","sequence":19697,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191131]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"31953d9ed04481a0","parentId":"4f0a8d5f05598f97","traceId":"000000000000000041e6335daceb0fdd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:36.606Z","sequence":19698,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191131]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"31953d9ed04481a0","parentId":"4f0a8d5f05598f97","traceId":"000000000000000041e6335daceb0fdd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:36.664Z","sequence":19699,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f34752c8-b460-46cd-92b2-558b08bc6409, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:37.903Z","sequence":19700,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: D7404185DE5A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ed6961881e56beb3","parentId":"7de516f18069acee","traceId":"0000000000000000f32c86a9e00c76d8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:37.923Z","sequence":19701,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: D7404185DE5A, resource-version: a7eb160b-6d44-4a28-8b6f-b5f606a478a2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ed6961881e56beb3","parentId":"7de516f18069acee","traceId":"0000000000000000f32c86a9e00c76d8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:37.925Z","sequence":19702,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:37.925Z","sequence":19703,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100015E] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:37.932Z","sequence":19704,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: D7404185DE5A, resource-version: e06ab409-acf5-42a7-93f7-dcae1962f03f]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ed6961881e56beb3","parentId":"7de516f18069acee","traceId":"0000000000000000f32c86a9e00c76d8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:37.932Z","sequence":19705,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:37.932Z","sequence":19706,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:37.934Z","sequence":19707,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: D7404185DE5A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9bea6465d42f921f","parentId":"3990fc0a0b687f36","traceId":"0000000000000000f32c86a9e00c76d8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:37.936Z","sequence":19708,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-31dd1b09-5463-4c42-82d9-f9e58df7028c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:38.049Z","sequence":19709,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:38.052Z","sequence":19710,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100015E] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:38.061Z","sequence":19711,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:38.061Z","sequence":19712,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:38.064Z","sequence":19713,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-030b31d8-ffa3-427e-97f2-81e90b087a16, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:38.165Z","sequence":19714,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: D7404185DE5A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9bea6465d42f921f","parentId":"3990fc0a0b687f36","traceId":"0000000000000000f32c86a9e00c76d8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:38.306Z","sequence":19715,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF34CA0A5C4D973]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"720434bc11785149","parentId":"e9bfd18c8eb2a8db","traceId":"00000000000000008102ced1441b1068","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:38.325Z","sequence":19716,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF34CA0A5C4D973, resource-version: 481a8296-d71a-477d-a4d9-f4262b7b960c]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"720434bc11785149","parentId":"e9bfd18c8eb2a8db","traceId":"00000000000000008102ced1441b1068","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:38.333Z","sequence":19717,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF34CA0A5C4D973, resource-version: 8fb6b54c-cd92-472a-a489-c0fd85bdb89c]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"720434bc11785149","parentId":"e9bfd18c8eb2a8db","traceId":"00000000000000008102ced1441b1068","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:39.013Z","sequence":19718,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF42B169511D985]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c32ba4873741c323","parentId":"7f0efdaed87f17b4","traceId":"0000000000000000dd6263e257bba698","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:39.04Z","sequence":19719,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF42B169511D985, resource-version: 1c76e636-bfa8-4c99-948b-7f53edf5d43b]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c32ba4873741c323","parentId":"7f0efdaed87f17b4","traceId":"0000000000000000dd6263e257bba698","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:39.049Z","sequence":19720,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF42B169511D985, resource-version: d67f8ff8-d577-4683-920d-509e5a2fcb10]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c32ba4873741c323","parentId":"7f0efdaed87f17b4","traceId":"0000000000000000dd6263e257bba698","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:39.414Z","sequence":19721,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:39.414Z","sequence":19722,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191133]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:39.431Z","sequence":19723,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-5e876f8d-9e06-48a1-a874-db4eed7134fd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:39.559Z","sequence":19724,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:39.559Z","sequence":19725,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF34CA0A5C4D973] for gateway [gateway_integrationtest_network_191133]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:39.56Z","sequence":19726,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:39.56Z","sequence":19727,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191133]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:39.566Z","sequence":19728,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:39.566Z","sequence":19729,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:39.567Z","sequence":19730,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f7ad0720-80df-47fb-8d5c-777ededcc427, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:39.911Z","sequence":19731,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1d8f44db-450e-4404-9fb4-8afbeaae35af, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:40.11Z","sequence":19732,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:40.11Z","sequence":19733,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-D7404185DE5A]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:40.122Z","sequence":19734,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-cff0c516-4e3a-4eab-9696-b05ea6a45d0d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:40.309Z","sequence":19735,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:40.309Z","sequence":19736,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: D7404185DE5A]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:40.315Z","sequence":19737,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-561dfa00-9387-4dac-aaa0-4c0ae85258b3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:40.321Z","sequence":19738,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:40.321Z","sequence":19739,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF42B169511D985] for gateway [D7404185DE5A]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:40.327Z","sequence":19740,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:40.327Z","sequence":19741,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:40.706Z","sequence":19742,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-03092d06-de6f-4a80-913a-54acadff0777, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:40.805Z","sequence":19743,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:40.806Z","sequence":19744,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100192D] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:40.812Z","sequence":19745,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:40.812Z","sequence":19746,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:40.821Z","sequence":19747,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-079a6849-da78-4a3e-97f7-5782b704bfbf, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:45.481Z","sequence":19748,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:45.481Z","sequence":19749,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006AF] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:45.489Z","sequence":19750,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:45.489Z","sequence":19751,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:45.497Z","sequence":19752,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-76fc77bc-90c9-4855-9b30-32db12089fc8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:46.749Z","sequence":19753,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF15EF162241A02]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"33dc08e6cd276886","parentId":"e30e7a78f646e421","traceId":"0000000000000000a00c0066a4ecda8d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:46.769Z","sequence":19754,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF15EF162241A02]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"33dc08e6cd276886","parentId":"e30e7a78f646e421","traceId":"0000000000000000a00c0066a4ecda8d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:47.193Z","sequence":19755,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191132]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fd3492fe2c36c56e","parentId":"6493b85f051e69b4","traceId":"00000000000000008b08b36827c9f210","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:47.213Z","sequence":19756,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191132]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fd3492fe2c36c56e","parentId":"6493b85f051e69b4","traceId":"00000000000000008b08b36827c9f210","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:47.839Z","sequence":19757,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191135]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"625ccccccde8647c","parentId":"79a55b1770a822be","traceId":"00000000000000006190bc02fea1b998","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:47.879Z","sequence":19758,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191135, resource-version: 58c6b252-762c-4ec4-a5e8-a95f0976b35d]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"625ccccccde8647c","parentId":"79a55b1770a822be","traceId":"00000000000000006190bc02fea1b998","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:47.888Z","sequence":19759,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191135, resource-version: 4931c79a-4c1c-4def-94ef-31db8965c66c]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"625ccccccde8647c","parentId":"79a55b1770a822be","traceId":"00000000000000006190bc02fea1b998","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:47.893Z","sequence":19760,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191135]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d2415d15c7a720f5","parentId":"020bf82c01c02841","traceId":"00000000000000006190bc02fea1b998","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:48.214Z","sequence":19761,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191135]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d2415d15c7a720f5","parentId":"020bf82c01c02841","traceId":"00000000000000006190bc02fea1b998","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:49.437Z","sequence":19762,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF1BE59AEA45B18]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6c580e13079a4815","parentId":"e20c2fc723f094d9","traceId":"0000000000000000e85821fc90994822","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:49.469Z","sequence":19763,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF1BE59AEA45B18, resource-version: d1af4845-42ef-4185-9d18-4e227c54ffc8]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6c580e13079a4815","parentId":"e20c2fc723f094d9","traceId":"0000000000000000e85821fc90994822","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:49.481Z","sequence":19764,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF1BE59AEA45B18, resource-version: f649eae2-fece-4a1c-8c17-13127d78791e]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6c580e13079a4815","parentId":"e20c2fc723f094d9","traceId":"0000000000000000e85821fc90994822","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:49.988Z","sequence":19765,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF34CA0A5C4D973]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f5394f78cfb29852","parentId":"16ac6746437c2382","traceId":"00000000000000001e5af9da4482a375","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:50.013Z","sequence":19766,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF34CA0A5C4D973]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f5394f78cfb29852","parentId":"16ac6746437c2382","traceId":"00000000000000001e5af9da4482a375","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:50.644Z","sequence":19767,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:50.644Z","sequence":19768,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191135]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:50.689Z","sequence":19769,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191133]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a335d1d9780648b4","parentId":"85da828cebdebf23","traceId":"0000000000000000c677d8a65f933142","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:50.713Z","sequence":19770,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-30d37693-65e9-4d88-8259-c2a4a306112f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:50.749Z","sequence":19771,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191133]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a335d1d9780648b4","parentId":"85da828cebdebf23","traceId":"0000000000000000c677d8a65f933142","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:50.838Z","sequence":19772,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:50.839Z","sequence":19773,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF1BE59AEA45B18] for gateway [gateway_integrationtest_network_191135]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:50.84Z","sequence":19774,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:50.841Z","sequence":19775,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191135]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:50.849Z","sequence":19776,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:50.849Z","sequence":19777,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:50.85Z","sequence":19778,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-fe78166c-1f09-4a98-8fec-ca82695e52d8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:51.302Z","sequence":19779,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-21fe47c5-fae3-48ec-a533-73312225317d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:51.965Z","sequence":19780,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF42B169511D985]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"09e00c218434d38e","parentId":"ce54812b9a7e49d6","traceId":"0000000000000000ded9de4f7b351ee0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:52.02Z","sequence":19781,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF42B169511D985]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"09e00c218434d38e","parentId":"ce54812b9a7e49d6","traceId":"0000000000000000ded9de4f7b351ee0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:52.409Z","sequence":19782,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:52.409Z","sequence":19783,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006A8] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:52.439Z","sequence":19784,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: D7404185DE5A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8dc8a732c7ad33c9","parentId":"1a9be1e76a6dac4f","traceId":"0000000000000000763b5ab942553605","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:52.44Z","sequence":19785,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:52.44Z","sequence":19786,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:52.449Z","sequence":19787,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d393ff6c-3afa-40d1-888f-7f3f1bd6d969, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:52.483Z","sequence":19788,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: D7404185DE5A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8dc8a732c7ad33c9","parentId":"1a9be1e76a6dac4f","traceId":"0000000000000000763b5ab942553605","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:53.932Z","sequence":19789,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191137]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"614c3b55b4d52512","parentId":"0ba497fae7af89cf","traceId":"0000000000000000ba96bfa40a3a8b05","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:53.984Z","sequence":19790,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191137, resource-version: 78920444-682a-4711-87ae-f027c2d41098]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"614c3b55b4d52512","parentId":"0ba497fae7af89cf","traceId":"0000000000000000ba96bfa40a3a8b05","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:54.017Z","sequence":19791,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191137, resource-version: d77e315e-71fc-430f-82eb-1ed15fed6398]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"614c3b55b4d52512","parentId":"0ba497fae7af89cf","traceId":"0000000000000000ba96bfa40a3a8b05","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:54.02Z","sequence":19792,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191137]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fba3d18ac1fba9df","parentId":"b1b3117b230f7c75","traceId":"0000000000000000ba96bfa40a3a8b05","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:54.262Z","sequence":19793,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: FE02E3E1C1BF]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"743583cc3ce97ac9","parentId":"f03d186cd539bcda","traceId":"0000000000000000ae264240967bc37d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:54.305Z","sequence":19794,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: FE02E3E1C1BF, resource-version: afa5851e-2841-4364-a7b4-5dc21c97ba97]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"743583cc3ce97ac9","parentId":"f03d186cd539bcda","traceId":"0000000000000000ae264240967bc37d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:54.313Z","sequence":19795,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: FE02E3E1C1BF, resource-version: ecf14a54-46cb-468b-a68c-5000b54cb06f]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"743583cc3ce97ac9","parentId":"f03d186cd539bcda","traceId":"0000000000000000ae264240967bc37d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:54.316Z","sequence":19796,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: FE02E3E1C1BF]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ce78947e7f59f0db","parentId":"1a377ab0ce8d6de3","traceId":"0000000000000000ae264240967bc37d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:54.415Z","sequence":19797,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191137]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fba3d18ac1fba9df","parentId":"b1b3117b230f7c75","traceId":"0000000000000000ba96bfa40a3a8b05","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:54.735Z","sequence":19798,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: FE02E3E1C1BF]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ce78947e7f59f0db","parentId":"1a377ab0ce8d6de3","traceId":"0000000000000000ae264240967bc37d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:55.279Z","sequence":19799,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oiltanking:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:55.279Z","sequence":19800,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oiltanking, device-id: 35363335002D0043] for gateway [0008004BB60F]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:55.297Z","sequence":19801,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.8.0\"\n },\n \"viaGroups\" : [ \"gateways_oiltanking\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:55.297Z","sequence":19802,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oiltanking\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:55.306Z","sequence":19803,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f4e78782-0e48-4d6a-aa99-78ad1ee8ccfb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:55.729Z","sequence":19804,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFCB72845CC2414]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0ddde3cd11964c0c","parentId":"790eae0cc4128a4d","traceId":"000000000000000082ad3e6a8991f572","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:55.777Z","sequence":19805,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFCB72845CC2414, resource-version: 7220ef25-218a-4f2f-b95a-ffbb0dc49b7b]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0ddde3cd11964c0c","parentId":"790eae0cc4128a4d","traceId":"000000000000000082ad3e6a8991f572","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:55.788Z","sequence":19806,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFCB72845CC2414, resource-version: 96d9979e-1fd1-4b15-80d3-035cbeefa49c]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0ddde3cd11964c0c","parentId":"790eae0cc4128a4d","traceId":"000000000000000082ad3e6a8991f572","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:56.24Z","sequence":19807,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF4552067624201]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"aa3d967e7a002566","parentId":"26bd34ba732c157a","traceId":"00000000000000006ad97c1f416d644e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:56.267Z","sequence":19808,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF4552067624201, resource-version: 19a4ccc9-393b-48c2-8389-a604a6c40a12]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"aa3d967e7a002566","parentId":"26bd34ba732c157a","traceId":"00000000000000006ad97c1f416d644e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:56.28Z","sequence":19809,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF4552067624201, resource-version: 4bbdddaa-f5be-4a70-b4f3-183484b28c70]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"aa3d967e7a002566","parentId":"26bd34ba732c157a","traceId":"00000000000000006ad97c1f416d644e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:56.377Z","sequence":19810,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:56.377Z","sequence":19811,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-FE02E3E1C1BF]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:56.421Z","sequence":19812,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-69889644-b4c0-4bf2-b1e3-07675dc4e557, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:56.544Z","sequence":19813,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:56.544Z","sequence":19814,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: FE02E3E1C1BF]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:56.566Z","sequence":19815,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-15382d87-a8b5-45fb-b066-19eba8d06e8d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:57.098Z","sequence":19816,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:57.099Z","sequence":19817,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191137]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:57.161Z","sequence":19818,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-8e82287a-2554-4063-ac8b-160902f88e8c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:57.285Z","sequence":19819,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:57.285Z","sequence":19820,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCB72845CC2414] for gateway [gateway_integrationtest_network_191137]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:57.286Z","sequence":19821,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:57.286Z","sequence":19822,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191137]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:57.309Z","sequence":19823,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-65faf556-3e59-4667-8c53-61e9b05a01df, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:57.309Z","sequence":19824,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.5.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:57.31Z","sequence":19825,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:57:57.902Z","sequence":19826,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-72b2a607-a1f4-48fe-89dd-5dd53ab7ba19, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:02.548Z","sequence":19827,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [command-router@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:02.548Z","sequence":19828,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: FE02E3E1C1BF]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:02.569Z","sequence":19829,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-cba8742a-056a-44e7-ab6b-dfe09c56bcd4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:02.939Z","sequence":19830,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:02.939Z","sequence":19831,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AFC] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:02.945Z","sequence":19832,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:02.949Z","sequence":19833,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:02.957Z","sequence":19834,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1c71eb58-d8b2-4b4e-97b0-56de0436f8db, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:04.829Z","sequence":19835,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF1BE59AEA45B18]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ab96ea40017ccf8a","parentId":"cda6760ba7e8d0bc","traceId":"000000000000000083013887ddd49d4f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:04.845Z","sequence":19836,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF1BE59AEA45B18]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ab96ea40017ccf8a","parentId":"cda6760ba7e8d0bc","traceId":"000000000000000083013887ddd49d4f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:05.335Z","sequence":19837,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191135]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"019de163e5494720","parentId":"0c7c360009b624e5","traceId":"0000000000000000c501d754c2e39124","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:05.356Z","sequence":19838,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191135]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"019de163e5494720","parentId":"0c7c360009b624e5","traceId":"0000000000000000c501d754c2e39124","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:05.366Z","sequence":19839,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 4DD3374A013A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"df4155c56fcb9cfb","parentId":"c5c5899509acae23","traceId":"0000000000000000987cf43bf9630e11","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:05.386Z","sequence":19840,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 4DD3374A013A, resource-version: 8fc0e956-8436-4e93-88dd-578a8633bdfc]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"df4155c56fcb9cfb","parentId":"c5c5899509acae23","traceId":"0000000000000000987cf43bf9630e11","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:05.397Z","sequence":19841,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 4DD3374A013A, resource-version: fa14e6f2-d9df-4721-baad-2ff730bc7ce5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"df4155c56fcb9cfb","parentId":"c5c5899509acae23","traceId":"0000000000000000987cf43bf9630e11","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:05.401Z","sequence":19842,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 4DD3374A013A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1a64730234940e4d","parentId":"4bda39741ba847c7","traceId":"0000000000000000987cf43bf9630e11","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:05.713Z","sequence":19843,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 4DD3374A013A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1a64730234940e4d","parentId":"4bda39741ba847c7","traceId":"0000000000000000987cf43bf9630e11","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:06.569Z","sequence":19844,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/aloxy:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:06.569Z","sequence":19845,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: aloxy, device-id: 0008004A8F68]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:06.581Z","sequence":19846,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3bbd86a4-0e26-429f-a191-36e609245fd3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:06.585Z","sequence":19847,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:06.585Z","sequence":19848,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: aloxy]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:06.592Z","sequence":19849,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-44080d64-ce00-4974-afa7-28192fee989e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:06.657Z","sequence":19850,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFE2A962CBBBF56]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"546e812682bae3f9","parentId":"3ed7c7b03a8f0423","traceId":"0000000000000000e1a7a81d3fd95bce","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:06.694Z","sequence":19851,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFE2A962CBBBF56, resource-version: 4536fec7-5bb0-4877-aa2e-59d8bb6e3ae2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"546e812682bae3f9","parentId":"3ed7c7b03a8f0423","traceId":"0000000000000000e1a7a81d3fd95bce","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:06.7Z","sequence":19852,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFE2A962CBBBF56, resource-version: 7ef102bd-eaa6-4813-97fa-c32ef464de6a]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"546e812682bae3f9","parentId":"3ed7c7b03a8f0423","traceId":"0000000000000000e1a7a81d3fd95bce","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:06.981Z","sequence":19853,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191139]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"25cf5ffb74b1567b","parentId":"6e50a7f58df3d9af","traceId":"0000000000000000abf14354c939a917","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:07.039Z","sequence":19854,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191139, resource-version: 7c55761a-4266-4cfb-a6cb-c89ea82fea51]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"25cf5ffb74b1567b","parentId":"6e50a7f58df3d9af","traceId":"0000000000000000abf14354c939a917","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:07.048Z","sequence":19855,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191139, resource-version: 2a45b4fa-ef8f-49a0-8ca5-418d21c41c53]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"25cf5ffb74b1567b","parentId":"6e50a7f58df3d9af","traceId":"0000000000000000abf14354c939a917","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:07.056Z","sequence":19856,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191139]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bbfd601288d0b679","parentId":"ffdac0a98dba5cc4","traceId":"0000000000000000abf14354c939a917","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:07.387Z","sequence":19857,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191139]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bbfd601288d0b679","parentId":"ffdac0a98dba5cc4","traceId":"0000000000000000abf14354c939a917","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:07.787Z","sequence":19858,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:07.787Z","sequence":19859,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-4DD3374A013A]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:07.798Z","sequence":19860,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-54052a46-576e-4b37-aa5f-0d1632499534, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:07.92Z","sequence":19861,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:07.921Z","sequence":19862,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 4DD3374A013A]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:07.926Z","sequence":19863,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b48842b6-c9fe-4096-b9ae-36706d4fbb0e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:07.93Z","sequence":19864,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:07.931Z","sequence":19865,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFE2A962CBBBF56] for gateway [4DD3374A013A]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:07.935Z","sequence":19866,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.7.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:07.936Z","sequence":19867,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:08.243Z","sequence":19868,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-bff8904c-96d2-4e3c-bf97-514babc86133, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:08.475Z","sequence":19869,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFD43BB892270CF]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"dd13b9233864162c","parentId":"4d1816b5787f34a9","traceId":"0000000000000000f39bc9951a769572","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:08.504Z","sequence":19870,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFD43BB892270CF, resource-version: ce931284-de46-4ecf-bfc8-a8e07ce15bf6]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"dd13b9233864162c","parentId":"4d1816b5787f34a9","traceId":"0000000000000000f39bc9951a769572","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:08.513Z","sequence":19871,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFD43BB892270CF, resource-version: f3cac646-8fca-4976-94d7-60ee82420834]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"dd13b9233864162c","parentId":"4d1816b5787f34a9","traceId":"0000000000000000f39bc9951a769572","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:08.666Z","sequence":19872,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFCB72845CC2414]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6ba901f3be61ca1f","parentId":"dc7bc7f782a14e9f","traceId":"000000000000000060ae4c28b85c9c87","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:08.682Z","sequence":19873,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFCB72845CC2414]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6ba901f3be61ca1f","parentId":"dc7bc7f782a14e9f","traceId":"000000000000000060ae4c28b85c9c87","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:09.143Z","sequence":19874,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191137]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fa6d5e3a429d7dec","parentId":"938b5113587c47f9","traceId":"000000000000000046a2f92201782a94","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:09.172Z","sequence":19875,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191137]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fa6d5e3a429d7dec","parentId":"938b5113587c47f9","traceId":"000000000000000046a2f92201782a94","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:09.271Z","sequence":19876,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:09.271Z","sequence":19877,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001ACB] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:09.295Z","sequence":19878,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:09.295Z","sequence":19879,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:09.317Z","sequence":19880,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-abe2a342-94fb-4635-8c79-0d73587b051d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:09.737Z","sequence":19881,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191140]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"89cb098badbd5517","parentId":"377eff886b8cc584","traceId":"000000000000000002e0334d40dae704","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:09.756Z","sequence":19882,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191140, resource-version: 0feaa9d5-a9af-4843-b51a-0da60e5ddc73]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"89cb098badbd5517","parentId":"377eff886b8cc584","traceId":"000000000000000002e0334d40dae704","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:09.764Z","sequence":19883,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191140, resource-version: 9f5471a5-5a54-4da3-8611-3547795ef498]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"89cb098badbd5517","parentId":"377eff886b8cc584","traceId":"000000000000000002e0334d40dae704","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:09.769Z","sequence":19884,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191140]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fd4149d73ff03428","parentId":"d8f38a43006b1336","traceId":"000000000000000002e0334d40dae704","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:10.125Z","sequence":19885,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191140]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fd4149d73ff03428","parentId":"d8f38a43006b1336","traceId":"000000000000000002e0334d40dae704","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:10.656Z","sequence":19886,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:10.656Z","sequence":19887,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191139]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:10.671Z","sequence":19888,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-52285d33-c2ea-4217-bb51-824637b9ee0a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:10.677Z","sequence":19889,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 333E0C4283ACA43B]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0f6b0f4fcdea029e","parentId":"48ac46aee2c99941","traceId":"0000000000000000a305181b86cc2b01","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:10.693Z","sequence":19890,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 333E0C4283ACA43B, resource-version: 58957634-fd42-478a-9430-0ad58d6adc79]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0f6b0f4fcdea029e","parentId":"48ac46aee2c99941","traceId":"0000000000000000a305181b86cc2b01","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:10.702Z","sequence":19891,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 333E0C4283ACA43B, resource-version: 1addd302-03c1-427e-a1b5-213bf0be3216]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0f6b0f4fcdea029e","parentId":"48ac46aee2c99941","traceId":"0000000000000000a305181b86cc2b01","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:10.801Z","sequence":19892,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:10.801Z","sequence":19893,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD43BB892270CF] for gateway [gateway_integrationtest_network_191139]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:10.802Z","sequence":19894,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:10.803Z","sequence":19895,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191139]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:10.808Z","sequence":19896,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:10.809Z","sequence":19897,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:10.809Z","sequence":19898,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-fd4429be-0329-471e-8882-d88cafb1680f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:11.14Z","sequence":19899,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-42ddb8b8-0f20-4127-99f1-6bc98242746f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:11.879Z","sequence":19900,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:11.879Z","sequence":19901,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191140]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:11.901Z","sequence":19902,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-f0e93e51-8d25-4d3a-8cfb-be348693f721, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:12.061Z","sequence":19903,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:12.061Z","sequence":19904,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 333E0C4283ACA43B] for gateway [gateway_integrationtest_network_191140]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:12.062Z","sequence":19905,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:12.062Z","sequence":19906,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191140]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:12.089Z","sequence":19907,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-000bca66-b8ad-42ba-a935-d5591b4da122, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:12.089Z","sequence":19908,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:raw:1.0.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:12.089Z","sequence":19909,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:12.576Z","sequence":19910,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b1d1b019-be70-474a-b44c-2ee41a26a007, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:13.216Z","sequence":19911,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF4552067624201]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ed6e0ad6dc50f40e","parentId":"240548bffa025f05","traceId":"00000000000000009c8c543bdc4be0e5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:13.241Z","sequence":19912,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF4552067624201]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ed6e0ad6dc50f40e","parentId":"240548bffa025f05","traceId":"00000000000000009c8c543bdc4be0e5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:13.61Z","sequence":19913,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: FE02E3E1C1BF]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0dbc7d0626f313fb","parentId":"a90ecfd2024880be","traceId":"00000000000000007b7d3b2638b3b5a8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:13.633Z","sequence":19914,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: FE02E3E1C1BF]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0dbc7d0626f313fb","parentId":"a90ecfd2024880be","traceId":"00000000000000007b7d3b2638b3b5a8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:14.116Z","sequence":19915,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191141]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e7bc3da930c3bf43","parentId":"6377e5ae8ae774e0","traceId":"0000000000000000eee06d3008edc333","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:14.135Z","sequence":19916,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191141, resource-version: fc913cda-67d0-4ba5-860b-0589570dcdc6]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e7bc3da930c3bf43","parentId":"6377e5ae8ae774e0","traceId":"0000000000000000eee06d3008edc333","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:14.143Z","sequence":19917,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191141, resource-version: e5dfff73-32d9-4506-bfbe-c1518692c36a]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e7bc3da930c3bf43","parentId":"6377e5ae8ae774e0","traceId":"0000000000000000eee06d3008edc333","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:14.146Z","sequence":19918,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191141]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9f07ac33bb41a4fb","parentId":"d02c8919a07d37f3","traceId":"0000000000000000eee06d3008edc333","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:14.305Z","sequence":19919,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191141]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9f07ac33bb41a4fb","parentId":"d02c8919a07d37f3","traceId":"0000000000000000eee06d3008edc333","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:14.974Z","sequence":19920,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFFCB99DBA112AA]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2e0c7472d0e28953","parentId":"9ad3ad3a5774365f","traceId":"00000000000000009bd1142946555005","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:14.99Z","sequence":19921,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFFCB99DBA112AA, resource-version: 5ae0be35-b92b-407b-809a-c382ab46d440]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2e0c7472d0e28953","parentId":"9ad3ad3a5774365f","traceId":"00000000000000009bd1142946555005","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:15.001Z","sequence":19922,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFFCB99DBA112AA, resource-version: df740a9c-11c8-455b-a8b3-50d2357b7498]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2e0c7472d0e28953","parentId":"9ad3ad3a5774365f","traceId":"00000000000000009bd1142946555005","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:15.941Z","sequence":19923,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFCD5167460F8C2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9e27b4fa5d3e6c4d","parentId":"f2621f8704aa00e6","traceId":"00000000000000003464de418a1e1132","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:15.956Z","sequence":19924,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFCD5167460F8C2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9e27b4fa5d3e6c4d","parentId":"f2621f8704aa00e6","traceId":"00000000000000003464de418a1e1132","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:16.106Z","sequence":19925,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:16.107Z","sequence":19926,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191141]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:16.118Z","sequence":19927,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-caf17dcf-97c2-47e8-b878-aa4595f513c9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:16.215Z","sequence":19928,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191130]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"907eb6d55833cabe","parentId":"1e52ea7f87ae275d","traceId":"000000000000000032c9366fb448c529","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:16.229Z","sequence":19929,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191130]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"907eb6d55833cabe","parentId":"1e52ea7f87ae275d","traceId":"000000000000000032c9366fb448c529","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:16.244Z","sequence":19930,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:16.244Z","sequence":19931,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFFCB99DBA112AA] for gateway [gateway_integrationtest_network_191141]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:16.245Z","sequence":19932,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:16.245Z","sequence":19933,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191141]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:16.251Z","sequence":19934,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.3.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:16.251Z","sequence":19935,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:16.252Z","sequence":19936,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1ab1d805-41b9-4300-bb43-6f3d47f62f7c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:16.684Z","sequence":19937,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-66ac7d6d-0444-4037-a1aa-c895867978bf, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:19.46Z","sequence":19938,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:19.461Z","sequence":19939,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BB613]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:19.47Z","sequence":19940,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1554a9b7-7f2e-46de-9ad5-54ea03ecf89f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:20.197Z","sequence":19941,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFFCB99DBA112AA]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cddb09f42883c386","parentId":"4c544f272ded1a50","traceId":"0000000000000000f3c1ef40519f7e62","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:20.216Z","sequence":19942,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFFCB99DBA112AA]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cddb09f42883c386","parentId":"4c544f272ded1a50","traceId":"0000000000000000f3c1ef40519f7e62","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:20.587Z","sequence":19943,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191141]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"11f0d4c9e0e93097","parentId":"3a067ed8c73239b6","traceId":"00000000000000004531eca3d3454d42","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:20.603Z","sequence":19944,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191141]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"11f0d4c9e0e93097","parentId":"3a067ed8c73239b6","traceId":"00000000000000004531eca3d3454d42","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:20.743Z","sequence":19945,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFE2A962CBBBF56]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d7accadaedb40335","parentId":"a13a286cdf9fa81b","traceId":"0000000000000000f5cf4c19a3820689","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:20.759Z","sequence":19946,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFE2A962CBBBF56]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d7accadaedb40335","parentId":"a13a286cdf9fa81b","traceId":"0000000000000000f5cf4c19a3820689","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:20.939Z","sequence":19947,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 33034AB07F7C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ae858f1138a557d0","parentId":"1c19f698c25b34fb","traceId":"000000000000000000541f14a51894da","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:20.955Z","sequence":19948,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 33034AB07F7C, resource-version: 6b7da97f-c9b2-4353-8fb3-a5bc523f5242]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ae858f1138a557d0","parentId":"1c19f698c25b34fb","traceId":"000000000000000000541f14a51894da","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:20.962Z","sequence":19949,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 33034AB07F7C, resource-version: d65ed8a7-5d2a-4d02-b71f-84f3e77fb9f3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ae858f1138a557d0","parentId":"1c19f698c25b34fb","traceId":"000000000000000000541f14a51894da","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:20.965Z","sequence":19950,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 33034AB07F7C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7081158584d1df7a","parentId":"6d78f77aef6ba038","traceId":"000000000000000000541f14a51894da","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:21.116Z","sequence":19951,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 33034AB07F7C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7081158584d1df7a","parentId":"6d78f77aef6ba038","traceId":"000000000000000000541f14a51894da","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:21.347Z","sequence":19952,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 4DD3374A013A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5a82fb18eed7f5ff","parentId":"8b29343cee579597","traceId":"0000000000000000c201d46436b73261","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:21.369Z","sequence":19953,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 4DD3374A013A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5a82fb18eed7f5ff","parentId":"8b29343cee579597","traceId":"0000000000000000c201d46436b73261","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:22.038Z","sequence":19954,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF0ED0AA49DFF40]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d18e272ea578d4bc","parentId":"e0f0cdd6f758d4b2","traceId":"00000000000000002872842c794b31b3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:22.07Z","sequence":19955,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF0ED0AA49DFF40, resource-version: 873be756-2846-4832-a244-e395103c0c86]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d18e272ea578d4bc","parentId":"e0f0cdd6f758d4b2","traceId":"00000000000000002872842c794b31b3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:22.084Z","sequence":19956,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF0ED0AA49DFF40, resource-version: 53d50b91-75fd-45f5-b5d8-13935c2af98d]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d18e272ea578d4bc","parentId":"e0f0cdd6f758d4b2","traceId":"00000000000000002872842c794b31b3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:22.192Z","sequence":19957,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 3D64072413DB]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0e8b1e78c87ca595","parentId":"3d202c6f70797fa7","traceId":"00000000000000001b94abc2b78e81cd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:22.245Z","sequence":19958,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 3D64072413DB, resource-version: 0fce68ca-498f-43c4-bd6f-d41ee0cd3b62]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0e8b1e78c87ca595","parentId":"3d202c6f70797fa7","traceId":"00000000000000001b94abc2b78e81cd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:22.252Z","sequence":19959,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 3D64072413DB, resource-version: fae6365b-8d26-432f-8ce9-24c65de92ca0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0e8b1e78c87ca595","parentId":"3d202c6f70797fa7","traceId":"00000000000000001b94abc2b78e81cd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:22.259Z","sequence":19960,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 3D64072413DB]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5be180e03800383e","parentId":"e14b2eca939a366f","traceId":"00000000000000001b94abc2b78e81cd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:22.453Z","sequence":19961,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 3D64072413DB]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5be180e03800383e","parentId":"e14b2eca939a366f","traceId":"00000000000000001b94abc2b78e81cd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:23.133Z","sequence":19962,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:23.134Z","sequence":19963,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-33034AB07F7C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:23.145Z","sequence":19964,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-bd9412ce-d185-49ec-a91e-2682574c5b14, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:23.289Z","sequence":19965,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:23.289Z","sequence":19966,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 33034AB07F7C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:23.317Z","sequence":19967,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-96b9e377-af47-48ed-8a61-fd166d57407e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:23.325Z","sequence":19968,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:23.325Z","sequence":19969,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF0ED0AA49DFF40] for gateway [33034AB07F7C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:23.333Z","sequence":19970,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.8.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:23.334Z","sequence":19971,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:23.427Z","sequence":19972,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFD43BB892270CF]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"94aed61a5c10c452","parentId":"382fa09cdef89335","traceId":"0000000000000000975ef524a3574414","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:23.449Z","sequence":19973,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFD43BB892270CF]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"94aed61a5c10c452","parentId":"382fa09cdef89335","traceId":"0000000000000000975ef524a3574414","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:23.467Z","sequence":19974,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF693E6CEE7AC19]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f95f3c22a15b5317","parentId":"c6789d8b2406f8a1","traceId":"00000000000000004c88e3c4f6f6dea9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:23.485Z","sequence":19975,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF693E6CEE7AC19, resource-version: 4bd6f0a3-7fa7-4b04-8c7e-de1c87bdc901]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f95f3c22a15b5317","parentId":"c6789d8b2406f8a1","traceId":"00000000000000004c88e3c4f6f6dea9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:23.492Z","sequence":19976,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF693E6CEE7AC19, resource-version: 8f591fd8-267f-4833-839e-6dc887fd0fc8]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f95f3c22a15b5317","parentId":"c6789d8b2406f8a1","traceId":"00000000000000004c88e3c4f6f6dea9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:23.601Z","sequence":19977,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6fd7997d-5b52-4bf0-88c9-2b4c03225fb7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:24.421Z","sequence":19978,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191139]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8c1832040948c990","parentId":"af3c6b801eb51fc4","traceId":"000000000000000062e0fe347fde7134","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:24.439Z","sequence":19979,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191139]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8c1832040948c990","parentId":"af3c6b801eb51fc4","traceId":"000000000000000062e0fe347fde7134","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:24.486Z","sequence":19980,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 333E0C4283ACA43B]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f570a0928d662eed","parentId":"af1edef684be805b","traceId":"00000000000000004514858cc7927a81","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:24.503Z","sequence":19981,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 333E0C4283ACA43B]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f570a0928d662eed","parentId":"af1edef684be805b","traceId":"00000000000000004514858cc7927a81","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:24.567Z","sequence":19982,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:24.568Z","sequence":19983,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-3D64072413DB]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:24.58Z","sequence":19984,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-d521150f-c583-499c-afc5-7b4b60227cc7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:24.727Z","sequence":19985,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:24.727Z","sequence":19986,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 3D64072413DB]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:24.735Z","sequence":19987,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-56ba8a62-8dbc-4e3a-82ec-128d5f35674a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:24.74Z","sequence":19988,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:24.74Z","sequence":19989,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF693E6CEE7AC19] for gateway [3D64072413DB]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:24.745Z","sequence":19990,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:24.745Z","sequence":19991,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:25.2Z","sequence":19992,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191140]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a5bf67fde75d271d","parentId":"f7d350fc7091588c","traceId":"0000000000000000bae812d1d252c9bd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:25.241Z","sequence":19993,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191140]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a5bf67fde75d271d","parentId":"f7d350fc7091588c","traceId":"0000000000000000bae812d1d252c9bd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:25.47Z","sequence":19994,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a594dd9e-b01d-4a07-8ec0-0816bc1296af, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:26.305Z","sequence":19995,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EEA9A7ACFB1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d3427925c26a3e88","parentId":"1600dafec4fda483","traceId":"00000000000000005584a92b3412247f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:26.328Z","sequence":19996,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EEA9A7ACFB1, resource-version: c834f18e-5f23-4ba3-a536-f471951b09ae]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d3427925c26a3e88","parentId":"1600dafec4fda483","traceId":"00000000000000005584a92b3412247f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:26.337Z","sequence":19997,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EEA9A7ACFB1, resource-version: 450a213d-2d8f-4b7e-ba0f-a5832e33bb9b]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d3427925c26a3e88","parentId":"1600dafec4fda483","traceId":"00000000000000005584a92b3412247f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:26.356Z","sequence":19998,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 0EEA9A7ACFB1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7ca3f444bf0e53c9","parentId":"a4c94642b244e1aa","traceId":"00000000000000005584a92b3412247f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:26.685Z","sequence":19999,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 0EEA9A7ACFB1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7ca3f444bf0e53c9","parentId":"a4c94642b244e1aa","traceId":"00000000000000005584a92b3412247f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:27.97Z","sequence":20000,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 709A7475DA7A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ea0071ec28637c8f","parentId":"d901a8c5c5cbe2e1","traceId":"00000000000000007b57842c9913696a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:27.988Z","sequence":20001,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 709A7475DA7A, resource-version: 2faf04a4-4598-4cb5-9135-e8c76d280a3b]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ea0071ec28637c8f","parentId":"d901a8c5c5cbe2e1","traceId":"00000000000000007b57842c9913696a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:27.995Z","sequence":20002,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 709A7475DA7A, resource-version: 49cf9b5b-693e-4851-8cd9-79fc4416f0fb]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ea0071ec28637c8f","parentId":"d901a8c5c5cbe2e1","traceId":"00000000000000007b57842c9913696a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:28.001Z","sequence":20003,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 709A7475DA7A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b71ab2eaf8bfcd41","parentId":"798699df649628bb","traceId":"00000000000000007b57842c9913696a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:28.035Z","sequence":20004,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF0ED0AA49DFF40]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"400d609b7e56a204","parentId":"1e59e9a8cca45a8d","traceId":"0000000000000000725dbc8e0ab4c667","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:28.052Z","sequence":20005,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF0ED0AA49DFF40]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"400d609b7e56a204","parentId":"1e59e9a8cca45a8d","traceId":"0000000000000000725dbc8e0ab4c667","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:28.154Z","sequence":20006,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 709A7475DA7A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b71ab2eaf8bfcd41","parentId":"798699df649628bb","traceId":"00000000000000007b57842c9913696a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:28.333Z","sequence":20007,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF55663D28BDB34]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7cd967b671e8ef2e","parentId":"d41982508193d021","traceId":"0000000000000000516d033277904fd3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:28.356Z","sequence":20008,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF55663D28BDB34, resource-version: b8baafa9-b3a3-4e76-be20-76988ed3f74d]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7cd967b671e8ef2e","parentId":"d41982508193d021","traceId":"0000000000000000516d033277904fd3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:28.363Z","sequence":20009,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF55663D28BDB34, resource-version: e2d2f95e-d6bf-49c3-832b-9101c439e6ad]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7cd967b671e8ef2e","parentId":"d41982508193d021","traceId":"0000000000000000516d033277904fd3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:28.675Z","sequence":20010,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF500457DDAB7F0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"59777674cbfad9ff","parentId":"eafee1c2ebe38120","traceId":"000000000000000098d15cad6860ea5d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:28.686Z","sequence":20011,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:28.686Z","sequence":20012,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C1C] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:28.694Z","sequence":20013,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 918282C86564]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"501d29885e845576","parentId":"ccdf03cec4615378","traceId":"0000000000000000305d7340496f5c67","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:28.705Z","sequence":20014,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:28.705Z","sequence":20015,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:28.718Z","sequence":20016,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6fcb5f71-0345-4869-a096-174455d2b9e6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:28.719Z","sequence":20017,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF500457DDAB7F0, resource-version: 9668b1b4-2b26-4f7e-9551-d4cdcadc075b]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"59777674cbfad9ff","parentId":"eafee1c2ebe38120","traceId":"000000000000000098d15cad6860ea5d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:28.736Z","sequence":20018,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 918282C86564, resource-version: f05d4296-88c5-495e-96eb-8c6c5111e992]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"501d29885e845576","parentId":"ccdf03cec4615378","traceId":"0000000000000000305d7340496f5c67","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:28.737Z","sequence":20019,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF500457DDAB7F0, resource-version: 4fbef402-3b06-4374-8137-b50eeaa80909]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"59777674cbfad9ff","parentId":"eafee1c2ebe38120","traceId":"000000000000000098d15cad6860ea5d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:28.752Z","sequence":20020,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 918282C86564, resource-version: d4ee1011-a113-4cd0-be27-a946f8fda853]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"501d29885e845576","parentId":"ccdf03cec4615378","traceId":"0000000000000000305d7340496f5c67","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:28.753Z","sequence":20021,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 33034AB07F7C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7432064261dd66a5","parentId":"eab7c236fc815d19","traceId":"000000000000000044ce658967c70853","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:28.761Z","sequence":20022,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 918282C86564]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d101f984bd23536f","parentId":"1dea03c5377512f9","traceId":"0000000000000000305d7340496f5c67","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:28.814Z","sequence":20023,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 33034AB07F7C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7432064261dd66a5","parentId":"eab7c236fc815d19","traceId":"000000000000000044ce658967c70853","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:29.012Z","sequence":20024,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 918282C86564]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d101f984bd23536f","parentId":"1dea03c5377512f9","traceId":"0000000000000000305d7340496f5c67","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:29.421Z","sequence":20025,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:29.421Z","sequence":20026,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-0EEA9A7ACFB1]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:29.455Z","sequence":20027,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-a733d824-70e3-4712-8a9d-db7c79e404d3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:29.59Z","sequence":20028,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:29.59Z","sequence":20029,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EEA9A7ACFB1]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:29.602Z","sequence":20030,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8c32d1cb-933d-4560-a32c-297d990040c0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:29.606Z","sequence":20031,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:29.606Z","sequence":20032,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF55663D28BDB34] for gateway [0EEA9A7ACFB1]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:29.611Z","sequence":20033,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:29.611Z","sequence":20034,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:29.972Z","sequence":20035,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-15efa974-76dc-4160-b341-9860fc2a1b43, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:29.973Z","sequence":20036,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:29.973Z","sequence":20037,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AC0] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:29.983Z","sequence":20038,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:29.983Z","sequence":20039,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:29.991Z","sequence":20040,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-dec49b70-47a0-40d8-8fe6-a3958185b9db, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:30.593Z","sequence":20041,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF42DC5280F9A18]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"89f700e7efa40980","parentId":"33a31ef7b84c9f05","traceId":"00000000000000001cae9430d8736ca1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:30.609Z","sequence":20042,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF42DC5280F9A18, resource-version: 8dbdf074-df17-468f-8cfb-db8a511a016f]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"89f700e7efa40980","parentId":"33a31ef7b84c9f05","traceId":"00000000000000001cae9430d8736ca1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:30.616Z","sequence":20043,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF42DC5280F9A18, resource-version: 22b50b05-ae51-457e-a1a9-2b266071884b]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"89f700e7efa40980","parentId":"33a31ef7b84c9f05","traceId":"00000000000000001cae9430d8736ca1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:30.718Z","sequence":20044,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF500457DDAB7F0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cedee3c933c79870","parentId":"76b3a561423eb80f","traceId":"0000000000000000004141ee67f88422","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:30.736Z","sequence":20045,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF500457DDAB7F0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cedee3c933c79870","parentId":"76b3a561423eb80f","traceId":"0000000000000000004141ee67f88422","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:31.034Z","sequence":20046,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 709A7475DA7A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2cc68ec6e6283ed0","parentId":"00713715aec06a8b","traceId":"000000000000000081b542e9eb75c247","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:31.056Z","sequence":20047,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 709A7475DA7A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2cc68ec6e6283ed0","parentId":"00713715aec06a8b","traceId":"000000000000000081b542e9eb75c247","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:31.674Z","sequence":20048,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:31.675Z","sequence":20049,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-918282C86564]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:31.685Z","sequence":20050,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-eec928d1-7a34-43fd-9414-5daead342161, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:31.802Z","sequence":20051,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:31.803Z","sequence":20052,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 918282C86564]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:31.81Z","sequence":20053,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-df7d1850-50b7-46ef-8663-344f5541188a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:31.817Z","sequence":20054,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:31.817Z","sequence":20055,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF42DC5280F9A18] for gateway [918282C86564]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:31.825Z","sequence":20056,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:31.825Z","sequence":20057,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:32.393Z","sequence":20058,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6dc1825e-c765-4534-a95b-10e07e1c6030, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:34.482Z","sequence":20059,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF693E6CEE7AC19]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1023f0f8e0ddf242","parentId":"d3203f936ca414ba","traceId":"0000000000000000aac694165a7f47b1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:34.536Z","sequence":20060,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF693E6CEE7AC19]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1023f0f8e0ddf242","parentId":"d3203f936ca414ba","traceId":"0000000000000000aac694165a7f47b1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:35.191Z","sequence":20061,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 3D64072413DB]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f63cbf415205fbf2","parentId":"350c4fc59e3ef914","traceId":"0000000000000000d4681ab9ea382f72","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:35.209Z","sequence":20062,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 3D64072413DB]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f63cbf415205fbf2","parentId":"350c4fc59e3ef914","traceId":"0000000000000000d4681ab9ea382f72","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:35.997Z","sequence":20063,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 214C103DFBF4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4fe55292993b3ffd","parentId":"0965dd0a7b622201","traceId":"0000000000000000d3c8b74549963a2a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:36.016Z","sequence":20064,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 214C103DFBF4, resource-version: c0e1dbc6-62aa-48d0-b898-57aa88002886]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4fe55292993b3ffd","parentId":"0965dd0a7b622201","traceId":"0000000000000000d3c8b74549963a2a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:36.024Z","sequence":20065,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 214C103DFBF4, resource-version: b2d39483-0066-4316-8999-23d4efd8fd05]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4fe55292993b3ffd","parentId":"0965dd0a7b622201","traceId":"0000000000000000d3c8b74549963a2a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:36.028Z","sequence":20066,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 214C103DFBF4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"70f194e200f823f2","parentId":"6734e66abbc819da","traceId":"0000000000000000d3c8b74549963a2a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:36.161Z","sequence":20067,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 214C103DFBF4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"70f194e200f823f2","parentId":"6734e66abbc819da","traceId":"0000000000000000d3c8b74549963a2a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:36.58Z","sequence":20068,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFF83DCF202EC7F]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"630cbc8e457be785","parentId":"67dee3418cd00045","traceId":"00000000000000001cd451bb0dee3e08","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:36.599Z","sequence":20069,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFF83DCF202EC7F, resource-version: 9c88987c-bacc-41fa-9878-c7eb51223478]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"630cbc8e457be785","parentId":"67dee3418cd00045","traceId":"00000000000000001cd451bb0dee3e08","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:36.605Z","sequence":20070,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFF83DCF202EC7F, resource-version: 82dd7095-9d93-4e80-892b-fb92506557da]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"630cbc8e457be785","parentId":"67dee3418cd00045","traceId":"00000000000000001cd451bb0dee3e08","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:36.638Z","sequence":20071,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191148]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"dfb35d65d2ebafc0","parentId":"7437ceed85df95cf","traceId":"0000000000000000d8daaeac16fbb01e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:36.661Z","sequence":20072,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191148, resource-version: a037d922-4b5a-4d63-a1f7-fbf171b42099]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"dfb35d65d2ebafc0","parentId":"7437ceed85df95cf","traceId":"0000000000000000d8daaeac16fbb01e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:36.669Z","sequence":20073,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191148, resource-version: 3cb35aab-d0c4-4cf8-874b-37dd8d10d6d3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"dfb35d65d2ebafc0","parentId":"7437ceed85df95cf","traceId":"0000000000000000d8daaeac16fbb01e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:36.672Z","sequence":20074,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191148]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"411b8c5bb8a840de","parentId":"d42a95f2325f9299","traceId":"0000000000000000d8daaeac16fbb01e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:36.765Z","sequence":20075,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFF83DCF202EC7F]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5d4f4cdbce8adc2f","parentId":"d00aea5bac130b7a","traceId":"0000000000000000340ef1f3adc1eaaa","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:36.785Z","sequence":20076,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFF83DCF202EC7F]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5d4f4cdbce8adc2f","parentId":"d00aea5bac130b7a","traceId":"0000000000000000340ef1f3adc1eaaa","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:36.802Z","sequence":20077,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191148]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"411b8c5bb8a840de","parentId":"d42a95f2325f9299","traceId":"0000000000000000d8daaeac16fbb01e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:36.881Z","sequence":20078,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 214C103DFBF4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"618cdfadae30e3f0","parentId":"c846f8e1030570fe","traceId":"00000000000000007df4160304dbbfcd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:36.9Z","sequence":20079,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 214C103DFBF4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"618cdfadae30e3f0","parentId":"c846f8e1030570fe","traceId":"00000000000000007df4160304dbbfcd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:36.999Z","sequence":20080,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFA78E93393D5FC]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ffe6eb82250489c6","parentId":"2f3c976621496519","traceId":"0000000000000000c719146308ba3d21","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:37.015Z","sequence":20081,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFA78E93393D5FC, resource-version: 8b6517f7-9ee0-4258-90d4-351657ffb2f2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ffe6eb82250489c6","parentId":"2f3c976621496519","traceId":"0000000000000000c719146308ba3d21","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:37.021Z","sequence":20082,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFA78E93393D5FC, resource-version: 81c9d971-c180-444c-9d34-90a07f03b905]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ffe6eb82250489c6","parentId":"2f3c976621496519","traceId":"0000000000000000c719146308ba3d21","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:37.608Z","sequence":20083,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191149]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8490e604f16007d7","parentId":"199f27e81f5b8628","traceId":"000000000000000071e5769bcea35527","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:37.626Z","sequence":20084,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191149, resource-version: 5f9dd003-6be3-48e4-879a-579ce3049695]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8490e604f16007d7","parentId":"199f27e81f5b8628","traceId":"000000000000000071e5769bcea35527","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:37.632Z","sequence":20085,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191149, resource-version: db57980f-77f3-42cb-be1a-a37b82542eb5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8490e604f16007d7","parentId":"199f27e81f5b8628","traceId":"000000000000000071e5769bcea35527","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:37.637Z","sequence":20086,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191149]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"acf99d81dab6fc45","parentId":"a1a25224d95de2c5","traceId":"000000000000000071e5769bcea35527","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:37.745Z","sequence":20087,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191149]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"acf99d81dab6fc45","parentId":"a1a25224d95de2c5","traceId":"000000000000000071e5769bcea35527","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:38.08Z","sequence":20088,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:38.081Z","sequence":20089,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191148]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:38.092Z","sequence":20090,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-ec2b561e-8199-49f6-a411-4b01b6d4d439, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:38.228Z","sequence":20091,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:38.229Z","sequence":20092,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFA78E93393D5FC] for gateway [gateway_integrationtest_network_191148]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:38.229Z","sequence":20093,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:38.229Z","sequence":20094,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191148]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:38.237Z","sequence":20095,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-bb245e98-6a5a-4e41-b419-2ed921586d50, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:38.237Z","sequence":20096,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:38.237Z","sequence":20097,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:38.446Z","sequence":20098,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-81a9f230-9aaf-4bc3-b4b7-88315d576c9b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:38.977Z","sequence":20099,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:38.977Z","sequence":20100,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AC7] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:38.982Z","sequence":20101,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:38.982Z","sequence":20102,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:38.989Z","sequence":20103,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-17b7d309-9a99-4af5-9e1c-c03f8f28412b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:39.662Z","sequence":20104,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFBE7A521BCE0E8]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"59a68099782c0cef","parentId":"15fac5a26fbf189f","traceId":"0000000000000000e795dd2e755828de","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:39.696Z","sequence":20105,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFBE7A521BCE0E8, resource-version: 86e89ad7-21e1-48a7-a796-f07ef05a6b60]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"59a68099782c0cef","parentId":"15fac5a26fbf189f","traceId":"0000000000000000e795dd2e755828de","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:39.703Z","sequence":20106,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFBE7A521BCE0E8, resource-version: 21d5f945-8d17-4dbc-8bf3-0ebe8cb264a1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"59a68099782c0cef","parentId":"15fac5a26fbf189f","traceId":"0000000000000000e795dd2e755828de","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:40.772Z","sequence":20107,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:40.772Z","sequence":20108,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191149]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:40.789Z","sequence":20109,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-f7dac456-0dc6-4a5e-9c92-d90941da3884, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:40.956Z","sequence":20110,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:40.956Z","sequence":20111,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFBE7A521BCE0E8] for gateway [gateway_integrationtest_network_191149]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:40.957Z","sequence":20112,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:40.957Z","sequence":20113,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191149]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:40.962Z","sequence":20114,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.8.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:40.962Z","sequence":20115,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:40.963Z","sequence":20116,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-180d2e23-114b-44d4-b9cb-f04152dc42e2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:41.277Z","sequence":20117,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d5f264a9-b9ab-432a-80d4-527f5a6388f9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:41.734Z","sequence":20118,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFA78E93393D5FC]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5a915ddec40f8102","parentId":"1f50eee1246e134d","traceId":"00000000000000008ac44713bba492ef","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:41.757Z","sequence":20119,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFA78E93393D5FC]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5a915ddec40f8102","parentId":"1f50eee1246e134d","traceId":"00000000000000008ac44713bba492ef","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:41.894Z","sequence":20120,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191148]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6292b6845f655e29","parentId":"4e433371162090ff","traceId":"00000000000000003e5bf5b948c62c91","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:41.909Z","sequence":20121,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191148]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6292b6845f655e29","parentId":"4e433371162090ff","traceId":"00000000000000003e5bf5b948c62c91","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:43.021Z","sequence":20122,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 7B6FDF8FBB70]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f2e3434d6fc7718f","parentId":"20a5441e97288799","traceId":"000000000000000061b00023f6ca90dd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:43.04Z","sequence":20123,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 7B6FDF8FBB70, resource-version: 3f5be40b-0b54-4386-9cc0-768746af96e2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f2e3434d6fc7718f","parentId":"20a5441e97288799","traceId":"000000000000000061b00023f6ca90dd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:43.048Z","sequence":20124,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 7B6FDF8FBB70, resource-version: 252a27d3-e782-405d-83bc-67caf4b77366]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f2e3434d6fc7718f","parentId":"20a5441e97288799","traceId":"000000000000000061b00023f6ca90dd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:43.054Z","sequence":20125,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 7B6FDF8FBB70]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c45baea1629f882a","parentId":"7e491fb786798f05","traceId":"000000000000000061b00023f6ca90dd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:43.185Z","sequence":20126,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 7B6FDF8FBB70]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c45baea1629f882a","parentId":"7e491fb786798f05","traceId":"000000000000000061b00023f6ca90dd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:43.961Z","sequence":20127,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF4463EE5F6C711]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1f84974fb20b066b","parentId":"43f34ff670332088","traceId":"0000000000000000068fabc10aade577","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:43.982Z","sequence":20128,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF4463EE5F6C711, resource-version: 9c38133f-997e-453c-89a6-303d1f01e05e]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1f84974fb20b066b","parentId":"43f34ff670332088","traceId":"0000000000000000068fabc10aade577","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:43.99Z","sequence":20129,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF4463EE5F6C711, resource-version: 19fd87a0-6fe5-4f8d-8401-e79037765847]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1f84974fb20b066b","parentId":"43f34ff670332088","traceId":"0000000000000000068fabc10aade577","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:44.349Z","sequence":20130,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191151]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ed3ad5f63e5f2b53","parentId":"796912cb50dc32c2","traceId":"00000000000000003553645faee48f14","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:44.378Z","sequence":20131,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191151, resource-version: 42a9e619-8c7f-4bfa-a688-bde8fe53b10a]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ed3ad5f63e5f2b53","parentId":"796912cb50dc32c2","traceId":"00000000000000003553645faee48f14","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:44.386Z","sequence":20132,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191151, resource-version: 594d0d31-6018-4013-aecb-7a71d5776549]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ed3ad5f63e5f2b53","parentId":"796912cb50dc32c2","traceId":"00000000000000003553645faee48f14","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:44.391Z","sequence":20133,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191151]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"de6e8a9b3a059a92","parentId":"6cca92afc83135cf","traceId":"00000000000000003553645faee48f14","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:44.633Z","sequence":20134,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191151]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"de6e8a9b3a059a92","parentId":"6cca92afc83135cf","traceId":"00000000000000003553645faee48f14","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:44.74Z","sequence":20135,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF4463EE5F6C711]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"399b9c5b7c52bd81","parentId":"e2ea0072e82d64ec","traceId":"0000000000000000231417aecd5152e4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:44.777Z","sequence":20136,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF4463EE5F6C711]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"399b9c5b7c52bd81","parentId":"e2ea0072e82d64ec","traceId":"0000000000000000231417aecd5152e4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:44.801Z","sequence":20137,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF42DC5280F9A18]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1ad1c1b1785a724f","parentId":"cfd8254aeb70b2f9","traceId":"00000000000000007ba2f789b43e6b82","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:44.854Z","sequence":20138,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF42DC5280F9A18]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1ad1c1b1785a724f","parentId":"cfd8254aeb70b2f9","traceId":"00000000000000007ba2f789b43e6b82","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:45.15Z","sequence":20139,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 918282C86564]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1472e3cdc826c1c3","parentId":"bb6b3fa62b098099","traceId":"0000000000000000126720c21aa578c0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:45.179Z","sequence":20140,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 918282C86564]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1472e3cdc826c1c3","parentId":"bb6b3fa62b098099","traceId":"0000000000000000126720c21aa578c0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:45.191Z","sequence":20141,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 7B6FDF8FBB70]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3a7d7fb0595740aa","parentId":"e14c88ca4fc566d8","traceId":"00000000000000009c4eedf16a184b3e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:45.207Z","sequence":20142,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 7B6FDF8FBB70]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3a7d7fb0595740aa","parentId":"e14c88ca4fc566d8","traceId":"00000000000000009c4eedf16a184b3e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:45.949Z","sequence":20143,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF806815A137EED]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ca38cfe34d2fb996","parentId":"d4afd3b1bf5a78d9","traceId":"0000000000000000ab8250ec791091da","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:45.97Z","sequence":20144,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF806815A137EED, resource-version: 25e5ed65-bd46-422d-a00b-9352b0dff98a]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ca38cfe34d2fb996","parentId":"d4afd3b1bf5a78d9","traceId":"0000000000000000ab8250ec791091da","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:45.978Z","sequence":20145,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF806815A137EED, resource-version: 63be42d0-4f57-49e2-b038-f1fcb847e461]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ca38cfe34d2fb996","parentId":"d4afd3b1bf5a78d9","traceId":"0000000000000000ab8250ec791091da","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:46.203Z","sequence":20146,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191152]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3fd5d2b74bb52cef","parentId":"d1a56cde3841b958","traceId":"0000000000000000754bf8be97f49b02","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:46.221Z","sequence":20147,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191152, resource-version: d572c832-8dbe-4312-b0e1-951add652387]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3fd5d2b74bb52cef","parentId":"d1a56cde3841b958","traceId":"0000000000000000754bf8be97f49b02","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:46.228Z","sequence":20148,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191152, resource-version: 9f70769c-1660-48a2-9fda-559e98b75fac]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3fd5d2b74bb52cef","parentId":"d1a56cde3841b958","traceId":"0000000000000000754bf8be97f49b02","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:46.234Z","sequence":20149,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191152]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"509c70cdd2233cb4","parentId":"6178d17415374308","traceId":"0000000000000000754bf8be97f49b02","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:46.399Z","sequence":20150,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191152]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"509c70cdd2233cb4","parentId":"6178d17415374308","traceId":"0000000000000000754bf8be97f49b02","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:46.636Z","sequence":20151,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF55663D28BDB34]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"04b43400d190fe95","parentId":"e271e3486ac0a4be","traceId":"0000000000000000fe505183c995b999","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:46.653Z","sequence":20152,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF55663D28BDB34]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"04b43400d190fe95","parentId":"e271e3486ac0a4be","traceId":"0000000000000000fe505183c995b999","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:46.841Z","sequence":20153,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/acta:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:46.841Z","sequence":20154,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: acta, device-id: 0008004AAAA3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:46.858Z","sequence":20155,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e083dc39-ed79-41fe-bb93-2752b62433e6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:46.862Z","sequence":20156,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:46.862Z","sequence":20157,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: acta]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:46.871Z","sequence":20158,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-0051795c-603a-46b3-9963-077a92404b8c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:47.026Z","sequence":20159,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFD0BE8557F74C7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f1941651958f3856","parentId":"c3229388578ab1fc","traceId":"00000000000000006cbd25e7ee9c3d15","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:47.056Z","sequence":20160,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFD0BE8557F74C7, resource-version: 6b6e8c10-c6a8-47b4-a193-488e9a935230]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f1941651958f3856","parentId":"c3229388578ab1fc","traceId":"00000000000000006cbd25e7ee9c3d15","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:47.064Z","sequence":20161,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFD0BE8557F74C7, resource-version: 99dadd00-a47f-47a3-bfcb-c229d50080c7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f1941651958f3856","parentId":"c3229388578ab1fc","traceId":"00000000000000006cbd25e7ee9c3d15","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:47.121Z","sequence":20162,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:47.121Z","sequence":20163,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191151]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:47.132Z","sequence":20164,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-f15a2c57-df7f-42fa-bf48-6548f2903aba, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:47.255Z","sequence":20165,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:47.255Z","sequence":20166,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF806815A137EED] for gateway [gateway_integrationtest_network_191151]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:47.256Z","sequence":20167,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:47.256Z","sequence":20168,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191151]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:47.262Z","sequence":20169,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c2796e77-e0f0-4e73-8364-d5ea0b882ccc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:47.262Z","sequence":20170,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:47.262Z","sequence":20171,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:47.357Z","sequence":20172,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EEA9A7ACFB1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d5b946b0d80261ee","parentId":"24e29e7f5a681c07","traceId":"00000000000000007a1e56584d3346b4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:47.375Z","sequence":20173,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EEA9A7ACFB1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d5b946b0d80261ee","parentId":"24e29e7f5a681c07","traceId":"00000000000000007a1e56584d3346b4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:47.61Z","sequence":20174,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5bbdccd1-588b-46d5-b9e4-580981ed167f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:47.733Z","sequence":20175,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:47.734Z","sequence":20176,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BFF] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:47.739Z","sequence":20177,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:47.739Z","sequence":20178,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:47.745Z","sequence":20179,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-247a372f-fb7c-47b8-9014-c2a72a694af7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:48.381Z","sequence":20180,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:48.381Z","sequence":20181,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191152]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:48.437Z","sequence":20182,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-4464ab6a-865a-4cc3-b859-960133f14202, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:48.567Z","sequence":20183,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:48.567Z","sequence":20184,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD0BE8557F74C7] for gateway [gateway_integrationtest_network_191152]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:48.568Z","sequence":20185,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:48.568Z","sequence":20186,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191152]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:48.606Z","sequence":20187,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:48.607Z","sequence":20188,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:48.607Z","sequence":20189,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-258b279e-68c1-4d39-a1fc-ef2be3e42e59, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:49.191Z","sequence":20190,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-22405683-2b1a-4935-a0f7-c500990df7af, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:49.196Z","sequence":20191,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:49.197Z","sequence":20192,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001ACA] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:49.212Z","sequence":20193,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:49.213Z","sequence":20194,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:49.224Z","sequence":20195,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b9d0bb58-74c4-4a57-b2dd-8b8e87ab57d1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:50.021Z","sequence":20196,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191153]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"96415e7ad9c73f5d","parentId":"7e9ca07fd43c573d","traceId":"0000000000000000ed44f897160b61a5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:50.049Z","sequence":20197,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191153, resource-version: bf2cf37f-221a-4250-a248-a73e968081ea]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"96415e7ad9c73f5d","parentId":"7e9ca07fd43c573d","traceId":"0000000000000000ed44f897160b61a5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:50.055Z","sequence":20198,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191153, resource-version: 5a69ccfc-4934-41d6-919a-e7c74fcd7ef1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"96415e7ad9c73f5d","parentId":"7e9ca07fd43c573d","traceId":"0000000000000000ed44f897160b61a5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:50.069Z","sequence":20199,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191153]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"583976fbc9f96f67","parentId":"d5b12ce489edf329","traceId":"0000000000000000ed44f897160b61a5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:50.397Z","sequence":20200,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191153]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"583976fbc9f96f67","parentId":"d5b12ce489edf329","traceId":"0000000000000000ed44f897160b61a5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:50.703Z","sequence":20201,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:50.703Z","sequence":20202,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000697] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:50.714Z","sequence":20203,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:50.714Z","sequence":20204,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:50.721Z","sequence":20205,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5b4707d2-bbcb-497a-8f1b-c719c996e31d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:51.776Z","sequence":20206,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF40665315E1748]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"93541b9e4dba784b","parentId":"5040055486717ec4","traceId":"0000000000000000bc1071f6b06dbee4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:51.801Z","sequence":20207,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF40665315E1748, resource-version: 591ceeb9-8878-48fc-b510-0b04239ee176]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"93541b9e4dba784b","parentId":"5040055486717ec4","traceId":"0000000000000000bc1071f6b06dbee4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:51.811Z","sequence":20208,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF40665315E1748, resource-version: 099da47d-7034-4795-aec1-c93746fcb465]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"93541b9e4dba784b","parentId":"5040055486717ec4","traceId":"0000000000000000bc1071f6b06dbee4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:52.17Z","sequence":20209,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:52.17Z","sequence":20210,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006D9] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:52.18Z","sequence":20211,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:52.18Z","sequence":20212,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:52.189Z","sequence":20213,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-be6f752d-d969-44a3-9805-9158c2d76f48, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:52.326Z","sequence":20214,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 44BE1C53DEC1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f1924d933daaf553","parentId":"8d78fbce85b3c064","traceId":"000000000000000010eb486ed799e8ef","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:52.345Z","sequence":20215,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 44BE1C53DEC1, resource-version: 00c5333d-2d5d-4ba3-a625-e3da5b00711c]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f1924d933daaf553","parentId":"8d78fbce85b3c064","traceId":"000000000000000010eb486ed799e8ef","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:52.549Z","sequence":20216,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 44BE1C53DEC1, resource-version: 156a1f92-27a1-4495-8f09-97f79ca6ee25]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f1924d933daaf553","parentId":"8d78fbce85b3c064","traceId":"000000000000000010eb486ed799e8ef","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:52.554Z","sequence":20217,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 44BE1C53DEC1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ab2ec15aa6949cf2","parentId":"a589889d687cb8ce","traceId":"000000000000000010eb486ed799e8ef","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:52.992Z","sequence":20218,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 44BE1C53DEC1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ab2ec15aa6949cf2","parentId":"a589889d687cb8ce","traceId":"000000000000000010eb486ed799e8ef","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:53.237Z","sequence":20219,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:53.237Z","sequence":20220,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191153]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:53.285Z","sequence":20221,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-56e6c31d-409b-48c5-9a62-0f1c88f47e0b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:53.429Z","sequence":20222,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:53.429Z","sequence":20223,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF40665315E1748] for gateway [gateway_integrationtest_network_191153]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:53.429Z","sequence":20224,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:53.429Z","sequence":20225,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191153]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:53.438Z","sequence":20226,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-322ebd06-3d28-4dee-a183-fd1ee4114318, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:53.438Z","sequence":20227,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:53.439Z","sequence":20228,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:53.681Z","sequence":20229,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b36494ac-d751-4c7f-9eee-3d6548d1c0d0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:53.732Z","sequence":20230,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFBE7A521BCE0E8]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"92ccc7abae926dc0","parentId":"8cf16a817e6f1558","traceId":"00000000000000001d2d6bd08465e6be","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:53.733Z","sequence":20231,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF0400A4482305C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9418280f8070b3bb","parentId":"59d64ea296911aec","traceId":"0000000000000000dbb866e42cc4a347","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:53.755Z","sequence":20232,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF0400A4482305C, resource-version: f161714d-a1d0-457c-bf35-102e079107b4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9418280f8070b3bb","parentId":"59d64ea296911aec","traceId":"0000000000000000dbb866e42cc4a347","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:53.755Z","sequence":20233,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFBE7A521BCE0E8]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"92ccc7abae926dc0","parentId":"8cf16a817e6f1558","traceId":"00000000000000001d2d6bd08465e6be","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:53.765Z","sequence":20234,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF0400A4482305C, resource-version: ce439a35-9ac2-4517-8c42-19a29c675e18]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9418280f8070b3bb","parentId":"59d64ea296911aec","traceId":"0000000000000000dbb866e42cc4a347","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:54.64Z","sequence":20235,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191149]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"aff7ef8344bc961c","parentId":"4a04cbcdf79c03a4","traceId":"0000000000000000281f622244e01b5b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:54.708Z","sequence":20236,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191149]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"aff7ef8344bc961c","parentId":"4a04cbcdf79c03a4","traceId":"0000000000000000281f622244e01b5b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:54.917Z","sequence":20237,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:54.918Z","sequence":20238,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-44BE1C53DEC1]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:54.961Z","sequence":20239,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-99918518-68d9-4e4d-bc55-588c1fd6fd35, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:55.082Z","sequence":20240,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:55.082Z","sequence":20241,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 44BE1C53DEC1]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:55.092Z","sequence":20242,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c2fa486f-aab6-47b9-9d71-dcec163b5584, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:55.099Z","sequence":20243,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:55.1Z","sequence":20244,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF0400A4482305C] for gateway [44BE1C53DEC1]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:55.109Z","sequence":20245,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.8.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:55.109Z","sequence":20246,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:55.948Z","sequence":20247,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-85382111-0522-4c3f-a609-7b4a0784eb5f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:55.952Z","sequence":20248,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:55.953Z","sequence":20249,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100017A] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:55.953Z","sequence":20250,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:55.953Z","sequence":20251,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100017A] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:55.968Z","sequence":20252,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:55.968Z","sequence":20253,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:55.968Z","sequence":20254,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:55.968Z","sequence":20255,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:55.977Z","sequence":20256,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-cb9742b9-fd53-43cd-bbda-f778968e2b09, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:55.977Z","sequence":20257,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6303adf6-b1c7-4de4-8b47-fdbde7f269b5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:56.676Z","sequence":20258,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: C532C0D8D03E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"18f82f13459e1a44","parentId":"303b1e6b1a37798e","traceId":"0000000000000000f832e4a574a51fe4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:56.701Z","sequence":20259,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: C532C0D8D03E, resource-version: 2d75229d-8e18-48f2-b9ea-72b3ae415dff]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"18f82f13459e1a44","parentId":"303b1e6b1a37798e","traceId":"0000000000000000f832e4a574a51fe4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:56.711Z","sequence":20260,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: C532C0D8D03E, resource-version: 9c87c730-4155-4130-8604-198dfbf8c94c]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"18f82f13459e1a44","parentId":"303b1e6b1a37798e","traceId":"0000000000000000f832e4a574a51fe4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:56.717Z","sequence":20261,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: C532C0D8D03E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a95b83badce50f94","parentId":"d4b45ce92e7315cb","traceId":"0000000000000000f832e4a574a51fe4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:57.063Z","sequence":20262,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: C532C0D8D03E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a95b83badce50f94","parentId":"d4b45ce92e7315cb","traceId":"0000000000000000f832e4a574a51fe4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:57.192Z","sequence":20263,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:57.192Z","sequence":20264,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000844] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:57.214Z","sequence":20265,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:57.214Z","sequence":20266,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:57.223Z","sequence":20267,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ecd92da1-ab19-4abf-bcc1-84f6084458d1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:57.422Z","sequence":20268,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF806815A137EED]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8d0bc2de810a67e0","parentId":"1191625145e84e04","traceId":"00000000000000002aa096ea52a0cb21","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:57.438Z","sequence":20269,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF806815A137EED]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8d0bc2de810a67e0","parentId":"1191625145e84e04","traceId":"00000000000000002aa096ea52a0cb21","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:58.577Z","sequence":20270,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF40665315E1748]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"674fe761903ba539","parentId":"6f2a7eede43b1271","traceId":"0000000000000000b442cb4cebb452ab","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:58.598Z","sequence":20271,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF40665315E1748]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"674fe761903ba539","parentId":"6f2a7eede43b1271","traceId":"0000000000000000b442cb4cebb452ab","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:58.813Z","sequence":20272,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF800A30D6A82D8]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"dad4ce57aeba2a7a","parentId":"e20f0272099b464c","traceId":"0000000000000000c0c7232a882b2f6f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:58.836Z","sequence":20273,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF800A30D6A82D8, resource-version: 0d942b9e-4f03-4e92-b2db-64f3dd056df6]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"dad4ce57aeba2a7a","parentId":"e20f0272099b464c","traceId":"0000000000000000c0c7232a882b2f6f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:58.845Z","sequence":20274,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF800A30D6A82D8, resource-version: d0308724-7a86-4a25-87c7-e73b4204408b]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"dad4ce57aeba2a7a","parentId":"e20f0272099b464c","traceId":"0000000000000000c0c7232a882b2f6f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:58.868Z","sequence":20275,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:58.868Z","sequence":20276,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: shelldev]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:58.873Z","sequence":20277,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-5b44b677-016f-4310-963c-72156cc50945, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:58.881Z","sequence":20278,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/shelldev:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:58.881Z","sequence":20279,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: shelldev, type: hashed-password, auth-id: auth-AZUREFUNCTION-DEV]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:58.897Z","sequence":20280,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-8820631d-cfc7-4f8e-b102-83ff9f29ef0a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:59.021Z","sequence":20281,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shelldev:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:59.021Z","sequence":20282,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shelldev, device-id: 70B3D57BB10014B3] for gateway [AZUREFUNCTION-DEV]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:59.022Z","sequence":20283,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shelldev:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:59.023Z","sequence":20284,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shelldev, device-id: AZUREFUNCTION-DEV]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:59.03Z","sequence":20285,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-26fedafb-6cf2-4b58-9ad8-bc7446bc2d4a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:59.03Z","sequence":20286,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDao","level":"DEBUG","message":"error retrieving device [tenantId: shelldev, deviceId: 70B3D57BB10014B3]: org.eclipse.hono.client.ClientErrorException: device not found","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:59.031Z","sequence":20287,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"no such device","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:59.031Z","sequence":20288,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d7618115-ce34-42b3-b0ba-37a66dc16e06, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:59.248Z","sequence":20289,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191153]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"aa58dfe22efe49ab","parentId":"230ed377bf8666e6","traceId":"0000000000000000fb8c12633de67979","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:59.269Z","sequence":20290,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191153]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"aa58dfe22efe49ab","parentId":"230ed377bf8666e6","traceId":"0000000000000000fb8c12633de67979","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:59.643Z","sequence":20291,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191151]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"af342a7ab9649893","parentId":"10c7c5f3045473f1","traceId":"00000000000000007b2b77947b438164","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:58:59.676Z","sequence":20292,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191151]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"af342a7ab9649893","parentId":"10c7c5f3045473f1","traceId":"00000000000000007b2b77947b438164","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:00.185Z","sequence":20293,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:00.185Z","sequence":20294,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-C532C0D8D03E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:00.201Z","sequence":20295,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-c665d23a-2235-425f-9e6a-47ae7b95dc1e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:00.348Z","sequence":20296,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:00.349Z","sequence":20297,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B8A] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:00.357Z","sequence":20298,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:00.357Z","sequence":20299,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:00.365Z","sequence":20300,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6eb2f096-275d-40ef-83b1-f43987c421a0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:00.372Z","sequence":20301,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:00.375Z","sequence":20302,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: C532C0D8D03E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:00.389Z","sequence":20303,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c8fcea36-0c27-4e58-ab78-14d5e62a4adb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:00.395Z","sequence":20304,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:00.395Z","sequence":20305,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF800A30D6A82D8] for gateway [C532C0D8D03E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:00.409Z","sequence":20306,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.3.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:00.41Z","sequence":20307,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:01.037Z","sequence":20308,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-454d77d4-a65a-46f6-a0a0-42f93e3a78d4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:01.44Z","sequence":20309,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: F0B0B27E60E0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a422233670b0d580","parentId":"ab92b93393730631","traceId":"0000000000000000cbf3f6b8591bfc2c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:01.486Z","sequence":20310,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: F0B0B27E60E0, resource-version: 0db1ed26-0dfc-425a-b17d-812b2105f728]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a422233670b0d580","parentId":"ab92b93393730631","traceId":"0000000000000000cbf3f6b8591bfc2c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:01.5Z","sequence":20311,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: F0B0B27E60E0, resource-version: c1b4fa5d-0615-4117-b813-7138b49f74e4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a422233670b0d580","parentId":"ab92b93393730631","traceId":"0000000000000000cbf3f6b8591bfc2c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:01.501Z","sequence":20312,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 702557B0B395]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3ec1e0cf1a699a1e","parentId":"5eeebc43d1be6ed9","traceId":"00000000000000004d6912c25135d7b4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:01.505Z","sequence":20313,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: F0B0B27E60E0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"093f018b77bb3c0f","parentId":"90b3ef506dfa1a49","traceId":"0000000000000000cbf3f6b8591bfc2c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:01.556Z","sequence":20314,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 702557B0B395, resource-version: dd019b0d-a81f-440a-823c-ccaf9bd83faf]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3ec1e0cf1a699a1e","parentId":"5eeebc43d1be6ed9","traceId":"00000000000000004d6912c25135d7b4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:01.566Z","sequence":20315,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 702557B0B395, resource-version: 766f67da-b956-4f33-a233-cc1a0690c2a8]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3ec1e0cf1a699a1e","parentId":"5eeebc43d1be6ed9","traceId":"00000000000000004d6912c25135d7b4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:01.582Z","sequence":20316,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 702557B0B395]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"29563ba8045e2b72","parentId":"c9460a97e630eb98","traceId":"00000000000000004d6912c25135d7b4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:01.693Z","sequence":20317,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191158]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0a7caa30b48ffdd4","parentId":"577b104f8681e6e4","traceId":"000000000000000099535d97799e73e6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:01.759Z","sequence":20318,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191158, resource-version: 9d92bf84-12a4-44ce-82e8-a487554b1bfb]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0a7caa30b48ffdd4","parentId":"577b104f8681e6e4","traceId":"000000000000000099535d97799e73e6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:01.78Z","sequence":20319,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191158, resource-version: 3b09f298-5d29-47ca-8707-136e4d3be4b5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0a7caa30b48ffdd4","parentId":"577b104f8681e6e4","traceId":"000000000000000099535d97799e73e6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:01.801Z","sequence":20320,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191158]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"42b869fd6710e6a3","parentId":"ca7d51a1ad8d9d31","traceId":"000000000000000099535d97799e73e6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:01.88Z","sequence":20321,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: F0B0B27E60E0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"093f018b77bb3c0f","parentId":"90b3ef506dfa1a49","traceId":"0000000000000000cbf3f6b8591bfc2c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:02.156Z","sequence":20322,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 702557B0B395]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"29563ba8045e2b72","parentId":"c9460a97e630eb98","traceId":"00000000000000004d6912c25135d7b4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:02.433Z","sequence":20323,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191158]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"42b869fd6710e6a3","parentId":"ca7d51a1ad8d9d31","traceId":"000000000000000099535d97799e73e6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:03.133Z","sequence":20324,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF0A4243280D4D3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"662f45e589f50182","parentId":"a09af658221d5bc2","traceId":"0000000000000000b0a01c747b0fc467","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:03.184Z","sequence":20325,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF0A4243280D4D3, resource-version: 1dc44086-9f06-497d-9f86-3f4039aa4574]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"662f45e589f50182","parentId":"a09af658221d5bc2","traceId":"0000000000000000b0a01c747b0fc467","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:03.193Z","sequence":20326,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF0A4243280D4D3, resource-version: efe06a68-a068-4f8e-bb9c-14e2e3e08c42]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"662f45e589f50182","parentId":"a09af658221d5bc2","traceId":"0000000000000000b0a01c747b0fc467","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:03.374Z","sequence":20327,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFECF0715E7CFBC]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f4050be88e38bf06","parentId":"06a7fe670a386699","traceId":"0000000000000000f2de57476bb3f34a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:03.392Z","sequence":20328,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFECF0715E7CFBC, resource-version: 75878e74-8f80-444f-9f57-7a53c53ed88a]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f4050be88e38bf06","parentId":"06a7fe670a386699","traceId":"0000000000000000f2de57476bb3f34a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:03.398Z","sequence":20329,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFECF0715E7CFBC, resource-version: 9c8a0d24-acd8-4967-994a-9f9a1a6f020c]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f4050be88e38bf06","parentId":"06a7fe670a386699","traceId":"0000000000000000f2de57476bb3f34a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:03.588Z","sequence":20330,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFD0BE8557F74C7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"57ff65fec6893871","parentId":"f028ba37d51a2f79","traceId":"0000000000000000871c844b31fee6bf","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:03.59Z","sequence":20331,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF90646FC3D8DDE]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9da7abe520ccde22","parentId":"cd46a2fb31cd534a","traceId":"00000000000000006866c6e0a5ab20dd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:03.605Z","sequence":20332,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFD0BE8557F74C7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"57ff65fec6893871","parentId":"f028ba37d51a2f79","traceId":"0000000000000000871c844b31fee6bf","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:03.612Z","sequence":20333,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF90646FC3D8DDE, resource-version: 4928aac6-1b08-452a-8790-2955fdf82478]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9da7abe520ccde22","parentId":"cd46a2fb31cd534a","traceId":"00000000000000006866c6e0a5ab20dd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:03.618Z","sequence":20334,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF90646FC3D8DDE, resource-version: 8fc4779d-dd15-44ad-b2fa-8090f611a1df]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9da7abe520ccde22","parentId":"cd46a2fb31cd534a","traceId":"00000000000000006866c6e0a5ab20dd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:03.777Z","sequence":20335,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:03.778Z","sequence":20336,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:03.786Z","sequence":20337,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6f371e3b-b0b1-47f8-901c-3311dae181ed, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:03.985Z","sequence":20338,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191152]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3437629cd82f86cb","parentId":"5ae4cc20ee5241ec","traceId":"0000000000000000dcb744b7ee98cf27","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:04.016Z","sequence":20339,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191152]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3437629cd82f86cb","parentId":"5ae4cc20ee5241ec","traceId":"0000000000000000dcb744b7ee98cf27","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:04.373Z","sequence":20340,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:04.373Z","sequence":20341,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-F0B0B27E60E0]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:04.396Z","sequence":20342,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-78248856-4549-4886-8f23-c54d52ddbda2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:04.536Z","sequence":20343,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:04.536Z","sequence":20344,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: F0B0B27E60E0]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:04.542Z","sequence":20345,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6004b21d-83fc-48a0-8da8-946fda59106f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:04.546Z","sequence":20346,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:04.546Z","sequence":20347,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF0A4243280D4D3] for gateway [F0B0B27E60E0]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:04.552Z","sequence":20348,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.3.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:04.552Z","sequence":20349,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:04.735Z","sequence":20350,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9acc215c-b937-414e-942f-866b3afe5ee5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:04.736Z","sequence":20351,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:04.736Z","sequence":20352,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-702557B0B395]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:04.736Z","sequence":20353,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:04.736Z","sequence":20354,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-702557B0B395]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:04.748Z","sequence":20355,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-abe9842c-2c63-4a27-b99d-9f9d1e58e37b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:04.749Z","sequence":20356,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-829ad78b-db8e-4717-9f0c-cdaac2a9e913, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:04.985Z","sequence":20357,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:04.985Z","sequence":20358,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 702557B0B395]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:04.991Z","sequence":20359,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-124d0ef8-ab1b-49e4-b0e0-da7adf96ed37, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:04.995Z","sequence":20360,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:04.995Z","sequence":20361,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFECF0715E7CFBC] for gateway [702557B0B395]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:04.999Z","sequence":20362,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:04.999Z","sequence":20363,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFECF0715E7CFBC] for gateway [702557B0B395]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:05.004Z","sequence":20364,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:connect:0.1.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:05.005Z","sequence":20365,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:05.006Z","sequence":20366,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:connect:0.1.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:05.006Z","sequence":20367,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:05.893Z","sequence":20368,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-695e7216-f5b7-453e-b562-ec6f64bbf260, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:06.219Z","sequence":20369,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f046d3bc-746d-4b2c-8367-2f981c58d81a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:06.219Z","sequence":20370,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:06.219Z","sequence":20371,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:06.22Z","sequence":20372,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:06.22Z","sequence":20373,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFECF0715E7CFBC] for gateway [702557B0B395]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:06.22Z","sequence":20374,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:06.221Z","sequence":20375,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFECF0715E7CFBC] for gateway [702557B0B395]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:06.222Z","sequence":20376,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-4d58691c-f8ad-472c-bda8-ac35b4649a26, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:06.229Z","sequence":20377,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:06.229Z","sequence":20378,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191158]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:06.237Z","sequence":20379,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:connect:0.1.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:06.237Z","sequence":20380,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:06.237Z","sequence":20381,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:connect:0.1.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:06.237Z","sequence":20382,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:06.293Z","sequence":20383,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-d7ab3ea3-563c-47a5-8e0d-b088a97124c9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:06.954Z","sequence":20384,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-21271bc9-3d68-4307-b533-d786dba06c17, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:07.36Z","sequence":20385,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c97380bf-d1d5-4338-9862-6ef854cbe33e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:07.361Z","sequence":20386,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:07.361Z","sequence":20387,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF90646FC3D8DDE] for gateway [gateway_integrationtest_network_191158]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:07.362Z","sequence":20388,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:07.362Z","sequence":20389,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191158]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:07.366Z","sequence":20390,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:07.367Z","sequence":20391,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:07.368Z","sequence":20392,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-78c204f3-c3d7-4195-b2d3-0cb722ad1e0b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:07.839Z","sequence":20393,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8c433de3-f0ea-4764-9a85-22133e7df487, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:07.845Z","sequence":20394,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:07.845Z","sequence":20395,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-702557B0B395]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:07.845Z","sequence":20396,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:07.846Z","sequence":20397,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-702557B0B395]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:07.895Z","sequence":20398,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-ff67fae2-dcd2-4376-9162-96e5d60798b4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:07.901Z","sequence":20399,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-0ea2d08d-26a7-4cc6-ad32-97e40d1478b4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:09.225Z","sequence":20400,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shelldev:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:09.225Z","sequence":20401,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shelldev, device-id: 70B3D57BB10014B3] for gateway [AZUREFUNCTION-DEV]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:09.237Z","sequence":20402,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDao","level":"DEBUG","message":"error retrieving device [tenantId: shelldev, deviceId: 70B3D57BB10014B3]: org.eclipse.hono.client.ClientErrorException: device not found","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:09.238Z","sequence":20403,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"no such device","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:09.238Z","sequence":20404,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5b37e5f9-914f-4e2e-9134-eb1e5e4c933f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:09.729Z","sequence":20405,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF0400A4482305C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b11ea222e0ce5753","parentId":"bc3e0edaae865124","traceId":"00000000000000003cbb277ccf88b420","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:09.759Z","sequence":20406,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF0400A4482305C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b11ea222e0ce5753","parentId":"bc3e0edaae865124","traceId":"00000000000000003cbb277ccf88b420","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:10.56Z","sequence":20407,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF0A4243280D4D3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3fcf0bc2690755a2","parentId":"46d4fcd5f168fbd7","traceId":"0000000000000000153d1e12f41579af","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:10.576Z","sequence":20408,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF0A4243280D4D3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3fcf0bc2690755a2","parentId":"46d4fcd5f168fbd7","traceId":"0000000000000000153d1e12f41579af","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:10.722Z","sequence":20409,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 44BE1C53DEC1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1cf45b6a9dda7d81","parentId":"0cf468ec8740cd67","traceId":"0000000000000000f6be05120e059686","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:10.738Z","sequence":20410,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 44BE1C53DEC1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1cf45b6a9dda7d81","parentId":"0cf468ec8740cd67","traceId":"0000000000000000f6be05120e059686","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:10.778Z","sequence":20411,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: F0B0B27E60E0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5ce3bb8ba9dbab5d","parentId":"0d4ac523022f7747","traceId":"000000000000000097c4de6576e41d7e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:10.798Z","sequence":20412,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: F0B0B27E60E0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5ce3bb8ba9dbab5d","parentId":"0d4ac523022f7747","traceId":"000000000000000097c4de6576e41d7e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:12.011Z","sequence":20413,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:12.011Z","sequence":20414,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10007B4] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:12.033Z","sequence":20415,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:12.033Z","sequence":20416,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:12.041Z","sequence":20417,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4e9f6cd4-5145-4a1b-aa45-fa3f182983d2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:12.464Z","sequence":20418,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:12.465Z","sequence":20419,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10001CF] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:12.482Z","sequence":20420,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:12.482Z","sequence":20421,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:12.504Z","sequence":20422,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-93990bc2-0bca-4632-9e39-b68307460622, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:12.787Z","sequence":20423,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:12.787Z","sequence":20424,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF90646FC3D8DDE] for gateway [gateway_integrationtest_network_191158]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:12.807Z","sequence":20425,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:12.807Z","sequence":20426,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:13.453Z","sequence":20427,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-fc99945f-fed4-446f-8752-41bd1de98aae, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:13.453Z","sequence":20428,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/repsol:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:13.453Z","sequence":20429,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: repsol, device-id: 0008004A37FF]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:13.468Z","sequence":20430,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9612ad72-41ce-4b3d-a137-be9769e49370, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:13.477Z","sequence":20431,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:13.477Z","sequence":20432,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: repsol]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:13.481Z","sequence":20433,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-92c33781-ece3-4dd9-a645-bb01f516b444, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:13.484Z","sequence":20434,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:13.485Z","sequence":20435,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001FA] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:13.501Z","sequence":20436,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:13.501Z","sequence":20437,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:13.517Z","sequence":20438,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3489841b-613f-4aa2-8114-db59f25d2829, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:13.725Z","sequence":20439,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:13.725Z","sequence":20440,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001FA] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:13.741Z","sequence":20441,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:13.741Z","sequence":20442,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:13.753Z","sequence":20443,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b80bf8cd-9f8f-4e75-b07e-8e1763b69f8a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:14.657Z","sequence":20444,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 8BF4BE92405C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5aca6554b132f9ba","parentId":"fc5ccfdd601f23b3","traceId":"00000000000000007bece024fcb4db17","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:14.688Z","sequence":20445,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 8BF4BE92405C, resource-version: 39c5ef28-ff8c-481d-a74e-f1e736a1de27]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5aca6554b132f9ba","parentId":"fc5ccfdd601f23b3","traceId":"00000000000000007bece024fcb4db17","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:14.7Z","sequence":20446,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 8BF4BE92405C, resource-version: ffc28a45-7a23-4645-aa49-970dcc0bc955]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5aca6554b132f9ba","parentId":"fc5ccfdd601f23b3","traceId":"00000000000000007bece024fcb4db17","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:14.709Z","sequence":20447,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 8BF4BE92405C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"95e676d67a065cca","parentId":"7fb8ee7f8b7fc63b","traceId":"00000000000000007bece024fcb4db17","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:15.041Z","sequence":20448,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 8BF4BE92405C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"95e676d67a065cca","parentId":"7fb8ee7f8b7fc63b","traceId":"00000000000000007bece024fcb4db17","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:15.649Z","sequence":20449,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191160]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6e8debea43abb520","parentId":"e8d025fe5110d1e7","traceId":"0000000000000000529e5972b41bb9ea","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:15.689Z","sequence":20450,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191160, resource-version: eb7f9a16-00ef-41b0-ba79-5d10c7071834]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6e8debea43abb520","parentId":"e8d025fe5110d1e7","traceId":"0000000000000000529e5972b41bb9ea","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:15.7Z","sequence":20451,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191160, resource-version: 73c4941d-7f04-4207-901b-a7be88d5b93e]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6e8debea43abb520","parentId":"e8d025fe5110d1e7","traceId":"0000000000000000529e5972b41bb9ea","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:15.705Z","sequence":20452,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191160]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cc169b9b37123929","parentId":"7a7f1a3d851424af","traceId":"0000000000000000529e5972b41bb9ea","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:15.992Z","sequence":20453,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191160]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cc169b9b37123929","parentId":"7a7f1a3d851424af","traceId":"0000000000000000529e5972b41bb9ea","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:16.421Z","sequence":20454,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF24E2972B4AFF8]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"93d17f758f984946","parentId":"0c5e43d8bb12d819","traceId":"0000000000000000c315e76d8c2f154e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:16.448Z","sequence":20455,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF24E2972B4AFF8, resource-version: d38bc211-dbac-4ebb-b6b2-3e0b7c35dbf5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"93d17f758f984946","parentId":"0c5e43d8bb12d819","traceId":"0000000000000000c315e76d8c2f154e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:16.461Z","sequence":20456,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF24E2972B4AFF8, resource-version: aa8ccd20-0c67-4d5c-a4e8-5ab763a5cdb1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"93d17f758f984946","parentId":"0c5e43d8bb12d819","traceId":"0000000000000000c315e76d8c2f154e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:17.357Z","sequence":20457,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:17.358Z","sequence":20458,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BF3] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:17.365Z","sequence":20459,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:17.365Z","sequence":20460,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:17.372Z","sequence":20461,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-36796aac-0d01-423f-867b-bfe416652b81, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:17.437Z","sequence":20462,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF4CF3B8DDE4D71]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d43817cb8312de4d","parentId":"7216ae39ccf63494","traceId":"0000000000000000c0f83051b2bdce84","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:17.461Z","sequence":20463,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF4CF3B8DDE4D71, resource-version: 023affe5-d286-49ae-aae6-d8670ab4c540]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d43817cb8312de4d","parentId":"7216ae39ccf63494","traceId":"0000000000000000c0f83051b2bdce84","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:17.473Z","sequence":20464,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF4CF3B8DDE4D71, resource-version: 662d6f98-408a-4942-95a9-5f6e14468177]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d43817cb8312de4d","parentId":"7216ae39ccf63494","traceId":"0000000000000000c0f83051b2bdce84","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:17.741Z","sequence":20465,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:17.741Z","sequence":20466,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10008C5] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:17.748Z","sequence":20467,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:17.748Z","sequence":20468,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:17.756Z","sequence":20469,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8f98b677-283c-4f96-a999-b747ccaf1777, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:17.942Z","sequence":20470,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:17.942Z","sequence":20471,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-8BF4BE92405C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:17.943Z","sequence":20472,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:17.943Z","sequence":20473,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-8BF4BE92405C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:17.962Z","sequence":20474,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-4bcceb49-f220-4629-8fde-f4cbeedaef62, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:17.962Z","sequence":20475,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-3ce8b5ac-e0bf-471f-859b-4f1ede24e783, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:18.107Z","sequence":20476,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF90646FC3D8DDE]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e6942e3c4dd2c1ca","parentId":"883b0c1d647966ad","traceId":"0000000000000000edca86ee77a845f3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:18.126Z","sequence":20477,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF90646FC3D8DDE]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e6942e3c4dd2c1ca","parentId":"883b0c1d647966ad","traceId":"0000000000000000edca86ee77a845f3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:18.265Z","sequence":20478,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:18.268Z","sequence":20479,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 8BF4BE92405C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:18.27Z","sequence":20480,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:18.27Z","sequence":20481,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 8BF4BE92405C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:18.277Z","sequence":20482,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8f5b34d7-7df0-4484-9961-be7433634c29, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:18.278Z","sequence":20483,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1972765a-a7d2-459a-8362-cda9125ef8d0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:18.284Z","sequence":20484,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:18.285Z","sequence":20485,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF24E2972B4AFF8] for gateway [8BF4BE92405C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:18.285Z","sequence":20486,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:18.286Z","sequence":20487,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF24E2972B4AFF8] for gateway [8BF4BE92405C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:18.293Z","sequence":20488,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:connect:0.1.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:18.293Z","sequence":20489,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:18.294Z","sequence":20490,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:connect:0.1.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:18.294Z","sequence":20491,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:18.917Z","sequence":20492,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191158]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"aad6c4f06899f2b0","parentId":"bc054e730ffe24bf","traceId":"00000000000000003e5e9002079d696f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:18.955Z","sequence":20493,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191158]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"aad6c4f06899f2b0","parentId":"bc054e730ffe24bf","traceId":"00000000000000003e5e9002079d696f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:19.116Z","sequence":20494,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1c03b801-ffe8-44d6-8288-f9bf10be30f0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:19.301Z","sequence":20495,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFECF0715E7CFBC]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"86f078d3a7645383","parentId":"c5debe3865f5efa2","traceId":"00000000000000000cdacb580b04f226","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:19.339Z","sequence":20496,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFECF0715E7CFBC]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"86f078d3a7645383","parentId":"c5debe3865f5efa2","traceId":"00000000000000000cdacb580b04f226","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:19.53Z","sequence":20497,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c6a77dfa-d497-4814-8e3e-cfd4b53bdabb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:19.533Z","sequence":20498,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:19.533Z","sequence":20499,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191160]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:19.534Z","sequence":20500,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:19.537Z","sequence":20501,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191160]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:19.537Z","sequence":20502,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shelldev:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:19.538Z","sequence":20503,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shelldev, device-id: 70B3D57BB10014B3] for gateway [AZUREFUNCTION-DEV]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:19.549Z","sequence":20504,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDao","level":"DEBUG","message":"error retrieving device [tenantId: shelldev, deviceId: 70B3D57BB10014B3]: org.eclipse.hono.client.ClientErrorException: device not found","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:19.549Z","sequence":20505,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"no such device","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:19.551Z","sequence":20506,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8199ff59-d1b5-40f0-a52c-ee400a3cab64, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:19.556Z","sequence":20507,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-f8e7e81a-d176-48c2-8d89-8338aafcd3a9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:19.556Z","sequence":20508,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-52f81466-a9ba-4464-b277-377c810efaf6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:19.786Z","sequence":20509,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:19.786Z","sequence":20510,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF4CF3B8DDE4D71] for gateway [gateway_integrationtest_network_191160]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:19.8Z","sequence":20511,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:19.8Z","sequence":20512,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191160]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:19.802Z","sequence":20513,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:19.802Z","sequence":20514,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF4CF3B8DDE4D71] for gateway [gateway_integrationtest_network_191160]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:19.806Z","sequence":20515,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:19.806Z","sequence":20516,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191160]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:19.807Z","sequence":20517,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:connect:0.1.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:19.807Z","sequence":20518,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:19.823Z","sequence":20519,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:connect:0.1.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:19.823Z","sequence":20520,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:19.824Z","sequence":20521,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6962c4ba-d990-4ded-90a7-1804ca54a8a8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:19.829Z","sequence":20522,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a05c8168-253e-45b0-adf3-71430a99aac6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:20.357Z","sequence":20523,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 702557B0B395]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d3b8222f472ceacf","parentId":"a69b4d8aef88b2b2","traceId":"000000000000000093140aa6b358aab2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:20.397Z","sequence":20524,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 702557B0B395]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d3b8222f472ceacf","parentId":"a69b4d8aef88b2b2","traceId":"000000000000000093140aa6b358aab2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:20.474Z","sequence":20525,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-db92c013-0ef4-4575-9296-3fc4d1e98877, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:20.837Z","sequence":20526,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-aeb5881d-6353-4230-84ba-c950f864a676, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:20.883Z","sequence":20527,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191161]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"eda67f49d9db8580","parentId":"ce4d314106fb9ba7","traceId":"0000000000000000fde1c023c7c3d778","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:20.905Z","sequence":20528,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191161, resource-version: e2684911-de71-4b18-9d22-0070d7d1fa5d]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"eda67f49d9db8580","parentId":"ce4d314106fb9ba7","traceId":"0000000000000000fde1c023c7c3d778","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:20.912Z","sequence":20529,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191161, resource-version: 67c33964-d2ed-49d6-adea-d2ebaf0dd501]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"eda67f49d9db8580","parentId":"ce4d314106fb9ba7","traceId":"0000000000000000fde1c023c7c3d778","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:20.916Z","sequence":20530,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191161]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cd100d3a4f2b63f7","parentId":"26ff973097457109","traceId":"0000000000000000fde1c023c7c3d778","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:21.075Z","sequence":20531,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191161]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cd100d3a4f2b63f7","parentId":"26ff973097457109","traceId":"0000000000000000fde1c023c7c3d778","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:21.229Z","sequence":20532,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 6BCFE68D625C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"850291f169c1027b","parentId":"8204215cd3ea5537","traceId":"00000000000000002cc1f6191c037b05","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:21.248Z","sequence":20533,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 6BCFE68D625C, resource-version: eb8723e1-2527-43f0-8fdb-28e54677c487]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"850291f169c1027b","parentId":"8204215cd3ea5537","traceId":"00000000000000002cc1f6191c037b05","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:21.257Z","sequence":20534,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 6BCFE68D625C, resource-version: b89cd70a-c84f-41b3-9ba1-1d52808b16f6]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"850291f169c1027b","parentId":"8204215cd3ea5537","traceId":"00000000000000002cc1f6191c037b05","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:21.261Z","sequence":20535,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 6BCFE68D625C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"710311e1e9241f6a","parentId":"a0ab206d602cabd9","traceId":"00000000000000002cc1f6191c037b05","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:21.435Z","sequence":20536,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 6BCFE68D625C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"710311e1e9241f6a","parentId":"a0ab206d602cabd9","traceId":"00000000000000002cc1f6191c037b05","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:22.051Z","sequence":20537,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:22.051Z","sequence":20538,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001ABB] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:22.056Z","sequence":20539,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:22.057Z","sequence":20540,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:22.058Z","sequence":20541,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: A4899874BAE9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fbc625e0b2fe8d22","parentId":"b98a0db3d61c1de0","traceId":"00000000000000000ea8112489f4658d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:22.065Z","sequence":20542,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4c8bf257-2e07-46c8-a27c-bab0afd58616, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:22.077Z","sequence":20543,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: A4899874BAE9, resource-version: b663efd8-9122-4a75-aa4f-837dc8a6474c]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fbc625e0b2fe8d22","parentId":"b98a0db3d61c1de0","traceId":"00000000000000000ea8112489f4658d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:22.085Z","sequence":20544,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: A4899874BAE9, resource-version: ecaee51b-bbd6-487b-9af2-6c125079b057]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fbc625e0b2fe8d22","parentId":"b98a0db3d61c1de0","traceId":"00000000000000000ea8112489f4658d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:22.091Z","sequence":20545,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: A4899874BAE9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1ba2b854891036bd","parentId":"aca612f962c9b91c","traceId":"00000000000000000ea8112489f4658d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:22.161Z","sequence":20546,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFEC72F1934391D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"805d83a45448735d","parentId":"a2b015fb6eac09ec","traceId":"0000000000000000c6962b2b844870ca","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:22.177Z","sequence":20547,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF260FD635263E4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"92a2bb968c514761","parentId":"14759484a1d05be7","traceId":"0000000000000000a0adfbcb8bfb9012","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:22.201Z","sequence":20548,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFEC72F1934391D, resource-version: 8d5b1ad0-1d48-41f3-ad22-29a4ccc99259]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"805d83a45448735d","parentId":"a2b015fb6eac09ec","traceId":"0000000000000000c6962b2b844870ca","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:22.21Z","sequence":20549,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF260FD635263E4, resource-version: 2d10de47-88b4-4dc8-a471-f67eff11fc61]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"92a2bb968c514761","parentId":"14759484a1d05be7","traceId":"0000000000000000a0adfbcb8bfb9012","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:22.211Z","sequence":20550,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFEC72F1934391D, resource-version: 119df162-2149-4290-8555-78cfb39c0fcc]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"805d83a45448735d","parentId":"a2b015fb6eac09ec","traceId":"0000000000000000c6962b2b844870ca","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:22.216Z","sequence":20551,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF260FD635263E4, resource-version: 21d2df40-db9d-4356-bfdd-37df366d9452]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"92a2bb968c514761","parentId":"14759484a1d05be7","traceId":"0000000000000000a0adfbcb8bfb9012","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:22.365Z","sequence":20552,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: A4899874BAE9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1ba2b854891036bd","parentId":"aca612f962c9b91c","traceId":"00000000000000000ea8112489f4658d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:22.823Z","sequence":20553,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:22.825Z","sequence":20554,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: ineos]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:22.828Z","sequence":20555,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-a1558ad1-84b8-4a52-b44e-6b5229bc32fc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:22.834Z","sequence":20556,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:22.835Z","sequence":20557,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB1000A78] for gateway [0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:22.84Z","sequence":20558,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:22.84Z","sequence":20559,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:22.843Z","sequence":20560,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-49d0be9e-e10e-4a30-88c6-38047e15480c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:22.945Z","sequence":20561,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF172359D8D2F59]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9e3d49e34efb9c61","parentId":"b90966b69010ddeb","traceId":"00000000000000002a9a6df22cea2590","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:22.965Z","sequence":20562,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF172359D8D2F59, resource-version: 41620063-9bf5-4882-b410-65670d296ba3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9e3d49e34efb9c61","parentId":"b90966b69010ddeb","traceId":"00000000000000002a9a6df22cea2590","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:22.971Z","sequence":20563,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF172359D8D2F59, resource-version: 4ee1d623-7e87-4eb0-b863-43be7df3b3a0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9e3d49e34efb9c61","parentId":"b90966b69010ddeb","traceId":"00000000000000002a9a6df22cea2590","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:23.482Z","sequence":20564,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:23.482Z","sequence":20565,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-6BCFE68D625C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:23.497Z","sequence":20566,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-c535070c-5853-478e-bff6-9bcef2cb2471, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:23.628Z","sequence":20567,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:23.629Z","sequence":20568,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 6BCFE68D625C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:23.634Z","sequence":20569,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d841d7c7-99c5-44a8-a658-5c2acf2f84f3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:23.638Z","sequence":20570,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:23.638Z","sequence":20571,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFEC72F1934391D] for gateway [6BCFE68D625C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:23.643Z","sequence":20572,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:23.644Z","sequence":20573,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:23.945Z","sequence":20574,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3516e3fd-fe20-46b5-b451-ec3e49c5df52, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:24.024Z","sequence":20575,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:24.024Z","sequence":20576,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-A4899874BAE9]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:24.058Z","sequence":20577,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-8a5cd480-8863-4a8d-95af-7daec695aed3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:24.059Z","sequence":20578,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:24.059Z","sequence":20579,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191161]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:24.073Z","sequence":20580,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-72dfe771-b1ef-421f-9f3e-4c26c311f33c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:24.232Z","sequence":20581,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:24.233Z","sequence":20582,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF260FD635263E4] for gateway [gateway_integrationtest_network_191161]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:24.238Z","sequence":20583,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:24.238Z","sequence":20584,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191161]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:24.24Z","sequence":20585,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:24.24Z","sequence":20586,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: A4899874BAE9]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:24.249Z","sequence":20587,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a5d82ac2-b70b-4ca9-aa96-3d987f66de81, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:24.25Z","sequence":20588,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:24.25Z","sequence":20589,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:24.265Z","sequence":20590,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b5045ae2-98a8-4f73-9f37-f081473356c5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:24.269Z","sequence":20591,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:24.269Z","sequence":20592,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF172359D8D2F59] for gateway [A4899874BAE9]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:24.273Z","sequence":20593,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"retrieving device [tenant: integrationtest, device-id: 0EFEC72F1934391D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fb01c0b5c53624f2","parentId":"b9a1cbe3539b822f","traceId":"1342a7691557ac508a524f5d5dcf148f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:24.286Z","sequence":20594,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:24.287Z","sequence":20595,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:24.687Z","sequence":20596,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1160a4f1-8b26-43f5-9b80-711e6097579c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:24.977Z","sequence":20597,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-41e359a5-eb5c-4303-ba88-4dcb53221502, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:26.269Z","sequence":20598,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:26.269Z","sequence":20599,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006CD] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:26.277Z","sequence":20600,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:26.277Z","sequence":20601,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:26.289Z","sequence":20602,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-85c62cae-85da-4461-8c26-fe8dce1b227c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:26.661Z","sequence":20603,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:26.661Z","sequence":20604,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BE3] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:26.677Z","sequence":20605,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:26.677Z","sequence":20606,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:26.689Z","sequence":20607,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c3b90251-3399-4299-9b4f-56c3e4d19793, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:28.497Z","sequence":20608,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF24E2972B4AFF8]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3b010656b51efcd3","parentId":"2394ac3a69792d41","traceId":"0000000000000000de908457919e5cdb","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:28.537Z","sequence":20609,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF24E2972B4AFF8]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3b010656b51efcd3","parentId":"2394ac3a69792d41","traceId":"0000000000000000de908457919e5cdb","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:29.157Z","sequence":20610,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 8BF4BE92405C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"52a9f6eda41c3c3c","parentId":"9e15d9681ffdef54","traceId":"00000000000000008c2883ba0e53c7a6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:29.211Z","sequence":20611,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 8BF4BE92405C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"52a9f6eda41c3c3c","parentId":"9e15d9681ffdef54","traceId":"00000000000000008c2883ba0e53c7a6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:29.711Z","sequence":20612,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shelldev:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:29.711Z","sequence":20613,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shelldev, device-id: 70B3D57BB10014B3] for gateway [AZUREFUNCTION-DEV]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:29.717Z","sequence":20614,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDao","level":"DEBUG","message":"error retrieving device [tenantId: shelldev, deviceId: 70B3D57BB10014B3]: org.eclipse.hono.client.ClientErrorException: device not found","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:29.717Z","sequence":20615,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"no such device","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:29.717Z","sequence":20616,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-678083ae-1f1a-4baf-b4e4-d8be60736127, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:29.991Z","sequence":20617,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF4CF3B8DDE4D71]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4f0e6dad45f7e8b4","parentId":"cbc19f1785e813e1","traceId":"0000000000000000e6c2ae8a24692c1a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:30.015Z","sequence":20618,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF4CF3B8DDE4D71]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4f0e6dad45f7e8b4","parentId":"cbc19f1785e813e1","traceId":"0000000000000000e6c2ae8a24692c1a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:30.586Z","sequence":20619,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 38ADB7A7E730]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c0f6cb03f066bda7","parentId":"9dfb3ed72aff7091","traceId":"000000000000000008a0989085c4b49a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:30.604Z","sequence":20620,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 38ADB7A7E730, resource-version: b0bd526c-967e-4104-94ce-f1c0ec2ee700]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c0f6cb03f066bda7","parentId":"9dfb3ed72aff7091","traceId":"000000000000000008a0989085c4b49a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:30.61Z","sequence":20621,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 38ADB7A7E730, resource-version: 8ec12f26-1658-43f2-a379-5f84d20ec5ab]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c0f6cb03f066bda7","parentId":"9dfb3ed72aff7091","traceId":"000000000000000008a0989085c4b49a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:30.613Z","sequence":20622,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 38ADB7A7E730]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2c74d9f0c099ce8b","parentId":"bb45d197f558c79c","traceId":"000000000000000008a0989085c4b49a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:30.725Z","sequence":20623,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191160]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"58cc132d17cf0283","parentId":"e235af8d0c004508","traceId":"00000000000000002c254ce0dbee6c9c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:30.75Z","sequence":20624,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191160]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"58cc132d17cf0283","parentId":"e235af8d0c004508","traceId":"00000000000000002c254ce0dbee6c9c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:30.767Z","sequence":20625,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 38ADB7A7E730]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2c74d9f0c099ce8b","parentId":"bb45d197f558c79c","traceId":"000000000000000008a0989085c4b49a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:30.961Z","sequence":20626,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191165]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fdd99adec73b0c2d","parentId":"7ce40ff5b9c81da3","traceId":"000000000000000029c5449a8ddb0340","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:30.98Z","sequence":20627,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191165, resource-version: 74e18240-a167-4b81-9dea-79a926760681]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fdd99adec73b0c2d","parentId":"7ce40ff5b9c81da3","traceId":"000000000000000029c5449a8ddb0340","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:30.987Z","sequence":20628,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191165, resource-version: ab9f5ee6-32cb-4d76-a3ce-7180153215a4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fdd99adec73b0c2d","parentId":"7ce40ff5b9c81da3","traceId":"000000000000000029c5449a8ddb0340","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:30.992Z","sequence":20629,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191165]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"362552e5766be5a9","parentId":"c1dedf6ae3f14251","traceId":"000000000000000029c5449a8ddb0340","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:31.06Z","sequence":20630,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:31.06Z","sequence":20631,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: shell]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:31.063Z","sequence":20632,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-e3c9954e-224f-4206-8108-affe8a5f88cf, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:31.065Z","sequence":20633,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/shell:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:31.065Z","sequence":20634,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: shell, type: hashed-password, auth-id: auth-gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:31.075Z","sequence":20635,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-9da2da25-8425-4008-814c-24b25a23dba0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:31.186Z","sequence":20636,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191165]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"362552e5766be5a9","parentId":"c1dedf6ae3f14251","traceId":"000000000000000029c5449a8ddb0340","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:31.851Z","sequence":20637,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF59392EDAB1BFD]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9856bfa2a9abc8b0","parentId":"0a11700e37ac28b1","traceId":"0000000000000000d0d6273c7c772efd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:31.867Z","sequence":20638,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF59392EDAB1BFD, resource-version: a459b8ee-40c6-44c9-b745-42cf70578cff]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9856bfa2a9abc8b0","parentId":"0a11700e37ac28b1","traceId":"0000000000000000d0d6273c7c772efd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:31.874Z","sequence":20639,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF59392EDAB1BFD, resource-version: cc1d46e5-ede1-4190-9e31-38c9ef76132e]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9856bfa2a9abc8b0","parentId":"0a11700e37ac28b1","traceId":"0000000000000000d0d6273c7c772efd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:32.521Z","sequence":20640,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF893B7871A3F71]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"41b214c837dc392e","parentId":"8215b0088413cf0d","traceId":"000000000000000032ae44b37178890c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:32.557Z","sequence":20641,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF893B7871A3F71, resource-version: 82486fc7-0da5-40a8-8659-6b11ab763c52]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"41b214c837dc392e","parentId":"8215b0088413cf0d","traceId":"000000000000000032ae44b37178890c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:32.562Z","sequence":20642,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF893B7871A3F71, resource-version: 6996c0af-e8c7-41c9-bc55-a6c3a64088aa]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"41b214c837dc392e","parentId":"8215b0088413cf0d","traceId":"000000000000000032ae44b37178890c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:32.953Z","sequence":20643,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:32.953Z","sequence":20644,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:32.957Z","sequence":20645,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-da5290f6-19a8-4489-ba91-07b2d4268762, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:32.959Z","sequence":20646,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:32.96Z","sequence":20647,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-38ADB7A7E730]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:32.96Z","sequence":20648,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:32.96Z","sequence":20649,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-38ADB7A7E730]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:32.961Z","sequence":20650,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:32.961Z","sequence":20651,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-38ADB7A7E730]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:32.979Z","sequence":20652,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-e3369262-8b37-491f-98e9-5e93db37e6d0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:32.981Z","sequence":20653,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-063b9d42-7532-45f8-a819-52d90de11de2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:32.982Z","sequence":20654,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-ded44d49-0fdd-4ee3-8d34-18cc9ae2b616, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:33.365Z","sequence":20655,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:33.366Z","sequence":20656,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 38ADB7A7E730]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:33.374Z","sequence":20657,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-cee7ef95-e332-4cfc-8c77-e09776d04e50, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:33.379Z","sequence":20658,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:33.379Z","sequence":20659,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF59392EDAB1BFD] for gateway [38ADB7A7E730]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:33.385Z","sequence":20660,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:33.385Z","sequence":20661,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF59392EDAB1BFD] for gateway [38ADB7A7E730]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:33.386Z","sequence":20662,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:33.386Z","sequence":20663,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:33.388Z","sequence":20664,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:33.388Z","sequence":20665,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF59392EDAB1BFD] for gateway [38ADB7A7E730]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:33.396Z","sequence":20666,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:33.396Z","sequence":20667,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:33.408Z","sequence":20668,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:33.408Z","sequence":20669,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:33.758Z","sequence":20670,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-55348e91-bf00-4ae2-917d-689eb0cc3c54, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:33.88Z","sequence":20671,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"retrieving device [tenant: integrationtest, device-id: 0EF59392EDAB1BFD]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bf3193805c6451ad","parentId":"44e24a3fd5d7842c","traceId":"4fb87ed0223ccf7375e16dec26ec6ddd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:34.201Z","sequence":20672,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-22d2857c-f1cf-41ba-8a12-6f7e1fd6ff52, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:34.593Z","sequence":20673,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-adee58e6-3362-4ae6-ab85-27c9991c1136, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:34.594Z","sequence":20674,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:34.594Z","sequence":20675,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191165]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:34.607Z","sequence":20676,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-172ccae7-755c-41d2-a912-03605f2c51d1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:34.731Z","sequence":20677,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:34.732Z","sequence":20678,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF893B7871A3F71] for gateway [gateway_integrationtest_network_191165]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:34.733Z","sequence":20679,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:34.733Z","sequence":20680,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191165]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:34.74Z","sequence":20681,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ae5c0d78-3f08-498b-9c90-758668393afc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:34.74Z","sequence":20682,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.5.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:34.74Z","sequence":20683,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:35.078Z","sequence":20684,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-01a82248-a64d-45c4-97b2-33d2d914b8fd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:35.086Z","sequence":20685,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:35.086Z","sequence":20686,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF893B7871A3F71] for gateway [gateway_integrationtest_network_191165]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:35.091Z","sequence":20687,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.5.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:35.092Z","sequence":20688,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:35.254Z","sequence":20689,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFEC72F1934391D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c510ba3a8a19b784","parentId":"301cfd13ee1dfb75","traceId":"00000000000000003089eb2049946fa4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:35.269Z","sequence":20690,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF172359D8D2F59]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6f3d041edf4cee8d","parentId":"8b4f46c3dc345edc","traceId":"0000000000000000c28aab98d51f89d3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:35.272Z","sequence":20691,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFEC72F1934391D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c510ba3a8a19b784","parentId":"301cfd13ee1dfb75","traceId":"00000000000000003089eb2049946fa4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:35.285Z","sequence":20692,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF172359D8D2F59]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6f3d041edf4cee8d","parentId":"8b4f46c3dc345edc","traceId":"0000000000000000c28aab98d51f89d3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:35.428Z","sequence":20693,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f9159899-4765-4cea-b3b9-7b2ea70603cf, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:35.757Z","sequence":20694,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:35.757Z","sequence":20695,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 0008004B51D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:35.772Z","sequence":20696,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4864ef70-7b07-433f-a3bb-37864217673a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:35.775Z","sequence":20697,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:35.775Z","sequence":20698,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: dow]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:35.781Z","sequence":20699,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-a4d7cfdf-023e-4660-bc21-04e20b58f011, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:35.933Z","sequence":20700,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: A4899874BAE9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"77b358540aa3a47d","parentId":"3c04bd9d7c2dae3c","traceId":"000000000000000056d2a1e1f473973f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:35.96Z","sequence":20701,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: A4899874BAE9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"77b358540aa3a47d","parentId":"3c04bd9d7c2dae3c","traceId":"000000000000000056d2a1e1f473973f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:36.747Z","sequence":20702,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 6BCFE68D625C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a6cff21c79c4268a","parentId":"331555514d6555f2","traceId":"000000000000000005779f7b0bbff4c7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:36.754Z","sequence":20703,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF260FD635263E4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"03e648243b95220d","parentId":"24a0329f361626be","traceId":"0000000000000000cc6a20658d393dbd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:36.767Z","sequence":20704,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 6BCFE68D625C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a6cff21c79c4268a","parentId":"331555514d6555f2","traceId":"000000000000000005779f7b0bbff4c7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:36.771Z","sequence":20705,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF260FD635263E4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"03e648243b95220d","parentId":"24a0329f361626be","traceId":"0000000000000000cc6a20658d393dbd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:37.02Z","sequence":20706,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191161]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"739f80f2c362bf46","parentId":"4669683f2a3a4987","traceId":"0000000000000000c3813136420ffb7d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:37.035Z","sequence":20707,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191166]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9b8e501d02368fc9","parentId":"bb65f11455f1f906","traceId":"0000000000000000cf48a7fe893fa2f2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:37.036Z","sequence":20708,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191161]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"739f80f2c362bf46","parentId":"4669683f2a3a4987","traceId":"0000000000000000c3813136420ffb7d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:37.059Z","sequence":20709,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191166, resource-version: 4b18f92e-15fa-4642-bcb2-97ee8701aee7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9b8e501d02368fc9","parentId":"bb65f11455f1f906","traceId":"0000000000000000cf48a7fe893fa2f2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:37.066Z","sequence":20710,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191166, resource-version: 357f3e5a-4bb1-46ca-9d9b-76e13a08b378]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9b8e501d02368fc9","parentId":"bb65f11455f1f906","traceId":"0000000000000000cf48a7fe893fa2f2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:37.069Z","sequence":20711,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191166]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"18a304052a9b20d1","parentId":"17ab63b5236e7318","traceId":"0000000000000000cf48a7fe893fa2f2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:37.232Z","sequence":20712,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191166]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"18a304052a9b20d1","parentId":"17ab63b5236e7318","traceId":"0000000000000000cf48a7fe893fa2f2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:37.266Z","sequence":20713,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 9BDD91C33D2C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"175fce158e4207eb","parentId":"59255f2a4c3e0327","traceId":"0000000000000000e19fb17ab4e18ae5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:37.288Z","sequence":20714,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 9BDD91C33D2C, resource-version: aa1acd40-2b4e-43a6-bef5-1fa7a950721f]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"175fce158e4207eb","parentId":"59255f2a4c3e0327","traceId":"0000000000000000e19fb17ab4e18ae5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:37.295Z","sequence":20715,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 9BDD91C33D2C, resource-version: 254e3f9e-91e4-449b-8468-08ac1fe2d0e1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"175fce158e4207eb","parentId":"59255f2a4c3e0327","traceId":"0000000000000000e19fb17ab4e18ae5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:37.298Z","sequence":20716,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 9BDD91C33D2C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f5659580c751883c","parentId":"ef42ebc5d3a6d43e","traceId":"0000000000000000e19fb17ab4e18ae5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:37.463Z","sequence":20717,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 9BDD91C33D2C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f5659580c751883c","parentId":"ef42ebc5d3a6d43e","traceId":"0000000000000000e19fb17ab4e18ae5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:37.74Z","sequence":20718,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF069566B67C100]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e6e5bc0c3a7ce553","parentId":"239b279fcbdae6c9","traceId":"0000000000000000da167dfc515b6fa3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:37.765Z","sequence":20719,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF069566B67C100, resource-version: 650e0425-4344-4ebf-afc9-3aefac6f5873]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e6e5bc0c3a7ce553","parentId":"239b279fcbdae6c9","traceId":"0000000000000000da167dfc515b6fa3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:37.77Z","sequence":20720,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF069566B67C100, resource-version: 5cc8e065-4488-4243-83fc-f69f770eea62]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e6e5bc0c3a7ce553","parentId":"239b279fcbdae6c9","traceId":"0000000000000000da167dfc515b6fa3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:37.903Z","sequence":20721,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF36FA4E2D8E906]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2ec93e37c241cf0d","parentId":"31bbed50cf1e4fbe","traceId":"0000000000000000e65c7e642f83e5a6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:37.921Z","sequence":20722,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF36FA4E2D8E906, resource-version: 8c24b171-e3d5-4195-8861-6ea6376fe2e8]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2ec93e37c241cf0d","parentId":"31bbed50cf1e4fbe","traceId":"0000000000000000e65c7e642f83e5a6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:37.928Z","sequence":20723,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF36FA4E2D8E906, resource-version: 987a8943-49b0-4f35-9fa6-747c4277f21d]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2ec93e37c241cf0d","parentId":"31bbed50cf1e4fbe","traceId":"0000000000000000e65c7e642f83e5a6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:37.935Z","sequence":20724,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: ECA86CFEAA8D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5081deecc32dc9ba","parentId":"e21c2626ac257ba8","traceId":"000000000000000075ea04884fa6d3d2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:37.952Z","sequence":20725,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: ECA86CFEAA8D, resource-version: fab77e77-707d-461e-b19a-467fb0606527]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5081deecc32dc9ba","parentId":"e21c2626ac257ba8","traceId":"000000000000000075ea04884fa6d3d2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:37.96Z","sequence":20726,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: ECA86CFEAA8D, resource-version: c8d6a190-8241-4323-810b-d7c408f42215]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5081deecc32dc9ba","parentId":"e21c2626ac257ba8","traceId":"000000000000000075ea04884fa6d3d2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:37.965Z","sequence":20727,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: ECA86CFEAA8D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"107f499c8fcf5d9b","parentId":"52d327aefae86abe","traceId":"000000000000000075ea04884fa6d3d2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:38.129Z","sequence":20728,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: ECA86CFEAA8D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"107f499c8fcf5d9b","parentId":"52d327aefae86abe","traceId":"000000000000000075ea04884fa6d3d2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:38.546Z","sequence":20729,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFDA436B9B11422]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bf08e10fca9c9691","parentId":"60a0f5e5ce5c9ad7","traceId":"0000000000000000436871ee46742758","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:38.562Z","sequence":20730,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFDA436B9B11422, resource-version: f912b9cd-61c6-4791-a93c-54698f9ae860]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bf08e10fca9c9691","parentId":"60a0f5e5ce5c9ad7","traceId":"0000000000000000436871ee46742758","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:38.568Z","sequence":20731,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFDA436B9B11422, resource-version: 3e6321b8-2190-4f0d-a9c9-b5dfb0fb38f5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bf08e10fca9c9691","parentId":"60a0f5e5ce5c9ad7","traceId":"0000000000000000436871ee46742758","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:38.987Z","sequence":20732,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:38.987Z","sequence":20733,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-9BDD91C33D2C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:38.997Z","sequence":20734,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-c0edf710-17a7-4b8f-b471-2d26c75efbeb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:39.119Z","sequence":20735,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:39.119Z","sequence":20736,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 9BDD91C33D2C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:39.124Z","sequence":20737,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-460f3619-b42c-4d6e-b7c0-6d8da9438868, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:39.129Z","sequence":20738,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:39.129Z","sequence":20739,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF36FA4E2D8E906] for gateway [9BDD91C33D2C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:39.134Z","sequence":20740,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:39.134Z","sequence":20741,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:39.418Z","sequence":20742,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-db490d06-27d2-4fb0-a059-dd82b67a5139, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:39.419Z","sequence":20743,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:39.419Z","sequence":20744,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191166]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:39.438Z","sequence":20745,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-b7163ad2-1060-4167-9ab6-741a741c8d0b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:39.566Z","sequence":20746,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:39.566Z","sequence":20747,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF069566B67C100] for gateway [gateway_integrationtest_network_191166]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:39.567Z","sequence":20748,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:39.567Z","sequence":20749,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191166]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:39.572Z","sequence":20750,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.5.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:39.572Z","sequence":20751,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:39.573Z","sequence":20752,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-65ebb0e6-e610-4dcf-82cc-9fbbfa52f7e4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:39.765Z","sequence":20753,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c300772c-5b57-4ef8-80cb-8c4a170cff63, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:39.765Z","sequence":20754,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:39.765Z","sequence":20755,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-ECA86CFEAA8D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:39.775Z","sequence":20756,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-c4632504-352c-4c8b-acc1-6acb27c841a4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:39.9Z","sequence":20757,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:39.9Z","sequence":20758,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: ECA86CFEAA8D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:39.905Z","sequence":20759,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0978bb5c-8b6f-486b-9073-c419a5775fbd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:39.909Z","sequence":20760,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:39.909Z","sequence":20761,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDA436B9B11422] for gateway [ECA86CFEAA8D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:39.914Z","sequence":20762,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.3.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:39.914Z","sequence":20763,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:40.084Z","sequence":20764,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b9538e27-7ad5-46e7-9a74-9a656aa59c7b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:42.505Z","sequence":20765,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF069566B67C100]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"15dc9f38dd98f41b","parentId":"24f5e046211267f5","traceId":"00000000000000007b33f659f0bfa008","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:42.529Z","sequence":20766,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF069566B67C100]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"15dc9f38dd98f41b","parentId":"24f5e046211267f5","traceId":"00000000000000007b33f659f0bfa008","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:42.643Z","sequence":20767,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191166]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"32ba4edab6996a6a","parentId":"9cff62fb59531e3b","traceId":"0000000000000000acbc6ce6e03a4540","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:42.66Z","sequence":20768,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191166]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"32ba4edab6996a6a","parentId":"9cff62fb59531e3b","traceId":"0000000000000000acbc6ce6e03a4540","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:43.151Z","sequence":20769,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 83590ED3CE60]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"90dae71abbec4cdc","parentId":"584d33e2e0b25d4a","traceId":"0000000000000000d4b62a4f31c31b04","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:43.169Z","sequence":20770,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 83590ED3CE60, resource-version: cbe45e22-3816-44a3-ac50-a25628c24398]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"90dae71abbec4cdc","parentId":"584d33e2e0b25d4a","traceId":"0000000000000000d4b62a4f31c31b04","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:43.177Z","sequence":20771,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 83590ED3CE60, resource-version: 90ab4bf3-ac86-4eae-8085-cd86c3cf28f6]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"90dae71abbec4cdc","parentId":"584d33e2e0b25d4a","traceId":"0000000000000000d4b62a4f31c31b04","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:43.18Z","sequence":20772,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 83590ED3CE60]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"54bfaec556b9327f","parentId":"1a3a30553bbf586b","traceId":"0000000000000000d4b62a4f31c31b04","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:43.347Z","sequence":20773,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 83590ED3CE60]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"54bfaec556b9327f","parentId":"1a3a30553bbf586b","traceId":"0000000000000000d4b62a4f31c31b04","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:44.204Z","sequence":20774,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFDFCD98FA8A1E1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"35e6eef16cac6608","parentId":"6c86ff9ac013aec6","traceId":"0000000000000000ed94fca707f68eeb","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:44.222Z","sequence":20775,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFDFCD98FA8A1E1, resource-version: 3227359c-eec4-4875-80b5-9993aa58e406]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"35e6eef16cac6608","parentId":"6c86ff9ac013aec6","traceId":"0000000000000000ed94fca707f68eeb","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:44.231Z","sequence":20776,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFDFCD98FA8A1E1, resource-version: df00f974-517d-47b2-a912-63f2c8b1c0d2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"35e6eef16cac6608","parentId":"6c86ff9ac013aec6","traceId":"0000000000000000ed94fca707f68eeb","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:44.999Z","sequence":20777,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client's [mqtt-adapter@HONO] access token has expired, closing connection","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:45.102Z","sequence":20778,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"initializing SASL authenticator","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:45.102Z","sequence":20779,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client provided an empty list of SASL mechanisms [hostname: null, state: PN_SASL_IDLE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:45.104Z","sequence":20780,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client wants to authenticate using SASL [mechanism: PLAIN, host: null, state: PN_SASL_STEP]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:45.104Z","sequence":20781,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"received authentication request [mechanism: PLAIN]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d2a992b08eb98e1d","traceId":"cd3db8861f8fa180d6636b9d3b23b159","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:45.104Z","sequence":20782,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"processing PLAIN authentication request [authzid: , authcid: mqtt-adapter@HONO, pwd: *****]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d2a992b08eb98e1d","traceId":"cd3db8861f8fa180d6636b9d3b23b159","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:45.104Z","sequence":20783,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"OpenSSL [available: false, supports KeyManagerFactory: false]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d2a992b08eb98e1d","traceId":"cd3db8861f8fa180d6636b9d3b23b159","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:45.104Z","sequence":20784,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"using JVM's default SSL engine","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d2a992b08eb98e1d","traceId":"cd3db8861f8fa180d6636b9d3b23b159","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:45.105Z","sequence":20785,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d2a992b08eb98e1d","traceId":"cd3db8861f8fa180d6636b9d3b23b159","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:45.105Z","sequence":20786,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d2a992b08eb98e1d","traceId":"cd3db8861f8fa180d6636b9d3b23b159","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:45.105Z","sequence":20787,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connecting to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d2a992b08eb98e1d","traceId":"cd3db8861f8fa180d6636b9d3b23b159","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:45.207Z","sequence":20788,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connected to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server], opening connection ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d2a992b08eb98e1d","traceId":"cd3db8861f8fa180d6636b9d3b23b159","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:45.209Z","sequence":20789,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connection to container [hono-auth-0.0.0.0:5671] at [amqps://aloxy-hono-service-auth:5671, role: Authentication Server] open","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d2a992b08eb98e1d","traceId":"cd3db8861f8fa180d6636b9d3b23b159","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:45.211Z","sequence":20790,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"opened receiver link to Authentication service, waiting for token ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d2a992b08eb98e1d","traceId":"cd3db8861f8fa180d6636b9d3b23b159","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:45.212Z","sequence":20791,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"successfully retrieved token from Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d2a992b08eb98e1d","traceId":"cd3db8861f8fa180d6636b9d3b23b159","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:45.212Z","sequence":20792,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"closing connection to Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d2a992b08eb98e1d","traceId":"cd3db8861f8fa180d6636b9d3b23b159","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:45.212Z","sequence":20793,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.EventBusAuthenticationService","level":"DEBUG","message":"received token [length: 969] in response to authentication request","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:45.213Z","sequence":20794,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.JjwtBasedAuthTokenValidator","level":"DEBUG","message":"using key [id: 984e3639028b1e7d0b7d97f8f3de6a82638af0ed7d06ce7d9e038a1c4c634169] to validate signature (alg: RS256]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:45.213Z","sequence":20795,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"authentication of client [authorization ID: mqtt-adapter@HONO] succeeded","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:45.214Z","sequence":20796,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"finishing SASL handshake with outcome PN_SASL_OK","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:45.214Z","sequence":20797,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"received connection request from client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:45.216Z","sequence":20798,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"processing open frame from client container [Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:45.216Z","sequence":20799,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"INFO","message":"client connected [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af, user: mqtt-adapter@HONO, token valid until: 2023-07-25T04:59:45Z]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:45.219Z","sequence":20800,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"opening new session with client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:45.28Z","sequence":20801,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:45.28Z","sequence":20802,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-83590ED3CE60]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:45.295Z","sequence":20803,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-2c69e1d2-546e-45ac-adf9-a5939ee75064, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:45.43Z","sequence":20804,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af] wants to open a link [address: Source{address='registration/integrationtest/d41fe9b1-a1ab-414f-92c8-9dfb771b43bc', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:45.431Z","sequence":20805,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-0]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:45.431Z","sequence":20806,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@59466dcc] for replies to [registration/integrationtest/d41fe9b1-a1ab-414f-92c8-9dfb771b43bc]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:45.433Z","sequence":20807,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af] wants to open a link [address: Target{address='registration/integrationtest', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:45.433Z","sequence":20808,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-1]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:45.433Z","sequence":20809,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:45.436Z","sequence":20810,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:45.436Z","sequence":20811,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 83590ED3CE60]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:45.442Z","sequence":20812,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-26dfa6e5-9c53-4c4a-8870-e552e13bd588, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:45.447Z","sequence":20813,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:45.447Z","sequence":20814,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDFCD98FA8A1E1] for gateway [83590ED3CE60]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:45.453Z","sequence":20815,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.5.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:45.453Z","sequence":20816,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:45.79Z","sequence":20817,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ff5cc8d0-8329-48e0-a64a-64e18d76aad9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:49.521Z","sequence":20818,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:49.522Z","sequence":20819,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: terega]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:49.525Z","sequence":20820,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-03fe284c-2793-4147-bf1c-15c1b603a2a3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:49.529Z","sequence":20821,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/terega:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:49.529Z","sequence":20822,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: terega, type: hashed-password, auth-id: auth-gateway_terega_network_27]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:49.54Z","sequence":20823,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-4a965169-a0ea-4ee6-8fc7-fd925bbd6ea1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:49.659Z","sequence":20824,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/terega:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:49.659Z","sequence":20825,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: terega, device-id: 70B3D57BB1000DF6] for gateway [gateway_terega_network_27]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:49.673Z","sequence":20826,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_terega\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:49.673Z","sequence":20827,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_terega\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:49.676Z","sequence":20828,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-426d2b09-4b8b-41ba-a7a4-7d08b708e63a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:50.282Z","sequence":20829,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFDFCD98FA8A1E1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"90531754fbfa245b","parentId":"e351c0e79febb2ac","traceId":"00000000000000000b6a647671b96943","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:50.301Z","sequence":20830,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFDFCD98FA8A1E1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"90531754fbfa245b","parentId":"e351c0e79febb2ac","traceId":"00000000000000000b6a647671b96943","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:51.123Z","sequence":20831,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 83590ED3CE60]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"295aecefb6aeff5f","parentId":"74b4e8442608b009","traceId":"000000000000000065d067d5779fa4c1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:51.166Z","sequence":20832,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 83590ED3CE60]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"295aecefb6aeff5f","parentId":"74b4e8442608b009","traceId":"000000000000000065d067d5779fa4c1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:51.73Z","sequence":20833,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191170]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b0ee33cdeff9fe4c","parentId":"f34d71676b11ba6a","traceId":"0000000000000000869d9b437422c78f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:51.747Z","sequence":20834,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191170, resource-version: d9fe54af-f55e-4b65-afc2-99581623f869]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b0ee33cdeff9fe4c","parentId":"f34d71676b11ba6a","traceId":"0000000000000000869d9b437422c78f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:51.752Z","sequence":20835,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191170, resource-version: 4980f60c-aeb9-4b45-8863-b293a8410207]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b0ee33cdeff9fe4c","parentId":"f34d71676b11ba6a","traceId":"0000000000000000869d9b437422c78f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:51.756Z","sequence":20836,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191170]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"70c02806919e28d1","parentId":"ee56406043a986da","traceId":"0000000000000000869d9b437422c78f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:51.932Z","sequence":20837,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191170]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"70c02806919e28d1","parentId":"ee56406043a986da","traceId":"0000000000000000869d9b437422c78f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:52.036Z","sequence":20838,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFDA436B9B11422]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"818f5630bb68ee89","parentId":"f981cdfcb1309013","traceId":"0000000000000000835b6524076009e9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:52.065Z","sequence":20839,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFDA436B9B11422]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"818f5630bb68ee89","parentId":"f981cdfcb1309013","traceId":"0000000000000000835b6524076009e9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:52.165Z","sequence":20840,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: ECA86CFEAA8D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1fcf0b7d31d44448","parentId":"6b7daa9ff10fa639","traceId":"00000000000000003ec349c6c2d97aa1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:52.181Z","sequence":20841,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: ECA86CFEAA8D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1fcf0b7d31d44448","parentId":"6b7daa9ff10fa639","traceId":"00000000000000003ec349c6c2d97aa1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:52.211Z","sequence":20842,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF14AE87425B299]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2e2511ce708ef41a","parentId":"636af04f33a21bf7","traceId":"00000000000000003a49b327453d5207","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:52.232Z","sequence":20843,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF14AE87425B299, resource-version: ccdf47b3-eb94-4029-ac06-3f2b3aeca4ad]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2e2511ce708ef41a","parentId":"636af04f33a21bf7","traceId":"00000000000000003a49b327453d5207","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:52.241Z","sequence":20844,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF14AE87425B299, resource-version: 41a5c8f9-6ccb-48fc-ae97-4122c98f224b]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2e2511ce708ef41a","parentId":"636af04f33a21bf7","traceId":"00000000000000003a49b327453d5207","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:52.249Z","sequence":20845,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF36FA4E2D8E906]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"218fddf3052950d3","parentId":"07cf094e8de9b295","traceId":"0000000000000000391b6a74a593132c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:52.265Z","sequence":20846,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF36FA4E2D8E906]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"218fddf3052950d3","parentId":"07cf094e8de9b295","traceId":"0000000000000000391b6a74a593132c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:52.465Z","sequence":20847,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:52.465Z","sequence":20848,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A4D] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:52.471Z","sequence":20849,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:52.472Z","sequence":20850,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:52.479Z","sequence":20851,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4c99d9e9-df59-46f1-9580-0126b7992739, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:52.548Z","sequence":20852,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 9BDD91C33D2C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"79457d6bfb8c4e23","parentId":"85ff2454a50ef694","traceId":"0000000000000000f73c854c2dad4955","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:52.583Z","sequence":20853,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 9BDD91C33D2C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"79457d6bfb8c4e23","parentId":"85ff2454a50ef694","traceId":"0000000000000000f73c854c2dad4955","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:53.289Z","sequence":20854,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 2FC7609F1D3C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"106ba2b34316a972","parentId":"c89c78d550782d93","traceId":"0000000000000000279939c486a96ea2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:53.31Z","sequence":20855,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:53.31Z","sequence":20856,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191170]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:53.327Z","sequence":20857,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 2FC7609F1D3C, resource-version: 4b4120e1-5c8c-483f-850e-c6f9bcb6cc26]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"106ba2b34316a972","parentId":"c89c78d550782d93","traceId":"0000000000000000279939c486a96ea2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:53.339Z","sequence":20858,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-02ae5fcc-5053-4f6e-a35d-4856cd857e02, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:53.34Z","sequence":20859,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 2FC7609F1D3C, resource-version: ee77a18f-f0c5-4a05-ba08-a0c098672e01]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"106ba2b34316a972","parentId":"c89c78d550782d93","traceId":"0000000000000000279939c486a96ea2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:53.346Z","sequence":20860,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 2FC7609F1D3C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d2f4cccdb4ecad2c","parentId":"d3543deeba06e4c1","traceId":"0000000000000000279939c486a96ea2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:53.473Z","sequence":20861,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:53.473Z","sequence":20862,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF14AE87425B299] for gateway [gateway_integrationtest_network_191170]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:53.474Z","sequence":20863,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:53.485Z","sequence":20864,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191170]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:53.494Z","sequence":20865,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:53.494Z","sequence":20866,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:53.517Z","sequence":20867,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9e7d998d-355c-4b1a-b967-e472673efdbe, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:53.577Z","sequence":20868,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 2FC7609F1D3C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d2f4cccdb4ecad2c","parentId":"d3543deeba06e4c1","traceId":"0000000000000000279939c486a96ea2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:53.795Z","sequence":20869,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-581c53cd-48ea-465f-8970-e2645bfcf5f6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:54.725Z","sequence":20870,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF4A745BC217297]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"52ceef16d85f53a4","parentId":"bc8ecf63b9050c0b","traceId":"0000000000000000bcff2b3b14ed3227","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:54.749Z","sequence":20871,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF4A745BC217297, resource-version: 4a202725-5309-4587-802f-8832cb52febc]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"52ceef16d85f53a4","parentId":"bc8ecf63b9050c0b","traceId":"0000000000000000bcff2b3b14ed3227","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:54.791Z","sequence":20872,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF4A745BC217297, resource-version: a845a45b-0dbc-4f99-abdb-9df41d8399ed]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"52ceef16d85f53a4","parentId":"bc8ecf63b9050c0b","traceId":"0000000000000000bcff2b3b14ed3227","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:55.86Z","sequence":20873,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:55.861Z","sequence":20874,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-2FC7609F1D3C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:55.897Z","sequence":20875,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-9758b125-9f8e-4a6a-ae52-a5205f166a77, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:56.059Z","sequence":20876,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:56.06Z","sequence":20877,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 2FC7609F1D3C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:56.093Z","sequence":20878,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e3fd0457-c260-4ce5-a09b-725411d5353c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:56.1Z","sequence":20879,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:56.101Z","sequence":20880,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF4A745BC217297] for gateway [2FC7609F1D3C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:56.113Z","sequence":20881,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.5.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:56.114Z","sequence":20882,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:56.803Z","sequence":20883,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e7a0e6b6-213a-4cc5-b162-c7082fca89c0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:58.433Z","sequence":20884,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF14AE87425B299]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8c053cbf4c332838","parentId":"87749238b957a08b","traceId":"0000000000000000e18e2c7b7ff8ac07","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:58.457Z","sequence":20885,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF14AE87425B299]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8c053cbf4c332838","parentId":"87749238b957a08b","traceId":"0000000000000000e18e2c7b7ff8ac07","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:59.154Z","sequence":20886,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191170]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9fbcdcf8e1cd25a4","parentId":"8c1c0e29fcab3ea3","traceId":"00000000000000006d871a82779cd705","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T03:59:59.177Z","sequence":20887,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191170]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9fbcdcf8e1cd25a4","parentId":"8c1c0e29fcab3ea3","traceId":"00000000000000006d871a82779cd705","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:00.358Z","sequence":20888,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF4A745BC217297]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7b4d0fdd8b7fb414","parentId":"9b091d630b311a07","traceId":"0000000000000000e42a403ca87319f4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:00.384Z","sequence":20889,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF4A745BC217297]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7b4d0fdd8b7fb414","parentId":"9b091d630b311a07","traceId":"0000000000000000e42a403ca87319f4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:00.42Z","sequence":20890,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:00.421Z","sequence":20891,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: lanxess]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:00.438Z","sequence":20892,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-51e6ba6f-2d1e-487f-b031-210cbba08039, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:00.441Z","sequence":20893,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af] wants to open a link [address: Source{address='registration/lanxess/b28e4056-b5e9-4784-8481-3dbcab214ed2', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:00.441Z","sequence":20894,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-2]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:00.441Z","sequence":20895,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@46cdd6cb] for replies to [registration/lanxess/b28e4056-b5e9-4784-8481-3dbcab214ed2]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:00.447Z","sequence":20896,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af] wants to open a link [address: Target{address='registration/lanxess', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:00.447Z","sequence":20897,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:00.447Z","sequence":20898,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:00.453Z","sequence":20899,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:00.453Z","sequence":20900,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 70B3D57BB10001B5] for gateway [0008004BB84C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:00.481Z","sequence":20901,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_lanxess\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:00.481Z","sequence":20902,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_lanxess\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:00.485Z","sequence":20903,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a1babdd9-e41d-48bd-8648-0df0d7269c20, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:00.625Z","sequence":20904,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:00.625Z","sequence":20905,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000567] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:00.633Z","sequence":20906,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:00.633Z","sequence":20907,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:00.642Z","sequence":20908,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a2fcb3bd-c050-4cd5-b69e-5100729f2927, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:00.833Z","sequence":20909,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 2FC7609F1D3C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"836eaa82f5b9b3b3","parentId":"145e13e4986b4a73","traceId":"0000000000000000aa2499089560abab","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:00.855Z","sequence":20910,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 2FC7609F1D3C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"836eaa82f5b9b3b3","parentId":"145e13e4986b4a73","traceId":"0000000000000000aa2499089560abab","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:04.639Z","sequence":20911,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:04.639Z","sequence":20912,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: exxon]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:04.644Z","sequence":20913,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-9d28d7b3-5869-4d7e-83c0-cfd58b33dc06, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:04.648Z","sequence":20914,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/exxon:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:04.648Z","sequence":20915,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: exxon, type: hashed-password, auth-id: auth-gateway_exxon_network_2559]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:04.659Z","sequence":20916,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-db46f910-cad3-4f1a-820a-1848e95aa685, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:04.782Z","sequence":20917,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/exxon:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:04.782Z","sequence":20918,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: exxon, device-id: 70B3D57BB1000B43] for gateway [gateway_exxon_network_2559]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:04.783Z","sequence":20919,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/exxon:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:04.783Z","sequence":20920,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: exxon, device-id: gateway_exxon_network_2559]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:04.788Z","sequence":20921,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_exxon\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:04.79Z","sequence":20922,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_exxon\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:04.791Z","sequence":20923,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b8e1b271-b94b-4a34-8afd-306ef1ff5c52, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:04.793Z","sequence":20924,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3428e285-c592-431d-bb5a-bde51ecd1c05, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:10.947Z","sequence":20925,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af] wants to open a link [address: Source{address='registration/conditionall/22cee39e-ae92-46ea-8538-e5b7b8951099', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:10.948Z","sequence":20926,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:10.948Z","sequence":20927,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@13ab24c0] for replies to [registration/conditionall/22cee39e-ae92-46ea-8538-e5b7b8951099]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:10.95Z","sequence":20928,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af] wants to open a link [address: Target{address='registration/conditionall', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:10.95Z","sequence":20929,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-5]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:10.95Z","sequence":20930,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:10.953Z","sequence":20931,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/conditionall:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:10.953Z","sequence":20932,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: conditionall, device-id: 0008004B512D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:10.969Z","sequence":20933,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-743a4bbd-b182-4516-8259-84a552fa8450, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:10.972Z","sequence":20934,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:10.973Z","sequence":20935,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: conditionall]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:10.975Z","sequence":20936,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-4676290e-c47d-411a-bf29-9c95250e469d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:19.688Z","sequence":20937,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af] wants to open a link [address: Source{address='registration/oci/b418f5f2-bd1b-4511-ae54-3699b363b859', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:19.688Z","sequence":20938,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-6]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:19.689Z","sequence":20939,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@24415bd4] for replies to [registration/oci/b418f5f2-bd1b-4511-ae54-3699b363b859]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:19.691Z","sequence":20940,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af] wants to open a link [address: Target{address='registration/oci', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:19.694Z","sequence":20941,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-7]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:19.694Z","sequence":20942,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:19.696Z","sequence":20943,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:19.696Z","sequence":20944,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:19.702Z","sequence":20945,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b0cd9849-8ccd-4514-a051-5de6e535f465, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:19.705Z","sequence":20946,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:19.705Z","sequence":20947,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oci]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:19.709Z","sequence":20948,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-9c1a75ea-1b42-4996-92d2-9a86ce239e1b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:21.717Z","sequence":20949,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:21.718Z","sequence":20950,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100140B] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:21.728Z","sequence":20951,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:21.728Z","sequence":20952,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:21.735Z","sequence":20953,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e51cef1b-3e7e-4cfc-93f8-ff25cc20a168, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:21.947Z","sequence":20954,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:21.947Z","sequence":20955,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B60] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:21.953Z","sequence":20956,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:21.953Z","sequence":20957,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:21.959Z","sequence":20958,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2c2d92cd-6941-4420-9676-59066af56503, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:24.001Z","sequence":20959,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:24.001Z","sequence":20960,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 70B3D57BB100017F] for gateway [0008004BB84C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:24.016Z","sequence":20961,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_lanxess\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:24.016Z","sequence":20962,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_lanxess\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:24.023Z","sequence":20963,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2be83c1d-1f9e-4f6c-974a-5691c7153104, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:24.367Z","sequence":20964,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:24.367Z","sequence":20965,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000694] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:24.377Z","sequence":20966,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:24.377Z","sequence":20967,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:24.385Z","sequence":20968,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b2baefc4-fd1e-4813-8a35-b2d78a36df1c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:24.88Z","sequence":20969,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:24.88Z","sequence":20970,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AD5] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:24.905Z","sequence":20971,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:24.905Z","sequence":20972,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:24.915Z","sequence":20973,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-32b5d517-cb15-41f8-876c-d89e761a4c56, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:29.555Z","sequence":20974,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:29.555Z","sequence":20975,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A72] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:29.561Z","sequence":20976,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:29.561Z","sequence":20977,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:29.567Z","sequence":20978,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-eca917e6-f0bd-4b57-a2ee-4178cf38e3f3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:31.119Z","sequence":20979,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:31.119Z","sequence":20980,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10001D5] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:31.124Z","sequence":20981,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:0.4.1\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:31.124Z","sequence":20982,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:31.131Z","sequence":20983,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f1325f2e-8a6c-42ac-8650-ffe07e17cf0d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:32.67Z","sequence":20984,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:32.67Z","sequence":20985,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: flint]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:32.676Z","sequence":20986,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-78004bd5-895d-42f1-98e7-f2b6d47511f6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:32.678Z","sequence":20987,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/flint:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:32.678Z","sequence":20988,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: flint, type: hashed-password, auth-id: auth-flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:32.691Z","sequence":20989,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-cbc1f600-84c0-4db7-bdc7-648dc7fd0afc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:32.819Z","sequence":20990,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:32.819Z","sequence":20991,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10008A2] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:32.825Z","sequence":20992,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:32.825Z","sequence":20993,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:32.83Z","sequence":20994,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-187223fb-6f31-46d7-94be-6877550f5083, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:33.582Z","sequence":20995,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:33.582Z","sequence":20996,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: dow]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:33.587Z","sequence":20997,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-50aa9030-9a90-4655-880e-96d3cc3fbd1d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:33.591Z","sequence":20998,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/dow:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:33.591Z","sequence":20999,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: dow, type: hashed-password, auth-id: auth-gateway_dow_network_39199]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:33.602Z","sequence":21000,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-bcdbffe8-10ee-4653-bd6c-574e6addbee4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:33.917Z","sequence":21001,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:33.917Z","sequence":21002,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 70B3D57BB10014F7] for gateway [gateway_dow_network_39199]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:33.918Z","sequence":21003,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:33.918Z","sequence":21004,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: gateway_dow_network_39199]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:33.925Z","sequence":21005,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:33.925Z","sequence":21006,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:33.926Z","sequence":21007,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-54b9e401-4db6-473c-8821-167af2d2110b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:33.93Z","sequence":21008,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-672160d5-41b0-4b4a-aff1-7ecac97599f0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:34.165Z","sequence":21009,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/dow:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:34.166Z","sequence":21010,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: dow, type: hashed-password, auth-id: auth-gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:34.179Z","sequence":21011,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-83ddc17d-c8a2-4f08-bf89-7bd507837434, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:34.522Z","sequence":21012,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:34.522Z","sequence":21013,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 70B3D57BB100125F] for gateway [gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:34.522Z","sequence":21014,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:34.522Z","sequence":21015,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:34.528Z","sequence":21016,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:34.528Z","sequence":21017,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:34.528Z","sequence":21018,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-66dc7e30-ee14-41ca-a33f-d383e6490426, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:34.533Z","sequence":21019,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-50380e92-aee5-41fd-8e71-05e80c73cb39, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:39.94Z","sequence":21020,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:39.94Z","sequence":21021,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A52] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:39.946Z","sequence":21022,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:39.946Z","sequence":21023,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:39.953Z","sequence":21024,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-06c8fbc6-df2a-4aaf-9131-de4d14ae1b0f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:43.315Z","sequence":21025,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:43.315Z","sequence":21026,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006AB] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:43.321Z","sequence":21027,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:43.321Z","sequence":21028,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:43.328Z","sequence":21029,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a4f9740d-7cdb-434a-892a-1b31f70ac826, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:46.886Z","sequence":21030,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:46.886Z","sequence":21031,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BB84C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:46.895Z","sequence":21032,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-abdb8880-5d0f-48e8-b2a9-7dd1f3882d5b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:48.577Z","sequence":21033,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af] wants to open a link [address: Source{address='registration/ineos/6b5a6d73-5d82-472d-99b7-68244d0fb8b5', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:48.577Z","sequence":21034,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-8]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:48.577Z","sequence":21035,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@5fd96729] for replies to [registration/ineos/6b5a6d73-5d82-472d-99b7-68244d0fb8b5]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:48.58Z","sequence":21036,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af] wants to open a link [address: Target{address='registration/ineos', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:48.581Z","sequence":21037,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-9]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:48.581Z","sequence":21038,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:48.585Z","sequence":21039,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:48.585Z","sequence":21040,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 0008004B5135]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:48.594Z","sequence":21041,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-07d30009-11da-4765-969b-069ea4bd91c2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:52.227Z","sequence":21042,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF59392EDAB1BFD]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ec608d5e046af5b5","parentId":"794abdbbf9a26728","traceId":"0000000000000000df21db47ce12d5c3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:52.246Z","sequence":21043,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF59392EDAB1BFD]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ec608d5e046af5b5","parentId":"794abdbbf9a26728","traceId":"0000000000000000df21db47ce12d5c3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:52.729Z","sequence":21044,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 38ADB7A7E730]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a67f49e05a3ad388","parentId":"dee17e9f1aac4aeb","traceId":"000000000000000082a5980c9b2de5c0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:52.75Z","sequence":21045,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 38ADB7A7E730]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a67f49e05a3ad388","parentId":"dee17e9f1aac4aeb","traceId":"000000000000000082a5980c9b2de5c0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:53.154Z","sequence":21046,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191172]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"66b3c89e663bf5c3","parentId":"1b4cda02176927b8","traceId":"0000000000000000478a5b0758eea693","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:53.157Z","sequence":21047,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:53.157Z","sequence":21048,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BBD1B]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:53.163Z","sequence":21049,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c0f8dcb0-a1a7-4207-b9e2-da3b7935fa48, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:53.172Z","sequence":21050,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191172, resource-version: 5fb37f43-1b1f-48bb-9029-662d7d519b73]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"66b3c89e663bf5c3","parentId":"1b4cda02176927b8","traceId":"0000000000000000478a5b0758eea693","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:53.178Z","sequence":21051,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191172, resource-version: b8543f48-fd2c-47ee-9d96-f473d3689521]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"66b3c89e663bf5c3","parentId":"1b4cda02176927b8","traceId":"0000000000000000478a5b0758eea693","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:53.182Z","sequence":21052,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191172]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"41912641ed56eff6","parentId":"6f6411cbc2d99d8a","traceId":"0000000000000000478a5b0758eea693","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:53.36Z","sequence":21053,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191172]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"41912641ed56eff6","parentId":"6f6411cbc2d99d8a","traceId":"0000000000000000478a5b0758eea693","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:53.994Z","sequence":21054,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF6B95CC554B8DC]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5dfcfbe523372c63","parentId":"8bb052e85f58246f","traceId":"0000000000000000220fc453fa11f5a9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:54.024Z","sequence":21055,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF6B95CC554B8DC, resource-version: 70362c9a-238c-497d-9a0a-eb9c6121c9d1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5dfcfbe523372c63","parentId":"8bb052e85f58246f","traceId":"0000000000000000220fc453fa11f5a9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:54.03Z","sequence":21056,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF6B95CC554B8DC, resource-version: ce9a76bd-9bff-4904-9dbf-4b041181b5bc]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5dfcfbe523372c63","parentId":"8bb052e85f58246f","traceId":"0000000000000000220fc453fa11f5a9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:55.027Z","sequence":21057,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af] wants to open a link [address: Source{address='registration/acta/0438f7d0-aec0-4945-aeeb-5e831b4310ac', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:55.027Z","sequence":21058,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:55.027Z","sequence":21059,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@3d164971] for replies to [registration/acta/0438f7d0-aec0-4945-aeeb-5e831b4310ac]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:55.03Z","sequence":21060,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af] wants to open a link [address: Target{address='registration/acta', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:55.031Z","sequence":21061,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-11]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:55.031Z","sequence":21062,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:55.033Z","sequence":21063,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/acta:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:55.034Z","sequence":21064,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: acta, device-id: 3534383400470039] for gateway [0008004AAAA3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:55.046Z","sequence":21065,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.3.0\"\n },\n \"viaGroups\" : [ \"gateways_acta\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:55.046Z","sequence":21066,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_acta\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:55.05Z","sequence":21067,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-91c177f3-1748-40b2-a82d-7f98994f9135, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:55.124Z","sequence":21068,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:55.125Z","sequence":21069,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191172]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:55.139Z","sequence":21070,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-35052fb4-1ccd-483f-bccf-68aec49a9ff1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:55.269Z","sequence":21071,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:55.269Z","sequence":21072,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF6B95CC554B8DC] for gateway [gateway_integrationtest_network_191172]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:55.27Z","sequence":21073,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:55.27Z","sequence":21074,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191172]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:55.277Z","sequence":21075,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:55.277Z","sequence":21076,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:55.278Z","sequence":21077,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-16a8474f-f505-4d75-9ea9-a28466c369d0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:00:55.772Z","sequence":21078,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0f3766a0-f61b-4629-a9e3-5f3033335cd7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:00.06Z","sequence":21079,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af] wants to open a link [address: Source{address='registration/arkema/84fb5ad3-9564-4c88-bc88-7cd32ae13c1c', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:00.06Z","sequence":21080,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-12]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:00.061Z","sequence":21081,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@2a46f0c] for replies to [registration/arkema/84fb5ad3-9564-4c88-bc88-7cd32ae13c1c]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:00.063Z","sequence":21082,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af] wants to open a link [address: Target{address='registration/arkema', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:00.064Z","sequence":21083,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-13]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:00.065Z","sequence":21084,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:00.069Z","sequence":21085,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/arkema:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:00.069Z","sequence":21086,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: arkema, device-id: 0008004AE119]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:00.077Z","sequence":21087,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-528dfa64-f9c9-488a-bf14-2451a416295d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:00.081Z","sequence":21088,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:00.081Z","sequence":21089,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: arkema]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:00.089Z","sequence":21090,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-1284593a-89d7-4e26-89b9-35a8c69d4d32, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:04.611Z","sequence":21091,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: A174CE39A631]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0ef4f79e60916333","parentId":"db0bd7b066d9d2cd","traceId":"000000000000000022811b156e6ec5cb","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:04.636Z","sequence":21092,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: A174CE39A631, resource-version: 21c406c0-5116-45a7-a6ad-5a6670672a1c]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0ef4f79e60916333","parentId":"db0bd7b066d9d2cd","traceId":"000000000000000022811b156e6ec5cb","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:04.643Z","sequence":21093,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: A174CE39A631, resource-version: 0555be3f-424a-4b50-81e8-9d847c9b1ad0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0ef4f79e60916333","parentId":"db0bd7b066d9d2cd","traceId":"000000000000000022811b156e6ec5cb","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:04.647Z","sequence":21094,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: A174CE39A631]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5cff3ae561abf875","parentId":"8398d010f1234f2d","traceId":"000000000000000022811b156e6ec5cb","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:04.758Z","sequence":21095,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: A174CE39A631]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5cff3ae561abf875","parentId":"8398d010f1234f2d","traceId":"000000000000000022811b156e6ec5cb","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:05.361Z","sequence":21096,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFB246D0FFBA1B7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1c38a82218c25202","parentId":"f5af5dff1788219f","traceId":"00000000000000003734f84d11070e66","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:05.378Z","sequence":21097,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFB246D0FFBA1B7, resource-version: c90aa1b0-587c-4761-9a75-d21fd5580159]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1c38a82218c25202","parentId":"f5af5dff1788219f","traceId":"00000000000000003734f84d11070e66","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:05.384Z","sequence":21098,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFB246D0FFBA1B7, resource-version: 1e6a8630-c284-47e2-b12e-92557cb2c1c3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1c38a82218c25202","parentId":"f5af5dff1788219f","traceId":"00000000000000003734f84d11070e66","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:06.319Z","sequence":21099,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF6B95CC554B8DC]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"27060b28fc579668","parentId":"2f959ffa77bf2bae","traceId":"00000000000000003dd8102f24cebcb2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:06.339Z","sequence":21100,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF6B95CC554B8DC]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"27060b28fc579668","parentId":"2f959ffa77bf2bae","traceId":"00000000000000003dd8102f24cebcb2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:06.44Z","sequence":21101,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:06.44Z","sequence":21102,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-A174CE39A631]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:06.451Z","sequence":21103,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-72fe6382-8859-4828-809f-76eaf3351bb7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:06.485Z","sequence":21104,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191172]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"52fc6837fbfe8627","parentId":"881c24aaee7f154a","traceId":"000000000000000026e749fea376caff","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:06.504Z","sequence":21105,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191172]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"52fc6837fbfe8627","parentId":"881c24aaee7f154a","traceId":"000000000000000026e749fea376caff","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:06.575Z","sequence":21106,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:06.575Z","sequence":21107,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: A174CE39A631]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:06.592Z","sequence":21108,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-47c5aed6-96d1-4854-83ba-f51535e296f4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:06.597Z","sequence":21109,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:06.597Z","sequence":21110,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFB246D0FFBA1B7] for gateway [A174CE39A631]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:06.601Z","sequence":21111,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:06.602Z","sequence":21112,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:07.069Z","sequence":21113,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-66af604b-e4be-498a-8775-911e567b682d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:07.373Z","sequence":21114,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191174]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1d77d09748ac6e9f","parentId":"26407929a9d8828f","traceId":"0000000000000000670bb2d741b075ca","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:07.396Z","sequence":21115,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191174, resource-version: d832fa73-98a5-4c17-a155-91b5bcd404f0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1d77d09748ac6e9f","parentId":"26407929a9d8828f","traceId":"0000000000000000670bb2d741b075ca","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:07.403Z","sequence":21116,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191174, resource-version: d3f1f595-8fb7-49c1-9b5a-57392c443a2f]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1d77d09748ac6e9f","parentId":"26407929a9d8828f","traceId":"0000000000000000670bb2d741b075ca","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:07.41Z","sequence":21117,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191174]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c426f6997a0d3935","parentId":"ab97c2630d04ed51","traceId":"0000000000000000670bb2d741b075ca","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:07.572Z","sequence":21118,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191174]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c426f6997a0d3935","parentId":"ab97c2630d04ed51","traceId":"0000000000000000670bb2d741b075ca","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:07.86Z","sequence":21119,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191175]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5d21dd8b88160517","parentId":"e7601638f0194003","traceId":"00000000000000001613640d09ede22e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:07.879Z","sequence":21120,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191175, resource-version: 3af16152-cdde-4bde-9f88-60937f282ea0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5d21dd8b88160517","parentId":"e7601638f0194003","traceId":"00000000000000001613640d09ede22e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:07.889Z","sequence":21121,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191175, resource-version: 48e5b9b0-5966-4915-a852-94d5e904e1e9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5d21dd8b88160517","parentId":"e7601638f0194003","traceId":"00000000000000001613640d09ede22e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:07.894Z","sequence":21122,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191175]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0eb6a9f90aa6d8c1","parentId":"8f356108f20aa3e4","traceId":"00000000000000001613640d09ede22e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:07.931Z","sequence":21123,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF9216B7E6A05F0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f29154ccce8f22d0","parentId":"85009ec8f3150f1a","traceId":"0000000000000000cc91f5bb57d00891","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:07.956Z","sequence":21124,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF9216B7E6A05F0, resource-version: 840ccf5f-fc4e-4e6f-84e1-8822f8cc10b6]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f29154ccce8f22d0","parentId":"85009ec8f3150f1a","traceId":"0000000000000000cc91f5bb57d00891","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:07.966Z","sequence":21125,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF9216B7E6A05F0, resource-version: 4449b3d7-c498-4b96-bd41-41f994663ebc]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f29154ccce8f22d0","parentId":"85009ec8f3150f1a","traceId":"0000000000000000cc91f5bb57d00891","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:08.049Z","sequence":21126,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191175]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0eb6a9f90aa6d8c1","parentId":"8f356108f20aa3e4","traceId":"00000000000000001613640d09ede22e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:09.246Z","sequence":21127,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFFE10AE1F36F7F]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7ad484ffd402c4ad","parentId":"a85df0cee69fc4a0","traceId":"00000000000000009f2646c2d392b339","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:09.32Z","sequence":21128,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFFE10AE1F36F7F, resource-version: e741e014-6f2b-459e-9cc1-e2edd9f7efa2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7ad484ffd402c4ad","parentId":"a85df0cee69fc4a0","traceId":"00000000000000009f2646c2d392b339","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:09.337Z","sequence":21129,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFFE10AE1F36F7F, resource-version: a4b49ccb-3f29-4c61-adf9-1da60e3ddb0e]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7ad484ffd402c4ad","parentId":"a85df0cee69fc4a0","traceId":"00000000000000009f2646c2d392b339","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:10.41Z","sequence":21130,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:10.41Z","sequence":21131,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191175]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:10.42Z","sequence":21132,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:10.42Z","sequence":21133,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191175]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:10.421Z","sequence":21134,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-018c14e5-85d8-4660-ab5d-67e546fe3a30, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:10.429Z","sequence":21135,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-5405e2d5-3705-42c9-b6d2-1fcfcc82cf7b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:10.802Z","sequence":21136,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:10.802Z","sequence":21137,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFFE10AE1F36F7F] for gateway [gateway_integrationtest_network_191175]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:10.803Z","sequence":21138,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:10.803Z","sequence":21139,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191175]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:10.811Z","sequence":21140,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-24edc916-7837-4ef7-9a8e-f6016d2d6be7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:10.811Z","sequence":21141,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:10.812Z","sequence":21142,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:11.167Z","sequence":21143,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6b12b3e7-b3c7-4e03-9d55-673f9790a411, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:11.167Z","sequence":21144,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:11.168Z","sequence":21145,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFFE10AE1F36F7F] for gateway [gateway_integrationtest_network_191175]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:11.169Z","sequence":21146,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:11.169Z","sequence":21147,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFFE10AE1F36F7F] for gateway [gateway_integrationtest_network_191175]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:11.174Z","sequence":21148,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:11.175Z","sequence":21149,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:11.175Z","sequence":21150,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:11.175Z","sequence":21151,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:11.521Z","sequence":21152,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6f2305c9-07bf-4aad-8bfa-a87ea5646d2c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:11.826Z","sequence":21153,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9f7d8ef6-1fb5-458e-a5d5-52fc0e2d618a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:11.935Z","sequence":21154,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"retrieving device [tenant: integrationtest, device-id: 0EFFE10AE1F36F7F]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2c09c746b2eea6f5","parentId":"ced6c99ee2561662","traceId":"939ae667e34931b285b4cccf903c8418","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:14.089Z","sequence":21155,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [command-router@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:14.089Z","sequence":21156,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:14.092Z","sequence":21157,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-28fa1da8-5a6c-4d34-8e55-7163477015ef, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:14.094Z","sequence":21158,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [command-router@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:14.094Z","sequence":21159,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF9216B7E6A05F0]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:14.342Z","sequence":21160,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b5a1b412-3524-40d5-a54d-c6df86ebc01e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:15.195Z","sequence":21161,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:15.195Z","sequence":21162,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A76] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:15.196Z","sequence":21163,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:15.196Z","sequence":21164,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:15.201Z","sequence":21165,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:15.201Z","sequence":21166,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:15.201Z","sequence":21167,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f5653bdf-eb1d-4757-918d-bb9c87381231, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:15.216Z","sequence":21168,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-01a5d823-03ea-4192-9665-f250343c0fc3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:19.594Z","sequence":21169,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFB246D0FFBA1B7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"546c56825a79322d","parentId":"6efc0cee96bb5f92","traceId":"0000000000000000d827e0dc28db2a4d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:19.611Z","sequence":21170,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFB246D0FFBA1B7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"546c56825a79322d","parentId":"6efc0cee96bb5f92","traceId":"0000000000000000d827e0dc28db2a4d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:20.233Z","sequence":21171,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: A174CE39A631]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"61d37bbcb67f23dd","parentId":"55f53a96714ae489","traceId":"0000000000000000ba6735c00adac9c8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:20.261Z","sequence":21172,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: A174CE39A631]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"61d37bbcb67f23dd","parentId":"55f53a96714ae489","traceId":"0000000000000000ba6735c00adac9c8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:20.714Z","sequence":21173,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191176]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"66ad7c0d23067ddb","parentId":"238e5b0a1eb37b41","traceId":"0000000000000000e0d24fe7be9a5d10","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:20.736Z","sequence":21174,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191176, resource-version: 850e5bd5-09a3-4a9b-a5f8-fd79b0ac0227]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"66ad7c0d23067ddb","parentId":"238e5b0a1eb37b41","traceId":"0000000000000000e0d24fe7be9a5d10","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:20.747Z","sequence":21175,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191176, resource-version: 018414e4-ce46-4d81-8589-3d762213d16f]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"66ad7c0d23067ddb","parentId":"238e5b0a1eb37b41","traceId":"0000000000000000e0d24fe7be9a5d10","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:20.751Z","sequence":21176,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191176]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7829bd9ac38d8a57","parentId":"8d62699ff51ae6da","traceId":"0000000000000000e0d24fe7be9a5d10","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:20.914Z","sequence":21177,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191176]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7829bd9ac38d8a57","parentId":"8d62699ff51ae6da","traceId":"0000000000000000e0d24fe7be9a5d10","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:21.737Z","sequence":21178,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF4BFDEE9112658]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2b1ef96601e5b940","parentId":"c71b0dfb8d94edee","traceId":"0000000000000000b194a8e41df859e3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:21.756Z","sequence":21179,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF4BFDEE9112658, resource-version: 58afc8c7-1e8f-4f80-ab25-e391a994ea08]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2b1ef96601e5b940","parentId":"c71b0dfb8d94edee","traceId":"0000000000000000b194a8e41df859e3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:21.763Z","sequence":21180,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF4BFDEE9112658, resource-version: f7c105fb-9b16-4a86-aab4-a0db5557a231]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2b1ef96601e5b940","parentId":"c71b0dfb8d94edee","traceId":"0000000000000000b194a8e41df859e3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:22.855Z","sequence":21181,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:22.856Z","sequence":21182,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191176]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:22.868Z","sequence":21183,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-c75e6888-9548-4ac3-a12d-c24ff1420cde, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:22.986Z","sequence":21184,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:22.986Z","sequence":21185,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF4BFDEE9112658] for gateway [gateway_integrationtest_network_191176]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:22.986Z","sequence":21186,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:22.987Z","sequence":21187,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191176]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:22.993Z","sequence":21188,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a17784b3-2a03-44e3-bc1a-81705baad15b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:22.993Z","sequence":21189,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:22.993Z","sequence":21190,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:23.382Z","sequence":21191,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ebc079bb-079a-4046-b073-bcf7c3a04137, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:24.149Z","sequence":21192,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:24.149Z","sequence":21193,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BEA] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:24.175Z","sequence":21194,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:24.175Z","sequence":21195,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:24.189Z","sequence":21196,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-837a21d9-fd91-4f91-94c3-633ca7e4141b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:27.179Z","sequence":21197,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF4BFDEE9112658]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d920e577cb8225de","parentId":"83fb71fc7f89e716","traceId":"0000000000000000b445b9b7278ced3d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:27.196Z","sequence":21198,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF4BFDEE9112658]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d920e577cb8225de","parentId":"83fb71fc7f89e716","traceId":"0000000000000000b445b9b7278ced3d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:27.337Z","sequence":21199,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191176]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7f5f2f0b6eb1ede2","parentId":"0cd07388f1a757a7","traceId":"0000000000000000781b7746c5d81fc4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:27.354Z","sequence":21200,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191176]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7f5f2f0b6eb1ede2","parentId":"0cd07388f1a757a7","traceId":"0000000000000000781b7746c5d81fc4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:30.789Z","sequence":21201,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:30.789Z","sequence":21202,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB100082D] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:30.795Z","sequence":21203,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:30.795Z","sequence":21204,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:30.798Z","sequence":21205,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9a206d94-816a-4fed-b1fa-2534ed01c1a0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:31.966Z","sequence":21206,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:31.966Z","sequence":21207,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 70B3D57BB100126C] for gateway [gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:31.972Z","sequence":21208,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:31.972Z","sequence":21209,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:31.977Z","sequence":21210,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f47380e4-4be3-4078-99d6-c9a2307f69e0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:37.936Z","sequence":21211,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:37.936Z","sequence":21212,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BBD1C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:37.942Z","sequence":21213,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-08e769a0-d1ef-4f48-80c6-6e9e064f00a9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:42.518Z","sequence":21214,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:42.518Z","sequence":21215,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:42.524Z","sequence":21216,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-211bc897-358e-47e1-84c3-e09e6179cdc2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:47.437Z","sequence":21217,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:47.438Z","sequence":21218,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B83] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:47.444Z","sequence":21219,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:47.445Z","sequence":21220,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:47.452Z","sequence":21221,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8a56e47a-65b7-4612-99a1-9048ec63b5f2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:53.967Z","sequence":21222,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/conditionall:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:53.967Z","sequence":21223,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: conditionall, device-id: 70B3D57BB1000226] for gateway [0008004B512D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:53.979Z","sequence":21224,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_conditionall\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:53.979Z","sequence":21225,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_conditionall\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:53.982Z","sequence":21226,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-64e70ba2-fc53-4f91-ae99-5aa410c9b616, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55Z","sequence":21227,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client's [mqtt-adapter@HONO] access token has expired, closing connection","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.001Z","sequence":21228,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client's [command-router@HONO] access token has expired, closing connection","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.002Z","sequence":21229,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client's [lora-adapter@HONO] access token has expired, closing connection","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.002Z","sequence":21230,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client's [lora-adapter@HONO] access token has expired, closing connection","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.003Z","sequence":21231,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client's [lora-adapter@HONO] access token has expired, closing connection","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.003Z","sequence":21232,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client's [mqtt-adapter@HONO] access token has expired, closing connection","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.004Z","sequence":21233,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client's [command-router@HONO] access token has expired, closing connection","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.158Z","sequence":21234,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"initializing SASL authenticator","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.158Z","sequence":21235,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client provided an empty list of SASL mechanisms [hostname: null, state: PN_SASL_IDLE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.159Z","sequence":21236,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"initializing SASL authenticator","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.159Z","sequence":21237,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client provided an empty list of SASL mechanisms [hostname: null, state: PN_SASL_IDLE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.16Z","sequence":21238,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"initializing SASL authenticator","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.16Z","sequence":21239,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client provided an empty list of SASL mechanisms [hostname: null, state: PN_SASL_IDLE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.207Z","sequence":21240,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client wants to authenticate using SASL [mechanism: PLAIN, host: null, state: PN_SASL_STEP]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.207Z","sequence":21241,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client wants to authenticate using SASL [mechanism: PLAIN, host: null, state: PN_SASL_STEP]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.207Z","sequence":21242,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client wants to authenticate using SASL [mechanism: PLAIN, host: null, state: PN_SASL_STEP]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.207Z","sequence":21243,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"received authentication request [mechanism: PLAIN]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"93acf70781be0604","traceId":"d3555554b0aeb2d2f0788f52d34b6eba","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.208Z","sequence":21244,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"processing PLAIN authentication request [authzid: , authcid: mqtt-adapter@HONO, pwd: *****]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"93acf70781be0604","traceId":"d3555554b0aeb2d2f0788f52d34b6eba","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.208Z","sequence":21245,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"OpenSSL [available: false, supports KeyManagerFactory: false]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"93acf70781be0604","traceId":"d3555554b0aeb2d2f0788f52d34b6eba","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.208Z","sequence":21246,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"initializing SASL authenticator","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.208Z","sequence":21247,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"using JVM's default SSL engine","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"93acf70781be0604","traceId":"d3555554b0aeb2d2f0788f52d34b6eba","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.208Z","sequence":21248,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client provided an empty list of SASL mechanisms [hostname: null, state: PN_SASL_IDLE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.209Z","sequence":21249,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"93acf70781be0604","traceId":"d3555554b0aeb2d2f0788f52d34b6eba","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.209Z","sequence":21250,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"93acf70781be0604","traceId":"d3555554b0aeb2d2f0788f52d34b6eba","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.209Z","sequence":21251,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connecting to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"93acf70781be0604","traceId":"d3555554b0aeb2d2f0788f52d34b6eba","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.21Z","sequence":21252,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"initializing SASL authenticator","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.21Z","sequence":21253,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client provided an empty list of SASL mechanisms [hostname: null, state: PN_SASL_IDLE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.211Z","sequence":21254,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"initializing SASL authenticator","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.211Z","sequence":21255,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client provided an empty list of SASL mechanisms [hostname: null, state: PN_SASL_IDLE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.214Z","sequence":21256,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"initializing SASL authenticator","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.214Z","sequence":21257,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client provided an empty list of SASL mechanisms [hostname: null, state: PN_SASL_IDLE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.214Z","sequence":21258,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"received authentication request [mechanism: PLAIN]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ddecf376042f191f","traceId":"01e30cb4cf3826bd56979b9ff3521fab","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.215Z","sequence":21259,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"processing PLAIN authentication request [authzid: , authcid: command-router@HONO, pwd: *****]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ddecf376042f191f","traceId":"01e30cb4cf3826bd56979b9ff3521fab","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.215Z","sequence":21260,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client wants to authenticate using SASL [mechanism: PLAIN, host: null, state: PN_SASL_STEP]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.215Z","sequence":21261,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"OpenSSL [available: false, supports KeyManagerFactory: false]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ddecf376042f191f","traceId":"01e30cb4cf3826bd56979b9ff3521fab","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.215Z","sequence":21262,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"using JVM's default SSL engine","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ddecf376042f191f","traceId":"01e30cb4cf3826bd56979b9ff3521fab","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.215Z","sequence":21263,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client wants to authenticate using SASL [mechanism: PLAIN, host: null, state: PN_SASL_STEP]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.215Z","sequence":21264,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ddecf376042f191f","traceId":"01e30cb4cf3826bd56979b9ff3521fab","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.215Z","sequence":21265,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ddecf376042f191f","traceId":"01e30cb4cf3826bd56979b9ff3521fab","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.216Z","sequence":21266,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client wants to authenticate using SASL [mechanism: PLAIN, host: null, state: PN_SASL_STEP]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.216Z","sequence":21267,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connecting to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ddecf376042f191f","traceId":"01e30cb4cf3826bd56979b9ff3521fab","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.216Z","sequence":21268,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client wants to authenticate using SASL [mechanism: PLAIN, host: null, state: PN_SASL_STEP]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.216Z","sequence":21269,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"received authentication request [mechanism: PLAIN]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2e8461697589520a","traceId":"67b3ec3022c9b759ea01ae4742c83e95","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.216Z","sequence":21270,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"processing PLAIN authentication request [authzid: , authcid: mqtt-adapter@HONO, pwd: *****]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2e8461697589520a","traceId":"67b3ec3022c9b759ea01ae4742c83e95","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.216Z","sequence":21271,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"OpenSSL [available: false, supports KeyManagerFactory: false]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2e8461697589520a","traceId":"67b3ec3022c9b759ea01ae4742c83e95","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.216Z","sequence":21272,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"using JVM's default SSL engine","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2e8461697589520a","traceId":"67b3ec3022c9b759ea01ae4742c83e95","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.216Z","sequence":21273,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2e8461697589520a","traceId":"67b3ec3022c9b759ea01ae4742c83e95","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.216Z","sequence":21274,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2e8461697589520a","traceId":"67b3ec3022c9b759ea01ae4742c83e95","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.216Z","sequence":21275,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connecting to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2e8461697589520a","traceId":"67b3ec3022c9b759ea01ae4742c83e95","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.217Z","sequence":21276,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"received authentication request [mechanism: PLAIN]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1e76a62027fb8e58","traceId":"9eb5720c4ad230d29be430e562cfa708","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.217Z","sequence":21277,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"processing PLAIN authentication request [authzid: , authcid: command-router@HONO, pwd: *****]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1e76a62027fb8e58","traceId":"9eb5720c4ad230d29be430e562cfa708","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.217Z","sequence":21278,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"OpenSSL [available: false, supports KeyManagerFactory: false]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1e76a62027fb8e58","traceId":"9eb5720c4ad230d29be430e562cfa708","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.217Z","sequence":21279,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"using JVM's default SSL engine","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1e76a62027fb8e58","traceId":"9eb5720c4ad230d29be430e562cfa708","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.217Z","sequence":21280,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1e76a62027fb8e58","traceId":"9eb5720c4ad230d29be430e562cfa708","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.217Z","sequence":21281,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1e76a62027fb8e58","traceId":"9eb5720c4ad230d29be430e562cfa708","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.217Z","sequence":21282,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connecting to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1e76a62027fb8e58","traceId":"9eb5720c4ad230d29be430e562cfa708","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.217Z","sequence":21283,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"received authentication request [mechanism: PLAIN]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"83c9efb81393c10b","traceId":"26ccb32a246a18d0beb18322f687f935","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.217Z","sequence":21284,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"processing PLAIN authentication request [authzid: , authcid: lora-adapter@HONO, pwd: *****]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"83c9efb81393c10b","traceId":"26ccb32a246a18d0beb18322f687f935","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.217Z","sequence":21285,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"OpenSSL [available: false, supports KeyManagerFactory: false]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"83c9efb81393c10b","traceId":"26ccb32a246a18d0beb18322f687f935","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.217Z","sequence":21286,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"using JVM's default SSL engine","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"83c9efb81393c10b","traceId":"26ccb32a246a18d0beb18322f687f935","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.217Z","sequence":21287,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"83c9efb81393c10b","traceId":"26ccb32a246a18d0beb18322f687f935","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.217Z","sequence":21288,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"83c9efb81393c10b","traceId":"26ccb32a246a18d0beb18322f687f935","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.217Z","sequence":21289,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connecting to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"83c9efb81393c10b","traceId":"26ccb32a246a18d0beb18322f687f935","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.217Z","sequence":21290,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"received authentication request [mechanism: PLAIN]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9eccf71f56289762","traceId":"6dc6606892b8053b67d6d56c127a6695","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.217Z","sequence":21291,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"processing PLAIN authentication request [authzid: , authcid: lora-adapter@HONO, pwd: *****]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9eccf71f56289762","traceId":"6dc6606892b8053b67d6d56c127a6695","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.217Z","sequence":21292,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"OpenSSL [available: false, supports KeyManagerFactory: false]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9eccf71f56289762","traceId":"6dc6606892b8053b67d6d56c127a6695","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.217Z","sequence":21293,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"using JVM's default SSL engine","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9eccf71f56289762","traceId":"6dc6606892b8053b67d6d56c127a6695","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.217Z","sequence":21294,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9eccf71f56289762","traceId":"6dc6606892b8053b67d6d56c127a6695","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.217Z","sequence":21295,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9eccf71f56289762","traceId":"6dc6606892b8053b67d6d56c127a6695","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.217Z","sequence":21296,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connecting to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9eccf71f56289762","traceId":"6dc6606892b8053b67d6d56c127a6695","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.217Z","sequence":21297,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"received authentication request [mechanism: PLAIN]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d53f389e05b0f263","traceId":"559e30ee900331fcb71d96e166cb53ec","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.217Z","sequence":21298,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"processing PLAIN authentication request [authzid: , authcid: lora-adapter@HONO, pwd: *****]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d53f389e05b0f263","traceId":"559e30ee900331fcb71d96e166cb53ec","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.217Z","sequence":21299,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"OpenSSL [available: false, supports KeyManagerFactory: false]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d53f389e05b0f263","traceId":"559e30ee900331fcb71d96e166cb53ec","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.218Z","sequence":21300,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"using JVM's default SSL engine","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d53f389e05b0f263","traceId":"559e30ee900331fcb71d96e166cb53ec","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.218Z","sequence":21301,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d53f389e05b0f263","traceId":"559e30ee900331fcb71d96e166cb53ec","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.218Z","sequence":21302,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d53f389e05b0f263","traceId":"559e30ee900331fcb71d96e166cb53ec","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.218Z","sequence":21303,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connecting to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d53f389e05b0f263","traceId":"559e30ee900331fcb71d96e166cb53ec","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.634Z","sequence":21304,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connected to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server], opening connection ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1e76a62027fb8e58","traceId":"9eb5720c4ad230d29be430e562cfa708","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.636Z","sequence":21305,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connection to container [hono-auth-0.0.0.0:5671] at [amqps://aloxy-hono-service-auth:5671, role: Authentication Server] open","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1e76a62027fb8e58","traceId":"9eb5720c4ad230d29be430e562cfa708","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.638Z","sequence":21306,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"opened receiver link to Authentication service, waiting for token ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1e76a62027fb8e58","traceId":"9eb5720c4ad230d29be430e562cfa708","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.638Z","sequence":21307,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"successfully retrieved token from Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1e76a62027fb8e58","traceId":"9eb5720c4ad230d29be430e562cfa708","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.638Z","sequence":21308,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"closing connection to Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1e76a62027fb8e58","traceId":"9eb5720c4ad230d29be430e562cfa708","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.638Z","sequence":21309,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.EventBusAuthenticationService","level":"DEBUG","message":"received token [length: 696] in response to authentication request","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.639Z","sequence":21310,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.JjwtBasedAuthTokenValidator","level":"DEBUG","message":"using key [id: 984e3639028b1e7d0b7d97f8f3de6a82638af0ed7d06ce7d9e038a1c4c634169] to validate signature (alg: RS256]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.639Z","sequence":21311,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"authentication of client [authorization ID: command-router@HONO] succeeded","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.64Z","sequence":21312,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"finishing SASL handshake with outcome PN_SASL_OK","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.64Z","sequence":21313,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"received connection request from client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.642Z","sequence":21314,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"processing open frame from client container [Hono service-command-router-Tenant-8c258f6d-8b57-47cf-8f84-a38d9786fed2]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.642Z","sequence":21315,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"INFO","message":"client connected [container: Hono service-command-router-Tenant-8c258f6d-8b57-47cf-8f84-a38d9786fed2, user: command-router@HONO, token valid until: 2023-07-25T05:01:55Z]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.644Z","sequence":21316,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"opening new session with client [container: Hono service-command-router-Tenant-8c258f6d-8b57-47cf-8f84-a38d9786fed2]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.65Z","sequence":21317,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connected to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server], opening connection ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9eccf71f56289762","traceId":"6dc6606892b8053b67d6d56c127a6695","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.651Z","sequence":21318,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connection to container [hono-auth-0.0.0.0:5671] at [amqps://aloxy-hono-service-auth:5671, role: Authentication Server] open","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9eccf71f56289762","traceId":"6dc6606892b8053b67d6d56c127a6695","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.653Z","sequence":21319,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"opened receiver link to Authentication service, waiting for token ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9eccf71f56289762","traceId":"6dc6606892b8053b67d6d56c127a6695","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.653Z","sequence":21320,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"successfully retrieved token from Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9eccf71f56289762","traceId":"6dc6606892b8053b67d6d56c127a6695","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.654Z","sequence":21321,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"closing connection to Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9eccf71f56289762","traceId":"6dc6606892b8053b67d6d56c127a6695","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.654Z","sequence":21322,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.EventBusAuthenticationService","level":"DEBUG","message":"received token [length: 969] in response to authentication request","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.654Z","sequence":21323,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.JjwtBasedAuthTokenValidator","level":"DEBUG","message":"using key [id: 984e3639028b1e7d0b7d97f8f3de6a82638af0ed7d06ce7d9e038a1c4c634169] to validate signature (alg: RS256]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.655Z","sequence":21324,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"authentication of client [authorization ID: lora-adapter@HONO] succeeded","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.655Z","sequence":21325,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"finishing SASL handshake with outcome PN_SASL_OK","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.655Z","sequence":21326,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"received connection request from client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.657Z","sequence":21327,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"processing open frame from client container [Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.657Z","sequence":21328,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"INFO","message":"client connected [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6, user: lora-adapter@HONO, token valid until: 2023-07-25T05:01:55Z]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.659Z","sequence":21329,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"opening new session with client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.672Z","sequence":21330,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connected to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server], opening connection ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ddecf376042f191f","traceId":"01e30cb4cf3826bd56979b9ff3521fab","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.674Z","sequence":21331,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connection to container [hono-auth-0.0.0.0:5671] at [amqps://aloxy-hono-service-auth:5671, role: Authentication Server] open","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ddecf376042f191f","traceId":"01e30cb4cf3826bd56979b9ff3521fab","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.676Z","sequence":21332,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"opened receiver link to Authentication service, waiting for token ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ddecf376042f191f","traceId":"01e30cb4cf3826bd56979b9ff3521fab","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.677Z","sequence":21333,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"successfully retrieved token from Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ddecf376042f191f","traceId":"01e30cb4cf3826bd56979b9ff3521fab","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.677Z","sequence":21334,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"closing connection to Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ddecf376042f191f","traceId":"01e30cb4cf3826bd56979b9ff3521fab","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.677Z","sequence":21335,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.EventBusAuthenticationService","level":"DEBUG","message":"received token [length: 696] in response to authentication request","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.677Z","sequence":21336,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.JjwtBasedAuthTokenValidator","level":"DEBUG","message":"using key [id: 984e3639028b1e7d0b7d97f8f3de6a82638af0ed7d06ce7d9e038a1c4c634169] to validate signature (alg: RS256]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.678Z","sequence":21337,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"authentication of client [authorization ID: command-router@HONO] succeeded","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.678Z","sequence":21338,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"finishing SASL handshake with outcome PN_SASL_OK","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.678Z","sequence":21339,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"received connection request from client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.68Z","sequence":21340,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"processing open frame from client container [Hono service-command-router-Device Registration-6b43a4ef-0980-4edd-b8fb-ab7a8b085811]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.68Z","sequence":21341,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"INFO","message":"client connected [container: Hono service-command-router-Device Registration-6b43a4ef-0980-4edd-b8fb-ab7a8b085811, user: command-router@HONO, token valid until: 2023-07-25T05:01:55Z]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.682Z","sequence":21342,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"opening new session with client [container: Hono service-command-router-Device Registration-6b43a4ef-0980-4edd-b8fb-ab7a8b085811]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.684Z","sequence":21343,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connected to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server], opening connection ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"93acf70781be0604","traceId":"d3555554b0aeb2d2f0788f52d34b6eba","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.686Z","sequence":21344,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connection to container [hono-auth-0.0.0.0:5671] at [amqps://aloxy-hono-service-auth:5671, role: Authentication Server] open","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"93acf70781be0604","traceId":"d3555554b0aeb2d2f0788f52d34b6eba","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.688Z","sequence":21345,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"opened receiver link to Authentication service, waiting for token ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"93acf70781be0604","traceId":"d3555554b0aeb2d2f0788f52d34b6eba","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.689Z","sequence":21346,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"successfully retrieved token from Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"93acf70781be0604","traceId":"d3555554b0aeb2d2f0788f52d34b6eba","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.689Z","sequence":21347,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"closing connection to Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"93acf70781be0604","traceId":"d3555554b0aeb2d2f0788f52d34b6eba","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.689Z","sequence":21348,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.EventBusAuthenticationService","level":"DEBUG","message":"received token [length: 969] in response to authentication request","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.69Z","sequence":21349,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.JjwtBasedAuthTokenValidator","level":"DEBUG","message":"using key [id: 984e3639028b1e7d0b7d97f8f3de6a82638af0ed7d06ce7d9e038a1c4c634169] to validate signature (alg: RS256]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.69Z","sequence":21350,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"authentication of client [authorization ID: mqtt-adapter@HONO] succeeded","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.69Z","sequence":21351,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"finishing SASL handshake with outcome PN_SASL_OK","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.691Z","sequence":21352,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"received connection request from client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.693Z","sequence":21353,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"processing open frame from client container [Hono adapter-mqtt-Tenant-ded758d0-b7cf-4d65-a210-6d11fa222d32]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.693Z","sequence":21354,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"INFO","message":"client connected [container: Hono adapter-mqtt-Tenant-ded758d0-b7cf-4d65-a210-6d11fa222d32, user: mqtt-adapter@HONO, token valid until: 2023-07-25T05:01:55Z]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.695Z","sequence":21355,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"opening new session with client [container: Hono adapter-mqtt-Tenant-ded758d0-b7cf-4d65-a210-6d11fa222d32]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.7Z","sequence":21356,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connected to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server], opening connection ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2e8461697589520a","traceId":"67b3ec3022c9b759ea01ae4742c83e95","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.702Z","sequence":21357,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connection to container [hono-auth-0.0.0.0:5671] at [amqps://aloxy-hono-service-auth:5671, role: Authentication Server] open","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2e8461697589520a","traceId":"67b3ec3022c9b759ea01ae4742c83e95","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.704Z","sequence":21358,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"opened receiver link to Authentication service, waiting for token ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2e8461697589520a","traceId":"67b3ec3022c9b759ea01ae4742c83e95","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.705Z","sequence":21359,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"successfully retrieved token from Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2e8461697589520a","traceId":"67b3ec3022c9b759ea01ae4742c83e95","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.705Z","sequence":21360,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"closing connection to Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2e8461697589520a","traceId":"67b3ec3022c9b759ea01ae4742c83e95","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.705Z","sequence":21361,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.EventBusAuthenticationService","level":"DEBUG","message":"received token [length: 969] in response to authentication request","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.705Z","sequence":21362,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.JjwtBasedAuthTokenValidator","level":"DEBUG","message":"using key [id: 984e3639028b1e7d0b7d97f8f3de6a82638af0ed7d06ce7d9e038a1c4c634169] to validate signature (alg: RS256]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.706Z","sequence":21363,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"authentication of client [authorization ID: mqtt-adapter@HONO] succeeded","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.706Z","sequence":21364,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"finishing SASL handshake with outcome PN_SASL_OK","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.706Z","sequence":21365,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"received connection request from client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.708Z","sequence":21366,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"processing open frame from client container [Hono adapter-mqtt-Credentials-75faa79c-12c0-45f2-bd9c-973655a3937c]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.708Z","sequence":21367,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"INFO","message":"client connected [container: Hono adapter-mqtt-Credentials-75faa79c-12c0-45f2-bd9c-973655a3937c, user: mqtt-adapter@HONO, token valid until: 2023-07-25T05:01:55Z]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.71Z","sequence":21368,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"opening new session with client [container: Hono adapter-mqtt-Credentials-75faa79c-12c0-45f2-bd9c-973655a3937c]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.716Z","sequence":21369,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connected to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server], opening connection ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d53f389e05b0f263","traceId":"559e30ee900331fcb71d96e166cb53ec","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.718Z","sequence":21370,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connection to container [hono-auth-0.0.0.0:5671] at [amqps://aloxy-hono-service-auth:5671, role: Authentication Server] open","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d53f389e05b0f263","traceId":"559e30ee900331fcb71d96e166cb53ec","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.721Z","sequence":21371,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"opened receiver link to Authentication service, waiting for token ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d53f389e05b0f263","traceId":"559e30ee900331fcb71d96e166cb53ec","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.721Z","sequence":21372,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"successfully retrieved token from Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d53f389e05b0f263","traceId":"559e30ee900331fcb71d96e166cb53ec","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.721Z","sequence":21373,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"closing connection to Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d53f389e05b0f263","traceId":"559e30ee900331fcb71d96e166cb53ec","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.722Z","sequence":21374,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.EventBusAuthenticationService","level":"DEBUG","message":"received token [length: 969] in response to authentication request","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.722Z","sequence":21375,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.JjwtBasedAuthTokenValidator","level":"DEBUG","message":"using key [id: 984e3639028b1e7d0b7d97f8f3de6a82638af0ed7d06ce7d9e038a1c4c634169] to validate signature (alg: RS256]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.723Z","sequence":21376,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"authentication of client [authorization ID: lora-adapter@HONO] succeeded","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.723Z","sequence":21377,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"finishing SASL handshake with outcome PN_SASL_OK","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.723Z","sequence":21378,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"received connection request from client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.726Z","sequence":21379,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"processing open frame from client container [Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.726Z","sequence":21380,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"INFO","message":"client connected [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d, user: lora-adapter@HONO, token valid until: 2023-07-25T05:01:55Z]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.749Z","sequence":21381,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connected to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server], opening connection ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"83c9efb81393c10b","traceId":"26ccb32a246a18d0beb18322f687f935","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.751Z","sequence":21382,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connection to container [hono-auth-0.0.0.0:5671] at [amqps://aloxy-hono-service-auth:5671, role: Authentication Server] open","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"83c9efb81393c10b","traceId":"26ccb32a246a18d0beb18322f687f935","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.751Z","sequence":21383,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"opening new session with client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.756Z","sequence":21384,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"opened receiver link to Authentication service, waiting for token ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"83c9efb81393c10b","traceId":"26ccb32a246a18d0beb18322f687f935","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.756Z","sequence":21385,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"successfully retrieved token from Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"83c9efb81393c10b","traceId":"26ccb32a246a18d0beb18322f687f935","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.756Z","sequence":21386,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"closing connection to Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"83c9efb81393c10b","traceId":"26ccb32a246a18d0beb18322f687f935","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.756Z","sequence":21387,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.EventBusAuthenticationService","level":"DEBUG","message":"received token [length: 969] in response to authentication request","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.757Z","sequence":21388,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.JjwtBasedAuthTokenValidator","level":"DEBUG","message":"using key [id: 984e3639028b1e7d0b7d97f8f3de6a82638af0ed7d06ce7d9e038a1c4c634169] to validate signature (alg: RS256]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.758Z","sequence":21389,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"authentication of client [authorization ID: lora-adapter@HONO] succeeded","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.758Z","sequence":21390,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"finishing SASL handshake with outcome PN_SASL_OK","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.758Z","sequence":21391,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"received connection request from client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.76Z","sequence":21392,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"processing open frame from client container [Hono adapter-lora-Tenant-995cc45f-23b2-488f-a5d9-0b18c4ae6c62]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.761Z","sequence":21393,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"INFO","message":"client connected [container: Hono adapter-lora-Tenant-995cc45f-23b2-488f-a5d9-0b18c4ae6c62, user: lora-adapter@HONO, token valid until: 2023-07-25T05:01:55Z]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:55.763Z","sequence":21394,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"opening new session with client [container: Hono adapter-lora-Tenant-995cc45f-23b2-488f-a5d9-0b18c4ae6c62]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:58.705Z","sequence":21395,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] wants to open a link [address: Source{address='registration/shell/17bfc625-fbad-4b6f-a97f-6f13ca59ec7d', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:58.706Z","sequence":21396,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-0]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:58.706Z","sequence":21397,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@4b0eed6a] for replies to [registration/shell/17bfc625-fbad-4b6f-a97f-6f13ca59ec7d]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:58.708Z","sequence":21398,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] wants to open a link [address: Target{address='registration/shell', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:58.708Z","sequence":21399,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-1]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:58.708Z","sequence":21400,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:58.71Z","sequence":21401,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:58.71Z","sequence":21402,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A78] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:58.716Z","sequence":21403,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:58.716Z","sequence":21404,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:01:58.722Z","sequence":21405,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-bf2d9307-4eea-4cb1-b723-797fd342fc0e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:02.149Z","sequence":21406,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:02.149Z","sequence":21407,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001E1] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:02.161Z","sequence":21408,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:02.161Z","sequence":21409,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:02.169Z","sequence":21410,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c6b4f119-c381-44b4-af15-c42f8b9455ff, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:02.251Z","sequence":21411,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:02.251Z","sequence":21412,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001E1] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:02.256Z","sequence":21413,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:02.256Z","sequence":21414,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:02.265Z","sequence":21415,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1aae01df-6976-40db-a988-41cc2ee19b55, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:04.954Z","sequence":21416,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Tenant-995cc45f-23b2-488f-a5d9-0b18c4ae6c62] wants to open a link [address: Source{address='tenant/1a0fcc78-d793-4b91-b009-b8e1e8928de0', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:04.954Z","sequence":21417,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-0]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:04.955Z","sequence":21418,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@412fd361] for replies to [tenant/1a0fcc78-d793-4b91-b009-b8e1e8928de0]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:04.956Z","sequence":21419,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Tenant-995cc45f-23b2-488f-a5d9-0b18c4ae6c62] wants to open a link [address: Target{address='tenant', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:04.957Z","sequence":21420,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-1]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:04.957Z","sequence":21421,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:04.959Z","sequence":21422,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:04.959Z","sequence":21423,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: chevron]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:04.962Z","sequence":21424,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-a9fb39b9-e66b-4479-a855-fd05cc3bab85, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:04.966Z","sequence":21425,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Source{address='credentials/chevron/39171933-e8e3-4090-80fc-2b1cc0a77a4a', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:04.966Z","sequence":21426,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-0]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:04.966Z","sequence":21427,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@750e90c0] for replies to [credentials/chevron/39171933-e8e3-4090-80fc-2b1cc0a77a4a]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:04.968Z","sequence":21428,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Target{address='credentials/chevron', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:04.969Z","sequence":21429,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-1]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:04.969Z","sequence":21430,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:04.971Z","sequence":21431,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/chevron:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:04.971Z","sequence":21432,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: chevron, type: hashed-password, auth-id: auth-CHEVRON-ORBIWISE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:04.983Z","sequence":21433,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-786beba0-1527-4fab-94a5-5a98c32f7f73, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:05.102Z","sequence":21434,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] wants to open a link [address: Source{address='registration/chevron/9491e00f-663a-4dce-b208-d628eb7484d7', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:05.102Z","sequence":21435,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-2]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:05.102Z","sequence":21436,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@55ce443c] for replies to [registration/chevron/9491e00f-663a-4dce-b208-d628eb7484d7]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:05.104Z","sequence":21437,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] wants to open a link [address: Target{address='registration/chevron', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:05.105Z","sequence":21438,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:05.105Z","sequence":21439,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:05.107Z","sequence":21440,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/chevron:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:05.107Z","sequence":21441,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: chevron, device-id: 70B3D57BB100025B] for gateway [CHEVRON-ORBIWISE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:05.108Z","sequence":21442,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/chevron:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:05.108Z","sequence":21443,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: chevron, device-id: CHEVRON-ORBIWISE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:05.114Z","sequence":21444,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0b41a67e-c4ea-4f47-a7cc-faff5575d99e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:05.114Z","sequence":21445,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_chevron\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:05.115Z","sequence":21446,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_chevron\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:05.118Z","sequence":21447,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d601a3fb-e6e0-4351-b8c0-f994d21db998, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:11.072Z","sequence":21448,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] wants to open a link [address: Source{address='registration/terega/41813f51-b0f7-44fb-9d2f-5397059bd996', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:11.072Z","sequence":21449,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:11.073Z","sequence":21450,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@1b8522b6] for replies to [registration/terega/41813f51-b0f7-44fb-9d2f-5397059bd996]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:11.075Z","sequence":21451,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] wants to open a link [address: Target{address='registration/terega', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:11.075Z","sequence":21452,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-5]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:11.075Z","sequence":21453,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:11.078Z","sequence":21454,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/terega:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:11.078Z","sequence":21455,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: terega, device-id: 70B3D57BB1000091] for gateway [gateway_terega_network_27]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:11.078Z","sequence":21456,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/terega:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:11.079Z","sequence":21457,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: terega, device-id: gateway_terega_network_27]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:11.085Z","sequence":21458,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-fee2ee16-7d38-45d1-96a5-ddd7f4197430, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:11.086Z","sequence":21459,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_terega\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:11.086Z","sequence":21460,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_terega\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:11.089Z","sequence":21461,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-bb352136-e26d-46e8-b098-6c1489bdbfb3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:13.324Z","sequence":21462,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af] wants to open a link [address: Source{address='registration/dow/34c3e9b2-136f-4d2f-8a0f-2dcabcee3579', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:13.324Z","sequence":21463,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-14]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:13.324Z","sequence":21464,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@33238828] for replies to [registration/dow/34c3e9b2-136f-4d2f-8a0f-2dcabcee3579]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:13.326Z","sequence":21465,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af] wants to open a link [address: Target{address='registration/dow', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:13.326Z","sequence":21466,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-15]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:13.326Z","sequence":21467,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:13.328Z","sequence":21468,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:13.328Z","sequence":21469,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 0008004C80F4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:13.334Z","sequence":21470,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-56fabc28-cfbb-4b54-b5c3-0be023643e3b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:14.953Z","sequence":21471,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] wants to open a link [address: Source{address='registration/flint/53b19d1c-f0ff-41d8-b742-a187f3232f57', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:14.953Z","sequence":21472,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-6]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:14.953Z","sequence":21473,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@4e25a499] for replies to [registration/flint/53b19d1c-f0ff-41d8-b742-a187f3232f57]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:14.956Z","sequence":21474,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] wants to open a link [address: Target{address='registration/flint', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:14.956Z","sequence":21475,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-7]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:14.956Z","sequence":21476,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:14.96Z","sequence":21477,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:14.96Z","sequence":21478,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10007D3] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:14.96Z","sequence":21479,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:14.96Z","sequence":21480,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:14.976Z","sequence":21481,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c7535157-039b-407e-874e-b682f0422215, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:14.977Z","sequence":21482,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:14.977Z","sequence":21483,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:14.987Z","sequence":21484,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-41ffb3b8-ea41-4d95-8cc2-3644cce0db9e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:19.979Z","sequence":21485,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:19.98Z","sequence":21486,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100016B] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:19.986Z","sequence":21487,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:19.986Z","sequence":21488,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:19.989Z","sequence":21489,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a4c4b806-a0f1-47d6-8bbb-78ff617e6e10, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:20.409Z","sequence":21490,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:20.409Z","sequence":21491,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100016B] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:20.414Z","sequence":21492,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:20.414Z","sequence":21493,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:20.417Z","sequence":21494,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f34fc377-8f79-4861-9539-712347a90002, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:27.984Z","sequence":21495,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:27.984Z","sequence":21496,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006A3] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:27.989Z","sequence":21497,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:27.989Z","sequence":21498,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:27.997Z","sequence":21499,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-63ab57b8-2a8c-4e81-9886-6e4ffee3dc81, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:28.175Z","sequence":21500,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af] wants to open a link [address: Source{address='registration/oiltanking/cc3d1fc1-51a0-4134-aac7-9b5cd8ef2504', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:28.175Z","sequence":21501,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-16]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:28.175Z","sequence":21502,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@fe08be5] for replies to [registration/oiltanking/cc3d1fc1-51a0-4134-aac7-9b5cd8ef2504]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:28.177Z","sequence":21503,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af] wants to open a link [address: Target{address='registration/oiltanking', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:28.177Z","sequence":21504,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-17]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:28.178Z","sequence":21505,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:28.18Z","sequence":21506,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oiltanking:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:28.18Z","sequence":21507,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oiltanking, device-id: 0008004BB60F]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:28.185Z","sequence":21508,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7f935a32-bf02-49c8-bc81-2fcffb886028, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:28.188Z","sequence":21509,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Tenant-ded758d0-b7cf-4d65-a210-6d11fa222d32] wants to open a link [address: Source{address='tenant/cb3f74b8-1006-4e19-8847-596cf84bf6da', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:28.188Z","sequence":21510,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-0]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:28.188Z","sequence":21511,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@5840f301] for replies to [tenant/cb3f74b8-1006-4e19-8847-596cf84bf6da]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:28.19Z","sequence":21512,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Tenant-ded758d0-b7cf-4d65-a210-6d11fa222d32] wants to open a link [address: Target{address='tenant', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:28.19Z","sequence":21513,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-1]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:28.191Z","sequence":21514,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:28.193Z","sequence":21515,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:28.193Z","sequence":21516,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oiltanking]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:28.197Z","sequence":21517,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-09979c97-6b2b-4e14-a2e8-4ceba41236a8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:28.627Z","sequence":21518,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:28.627Z","sequence":21519,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10009BB] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:28.632Z","sequence":21520,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:28.632Z","sequence":21521,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:28.637Z","sequence":21522,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-bfb14c94-513f-47eb-97d9-3aa2cf104d39, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:28.957Z","sequence":21523,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFFE10AE1F36F7F]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5eb50e8becf5df2c","parentId":"226d3dcfac494632","traceId":"0000000000000000c68f5b22e32806fb","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:28.978Z","sequence":21524,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFFE10AE1F36F7F]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5eb50e8becf5df2c","parentId":"226d3dcfac494632","traceId":"0000000000000000c68f5b22e32806fb","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:29.117Z","sequence":21525,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191175]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7e2c8cd62e288f97","parentId":"b0663986036a2c2a","traceId":"000000000000000019e12a715e464f94","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:29.138Z","sequence":21526,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191175]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7e2c8cd62e288f97","parentId":"b0663986036a2c2a","traceId":"000000000000000019e12a715e464f94","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:29.289Z","sequence":21527,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191177]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5ff20b9ffeee3d13","parentId":"8bcdf5eb70bbfcb3","traceId":"000000000000000040e37f2235460f5d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:29.306Z","sequence":21528,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191177, resource-version: d131e025-31ab-4568-b165-91ae537350dd]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5ff20b9ffeee3d13","parentId":"8bcdf5eb70bbfcb3","traceId":"000000000000000040e37f2235460f5d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:29.312Z","sequence":21529,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191177, resource-version: 9f424619-70bc-45b1-a6ba-4dd4c563626a]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5ff20b9ffeee3d13","parentId":"8bcdf5eb70bbfcb3","traceId":"000000000000000040e37f2235460f5d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:29.315Z","sequence":21530,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191177]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a17781c9c6cc1db0","parentId":"653494da8a28d4db","traceId":"000000000000000040e37f2235460f5d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:29.429Z","sequence":21531,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191177]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a17781c9c6cc1db0","parentId":"653494da8a28d4db","traceId":"000000000000000040e37f2235460f5d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:29.898Z","sequence":21532,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFFC8DD9E0DAE31]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"67690af236ebe768","parentId":"86e2bcf000142ff6","traceId":"00000000000000008e96f706e8ee4dc6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:29.917Z","sequence":21533,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFFC8DD9E0DAE31, resource-version: 7b425e81-5062-4a44-ac50-8100863617f7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"67690af236ebe768","parentId":"86e2bcf000142ff6","traceId":"00000000000000008e96f706e8ee4dc6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:29.924Z","sequence":21534,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFFC8DD9E0DAE31, resource-version: 9173987e-f2ba-499d-8467-58b0a26fcda4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"67690af236ebe768","parentId":"86e2bcf000142ff6","traceId":"00000000000000008e96f706e8ee4dc6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:31.02Z","sequence":21535,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:31.02Z","sequence":21536,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:31.026Z","sequence":21537,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-226cf944-7d52-4e4d-8edb-7f3f30c4b583, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:31.028Z","sequence":21538,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Source{address='credentials/integrationtest/4f562b01-34e2-4b7f-8c26-0fb3a6d66bd8', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:31.029Z","sequence":21539,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-2]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:31.029Z","sequence":21540,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@77c4e0a8] for replies to [credentials/integrationtest/4f562b01-34e2-4b7f-8c26-0fb3a6d66bd8]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:31.031Z","sequence":21541,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Target{address='credentials/integrationtest', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:31.031Z","sequence":21542,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:31.031Z","sequence":21543,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:31.033Z","sequence":21544,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:31.034Z","sequence":21545,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191177]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:31.044Z","sequence":21546,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-0c5b03d4-62f6-474e-b1d7-a93e8a39761f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:31.172Z","sequence":21547,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] wants to open a link [address: Source{address='registration/integrationtest/341269e9-2bcd-40f9-bf42-d6b931cf508b', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:31.172Z","sequence":21548,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-8]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:31.172Z","sequence":21549,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@4397df98] for replies to [registration/integrationtest/341269e9-2bcd-40f9-bf42-d6b931cf508b]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:31.174Z","sequence":21550,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] wants to open a link [address: Target{address='registration/integrationtest', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:31.174Z","sequence":21551,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-9]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:31.175Z","sequence":21552,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:31.177Z","sequence":21553,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:31.177Z","sequence":21554,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFFC8DD9E0DAE31] for gateway [gateway_integrationtest_network_191177]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:31.178Z","sequence":21555,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:31.178Z","sequence":21556,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191177]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:31.184Z","sequence":21557,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:31.184Z","sequence":21558,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:31.184Z","sequence":21559,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-24a45c67-34de-49bd-bbb8-688046ba90b6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:31.359Z","sequence":21560,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-308d2129-276b-44d3-b22f-a037303257ca, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:41.733Z","sequence":21561,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFFC8DD9E0DAE31]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1866c661442b186e","parentId":"f1f1e2f06bdb6c2a","traceId":"0000000000000000e93a9a4a98693c5e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:41.754Z","sequence":21562,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFFC8DD9E0DAE31]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1866c661442b186e","parentId":"f1f1e2f06bdb6c2a","traceId":"0000000000000000e93a9a4a98693c5e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:41.906Z","sequence":21563,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191177]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f01aec68aba1c278","parentId":"8e5ca3db5f82601c","traceId":"000000000000000006f683d6dccd5fd1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:41.922Z","sequence":21564,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191177]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f01aec68aba1c278","parentId":"8e5ca3db5f82601c","traceId":"000000000000000006f683d6dccd5fd1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:42.398Z","sequence":21565,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: A7723BC6531C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c98c0aa3774dca7d","parentId":"464cbd3fb79494b9","traceId":"0000000000000000f43d8f68c4139c04","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:42.415Z","sequence":21566,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: A7723BC6531C, resource-version: d724c5af-dcbb-481f-b6b4-ea2a1d0f10fd]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c98c0aa3774dca7d","parentId":"464cbd3fb79494b9","traceId":"0000000000000000f43d8f68c4139c04","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:42.422Z","sequence":21567,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: A7723BC6531C, resource-version: 82da5ca9-238a-4dd8-b478-730a24c6e66b]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c98c0aa3774dca7d","parentId":"464cbd3fb79494b9","traceId":"0000000000000000f43d8f68c4139c04","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:42.426Z","sequence":21568,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: A7723BC6531C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b18c543561780fef","parentId":"72b66e3010dce288","traceId":"0000000000000000f43d8f68c4139c04","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:42.562Z","sequence":21569,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: A7723BC6531C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b18c543561780fef","parentId":"72b66e3010dce288","traceId":"0000000000000000f43d8f68c4139c04","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:43.063Z","sequence":21570,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFE0F5770E097DA]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e167ab28f3e9b097","parentId":"5e4cf8afe04efe2e","traceId":"0000000000000000d145d80858493ff6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:43.08Z","sequence":21571,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFE0F5770E097DA, resource-version: 39490e23-0b64-49dc-a880-469268d4d1d4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e167ab28f3e9b097","parentId":"5e4cf8afe04efe2e","traceId":"0000000000000000d145d80858493ff6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:43.087Z","sequence":21572,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFE0F5770E097DA, resource-version: bbc07065-4801-4ec1-9001-2554e2e01b94]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e167ab28f3e9b097","parentId":"5e4cf8afe04efe2e","traceId":"0000000000000000d145d80858493ff6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:44.138Z","sequence":21573,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:44.144Z","sequence":21574,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:44.148Z","sequence":21575,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-1a340fba-f573-4b8d-9778-8d18266e61bf, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:44.15Z","sequence":21576,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Credentials-75faa79c-12c0-45f2-bd9c-973655a3937c] wants to open a link [address: Source{address='credentials/integrationtest/5fbcb306-146a-4540-9df5-e570bef48f80', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:44.15Z","sequence":21577,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-0]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:44.151Z","sequence":21578,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@108937ba] for replies to [credentials/integrationtest/5fbcb306-146a-4540-9df5-e570bef48f80]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:44.153Z","sequence":21579,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Credentials-75faa79c-12c0-45f2-bd9c-973655a3937c] wants to open a link [address: Target{address='credentials/integrationtest', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:44.153Z","sequence":21580,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-1]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:44.153Z","sequence":21581,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:44.156Z","sequence":21582,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:44.156Z","sequence":21583,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-A7723BC6531C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:44.166Z","sequence":21584,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-f1674035-e2ff-4235-82dd-6fe70af70ddc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:44.311Z","sequence":21585,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:44.311Z","sequence":21586,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: A7723BC6531C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:44.321Z","sequence":21587,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8bfe60fd-01bb-4702-bee0-9be69420c5f4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:44.325Z","sequence":21588,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:44.325Z","sequence":21589,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFE0F5770E097DA] for gateway [A7723BC6531C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:44.333Z","sequence":21590,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:44.333Z","sequence":21591,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:44.851Z","sequence":21592,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-42f00e4e-b010-4ef3-95af-51e8a973b89a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:44.852Z","sequence":21593,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:44.852Z","sequence":21594,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: shelldev]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:44.859Z","sequence":21595,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-3c29fc40-8b05-4695-97c0-228f95877f5a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:44.861Z","sequence":21596,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Source{address='credentials/shelldev/42ca671c-7682-46f7-9f93-6f9f136551d8', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:44.862Z","sequence":21597,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:44.862Z","sequence":21598,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@594cc059] for replies to [credentials/shelldev/42ca671c-7682-46f7-9f93-6f9f136551d8]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:44.864Z","sequence":21599,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Target{address='credentials/shelldev', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:44.864Z","sequence":21600,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-5]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:44.864Z","sequence":21601,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:44.866Z","sequence":21602,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/shelldev:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:44.866Z","sequence":21603,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: shelldev, type: hashed-password, auth-id: auth-AZUREFUNCTION-DEV]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:44.877Z","sequence":21604,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-cba40e70-8522-4397-802c-e9927cd4a3eb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:45.017Z","sequence":21605,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] wants to open a link [address: Source{address='registration/shelldev/ad6925a3-ac53-4538-8cc2-7c7b87a36d0b', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:45.017Z","sequence":21606,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:45.018Z","sequence":21607,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@3a3ad502] for replies to [registration/shelldev/ad6925a3-ac53-4538-8cc2-7c7b87a36d0b]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:45.021Z","sequence":21608,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] wants to open a link [address: Target{address='registration/shelldev', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:45.021Z","sequence":21609,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-11]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:45.021Z","sequence":21610,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:45.023Z","sequence":21611,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shelldev:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:45.024Z","sequence":21612,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shelldev, device-id: 70B3D57BB10001C9] for gateway [AZUREFUNCTION-DEV]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:45.034Z","sequence":21613,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_shelldev\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:45.037Z","sequence":21614,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_shelldev\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:45.04Z","sequence":21615,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-dac07d0c-8388-4d1d-9d04-eaee4a53727b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:45.601Z","sequence":21616,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:45.601Z","sequence":21617,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: shell]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:45.607Z","sequence":21618,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-0b32651a-7731-44d2-b439-dc51c1d6d7a5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:45.612Z","sequence":21619,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Source{address='credentials/shell/5d42bdcb-da9a-4182-be54-cf63f227ae4f', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:45.613Z","sequence":21620,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-6]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:45.613Z","sequence":21621,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@3b210a07] for replies to [credentials/shell/5d42bdcb-da9a-4182-be54-cf63f227ae4f]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:45.616Z","sequence":21622,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Target{address='credentials/shell', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:45.616Z","sequence":21623,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-7]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:45.616Z","sequence":21624,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:45.619Z","sequence":21625,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/shell:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:45.62Z","sequence":21626,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: shell, type: hashed-password, auth-id: auth-gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:45.647Z","sequence":21627,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-e4565e68-6489-4bf8-814d-38081a203cab, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:45.769Z","sequence":21628,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:45.769Z","sequence":21629,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B9F] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:45.793Z","sequence":21630,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:45.793Z","sequence":21631,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:45.802Z","sequence":21632,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3b4fc98e-329b-4f84-b191-a07a7be70269, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:46.194Z","sequence":21633,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:46.194Z","sequence":21634,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001903] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:46.205Z","sequence":21635,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:46.205Z","sequence":21636,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:46.213Z","sequence":21637,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7b9dc7bb-360c-4a03-8d9d-6e6dfb972ed7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:46.506Z","sequence":21638,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:46.506Z","sequence":21639,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000831] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:46.521Z","sequence":21640,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:46.521Z","sequence":21641,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:46.526Z","sequence":21642,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c5caaad9-0648-44d2-b42e-3497e3cb9415, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:51.17Z","sequence":21643,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:51.171Z","sequence":21644,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B5F] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:51.176Z","sequence":21645,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:51.176Z","sequence":21646,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:51.182Z","sequence":21647,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5adde137-1102-4af5-a1a7-641707be03a2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:56.658Z","sequence":21648,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFE0F5770E097DA]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5f5f22cd922baf3d","parentId":"3311af8e94212306","traceId":"0000000000000000b43239aa94210c97","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:56.677Z","sequence":21649,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFE0F5770E097DA]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5f5f22cd922baf3d","parentId":"3311af8e94212306","traceId":"0000000000000000b43239aa94210c97","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:57.005Z","sequence":21650,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: A7723BC6531C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e091dece92e1c0d4","parentId":"fe61ed96dd57f5a3","traceId":"0000000000000000b9989dd9bf24df88","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:57.027Z","sequence":21651,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: A7723BC6531C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e091dece92e1c0d4","parentId":"fe61ed96dd57f5a3","traceId":"0000000000000000b9989dd9bf24df88","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:57.838Z","sequence":21652,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 42B7E496156A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"91b9b53d30f2a0ca","parentId":"11e0e283b0e9f729","traceId":"0000000000000000ec12288acb1fef90","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:57.857Z","sequence":21653,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 42B7E496156A, resource-version: bcb8f917-c170-4ba6-ad60-dbbca37d851b]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"91b9b53d30f2a0ca","parentId":"11e0e283b0e9f729","traceId":"0000000000000000ec12288acb1fef90","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:57.869Z","sequence":21654,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 42B7E496156A, resource-version: 489e1470-cefe-4782-a49c-2163207a4438]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"91b9b53d30f2a0ca","parentId":"11e0e283b0e9f729","traceId":"0000000000000000ec12288acb1fef90","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:57.873Z","sequence":21655,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 42B7E496156A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3bc3a61a343dfe26","parentId":"9f7ecdf5e56fa671","traceId":"0000000000000000ec12288acb1fef90","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:58.024Z","sequence":21656,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 42B7E496156A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3bc3a61a343dfe26","parentId":"9f7ecdf5e56fa671","traceId":"0000000000000000ec12288acb1fef90","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:58.798Z","sequence":21657,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF7404341C50E65]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d268beaf60e60374","parentId":"603c49afe1dbf58a","traceId":"000000000000000092edfaec3f2b256d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:58.815Z","sequence":21658,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF7404341C50E65, resource-version: 3f27b0a5-c436-47ef-91e7-261718dbca4d]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d268beaf60e60374","parentId":"603c49afe1dbf58a","traceId":"000000000000000092edfaec3f2b256d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:58.822Z","sequence":21659,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF7404341C50E65, resource-version: a9d23201-f220-446e-906e-e7e997f8d1f7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d268beaf60e60374","parentId":"603c49afe1dbf58a","traceId":"000000000000000092edfaec3f2b256d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:59.69Z","sequence":21660,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:59.69Z","sequence":21661,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: ineos]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:59.695Z","sequence":21662,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-55316238-cadd-4a0e-94bc-4bd0e31d78b6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:59.698Z","sequence":21663,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:59.698Z","sequence":21664,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB1000A73] for gateway [0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:59.703Z","sequence":21665,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:59.703Z","sequence":21666,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:59.704Z","sequence":21667,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF9216B7E6A05F0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"01d38be2f8750404","parentId":"9ee5c20b995ca42d","traceId":"0000000000000000345933f36a9d78da","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:59.707Z","sequence":21668,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-50af35f4-d544-485f-b9d6-f9c1875e399d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:59.868Z","sequence":21669,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:59.868Z","sequence":21670,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-42B7E496156A]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:02:59.897Z","sequence":21671,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-1d000507-ce8d-422a-a754-2e3349f901b2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:00.017Z","sequence":21672,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:00.017Z","sequence":21673,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 42B7E496156A]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:00.027Z","sequence":21674,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-11bc43cf-6ca9-458c-97e6-dd1e9d2e4b8b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:00.033Z","sequence":21675,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:00.033Z","sequence":21676,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF7404341C50E65] for gateway [42B7E496156A]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:00.037Z","sequence":21677,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:00.038Z","sequence":21678,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:00.194Z","sequence":21679,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF9216B7E6A05F0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"01d38be2f8750404","parentId":"9ee5c20b995ca42d","traceId":"0000000000000000345933f36a9d78da","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:00.262Z","sequence":21680,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1480a6bb-3ce6-4c59-9000-fc0e8264785c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:00.509Z","sequence":21681,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191174]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b9fe97216c33f085","parentId":"451c98c7c0066bfd","traceId":"000000000000000014e4f978aaa61bd5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:00.561Z","sequence":21682,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191174]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b9fe97216c33f085","parentId":"451c98c7c0066bfd","traceId":"000000000000000014e4f978aaa61bd5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:04.587Z","sequence":21683,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF7404341C50E65]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fe31908cf755e7e1","parentId":"d50e6e735f6a5cfd","traceId":"0000000000000000e70afeae02d7c5a9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:04.625Z","sequence":21684,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF7404341C50E65]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fe31908cf755e7e1","parentId":"d50e6e735f6a5cfd","traceId":"0000000000000000e70afeae02d7c5a9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:05.105Z","sequence":21685,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 42B7E496156A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f2eba38e92b03f39","parentId":"d47f5a3cce301fc0","traceId":"00000000000000002a694f12cc7b7bf0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:05.133Z","sequence":21686,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 42B7E496156A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f2eba38e92b03f39","parentId":"d47f5a3cce301fc0","traceId":"00000000000000002a694f12cc7b7bf0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:07.786Z","sequence":21687,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af] wants to open a link [address: Source{address='registration/aloxy/bc80b964-4b6a-423d-afe7-bf450eb70cc3', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:07.786Z","sequence":21688,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-18]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:07.786Z","sequence":21689,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@4eacc4e8] for replies to [registration/aloxy/bc80b964-4b6a-423d-afe7-bf450eb70cc3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:07.788Z","sequence":21690,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af] wants to open a link [address: Target{address='registration/aloxy', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:07.788Z","sequence":21691,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-19]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:07.789Z","sequence":21692,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:07.791Z","sequence":21693,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/aloxy:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:07.791Z","sequence":21694,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: aloxy, device-id: 0008004A8F68]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:07.798Z","sequence":21695,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0b84fed5-5f7a-4381-8c16-3b2df75bec82, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:07.801Z","sequence":21696,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:07.802Z","sequence":21697,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: aloxy]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:07.804Z","sequence":21698,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-5a82d377-12b1-46a9-abe4-b5de33deeb73, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:08.067Z","sequence":21699,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:08.068Z","sequence":21700,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100069C] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:08.073Z","sequence":21701,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:08.073Z","sequence":21702,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:08.08Z","sequence":21703,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-862f9229-0f5d-4638-b94c-7cbca64d8cca, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:09.702Z","sequence":21704,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:09.702Z","sequence":21705,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000516] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:09.708Z","sequence":21706,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:09.708Z","sequence":21707,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:09.715Z","sequence":21708,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e95825ca-bacc-4559-8f13-801a34a76784, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:13.575Z","sequence":21709,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:13.576Z","sequence":21710,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001FD] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:13.583Z","sequence":21711,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:13.583Z","sequence":21712,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:13.586Z","sequence":21713,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e07dc4c2-4051-49a5-a88c-2333a6c33918, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:13.618Z","sequence":21714,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:13.618Z","sequence":21715,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001FD] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:13.623Z","sequence":21716,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:13.623Z","sequence":21717,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:13.626Z","sequence":21718,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-bd67d056-582f-41a9-a20d-d33f1e4d1268, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:21.207Z","sequence":21719,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:21.207Z","sequence":21720,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BB613]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:21.212Z","sequence":21721,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6327028b-21f4-4e18-8456-38e90073b6a4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:21.216Z","sequence":21722,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:21.216Z","sequence":21723,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: lanxess]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:21.219Z","sequence":21724,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-105348d9-8f48-416c-99ae-001a1ff1b6c4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:21.722Z","sequence":21725,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:21.723Z","sequence":21726,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: terega]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:21.728Z","sequence":21727,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-3f3ab7f2-413c-48eb-8021-e6299b5ed50a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:21.73Z","sequence":21728,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Source{address='credentials/terega/fe5fd536-f679-4bcd-b45b-822a0eb68fe4', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:21.731Z","sequence":21729,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-8]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:21.731Z","sequence":21730,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@7856ffe6] for replies to [credentials/terega/fe5fd536-f679-4bcd-b45b-822a0eb68fe4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:21.734Z","sequence":21731,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Target{address='credentials/terega', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:21.734Z","sequence":21732,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-9]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:21.734Z","sequence":21733,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:21.738Z","sequence":21734,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/terega:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:21.739Z","sequence":21735,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: terega, type: hashed-password, auth-id: auth-gateway_terega_network_27]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:21.768Z","sequence":21736,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-3488d623-2191-496c-92fa-9d3583b4239c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:21.89Z","sequence":21737,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/terega:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:21.89Z","sequence":21738,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: terega, device-id: 70B3D57BB1000DF8] for gateway [gateway_terega_network_27]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:21.896Z","sequence":21739,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_terega\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:21.896Z","sequence":21740,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_terega\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:21.899Z","sequence":21741,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-303c4bfb-2752-4d95-8fcd-d5b5261e7b6f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:24.541Z","sequence":21742,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:24.541Z","sequence":21743,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006B1] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:24.551Z","sequence":21744,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:24.551Z","sequence":21745,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:24.56Z","sequence":21746,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-19ef228a-7988-4aac-b2e8-65c5789f631c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:30.941Z","sequence":21747,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:30.941Z","sequence":21748,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AC1] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:30.946Z","sequence":21749,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:30.946Z","sequence":21750,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:30.954Z","sequence":21751,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-32240e0f-9a50-4a0c-9a80-c6d9f6549b2a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:35.182Z","sequence":21752,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:35.182Z","sequence":21753,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: indeel]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:35.186Z","sequence":21754,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-3d62b07d-671e-4713-a24d-87f1b0355e55, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:35.191Z","sequence":21755,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Source{address='credentials/indeel/925cc93a-f89f-4443-9f99-07b250e484a4', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:35.191Z","sequence":21756,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:35.191Z","sequence":21757,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@47e85f40] for replies to [credentials/indeel/925cc93a-f89f-4443-9f99-07b250e484a4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:35.193Z","sequence":21758,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Target{address='credentials/indeel', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:35.193Z","sequence":21759,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-11]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:35.193Z","sequence":21760,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:35.196Z","sequence":21761,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/indeel:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:35.196Z","sequence":21762,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: indeel, type: hashed-password, auth-id: auth-gateway_indeel_network_40884]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:35.206Z","sequence":21763,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-3f7fafce-14a9-4ab9-b5c7-f10cad503746, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:35.498Z","sequence":21764,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] wants to open a link [address: Source{address='registration/indeel/b45275a6-6e98-426d-a30d-516e66518837', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:35.498Z","sequence":21765,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-12]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:35.498Z","sequence":21766,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@582da53d] for replies to [registration/indeel/b45275a6-6e98-426d-a30d-516e66518837]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:35.5Z","sequence":21767,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] wants to open a link [address: Target{address='registration/indeel', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:35.5Z","sequence":21768,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-13]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:35.5Z","sequence":21769,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:35.502Z","sequence":21770,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/indeel:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:35.503Z","sequence":21771,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: indeel, device-id: 70B3D57BB10013FA] for gateway [gateway_indeel_network_40884]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:35.503Z","sequence":21772,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/indeel:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:35.503Z","sequence":21773,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: indeel, device-id: gateway_indeel_network_40884]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:35.508Z","sequence":21774,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_indeel\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:35.508Z","sequence":21775,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_indeel\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:35.509Z","sequence":21776,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f92e0711-04a8-4e76-9c4f-9c13ee0177f3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:35.511Z","sequence":21777,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-37e0e923-fd4e-46df-8030-d5a116954af6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:35.72Z","sequence":21778,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:35.721Z","sequence":21779,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oci]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:35.725Z","sequence":21780,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-d6fe61c7-3f22-47dc-99b1-86cdeb5f2c00, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:35.727Z","sequence":21781,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:35.727Z","sequence":21782,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000168] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:35.729Z","sequence":21783,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:35.729Z","sequence":21784,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000168] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:35.735Z","sequence":21785,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:35.736Z","sequence":21786,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:35.737Z","sequence":21787,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:35.737Z","sequence":21788,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:35.739Z","sequence":21789,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ba8e4725-8a14-4138-97e2-3c608ab927bf, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:35.74Z","sequence":21790,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c061e91e-e4a9-4361-b787-fb79d90d7634, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:36.865Z","sequence":21791,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:36.865Z","sequence":21792,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006C2] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:36.873Z","sequence":21793,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:36.873Z","sequence":21794,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:36.879Z","sequence":21795,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-64f0591f-5b30-4c64-865d-8a35f0fdbb6c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:38.798Z","sequence":21796,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:38.798Z","sequence":21797,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000693] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:38.805Z","sequence":21798,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:38.805Z","sequence":21799,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:38.811Z","sequence":21800,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-88643480-efb2-4b5e-8b90-dba6093f1736, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:39.599Z","sequence":21801,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:39.6Z","sequence":21802,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006C4] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:39.605Z","sequence":21803,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:39.605Z","sequence":21804,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:39.611Z","sequence":21805,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ca6b4dbf-4224-4a1a-91a4-4899f882d8a1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:39.928Z","sequence":21806,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:39.928Z","sequence":21807,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: dow]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:39.931Z","sequence":21808,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-a9916f98-378a-4c4b-ab26-53e8915b807a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:39.933Z","sequence":21809,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Source{address='credentials/dow/d761c9d4-9b34-424e-8c3c-62aa7d1b904b', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:39.933Z","sequence":21810,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-12]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:39.933Z","sequence":21811,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@16439bc7] for replies to [credentials/dow/d761c9d4-9b34-424e-8c3c-62aa7d1b904b]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:39.935Z","sequence":21812,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Target{address='credentials/dow', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:39.935Z","sequence":21813,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-13]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:39.936Z","sequence":21814,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:39.938Z","sequence":21815,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/dow:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:39.938Z","sequence":21816,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: dow, type: hashed-password, auth-id: auth-gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:39.959Z","sequence":21817,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-70a569b9-585d-419d-af3e-7f5f584c4105, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:40.273Z","sequence":21818,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] wants to open a link [address: Source{address='registration/dow/041df5c4-e132-44b7-ab82-9050447b918c', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:40.273Z","sequence":21819,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-14]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:40.273Z","sequence":21820,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@75be498c] for replies to [registration/dow/041df5c4-e132-44b7-ab82-9050447b918c]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:40.276Z","sequence":21821,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] wants to open a link [address: Target{address='registration/dow', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:40.276Z","sequence":21822,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-15]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:40.276Z","sequence":21823,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:40.278Z","sequence":21824,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:40.279Z","sequence":21825,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 70B3D57BB1001264] for gateway [gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:40.291Z","sequence":21826,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:40.291Z","sequence":21827,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:40.296Z","sequence":21828,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-40374c7e-de9e-4320-bcc3-743206d86158, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:40.767Z","sequence":21829,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:40.768Z","sequence":21830,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001EA] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:40.788Z","sequence":21831,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:40.789Z","sequence":21832,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:40.792Z","sequence":21833,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e04cd3a8-d669-427f-8213-ca41fe5bd569, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:40.81Z","sequence":21834,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:40.81Z","sequence":21835,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001EA] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:40.819Z","sequence":21836,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:40.819Z","sequence":21837,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:40.822Z","sequence":21838,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-56493fad-4a34-49ff-b24f-37196b226830, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:44.261Z","sequence":21839,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:44.261Z","sequence":21840,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B87] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:44.262Z","sequence":21841,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:44.262Z","sequence":21842,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: repsol]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:44.277Z","sequence":21843,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-3847c975-9df2-480c-8005-5a4e70d6a1fc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:44.278Z","sequence":21844,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:44.278Z","sequence":21845,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:44.28Z","sequence":21846,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af] wants to open a link [address: Source{address='registration/repsol/e69fb2ac-c933-4097-aac7-fec4e5462cc0', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:44.281Z","sequence":21847,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-20]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:44.281Z","sequence":21848,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@2a525b87] for replies to [registration/repsol/e69fb2ac-c933-4097-aac7-fec4e5462cc0]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:44.283Z","sequence":21849,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af] wants to open a link [address: Target{address='registration/repsol', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:44.283Z","sequence":21850,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-21]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:44.283Z","sequence":21851,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:44.285Z","sequence":21852,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/repsol:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:44.286Z","sequence":21853,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: repsol, device-id: 70B3D57BB1000187] for gateway [0008004A37FF]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:44.291Z","sequence":21854,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e4137583-50a5-49ba-ac72-99904e6944e0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:44.305Z","sequence":21855,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:0.4.1\"\n },\n \"viaGroups\" : [ \"gateways_repsol\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:44.305Z","sequence":21856,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_repsol\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:44.311Z","sequence":21857,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d1fc0f62-7e1f-45a3-b3c9-b420824e576e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:46.795Z","sequence":21858,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:46.796Z","sequence":21859,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: flint]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:46.801Z","sequence":21860,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-731996a8-e20d-48ad-be83-de89602f039d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:46.803Z","sequence":21861,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Source{address='credentials/flint/fce12165-266b-471b-a5aa-93203ad28e06', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:46.803Z","sequence":21862,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-14]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:46.803Z","sequence":21863,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@73778ed8] for replies to [credentials/flint/fce12165-266b-471b-a5aa-93203ad28e06]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:46.807Z","sequence":21864,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Target{address='credentials/flint', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:46.807Z","sequence":21865,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-15]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:46.807Z","sequence":21866,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:46.81Z","sequence":21867,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/flint:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:46.81Z","sequence":21868,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: flint, type: hashed-password, auth-id: auth-flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:46.824Z","sequence":21869,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-30b4f98e-83ea-4fd2-abf7-57b839ef4cc1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:46.945Z","sequence":21870,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:46.945Z","sequence":21871,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB100052B] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:46.953Z","sequence":21872,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:46.953Z","sequence":21873,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:46.957Z","sequence":21874,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-55c7d9e7-6d29-47b6-83f7-0452679afdb6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:49.937Z","sequence":21875,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/acta:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:49.937Z","sequence":21876,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: acta, device-id: 0008004AAAA3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:49.957Z","sequence":21877,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6ea1994f-cd4e-441f-86ab-74839f5efa67, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:49.962Z","sequence":21878,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:49.962Z","sequence":21879,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: acta]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:03:49.978Z","sequence":21880,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-7e85cf96-3b8f-4cec-8107-a83f87e19ef6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:04.193Z","sequence":21881,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191180]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"791b1619abdb2cc3","parentId":"888337f9bcbbaf57","traceId":"0000000000000000dfde234176634532","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:04.217Z","sequence":21882,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191180, resource-version: edc6b1d8-e146-48dd-88c6-e44686dd8092]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"791b1619abdb2cc3","parentId":"888337f9bcbbaf57","traceId":"0000000000000000dfde234176634532","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:04.223Z","sequence":21883,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191180, resource-version: abc5c68a-41e7-4f31-b72c-dd5973871224]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"791b1619abdb2cc3","parentId":"888337f9bcbbaf57","traceId":"0000000000000000dfde234176634532","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:04.226Z","sequence":21884,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191180]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1c3f47b441ec87ac","parentId":"0f8f510a6b7de46a","traceId":"0000000000000000dfde234176634532","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:04.339Z","sequence":21885,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191180]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1c3f47b441ec87ac","parentId":"0f8f510a6b7de46a","traceId":"0000000000000000dfde234176634532","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:04.958Z","sequence":21886,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFCDAA132B10F90]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5c5776f690f30eab","parentId":"881284e4b9576fd6","traceId":"000000000000000076829a728c35595f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:04.977Z","sequence":21887,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFCDAA132B10F90, resource-version: eda4687c-7632-4212-b3a8-b12c39665283]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5c5776f690f30eab","parentId":"881284e4b9576fd6","traceId":"000000000000000076829a728c35595f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:04.985Z","sequence":21888,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFCDAA132B10F90, resource-version: bf295377-eb0d-4995-8bd7-b9b23f8a2d60]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5c5776f690f30eab","parentId":"881284e4b9576fd6","traceId":"000000000000000076829a728c35595f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:05.493Z","sequence":21889,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:05.494Z","sequence":21890,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:05.498Z","sequence":21891,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-85126e52-a1a1-436c-bdce-5ecb19f3b530, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:06.066Z","sequence":21892,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:06.066Z","sequence":21893,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191180]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:06.076Z","sequence":21894,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-a47c8e5e-49d2-4cbf-93ce-d4c8a796701f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:06.192Z","sequence":21895,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:06.192Z","sequence":21896,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCDAA132B10F90] for gateway [gateway_integrationtest_network_191180]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:06.193Z","sequence":21897,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:06.193Z","sequence":21898,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191180]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:06.199Z","sequence":21899,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1abc29ae-d3dc-40be-9401-989606ae4ae0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:06.199Z","sequence":21900,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:06.199Z","sequence":21901,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:06.562Z","sequence":21902,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d375d4fd-7e0c-4d04-a191-6d22680a616c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:11.096Z","sequence":21903,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:11.096Z","sequence":21904,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000218] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:11.102Z","sequence":21905,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:11.103Z","sequence":21906,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:11.106Z","sequence":21907,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-19122917-2399-4beb-a335-f0750ddade6d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:11.12Z","sequence":21908,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:11.12Z","sequence":21909,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000218] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:11.126Z","sequence":21910,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:11.126Z","sequence":21911,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:11.128Z","sequence":21912,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-493b0920-61e7-4c98-a5de-2898e138e5b1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:11.509Z","sequence":21913,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:11.509Z","sequence":21914,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10001D9] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:11.524Z","sequence":21915,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:11.524Z","sequence":21916,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:11.533Z","sequence":21917,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-80a576c2-ea37-49c1-8b43-f07068bbb75b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:14.373Z","sequence":21918,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:14.373Z","sequence":21919,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB1000A6F] for gateway [0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:14.378Z","sequence":21920,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:14.379Z","sequence":21921,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:14.381Z","sequence":21922,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-39b9f45b-df58-4c35-afe8-b8846c345481, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:14.629Z","sequence":21923,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:14.629Z","sequence":21924,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB1000A82] for gateway [0008004B5135]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:14.643Z","sequence":21925,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:14.643Z","sequence":21926,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:14.65Z","sequence":21927,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c28448ed-57ce-4fe8-8e7e-4edaf3916b85, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:14.751Z","sequence":21928,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/repsol:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:14.751Z","sequence":21929,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: repsol, device-id: 0008004A37FF]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:14.765Z","sequence":21930,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d5a37d59-4fc4-4ad6-a87b-6dc3187cef77, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:15.264Z","sequence":21931,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:15.264Z","sequence":21932,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006C8] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:15.272Z","sequence":21933,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:15.272Z","sequence":21934,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:15.281Z","sequence":21935,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-65e80c76-4bb1-4cb2-a389-b55d6624bdb7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:18.407Z","sequence":21936,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFCDAA132B10F90]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0a9b166a40ee330d","parentId":"2f2c5ffcf1a0efb2","traceId":"000000000000000027da20825b64c46c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:18.427Z","sequence":21937,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFCDAA132B10F90]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0a9b166a40ee330d","parentId":"2f2c5ffcf1a0efb2","traceId":"000000000000000027da20825b64c46c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:18.573Z","sequence":21938,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191180]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d9c832d5e7b755d9","parentId":"8cde1df52f307c50","traceId":"000000000000000002f357d7405b6278","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:18.589Z","sequence":21939,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191180]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d9c832d5e7b755d9","parentId":"8cde1df52f307c50","traceId":"000000000000000002f357d7405b6278","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:19.137Z","sequence":21940,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 56E09B9DBEBC]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"652dd4facccc9768","parentId":"bcad638cf7f60b9d","traceId":"0000000000000000e1d94549c2fafa1a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:19.157Z","sequence":21941,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 56E09B9DBEBC, resource-version: 7f00e920-539e-448d-a2a9-7ee18cd87f3c]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"652dd4facccc9768","parentId":"bcad638cf7f60b9d","traceId":"0000000000000000e1d94549c2fafa1a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:19.163Z","sequence":21942,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 56E09B9DBEBC, resource-version: dbb01d5b-0a0c-4f8e-a5dd-364a1928aae4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"652dd4facccc9768","parentId":"bcad638cf7f60b9d","traceId":"0000000000000000e1d94549c2fafa1a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:19.167Z","sequence":21943,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 56E09B9DBEBC]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3e2e87dfcec7780e","parentId":"f5e7a00b009fec57","traceId":"0000000000000000e1d94549c2fafa1a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:19.308Z","sequence":21944,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 56E09B9DBEBC]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3e2e87dfcec7780e","parentId":"f5e7a00b009fec57","traceId":"0000000000000000e1d94549c2fafa1a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:19.977Z","sequence":21945,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFDC284BB28783A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3265db87e4c3bc79","parentId":"9b9844492be04cf3","traceId":"000000000000000034cfd544ebc53d5a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:19.996Z","sequence":21946,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFDC284BB28783A, resource-version: e024fd46-6bf4-47d2-8765-9b10e4f86987]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3265db87e4c3bc79","parentId":"9b9844492be04cf3","traceId":"000000000000000034cfd544ebc53d5a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:20.008Z","sequence":21947,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFDC284BB28783A, resource-version: b1a82507-a9ae-4046-9e2d-627df264f303]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3265db87e4c3bc79","parentId":"9b9844492be04cf3","traceId":"000000000000000034cfd544ebc53d5a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:21.09Z","sequence":21948,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:21.09Z","sequence":21949,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-56E09B9DBEBC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:21.1Z","sequence":21950,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-33b65334-4bf9-4e3b-84b4-c0e65c9991b1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:21.225Z","sequence":21951,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:21.226Z","sequence":21952,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 56E09B9DBEBC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:21.231Z","sequence":21953,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-34f14b49-b0ac-4af2-8d55-4d29979fe9b4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:21.235Z","sequence":21954,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:21.235Z","sequence":21955,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDC284BB28783A] for gateway [56E09B9DBEBC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:21.24Z","sequence":21956,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:21.24Z","sequence":21957,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:21.446Z","sequence":21958,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-83c010e2-5dd4-4858-b448-a7ce519c8c41, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:22.76Z","sequence":21959,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:22.76Z","sequence":21960,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006E1] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:22.784Z","sequence":21961,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.8.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:22.785Z","sequence":21962,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:22.793Z","sequence":21963,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a0761c73-8e54-4e49-bd92-74fdc0a62203, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:23.727Z","sequence":21964,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:23.727Z","sequence":21965,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006BE] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:23.741Z","sequence":21966,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:23.741Z","sequence":21967,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:23.753Z","sequence":21968,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c25427a1-c27b-4763-8411-3135ae749927, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:26.934Z","sequence":21969,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:26.934Z","sequence":21970,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AAF] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:26.941Z","sequence":21971,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:26.941Z","sequence":21972,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:26.948Z","sequence":21973,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-653cf7c4-cee1-48f3-9afa-c2ad07339f71, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:32.651Z","sequence":21974,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:32.651Z","sequence":21975,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000208] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:32.657Z","sequence":21976,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:32.657Z","sequence":21977,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:32.66Z","sequence":21978,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7e76c53a-d5a5-40d8-8605-c25a3f54013a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:32.706Z","sequence":21979,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:32.706Z","sequence":21980,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000208] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:32.711Z","sequence":21981,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:32.711Z","sequence":21982,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:32.714Z","sequence":21983,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-41425ad7-4c7a-4358-b1e5-51f1ebcb7f8e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:35.248Z","sequence":21984,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFDC284BB28783A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"55619de0a7ca0ee7","parentId":"816cbb205a4ffb05","traceId":"0000000000000000853e3ad2de1c8abf","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:35.265Z","sequence":21985,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFDC284BB28783A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"55619de0a7ca0ee7","parentId":"816cbb205a4ffb05","traceId":"0000000000000000853e3ad2de1c8abf","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:36.002Z","sequence":21986,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 56E09B9DBEBC]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4676ec5db2862e0a","parentId":"90129165d26d58b2","traceId":"000000000000000078952f8647d71d49","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:36.019Z","sequence":21987,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 56E09B9DBEBC]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4676ec5db2862e0a","parentId":"90129165d26d58b2","traceId":"000000000000000078952f8647d71d49","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:37.733Z","sequence":21988,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:37.734Z","sequence":21989,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 0008004B51D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:37.739Z","sequence":21990,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b4e904d5-35cf-48d8-ad47-de13d00b2247, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:37.742Z","sequence":21991,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:37.742Z","sequence":21992,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: dow]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:37.745Z","sequence":21993,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-17fc697f-22de-44a9-8728-26bb000a271e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:39.204Z","sequence":21994,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/terega:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:39.205Z","sequence":21995,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: terega, device-id: 70B3D57BB1000DFE] for gateway [gateway_terega_network_27]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:39.21Z","sequence":21996,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_terega\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:39.21Z","sequence":21997,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_terega\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:39.213Z","sequence":21998,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ac2c4ee6-c44b-4445-9ab9-c0804a579bf7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:49.711Z","sequence":21999,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:49.711Z","sequence":22000,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100068E] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:49.717Z","sequence":22001,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:49.718Z","sequence":22002,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:49.724Z","sequence":22003,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c074d79e-71df-4dd6-a451-2a96286add05, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:53.011Z","sequence":22004,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:53.012Z","sequence":22005,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10009DC] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:53.022Z","sequence":22006,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:53.022Z","sequence":22007,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:04:53.026Z","sequence":22008,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-187a831d-6967-4c34-b21b-d0903058c1dc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:00.777Z","sequence":22009,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:00.777Z","sequence":22010,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000797] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:00.784Z","sequence":22011,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:00.784Z","sequence":22012,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:00.793Z","sequence":22013,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-cc1aa80e-5997-4e5e-88b9-f2c33c741e9a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:04.489Z","sequence":22014,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 4E94896A69D4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d3dbc0b781a60beb","parentId":"6d58661ffaa0de00","traceId":"00000000000000008601681c610ccb65","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:04.541Z","sequence":22015,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 4E94896A69D4, resource-version: ff0a56ff-2e32-4398-8f22-07e4575b43df]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d3dbc0b781a60beb","parentId":"6d58661ffaa0de00","traceId":"00000000000000008601681c610ccb65","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:04.548Z","sequence":22016,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 4E94896A69D4, resource-version: df6057f5-f175-440c-990b-2e123a10d3b9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d3dbc0b781a60beb","parentId":"6d58661ffaa0de00","traceId":"00000000000000008601681c610ccb65","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:04.551Z","sequence":22017,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 4E94896A69D4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5603d901ec49baa0","parentId":"8da9b25b5f492712","traceId":"00000000000000008601681c610ccb65","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:04.693Z","sequence":22018,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 4E94896A69D4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5603d901ec49baa0","parentId":"8da9b25b5f492712","traceId":"00000000000000008601681c610ccb65","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:05.705Z","sequence":22019,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFCB374F6944CEF]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"64e714ed4f8550a0","parentId":"f83c8395ba4fcdbb","traceId":"000000000000000023df01b63fdb9e1c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:05.736Z","sequence":22020,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFCB374F6944CEF, resource-version: 336a8a56-70f4-45be-b153-6355e354a0de]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"64e714ed4f8550a0","parentId":"f83c8395ba4fcdbb","traceId":"000000000000000023df01b63fdb9e1c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:05.752Z","sequence":22021,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFCB374F6944CEF, resource-version: b20e9d1e-13ec-42c5-a6b7-e4edb24dc345]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"64e714ed4f8550a0","parentId":"f83c8395ba4fcdbb","traceId":"000000000000000023df01b63fdb9e1c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:05.995Z","sequence":22022,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:05.995Z","sequence":22023,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-4E94896A69D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.001Z","sequence":22024,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.001Z","sequence":22025,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-4E94896A69D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.001Z","sequence":22026,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.001Z","sequence":22027,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-4E94896A69D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.002Z","sequence":22028,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.002Z","sequence":22029,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-4E94896A69D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.053Z","sequence":22030,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-76c34eab-6b20-45a8-8fb6-9e246ab2a870, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.062Z","sequence":22031,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-35be34b3-cf2b-4029-98c2-b12e9c6cd642, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.063Z","sequence":22032,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-c973af91-2919-42d6-927a-cbc332731a12, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.064Z","sequence":22033,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-9d0d53a1-4c3e-4ae7-83a9-0535a6e72984, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.299Z","sequence":22034,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.299Z","sequence":22035,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 70B3D57BB1001243] for gateway [gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.305Z","sequence":22036,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.305Z","sequence":22037,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.311Z","sequence":22038,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-43ecbc3b-05b4-45e6-a42b-4e6f0721f6fd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.595Z","sequence":22039,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.595Z","sequence":22040,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 4E94896A69D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.601Z","sequence":22041,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3941e45f-4bd1-44a9-baec-53b4dd137d81, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.775Z","sequence":22042,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.775Z","sequence":22043,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCB374F6944CEF] for gateway [4E94896A69D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.778Z","sequence":22044,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.778Z","sequence":22045,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCB374F6944CEF] for gateway [4E94896A69D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.78Z","sequence":22046,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.78Z","sequence":22047,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCB374F6944CEF] for gateway [4E94896A69D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.784Z","sequence":22048,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.784Z","sequence":22049,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCB374F6944CEF] for gateway [4E94896A69D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.785Z","sequence":22050,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.785Z","sequence":22051,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCB374F6944CEF] for gateway [4E94896A69D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.786Z","sequence":22052,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.786Z","sequence":22053,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCB374F6944CEF] for gateway [4E94896A69D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.787Z","sequence":22054,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.788Z","sequence":22055,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCB374F6944CEF] for gateway [4E94896A69D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.788Z","sequence":22056,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.788Z","sequence":22057,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCB374F6944CEF] for gateway [4E94896A69D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.789Z","sequence":22058,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.79Z","sequence":22059,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCB374F6944CEF] for gateway [4E94896A69D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.79Z","sequence":22060,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.791Z","sequence":22061,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCB374F6944CEF] for gateway [4E94896A69D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.791Z","sequence":22062,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.792Z","sequence":22063,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCB374F6944CEF] for gateway [4E94896A69D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.793Z","sequence":22064,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.793Z","sequence":22065,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCB374F6944CEF] for gateway [4E94896A69D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.794Z","sequence":22066,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.794Z","sequence":22067,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCB374F6944CEF] for gateway [4E94896A69D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.795Z","sequence":22068,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.795Z","sequence":22069,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.809Z","sequence":22070,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.809Z","sequence":22071,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.81Z","sequence":22072,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.81Z","sequence":22073,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.811Z","sequence":22074,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.811Z","sequence":22075,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.811Z","sequence":22076,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.812Z","sequence":22077,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.814Z","sequence":22078,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.815Z","sequence":22079,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.815Z","sequence":22080,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.816Z","sequence":22081,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.816Z","sequence":22082,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.817Z","sequence":22083,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.817Z","sequence":22084,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.818Z","sequence":22085,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCB374F6944CEF] for gateway [4E94896A69D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.818Z","sequence":22086,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.819Z","sequence":22087,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCB374F6944CEF] for gateway [4E94896A69D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.819Z","sequence":22088,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.819Z","sequence":22089,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCB374F6944CEF] for gateway [4E94896A69D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.82Z","sequence":22090,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.821Z","sequence":22091,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCB374F6944CEF] for gateway [4E94896A69D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.822Z","sequence":22092,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.822Z","sequence":22093,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCB374F6944CEF] for gateway [4E94896A69D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.823Z","sequence":22094,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.823Z","sequence":22095,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCB374F6944CEF] for gateway [4E94896A69D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.824Z","sequence":22096,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.824Z","sequence":22097,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCB374F6944CEF] for gateway [4E94896A69D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.824Z","sequence":22098,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.825Z","sequence":22099,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCB374F6944CEF] for gateway [4E94896A69D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.825Z","sequence":22100,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.826Z","sequence":22101,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCB374F6944CEF] for gateway [4E94896A69D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.826Z","sequence":22102,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.827Z","sequence":22103,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCB374F6944CEF] for gateway [4E94896A69D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.827Z","sequence":22104,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.828Z","sequence":22105,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCB374F6944CEF] for gateway [4E94896A69D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.828Z","sequence":22106,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.829Z","sequence":22107,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCB374F6944CEF] for gateway [4E94896A69D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.829Z","sequence":22108,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.829Z","sequence":22109,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCB374F6944CEF] for gateway [4E94896A69D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.83Z","sequence":22110,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.831Z","sequence":22111,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCB374F6944CEF] for gateway [4E94896A69D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.833Z","sequence":22112,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.84Z","sequence":22113,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCB374F6944CEF] for gateway [4E94896A69D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.842Z","sequence":22114,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.843Z","sequence":22115,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCB374F6944CEF] for gateway [4E94896A69D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.844Z","sequence":22116,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.847Z","sequence":22117,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCB374F6944CEF] for gateway [4E94896A69D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.847Z","sequence":22118,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.848Z","sequence":22119,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCB374F6944CEF] for gateway [4E94896A69D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.849Z","sequence":22120,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.849Z","sequence":22121,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCB374F6944CEF] for gateway [4E94896A69D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.851Z","sequence":22122,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.851Z","sequence":22123,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCB374F6944CEF] for gateway [4E94896A69D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.852Z","sequence":22124,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.853Z","sequence":22125,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCB374F6944CEF] for gateway [4E94896A69D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.894Z","sequence":22126,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.896Z","sequence":22127,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCB374F6944CEF] for gateway [4E94896A69D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.897Z","sequence":22128,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.897Z","sequence":22129,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCB374F6944CEF] for gateway [4E94896A69D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.897Z","sequence":22130,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.898Z","sequence":22131,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCB374F6944CEF] for gateway [4E94896A69D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.899Z","sequence":22132,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.899Z","sequence":22133,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCB374F6944CEF] for gateway [4E94896A69D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.9Z","sequence":22134,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.9Z","sequence":22135,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCB374F6944CEF] for gateway [4E94896A69D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.9Z","sequence":22136,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.901Z","sequence":22137,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCB374F6944CEF] for gateway [4E94896A69D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.901Z","sequence":22138,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.902Z","sequence":22139,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCB374F6944CEF] for gateway [4E94896A69D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.902Z","sequence":22140,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.903Z","sequence":22141,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCB374F6944CEF] for gateway [4E94896A69D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.903Z","sequence":22142,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.904Z","sequence":22143,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCB374F6944CEF] for gateway [4E94896A69D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.905Z","sequence":22144,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.905Z","sequence":22145,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCB374F6944CEF] for gateway [4E94896A69D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.906Z","sequence":22146,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.906Z","sequence":22147,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCB374F6944CEF] for gateway [4E94896A69D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.907Z","sequence":22148,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.908Z","sequence":22149,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCB374F6944CEF] for gateway [4E94896A69D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.908Z","sequence":22150,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.909Z","sequence":22151,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCB374F6944CEF] for gateway [4E94896A69D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.909Z","sequence":22152,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.91Z","sequence":22153,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCB374F6944CEF] for gateway [4E94896A69D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.911Z","sequence":22154,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.911Z","sequence":22155,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCB374F6944CEF] for gateway [4E94896A69D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.912Z","sequence":22156,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.912Z","sequence":22157,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCB374F6944CEF] for gateway [4E94896A69D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.913Z","sequence":22158,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.914Z","sequence":22159,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCB374F6944CEF] for gateway [4E94896A69D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.914Z","sequence":22160,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.915Z","sequence":22161,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCB374F6944CEF] for gateway [4E94896A69D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.916Z","sequence":22162,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.916Z","sequence":22163,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCB374F6944CEF] for gateway [4E94896A69D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.917Z","sequence":22164,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.917Z","sequence":22165,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCB374F6944CEF] for gateway [4E94896A69D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.918Z","sequence":22166,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.918Z","sequence":22167,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCB374F6944CEF] for gateway [4E94896A69D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.919Z","sequence":22168,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.919Z","sequence":22169,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCB374F6944CEF] for gateway [4E94896A69D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.922Z","sequence":22170,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.922Z","sequence":22171,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCB374F6944CEF] for gateway [4E94896A69D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.931Z","sequence":22172,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.934Z","sequence":22173,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCB374F6944CEF] for gateway [4E94896A69D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.938Z","sequence":22174,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.938Z","sequence":22175,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCB374F6944CEF] for gateway [4E94896A69D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.939Z","sequence":22176,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.939Z","sequence":22177,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCB374F6944CEF] for gateway [4E94896A69D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.94Z","sequence":22178,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.94Z","sequence":22179,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCB374F6944CEF] for gateway [4E94896A69D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.941Z","sequence":22180,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.944Z","sequence":22181,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCB374F6944CEF] for gateway [4E94896A69D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.945Z","sequence":22182,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.947Z","sequence":22183,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCB374F6944CEF] for gateway [4E94896A69D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.948Z","sequence":22184,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.948Z","sequence":22185,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCB374F6944CEF] for gateway [4E94896A69D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.948Z","sequence":22186,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.949Z","sequence":22187,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCB374F6944CEF] for gateway [4E94896A69D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.949Z","sequence":22188,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.95Z","sequence":22189,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCB374F6944CEF] for gateway [4E94896A69D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.95Z","sequence":22190,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.951Z","sequence":22191,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCB374F6944CEF] for gateway [4E94896A69D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.952Z","sequence":22192,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.952Z","sequence":22193,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCB374F6944CEF] for gateway [4E94896A69D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.955Z","sequence":22194,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.955Z","sequence":22195,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCB374F6944CEF] for gateway [4E94896A69D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.955Z","sequence":22196,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.955Z","sequence":22197,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCB374F6944CEF] for gateway [4E94896A69D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.956Z","sequence":22198,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.956Z","sequence":22199,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCB374F6944CEF] for gateway [4E94896A69D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.956Z","sequence":22200,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.957Z","sequence":22201,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCB374F6944CEF] for gateway [4E94896A69D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.957Z","sequence":22202,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.958Z","sequence":22203,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCB374F6944CEF] for gateway [4E94896A69D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.958Z","sequence":22204,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.959Z","sequence":22205,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCB374F6944CEF] for gateway [4E94896A69D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.96Z","sequence":22206,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.96Z","sequence":22207,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCB374F6944CEF] for gateway [4E94896A69D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.961Z","sequence":22208,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.961Z","sequence":22209,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCB374F6944CEF] for gateway [4E94896A69D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.961Z","sequence":22210,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.961Z","sequence":22211,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCB374F6944CEF] for gateway [4E94896A69D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.962Z","sequence":22212,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.962Z","sequence":22213,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCB374F6944CEF] for gateway [4E94896A69D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.963Z","sequence":22214,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.963Z","sequence":22215,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCB374F6944CEF] for gateway [4E94896A69D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.963Z","sequence":22216,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.963Z","sequence":22217,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCB374F6944CEF] for gateway [4E94896A69D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.964Z","sequence":22218,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.964Z","sequence":22219,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCB374F6944CEF] for gateway [4E94896A69D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.965Z","sequence":22220,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.965Z","sequence":22221,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCB374F6944CEF] for gateway [4E94896A69D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.967Z","sequence":22222,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.967Z","sequence":22223,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCB374F6944CEF] for gateway [4E94896A69D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.968Z","sequence":22224,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.968Z","sequence":22225,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCB374F6944CEF] for gateway [4E94896A69D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.969Z","sequence":22226,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.97Z","sequence":22227,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCB374F6944CEF] for gateway [4E94896A69D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.97Z","sequence":22228,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.971Z","sequence":22229,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCB374F6944CEF] for gateway [4E94896A69D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.98Z","sequence":22230,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.98Z","sequence":22231,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCB374F6944CEF] for gateway [4E94896A69D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.981Z","sequence":22232,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.981Z","sequence":22233,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCB374F6944CEF] for gateway [4E94896A69D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.984Z","sequence":22234,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.984Z","sequence":22235,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.985Z","sequence":22236,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.985Z","sequence":22237,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.985Z","sequence":22238,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.986Z","sequence":22239,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.986Z","sequence":22240,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.986Z","sequence":22241,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.987Z","sequence":22242,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.987Z","sequence":22243,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.99Z","sequence":22244,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.99Z","sequence":22245,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCB374F6944CEF] for gateway [4E94896A69D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.99Z","sequence":22246,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.99Z","sequence":22247,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCB374F6944CEF] for gateway [4E94896A69D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.991Z","sequence":22248,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.991Z","sequence":22249,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCB374F6944CEF] for gateway [4E94896A69D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.991Z","sequence":22250,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.992Z","sequence":22251,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCB374F6944CEF] for gateway [4E94896A69D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.992Z","sequence":22252,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.992Z","sequence":22253,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCB374F6944CEF] for gateway [4E94896A69D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.993Z","sequence":22254,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.993Z","sequence":22255,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCB374F6944CEF] for gateway [4E94896A69D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.993Z","sequence":22256,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.993Z","sequence":22257,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCB374F6944CEF] for gateway [4E94896A69D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.994Z","sequence":22258,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:06.994Z","sequence":22259,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCB374F6944CEF] for gateway [4E94896A69D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:07.015Z","sequence":22260,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:07.015Z","sequence":22261,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:07.016Z","sequence":22262,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:07.017Z","sequence":22263,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:07.017Z","sequence":22264,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:07.017Z","sequence":22265,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:07.017Z","sequence":22266,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:07.018Z","sequence":22267,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:07.018Z","sequence":22268,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:07.018Z","sequence":22269,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:07.018Z","sequence":22270,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:07.019Z","sequence":22271,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:07.019Z","sequence":22272,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:07.019Z","sequence":22273,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:07.033Z","sequence":22274,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:07.033Z","sequence":22275,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCB374F6944CEF] for gateway [4E94896A69D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:07.034Z","sequence":22276,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:07.034Z","sequence":22277,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCB374F6944CEF] for gateway [4E94896A69D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:07.055Z","sequence":22278,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:07.056Z","sequence":22279,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCB374F6944CEF] for gateway [4E94896A69D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:07.056Z","sequence":22280,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:07.056Z","sequence":22281,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCB374F6944CEF] for gateway [4E94896A69D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:07.06Z","sequence":22282,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:07.06Z","sequence":22283,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:07.069Z","sequence":22284,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:07.07Z","sequence":22285,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:07.07Z","sequence":22286,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:07.07Z","sequence":22287,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:07.074Z","sequence":22288,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:07.074Z","sequence":22289,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:07.075Z","sequence":22290,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:07.076Z","sequence":22291,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:07.869Z","sequence":22292,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4b23c778-b143-4544-8da8-3675e5246b33, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:07.873Z","sequence":22293,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:07.873Z","sequence":22294,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:07.874Z","sequence":22295,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:07.874Z","sequence":22296,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:07.875Z","sequence":22297,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:07.875Z","sequence":22298,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:08.665Z","sequence":22299,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c2a7d01b-22ad-4755-a61a-92fd2a93caec, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:09.423Z","sequence":22300,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9fdee0d9-af35-4c0d-a32d-b07815702a7e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:09.424Z","sequence":22301,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:09.424Z","sequence":22302,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:09.425Z","sequence":22303,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:09.425Z","sequence":22304,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:09.426Z","sequence":22305,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:09.426Z","sequence":22306,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:09.427Z","sequence":22307,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:09.427Z","sequence":22308,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:09.776Z","sequence":22309,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4a42d73e-64f0-426a-86b5-de463844f1cc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:09.967Z","sequence":22310,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6cec00ae-b8f4-4914-b9a6-b8a5a61001bc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:09.968Z","sequence":22311,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:09.968Z","sequence":22312,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:09.968Z","sequence":22313,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:09.968Z","sequence":22314,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:10.261Z","sequence":22315,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d7db69d3-4973-42bf-ba34-2a41c78647a9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:10.261Z","sequence":22316,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:10.262Z","sequence":22317,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:10.6Z","sequence":22318,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a10cc4ab-9c59-43a7-8022-6723be05835e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:10.6Z","sequence":22319,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:10.6Z","sequence":22320,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:10.602Z","sequence":22321,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:10.602Z","sequence":22322,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:10.602Z","sequence":22323,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:10.602Z","sequence":22324,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:10.603Z","sequence":22325,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:10.603Z","sequence":22326,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:10.603Z","sequence":22327,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:10.603Z","sequence":22328,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:10.604Z","sequence":22329,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:10.604Z","sequence":22330,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:10.605Z","sequence":22331,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:10.605Z","sequence":22332,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:10.605Z","sequence":22333,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:10.606Z","sequence":22334,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:10.606Z","sequence":22335,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:10.606Z","sequence":22336,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:10.607Z","sequence":22337,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:10.607Z","sequence":22338,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:10.608Z","sequence":22339,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:10.608Z","sequence":22340,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:11.294Z","sequence":22341,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ec0e243d-40f0-4d65-a40e-2728a02765e0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:11.3Z","sequence":22342,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:11.3Z","sequence":22343,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:11.301Z","sequence":22344,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:11.301Z","sequence":22345,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:11.301Z","sequence":22346,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:11.301Z","sequence":22347,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:11.301Z","sequence":22348,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:11.302Z","sequence":22349,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:11.302Z","sequence":22350,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:11.302Z","sequence":22351,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:11.302Z","sequence":22352,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:11.302Z","sequence":22353,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006DC] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:11.304Z","sequence":22354,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:11.304Z","sequence":22355,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A9D] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:11.305Z","sequence":22356,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:11.305Z","sequence":22357,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AE3] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:11.306Z","sequence":22358,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:11.306Z","sequence":22359,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:11.308Z","sequence":22360,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:11.309Z","sequence":22361,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:11.316Z","sequence":22362,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:11.316Z","sequence":22363,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:11.317Z","sequence":22364,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:11.317Z","sequence":22365,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:11.317Z","sequence":22366,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:11.317Z","sequence":22367,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:11.317Z","sequence":22368,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:11.317Z","sequence":22369,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:11.318Z","sequence":22370,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:11.319Z","sequence":22371,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:11.319Z","sequence":22372,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:11.319Z","sequence":22373,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:11.319Z","sequence":22374,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:11.319Z","sequence":22375,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:11.32Z","sequence":22376,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:11.32Z","sequence":22377,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:11.321Z","sequence":22378,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:11.321Z","sequence":22379,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:11.328Z","sequence":22380,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:11.328Z","sequence":22381,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:11.329Z","sequence":22382,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:11.329Z","sequence":22383,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:11.329Z","sequence":22384,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:11.356Z","sequence":22385,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:11.356Z","sequence":22386,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:11.356Z","sequence":22387,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:11.356Z","sequence":22388,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:11.356Z","sequence":22389,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:11.36Z","sequence":22390,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:11.36Z","sequence":22391,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:11.361Z","sequence":22392,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:11.361Z","sequence":22393,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:11.369Z","sequence":22394,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:11.369Z","sequence":22395,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:11.369Z","sequence":22396,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:11.369Z","sequence":22397,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:11.37Z","sequence":22398,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:11.37Z","sequence":22399,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:11.37Z","sequence":22400,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:11.37Z","sequence":22401,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:11.371Z","sequence":22402,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:11.371Z","sequence":22403,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:11.371Z","sequence":22404,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:11.371Z","sequence":22405,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:11.371Z","sequence":22406,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:11.371Z","sequence":22407,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:13.08Z","sequence":22408,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7e145664-88c7-4e7a-9833-e4789d82258b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:13.089Z","sequence":22409,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:13.089Z","sequence":22410,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:13.09Z","sequence":22411,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:13.09Z","sequence":22412,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:13.091Z","sequence":22413,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/conditionall:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:13.091Z","sequence":22414,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: conditionall, device-id: 0008004B512D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:13.091Z","sequence":22415,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:13.092Z","sequence":22416,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:13.772Z","sequence":22417,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d531939a-f4f7-4e27-8836-1d638dbc938c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:14.741Z","sequence":22418,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-493f8a68-10b0-48da-b90c-5ecdf3af37fb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:15.502Z","sequence":22419,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-18f6e45c-cea8-4333-ad71-29ed09041f17, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:15.502Z","sequence":22420,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:15.502Z","sequence":22421,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:15.503Z","sequence":22422,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:15.503Z","sequence":22423,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:15.504Z","sequence":22424,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:15.504Z","sequence":22425,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:15.504Z","sequence":22426,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:15.504Z","sequence":22427,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:15.504Z","sequence":22428,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:15.504Z","sequence":22429,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:15.505Z","sequence":22430,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:15.505Z","sequence":22431,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:15.505Z","sequence":22432,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:15.505Z","sequence":22433,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:15.506Z","sequence":22434,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:15.506Z","sequence":22435,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:16.143Z","sequence":22436,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ffd28193-93bb-4439-93d8-ee351d150bbc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:16.144Z","sequence":22437,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:16.144Z","sequence":22438,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:16.692Z","sequence":22439,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1b41cddb-7ca3-4459-b3d1-8a655f6d4f18, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:17.023Z","sequence":22440,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-fa8c0f2e-33a1-493e-8b38-e323b302b192, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:17.792Z","sequence":22441,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-934f324d-5e73-4992-b03a-f5d52d11211b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:18.306Z","sequence":22442,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b71d4237-2927-4af9-a955-2d4732829f40, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:18.776Z","sequence":22443,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e14b2e8e-8d99-4940-a8ab-a8b8b41be0fe, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:19.107Z","sequence":22444,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-326df39d-1d4c-4546-8867-083d50dd4d57, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:19.344Z","sequence":22445,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1105a33c-0cdd-4da4-ad0b-e0dbbb796d15, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:19.496Z","sequence":22446,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-972f6dcd-2993-4dc9-aee7-ef424b905ae7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:19.754Z","sequence":22447,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9946957e-14c5-4cc1-94c2-0b110ac4645b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:20.085Z","sequence":22448,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-02a0b88e-162c-4e67-ba57-c1ed18c9920d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:20.239Z","sequence":22449,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-67ca60c3-68cf-42e5-a2b7-ae14cd29d259, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:20.379Z","sequence":22450,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-631fa1e9-ac93-4e45-9792-05a6a0bda330, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:20.573Z","sequence":22451,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c7b9a184-1db2-4a7a-8865-147d65bdbedb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:20.728Z","sequence":22452,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-91c0c3fe-0fcf-4a66-b058-08302c845178, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:20.875Z","sequence":22453,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-50ca670c-63ac-4409-bfee-09a5d6a98574, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:21.06Z","sequence":22454,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0a9efa8a-651e-4c75-872b-42047d856e2b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:21.345Z","sequence":22455,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0223c53a-c764-4921-a7ff-64cbdc768e86, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:21.617Z","sequence":22456,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3923c520-6c2f-4125-ba2e-5a6fb6a5778b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:21.768Z","sequence":22457,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-586bf7eb-f71c-4da9-970e-6b3cf13bd226, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:21.906Z","sequence":22458,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-43298123-19fd-4f7f-9f68-868e9913fb0e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:22.042Z","sequence":22459,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3d905a97-9794-40f4-873c-e7c98b5f001b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:22.209Z","sequence":22460,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ea8b6548-f718-415b-8d12-5a3af4306438, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:22.355Z","sequence":22461,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-085b4af5-1e35-45fa-9bd1-5ae9b19cccea, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:22.532Z","sequence":22462,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-bf53ccfc-d5c6-456b-8b4f-31fa5bdd8834, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:22.533Z","sequence":22463,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:22.533Z","sequence":22464,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:22.555Z","sequence":22465,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:22.555Z","sequence":22466,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:22.556Z","sequence":22467,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:22.556Z","sequence":22468,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:22.556Z","sequence":22469,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:22.556Z","sequence":22470,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:22.557Z","sequence":22471,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:22.557Z","sequence":22472,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:22.557Z","sequence":22473,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:22.558Z","sequence":22474,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: conditionall]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:22.558Z","sequence":22475,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:22.558Z","sequence":22476,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: conditionall]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:22.558Z","sequence":22477,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:22.558Z","sequence":22478,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: conditionall]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:22.558Z","sequence":22479,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Tenant-ded758d0-b7cf-4d65-a210-6d11fa222d32] closed connection with error","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72,"exception":{"refId":1,"exceptionType":"io.vertx.core.impl.NoStackTraceThrowable","message":"Error{condition=amqp:resource-limit-exceeded, description='local-idle-timeout expired', info=null}","frames":[]}} +{"timestamp":"2023-07-25T04:05:22.559Z","sequence":22480,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono service-command-router-Tenant-8c258f6d-8b57-47cf-8f84-a38d9786fed2] closed connection with error","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72,"exception":{"refId":1,"exceptionType":"io.vertx.core.impl.NoStackTraceThrowable","message":"Error{condition=amqp:resource-limit-exceeded, description='local-idle-timeout expired', info=null}","frames":[]}} +{"timestamp":"2023-07-25T04:05:22.56Z","sequence":22481,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] closed connection with error","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72,"exception":{"refId":1,"exceptionType":"io.vertx.core.impl.NoStackTraceThrowable","message":"Error{condition=amqp:resource-limit-exceeded, description='local-idle-timeout expired', info=null}","frames":[]}} +{"timestamp":"2023-07-25T04:05:22.56Z","sequence":22482,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono service-command-router-Device Registration-6b43a4ef-0980-4edd-b8fb-ab7a8b085811] closed connection with error","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72,"exception":{"refId":1,"exceptionType":"io.vertx.core.impl.NoStackTraceThrowable","message":"Error{condition=amqp:resource-limit-exceeded, description='local-idle-timeout expired', info=null}","frames":[]}} +{"timestamp":"2023-07-25T04:05:22.561Z","sequence":22483,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Tenant-995cc45f-23b2-488f-a5d9-0b18c4ae6c62] closed connection with error","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72,"exception":{"refId":1,"exceptionType":"io.vertx.core.impl.NoStackTraceThrowable","message":"Error{condition=amqp:resource-limit-exceeded, description='local-idle-timeout expired', info=null}","frames":[]}} +{"timestamp":"2023-07-25T04:05:22.561Z","sequence":22484,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:22.561Z","sequence":22485,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006DC] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:22.561Z","sequence":22486,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:22.561Z","sequence":22487,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A9D] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:22.561Z","sequence":22488,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:22.561Z","sequence":22489,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AE3] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:22.562Z","sequence":22490,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:22.562Z","sequence":22491,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:23.041Z","sequence":22492,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d135c092-6cb9-4476-b5ab-01bee9fa308a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:23.555Z","sequence":22493,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3fc57d89-4f31-4071-831a-823dc5b5f685, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:23.953Z","sequence":22494,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-612c4ed5-75f4-49e4-8f6d-3b7e24d19399, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:24.447Z","sequence":22495,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9478c44f-d796-4a65-b418-e23e731364d3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:24.805Z","sequence":22496,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0ad368b1-ba5e-4c5b-a3a8-14d5191cf12e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:25.171Z","sequence":22497,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1c55d17e-fe4e-4014-802f-2a5c0abfcb73, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:25.412Z","sequence":22498,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b313b371-b225-4ad0-9446-8cf588d3b86a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:25.647Z","sequence":22499,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1d8f02fc-6450-4db1-8766-78c7ace908b4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:25.853Z","sequence":22500,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ebd5c93a-86c6-44e9-8d63-495e687f7fad, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:25.854Z","sequence":22501,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:25.854Z","sequence":22502,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:25.854Z","sequence":22503,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:25.854Z","sequence":22504,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:26.115Z","sequence":22505,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-451be5cf-65d0-4f8c-a958-a89f142423fc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:26.394Z","sequence":22506,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2502d29c-dfcc-4f32-ad78-57cff15a43b6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:26.717Z","sequence":22507,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-add35f5e-ec9d-405b-9397-be78111cf611, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:26.896Z","sequence":22508,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b776ef3a-e99b-4f9a-8cbd-406a4ce0654d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:27.044Z","sequence":22509,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0af1e3b6-6b46-4759-839d-1602c6f27050, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:27.183Z","sequence":22510,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a07a6bfc-0390-4cc5-8260-1ef6189260af, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:27.183Z","sequence":22511,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:27.183Z","sequence":22512,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:27.447Z","sequence":22513,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-91ebd992-8022-4e22-b86d-98e333b19a73, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:27.797Z","sequence":22514,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f535cba9-edbe-438e-8483-050fbd35a908, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:27.962Z","sequence":22515,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-de7baf26-169f-4153-b1be-6aef146ea195, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:28.103Z","sequence":22516,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1496c167-3694-4cbb-8f51-652332647d39, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:28.243Z","sequence":22517,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f134680f-7cb1-40f7-8b93-752592cbe38c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:28.411Z","sequence":22518,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d264f017-67c3-4be5-97d0-e068e187de29, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:28.643Z","sequence":22519,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-da0b1c73-f9f0-4c37-9bfe-0344df95e34c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:28.96Z","sequence":22520,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ae31a562-1987-4667-a90e-975a4fc4e045, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:29.419Z","sequence":22521,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8858fde3-9ee0-4704-bf97-43eb024d796b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:29.675Z","sequence":22522,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3c4a1b76-bf7c-4514-8eb1-2561825cac23, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:30.018Z","sequence":22523,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9940f374-b25f-4896-9a00-61698f9ea413, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:30.294Z","sequence":22524,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1b3da2df-e4b4-405b-bfec-ae6e55893876, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:30.494Z","sequence":22525,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5ba75358-811e-4b5b-806a-486af54c8120, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:30.813Z","sequence":22526,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-73a3466c-6854-4076-8688-e4df505c57d3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:31.081Z","sequence":22527,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4d3aac95-621e-476e-a60f-b75bb9195c81, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:31.316Z","sequence":22528,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c07ab3f9-32c4-4b7d-8f4c-7cdcf1a65da7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:31.47Z","sequence":22529,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-be0234a8-bd0c-4a40-a30a-1bb4378ac710, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:31.644Z","sequence":22530,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7e187549-f5e3-47e2-89a9-e511e61efdfd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:32.301Z","sequence":22531,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9b245393-93e1-4ade-9bed-c027ae165a24, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:32.746Z","sequence":22532,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-dc8c905a-b569-4490-8238-7af2e98a271b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:32.973Z","sequence":22533,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4b180302-05ad-4b9d-a5c5-de02b84052a6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:33.11Z","sequence":22534,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-edaab9c5-3629-49c6-8b9f-3185b6e84241, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:33.248Z","sequence":22535,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-13e77500-ceed-45f3-a46c-1ead841c0932, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:33.6Z","sequence":22536,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6d085176-4aef-4dd0-8afd-ffbc91e8d8c9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:33.879Z","sequence":22537,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4ed18c95-0926-4d06-b7ea-fc25286019aa, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:34.119Z","sequence":22538,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e1846cc0-a5b8-447c-a0dd-728d29ef449e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:34.324Z","sequence":22539,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-65a6d0b9-971b-401a-8b56-e4383899f2da, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:34.325Z","sequence":22540,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:34.325Z","sequence":22541,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:34.325Z","sequence":22542,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:34.325Z","sequence":22543,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:34.326Z","sequence":22544,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:34.326Z","sequence":22545,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:34.326Z","sequence":22546,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:34.326Z","sequence":22547,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:34.856Z","sequence":22548,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-100bf91a-3fb8-435f-a834-51181cd62d05, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:35.078Z","sequence":22549,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-407c7518-5e5f-4657-a1d4-3edf39898fb0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:35.306Z","sequence":22550,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-dea7017c-cac8-4e39-8d57-8713443ddfc2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:35.605Z","sequence":22551,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1605c76e-87ec-46ea-8908-46d296df3972, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:35.607Z","sequence":22552,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:35.607Z","sequence":22553,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001E9] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:35.608Z","sequence":22554,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Credentials-75faa79c-12c0-45f2-bd9c-973655a3937c] wants to open a link [address: Source{address='credentials/oci/6f9ee567-c0d1-4741-bd51-12ee16bae1f8', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:35.608Z","sequence":22555,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-2]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:35.608Z","sequence":22556,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@265cc70c] for replies to [credentials/oci/6f9ee567-c0d1-4741-bd51-12ee16bae1f8]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:35.608Z","sequence":22557,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [auto-2] closed sender link","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:35.608Z","sequence":22558,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"deallocated sender [auto-2] for replies to [credentials/oci/6f9ee567-c0d1-4741-bd51-12ee16bae1f8]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:35.608Z","sequence":22559,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Credentials-75faa79c-12c0-45f2-bd9c-973655a3937c] closed connection with error","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72,"exception":{"refId":1,"exceptionType":"io.vertx.core.impl.NoStackTraceThrowable","message":"Error{condition=amqp:resource-limit-exceeded, description='local-idle-timeout expired', info=null}","frames":[]}} +{"timestamp":"2023-07-25T04:05:35.609Z","sequence":22560,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:35.609Z","sequence":22561,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006DC] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:35.61Z","sequence":22562,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:35.61Z","sequence":22563,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A98] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:35.61Z","sequence":22564,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:35.61Z","sequence":22565,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A9D] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:35.64Z","sequence":22566,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:35.64Z","sequence":22567,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AE3] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:35.818Z","sequence":22568,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e7de4fe7-8c80-4284-87e2-01a7446ac519, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:35.956Z","sequence":22569,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e3d4e392-c1fa-4bce-b546-550eaa2c055a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:36.109Z","sequence":22570,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-06a86333-14b4-4f7a-b473-00adc779a1f9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:36.398Z","sequence":22571,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-60b4d867-9b46-468c-8f62-67a0ce818dfc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:36.9Z","sequence":22572,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e2b9065b-03d7-48e8-8b49-ff4cf0c53a6b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:36.9Z","sequence":22573,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:36.901Z","sequence":22574,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:36.902Z","sequence":22575,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:36.902Z","sequence":22576,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:36.903Z","sequence":22577,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-839744c8-7ca8-4cf6-9eec-f3e077735dca, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:36.904Z","sequence":22578,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-8ed2ec35-12ed-4399-8203-1ef4841dad93, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:36.904Z","sequence":22579,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-2e6526a3-c350-4f2a-b21a-13092bbd368b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:36.905Z","sequence":22580,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:36.905Z","sequence":22581,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:37.138Z","sequence":22582,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1aa42da7-624b-458d-8881-d953ee1d598a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:37.32Z","sequence":22583,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3c326606-b3fd-4ae1-9167-52266a0187f6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:37.493Z","sequence":22584,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-fd3a610a-e158-4121-9b80-146e782441ad, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:37.655Z","sequence":22585,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6c5d64d1-792a-4e9c-98fc-18bbc6aa6525, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:37.822Z","sequence":22586,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d2ea3815-0326-4445-8a80-3db612f733f0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:37.822Z","sequence":22587,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-661152b6-29b6-4a6d-a693-753f8cef4a7e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:38.178Z","sequence":22588,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-54b71b61-545c-41b5-ad2b-c7272d9a5bb1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:38.656Z","sequence":22589,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ffd50aa8-5f2a-4c53-9242-179eb03805ec, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:39.007Z","sequence":22590,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-794c96b8-8da3-4031-843b-bbbc9269417f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:39.215Z","sequence":22591,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6de99c5a-97c2-41eb-ae7c-4c040906d42c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:39.425Z","sequence":22592,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-76450788-a5f5-42f5-a2f1-895de48dc0eb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:39.586Z","sequence":22593,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-22caf70e-d72c-4463-8a37-c7bc8de6dcf1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:39.736Z","sequence":22594,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4964058a-40da-411a-8356-88f1637c23ad, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.053Z","sequence":22595,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Tenant-ded758d0-b7cf-4d65-a210-6d11fa222d32] disconnected","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.068Z","sequence":22596,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono service-command-router-Tenant-8c258f6d-8b57-47cf-8f84-a38d9786fed2] disconnected","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.069Z","sequence":22597,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] disconnected","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.069Z","sequence":22598,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono service-command-router-Device Registration-6b43a4ef-0980-4edd-b8fb-ab7a8b085811] disconnected","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.069Z","sequence":22599,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Tenant-995cc45f-23b2-488f-a5d9-0b18c4ae6c62] disconnected","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.069Z","sequence":22600,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8a0ee02d-337d-4fc6-9d10-5503f8f58b43, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.07Z","sequence":22601,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-88b2e388-1653-43bd-8a5f-43ec7fee4ae9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.071Z","sequence":22602,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a6931a82-ef23-4ef7-9273-1eac23e3fa67, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.071Z","sequence":22603,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-28657394-2650-47b0-9321-dcf24bcfcecf, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.071Z","sequence":22604,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.071Z","sequence":22605,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.072Z","sequence":22606,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.072Z","sequence":22607,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.072Z","sequence":22608,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.072Z","sequence":22609,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.075Z","sequence":22610,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Credentials-75faa79c-12c0-45f2-bd9c-973655a3937c] disconnected","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.077Z","sequence":22611,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.078Z","sequence":22612,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.078Z","sequence":22613,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.079Z","sequence":22614,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.079Z","sequence":22615,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.08Z","sequence":22616,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.081Z","sequence":22617,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-82aff1d6-bd0e-4edb-93c7-07cb2ff273f3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.083Z","sequence":22618,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"initializing SASL authenticator","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.083Z","sequence":22619,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client provided an empty list of SASL mechanisms [hostname: null, state: PN_SASL_IDLE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.084Z","sequence":22620,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"initializing SASL authenticator","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.085Z","sequence":22621,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client provided an empty list of SASL mechanisms [hostname: null, state: PN_SASL_IDLE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.087Z","sequence":22622,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"initializing SASL authenticator","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.087Z","sequence":22623,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client provided an empty list of SASL mechanisms [hostname: null, state: PN_SASL_IDLE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.088Z","sequence":22624,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"initializing SASL authenticator","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.089Z","sequence":22625,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client provided an empty list of SASL mechanisms [hostname: null, state: PN_SASL_IDLE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.09Z","sequence":22626,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"initializing SASL authenticator","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.09Z","sequence":22627,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client provided an empty list of SASL mechanisms [hostname: null, state: PN_SASL_IDLE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.091Z","sequence":22628,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"initializing SASL authenticator","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.11Z","sequence":22629,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client provided an empty list of SASL mechanisms [hostname: null, state: PN_SASL_IDLE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.303Z","sequence":22630,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f171862a-0747-47e4-b7c4-e94033d0690e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.303Z","sequence":22631,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f76cf36c-ca61-47d3-9c93-c69a9944d599, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.304Z","sequence":22632,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-878fae8e-cbd4-43e7-8cfe-b97ca2885820, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.304Z","sequence":22633,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-58f8ef96-0b4e-474c-a35b-4089e3f51a88, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.304Z","sequence":22634,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-644008cf-0d68-4d48-ba5d-232b68e19bd6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.305Z","sequence":22635,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.305Z","sequence":22636,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.312Z","sequence":22637,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.312Z","sequence":22638,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.313Z","sequence":22639,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client wants to authenticate using SASL [mechanism: PLAIN, host: null, state: PN_SASL_STEP]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.313Z","sequence":22640,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"received authentication request [mechanism: PLAIN]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9daa26f0b4c38e8a","traceId":"126476c66c93b60f13d5782531421e3f","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.313Z","sequence":22641,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"processing PLAIN authentication request [authzid: , authcid: mqtt-adapter@HONO, pwd: *****]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9daa26f0b4c38e8a","traceId":"126476c66c93b60f13d5782531421e3f","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.313Z","sequence":22642,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"OpenSSL [available: false, supports KeyManagerFactory: false]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9daa26f0b4c38e8a","traceId":"126476c66c93b60f13d5782531421e3f","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.313Z","sequence":22643,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"using JVM's default SSL engine","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9daa26f0b4c38e8a","traceId":"126476c66c93b60f13d5782531421e3f","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.313Z","sequence":22644,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9daa26f0b4c38e8a","traceId":"126476c66c93b60f13d5782531421e3f","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.313Z","sequence":22645,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9daa26f0b4c38e8a","traceId":"126476c66c93b60f13d5782531421e3f","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.313Z","sequence":22646,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connecting to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9daa26f0b4c38e8a","traceId":"126476c66c93b60f13d5782531421e3f","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.362Z","sequence":22647,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client wants to authenticate using SASL [mechanism: PLAIN, host: null, state: PN_SASL_STEP]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.363Z","sequence":22648,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client wants to authenticate using SASL [mechanism: PLAIN, host: null, state: PN_SASL_STEP]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.363Z","sequence":22649,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client wants to authenticate using SASL [mechanism: PLAIN, host: null, state: PN_SASL_STEP]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.363Z","sequence":22650,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client wants to authenticate using SASL [mechanism: PLAIN, host: null, state: PN_SASL_STEP]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.363Z","sequence":22651,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client wants to authenticate using SASL [mechanism: PLAIN, host: null, state: PN_SASL_STEP]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.364Z","sequence":22652,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"initializing SASL authenticator","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.364Z","sequence":22653,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client provided an empty list of SASL mechanisms [hostname: null, state: PN_SASL_IDLE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.365Z","sequence":22654,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"received authentication request [mechanism: PLAIN]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"eb7b58ad2bf987b9","traceId":"bdb0591ea5062c45cef7016c20d3ba20","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.365Z","sequence":22655,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"processing PLAIN authentication request [authzid: , authcid: lora-adapter@HONO, pwd: *****]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"eb7b58ad2bf987b9","traceId":"bdb0591ea5062c45cef7016c20d3ba20","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.365Z","sequence":22656,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"OpenSSL [available: false, supports KeyManagerFactory: false]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"eb7b58ad2bf987b9","traceId":"bdb0591ea5062c45cef7016c20d3ba20","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.365Z","sequence":22657,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"using JVM's default SSL engine","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"eb7b58ad2bf987b9","traceId":"bdb0591ea5062c45cef7016c20d3ba20","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.365Z","sequence":22658,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"eb7b58ad2bf987b9","traceId":"bdb0591ea5062c45cef7016c20d3ba20","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.365Z","sequence":22659,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"eb7b58ad2bf987b9","traceId":"bdb0591ea5062c45cef7016c20d3ba20","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.365Z","sequence":22660,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connecting to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"eb7b58ad2bf987b9","traceId":"bdb0591ea5062c45cef7016c20d3ba20","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.365Z","sequence":22661,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"received authentication request [mechanism: PLAIN]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1dedcda56e4adb81","traceId":"69c47c181948e7489cf5b4fef16ff098","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.365Z","sequence":22662,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"processing PLAIN authentication request [authzid: , authcid: mqtt-adapter@HONO, pwd: *****]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1dedcda56e4adb81","traceId":"69c47c181948e7489cf5b4fef16ff098","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.365Z","sequence":22663,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"OpenSSL [available: false, supports KeyManagerFactory: false]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1dedcda56e4adb81","traceId":"69c47c181948e7489cf5b4fef16ff098","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.365Z","sequence":22664,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"using JVM's default SSL engine","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1dedcda56e4adb81","traceId":"69c47c181948e7489cf5b4fef16ff098","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.365Z","sequence":22665,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1dedcda56e4adb81","traceId":"69c47c181948e7489cf5b4fef16ff098","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.365Z","sequence":22666,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1dedcda56e4adb81","traceId":"69c47c181948e7489cf5b4fef16ff098","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.365Z","sequence":22667,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connecting to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1dedcda56e4adb81","traceId":"69c47c181948e7489cf5b4fef16ff098","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.365Z","sequence":22668,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"received authentication request [mechanism: PLAIN]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0521936242b92c62","traceId":"c4ce7205ba1ef1800add336a4f1ac3e1","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.365Z","sequence":22669,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"processing PLAIN authentication request [authzid: , authcid: command-router@HONO, pwd: *****]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0521936242b92c62","traceId":"c4ce7205ba1ef1800add336a4f1ac3e1","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.365Z","sequence":22670,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"OpenSSL [available: false, supports KeyManagerFactory: false]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0521936242b92c62","traceId":"c4ce7205ba1ef1800add336a4f1ac3e1","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.365Z","sequence":22671,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"using JVM's default SSL engine","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0521936242b92c62","traceId":"c4ce7205ba1ef1800add336a4f1ac3e1","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.365Z","sequence":22672,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0521936242b92c62","traceId":"c4ce7205ba1ef1800add336a4f1ac3e1","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.365Z","sequence":22673,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0521936242b92c62","traceId":"c4ce7205ba1ef1800add336a4f1ac3e1","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.365Z","sequence":22674,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connecting to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0521936242b92c62","traceId":"c4ce7205ba1ef1800add336a4f1ac3e1","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.365Z","sequence":22675,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"received authentication request [mechanism: PLAIN]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"489589c2908d8211","traceId":"101a94b5f2e57ee31b236726e1de9908","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.365Z","sequence":22676,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"processing PLAIN authentication request [authzid: , authcid: lora-adapter@HONO, pwd: *****]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"489589c2908d8211","traceId":"101a94b5f2e57ee31b236726e1de9908","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.365Z","sequence":22677,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"OpenSSL [available: false, supports KeyManagerFactory: false]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"489589c2908d8211","traceId":"101a94b5f2e57ee31b236726e1de9908","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.365Z","sequence":22678,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"using JVM's default SSL engine","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"489589c2908d8211","traceId":"101a94b5f2e57ee31b236726e1de9908","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.365Z","sequence":22679,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"489589c2908d8211","traceId":"101a94b5f2e57ee31b236726e1de9908","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.366Z","sequence":22680,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"489589c2908d8211","traceId":"101a94b5f2e57ee31b236726e1de9908","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.366Z","sequence":22681,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connecting to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"489589c2908d8211","traceId":"101a94b5f2e57ee31b236726e1de9908","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.366Z","sequence":22682,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"received authentication request [mechanism: PLAIN]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"300178ae548b485c","traceId":"5ecbd10daa697cfa81cb7dac2981f11c","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.366Z","sequence":22683,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"processing PLAIN authentication request [authzid: , authcid: command-router@HONO, pwd: *****]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"300178ae548b485c","traceId":"5ecbd10daa697cfa81cb7dac2981f11c","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.366Z","sequence":22684,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"OpenSSL [available: false, supports KeyManagerFactory: false]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"300178ae548b485c","traceId":"5ecbd10daa697cfa81cb7dac2981f11c","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.366Z","sequence":22685,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"using JVM's default SSL engine","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"300178ae548b485c","traceId":"5ecbd10daa697cfa81cb7dac2981f11c","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.366Z","sequence":22686,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"300178ae548b485c","traceId":"5ecbd10daa697cfa81cb7dac2981f11c","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.366Z","sequence":22687,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"300178ae548b485c","traceId":"5ecbd10daa697cfa81cb7dac2981f11c","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.366Z","sequence":22688,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connecting to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"300178ae548b485c","traceId":"5ecbd10daa697cfa81cb7dac2981f11c","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.373Z","sequence":22689,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"initializing SASL authenticator","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.373Z","sequence":22690,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client provided an empty list of SASL mechanisms [hostname: null, state: PN_SASL_IDLE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.374Z","sequence":22691,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"initializing SASL authenticator","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.374Z","sequence":22692,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client provided an empty list of SASL mechanisms [hostname: null, state: PN_SASL_IDLE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.375Z","sequence":22693,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"initializing SASL authenticator","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.375Z","sequence":22694,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client provided an empty list of SASL mechanisms [hostname: null, state: PN_SASL_IDLE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.376Z","sequence":22695,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"initializing SASL authenticator","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.376Z","sequence":22696,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client provided an empty list of SASL mechanisms [hostname: null, state: PN_SASL_IDLE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.377Z","sequence":22697,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-11dc4f53-9d2f-44b7-990e-b8cf8b6e644b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.387Z","sequence":22698,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6ce8ef4d-a68b-4391-9b0e-8e900503df49, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.387Z","sequence":22699,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client wants to authenticate using SASL [mechanism: PLAIN, host: null, state: PN_SASL_STEP]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.388Z","sequence":22700,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client wants to authenticate using SASL [mechanism: PLAIN, host: null, state: PN_SASL_STEP]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.388Z","sequence":22701,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client wants to authenticate using SASL [mechanism: PLAIN, host: null, state: PN_SASL_STEP]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.389Z","sequence":22702,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"received authentication request [mechanism: PLAIN]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fc1131b861fbfe30","traceId":"c791501ca5d4259c07262eb3a3874e2f","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.389Z","sequence":22703,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"processing PLAIN authentication request [authzid: , authcid: mqtt-adapter@HONO, pwd: *****]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fc1131b861fbfe30","traceId":"c791501ca5d4259c07262eb3a3874e2f","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.389Z","sequence":22704,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"OpenSSL [available: false, supports KeyManagerFactory: false]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fc1131b861fbfe30","traceId":"c791501ca5d4259c07262eb3a3874e2f","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.389Z","sequence":22705,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"using JVM's default SSL engine","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fc1131b861fbfe30","traceId":"c791501ca5d4259c07262eb3a3874e2f","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.39Z","sequence":22706,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fc1131b861fbfe30","traceId":"c791501ca5d4259c07262eb3a3874e2f","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.39Z","sequence":22707,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fc1131b861fbfe30","traceId":"c791501ca5d4259c07262eb3a3874e2f","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.39Z","sequence":22708,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connecting to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fc1131b861fbfe30","traceId":"c791501ca5d4259c07262eb3a3874e2f","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.39Z","sequence":22709,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"received authentication request [mechanism: PLAIN]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"30b69e1491686e7e","traceId":"906ff460557620656c9c47ed8fafb1fa","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.39Z","sequence":22710,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"processing PLAIN authentication request [authzid: , authcid: command-router@HONO, pwd: *****]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"30b69e1491686e7e","traceId":"906ff460557620656c9c47ed8fafb1fa","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.391Z","sequence":22711,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"OpenSSL [available: false, supports KeyManagerFactory: false]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"30b69e1491686e7e","traceId":"906ff460557620656c9c47ed8fafb1fa","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.391Z","sequence":22712,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"using JVM's default SSL engine","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"30b69e1491686e7e","traceId":"906ff460557620656c9c47ed8fafb1fa","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.391Z","sequence":22713,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"30b69e1491686e7e","traceId":"906ff460557620656c9c47ed8fafb1fa","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.391Z","sequence":22714,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"30b69e1491686e7e","traceId":"906ff460557620656c9c47ed8fafb1fa","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.391Z","sequence":22715,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connecting to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"30b69e1491686e7e","traceId":"906ff460557620656c9c47ed8fafb1fa","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.391Z","sequence":22716,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"received authentication request [mechanism: PLAIN]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"28e5b337efc90792","traceId":"b050b85e4a5f47c1e864b6e32d70b0ef","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.392Z","sequence":22717,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"processing PLAIN authentication request [authzid: , authcid: lora-adapter@HONO, pwd: *****]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"28e5b337efc90792","traceId":"b050b85e4a5f47c1e864b6e32d70b0ef","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.392Z","sequence":22718,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"OpenSSL [available: false, supports KeyManagerFactory: false]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"28e5b337efc90792","traceId":"b050b85e4a5f47c1e864b6e32d70b0ef","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.392Z","sequence":22719,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"using JVM's default SSL engine","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"28e5b337efc90792","traceId":"b050b85e4a5f47c1e864b6e32d70b0ef","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.392Z","sequence":22720,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"28e5b337efc90792","traceId":"b050b85e4a5f47c1e864b6e32d70b0ef","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.392Z","sequence":22721,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"28e5b337efc90792","traceId":"b050b85e4a5f47c1e864b6e32d70b0ef","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.393Z","sequence":22722,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connecting to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"28e5b337efc90792","traceId":"b050b85e4a5f47c1e864b6e32d70b0ef","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.393Z","sequence":22723,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client wants to authenticate using SASL [mechanism: PLAIN, host: null, state: PN_SASL_STEP]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.409Z","sequence":22724,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client wants to authenticate using SASL [mechanism: PLAIN, host: null, state: PN_SASL_STEP]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.409Z","sequence":22725,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"received authentication request [mechanism: PLAIN]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ec4bf022a56ba538","traceId":"4c3e63cc85af37d5518b76ae649f82fb","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.409Z","sequence":22726,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"processing PLAIN authentication request [authzid: , authcid: mqtt-adapter@HONO, pwd: *****]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ec4bf022a56ba538","traceId":"4c3e63cc85af37d5518b76ae649f82fb","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.409Z","sequence":22727,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"OpenSSL [available: false, supports KeyManagerFactory: false]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ec4bf022a56ba538","traceId":"4c3e63cc85af37d5518b76ae649f82fb","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.409Z","sequence":22729,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"using JVM's default SSL engine","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ec4bf022a56ba538","traceId":"4c3e63cc85af37d5518b76ae649f82fb","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.41Z","sequence":22730,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ec4bf022a56ba538","traceId":"4c3e63cc85af37d5518b76ae649f82fb","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.41Z","sequence":22731,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ec4bf022a56ba538","traceId":"4c3e63cc85af37d5518b76ae649f82fb","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.41Z","sequence":22732,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connecting to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ec4bf022a56ba538","traceId":"4c3e63cc85af37d5518b76ae649f82fb","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.41Z","sequence":22733,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"received authentication request [mechanism: PLAIN]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cb8753f85d407c31","traceId":"d1568983ac940220d571a9ff123b6dd3","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.411Z","sequence":22734,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"processing PLAIN authentication request [authzid: , authcid: command-router@HONO, pwd: *****]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cb8753f85d407c31","traceId":"d1568983ac940220d571a9ff123b6dd3","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.411Z","sequence":22735,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"OpenSSL [available: false, supports KeyManagerFactory: false]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cb8753f85d407c31","traceId":"d1568983ac940220d571a9ff123b6dd3","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.411Z","sequence":22736,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"using JVM's default SSL engine","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cb8753f85d407c31","traceId":"d1568983ac940220d571a9ff123b6dd3","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.411Z","sequence":22737,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cb8753f85d407c31","traceId":"d1568983ac940220d571a9ff123b6dd3","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.411Z","sequence":22738,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cb8753f85d407c31","traceId":"d1568983ac940220d571a9ff123b6dd3","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.411Z","sequence":22739,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connecting to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cb8753f85d407c31","traceId":"d1568983ac940220d571a9ff123b6dd3","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.409Z","sequence":22728,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"initializing SASL authenticator","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.412Z","sequence":22740,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client provided an empty list of SASL mechanisms [hostname: null, state: PN_SASL_IDLE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.416Z","sequence":22741,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client wants to authenticate using SASL [mechanism: PLAIN, host: null, state: PN_SASL_STEP]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.416Z","sequence":22742,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"received authentication request [mechanism: PLAIN]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"161050a38d3ef7b5","traceId":"83b167f356141487b45da029b6563796","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.417Z","sequence":22743,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"processing PLAIN authentication request [authzid: , authcid: lora-adapter@HONO, pwd: *****]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"161050a38d3ef7b5","traceId":"83b167f356141487b45da029b6563796","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.417Z","sequence":22744,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"OpenSSL [available: false, supports KeyManagerFactory: false]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"161050a38d3ef7b5","traceId":"83b167f356141487b45da029b6563796","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.417Z","sequence":22745,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"using JVM's default SSL engine","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"161050a38d3ef7b5","traceId":"83b167f356141487b45da029b6563796","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.417Z","sequence":22746,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"161050a38d3ef7b5","traceId":"83b167f356141487b45da029b6563796","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.417Z","sequence":22747,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"161050a38d3ef7b5","traceId":"83b167f356141487b45da029b6563796","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.417Z","sequence":22748,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connecting to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"161050a38d3ef7b5","traceId":"83b167f356141487b45da029b6563796","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.865Z","sequence":22749,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.865Z","sequence":22750,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006DC] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.892Z","sequence":22751,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.893Z","sequence":22752,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.917Z","sequence":22753,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a7e17966-1f67-4a50-b5c5-ce2b5eb616f9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.924Z","sequence":22754,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connected to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server], opening connection ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"161050a38d3ef7b5","traceId":"83b167f356141487b45da029b6563796","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.927Z","sequence":22755,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connection to container [hono-auth-0.0.0.0:5671] at [amqps://aloxy-hono-service-auth:5671, role: Authentication Server] open","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"161050a38d3ef7b5","traceId":"83b167f356141487b45da029b6563796","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.934Z","sequence":22756,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"opened receiver link to Authentication service, waiting for token ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"161050a38d3ef7b5","traceId":"83b167f356141487b45da029b6563796","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.935Z","sequence":22757,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"successfully retrieved token from Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"161050a38d3ef7b5","traceId":"83b167f356141487b45da029b6563796","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.935Z","sequence":22758,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"closing connection to Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"161050a38d3ef7b5","traceId":"83b167f356141487b45da029b6563796","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.935Z","sequence":22759,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.EventBusAuthenticationService","level":"DEBUG","message":"received token [length: 969] in response to authentication request","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.936Z","sequence":22760,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.JjwtBasedAuthTokenValidator","level":"DEBUG","message":"using key [id: 984e3639028b1e7d0b7d97f8f3de6a82638af0ed7d06ce7d9e038a1c4c634169] to validate signature (alg: RS256]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.937Z","sequence":22761,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"authentication of client [authorization ID: lora-adapter@HONO] succeeded","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.937Z","sequence":22762,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"finishing SASL handshake with outcome PN_SASL_OK","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.937Z","sequence":22763,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"received connection request from client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.938Z","sequence":22764,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connected to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server], opening connection ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cb8753f85d407c31","traceId":"d1568983ac940220d571a9ff123b6dd3","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.939Z","sequence":22765,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"processing open frame from client container [Hono adapter-lora-Tenant-995cc45f-23b2-488f-a5d9-0b18c4ae6c62]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.94Z","sequence":22766,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"INFO","message":"client connected [container: Hono adapter-lora-Tenant-995cc45f-23b2-488f-a5d9-0b18c4ae6c62, user: lora-adapter@HONO, token valid until: 2023-07-25T05:05:40Z]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.941Z","sequence":22767,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connection to container [hono-auth-0.0.0.0:5671] at [amqps://aloxy-hono-service-auth:5671, role: Authentication Server] open","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cb8753f85d407c31","traceId":"d1568983ac940220d571a9ff123b6dd3","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.942Z","sequence":22768,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"opening new session with client [container: Hono adapter-lora-Tenant-995cc45f-23b2-488f-a5d9-0b18c4ae6c62]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.944Z","sequence":22769,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"opened receiver link to Authentication service, waiting for token ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cb8753f85d407c31","traceId":"d1568983ac940220d571a9ff123b6dd3","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.945Z","sequence":22770,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"successfully retrieved token from Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cb8753f85d407c31","traceId":"d1568983ac940220d571a9ff123b6dd3","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.945Z","sequence":22771,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"closing connection to Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cb8753f85d407c31","traceId":"d1568983ac940220d571a9ff123b6dd3","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.945Z","sequence":22772,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.EventBusAuthenticationService","level":"DEBUG","message":"received token [length: 696] in response to authentication request","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.946Z","sequence":22773,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.JjwtBasedAuthTokenValidator","level":"DEBUG","message":"using key [id: 984e3639028b1e7d0b7d97f8f3de6a82638af0ed7d06ce7d9e038a1c4c634169] to validate signature (alg: RS256]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.946Z","sequence":22774,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"authentication of client [authorization ID: command-router@HONO] succeeded","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.947Z","sequence":22775,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"finishing SASL handshake with outcome PN_SASL_OK","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.947Z","sequence":22776,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"received connection request from client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.95Z","sequence":22777,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"processing open frame from client container [Hono service-command-router-Device Registration-6b43a4ef-0980-4edd-b8fb-ab7a8b085811]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.95Z","sequence":22778,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"INFO","message":"client connected [container: Hono service-command-router-Device Registration-6b43a4ef-0980-4edd-b8fb-ab7a8b085811, user: command-router@HONO, token valid until: 2023-07-25T05:05:40Z]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.954Z","sequence":22779,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"opening new session with client [container: Hono service-command-router-Device Registration-6b43a4ef-0980-4edd-b8fb-ab7a8b085811]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.954Z","sequence":22780,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connected to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server], opening connection ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"300178ae548b485c","traceId":"5ecbd10daa697cfa81cb7dac2981f11c","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.956Z","sequence":22781,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connection to container [hono-auth-0.0.0.0:5671] at [amqps://aloxy-hono-service-auth:5671, role: Authentication Server] open","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"300178ae548b485c","traceId":"5ecbd10daa697cfa81cb7dac2981f11c","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.959Z","sequence":22782,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"opened receiver link to Authentication service, waiting for token ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"300178ae548b485c","traceId":"5ecbd10daa697cfa81cb7dac2981f11c","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.959Z","sequence":22783,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"successfully retrieved token from Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"300178ae548b485c","traceId":"5ecbd10daa697cfa81cb7dac2981f11c","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.959Z","sequence":22784,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"closing connection to Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"300178ae548b485c","traceId":"5ecbd10daa697cfa81cb7dac2981f11c","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.959Z","sequence":22785,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.EventBusAuthenticationService","level":"DEBUG","message":"received token [length: 696] in response to authentication request","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.96Z","sequence":22786,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.JjwtBasedAuthTokenValidator","level":"DEBUG","message":"using key [id: 984e3639028b1e7d0b7d97f8f3de6a82638af0ed7d06ce7d9e038a1c4c634169] to validate signature (alg: RS256]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.961Z","sequence":22787,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"authentication of client [authorization ID: command-router@HONO] succeeded","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.961Z","sequence":22788,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"finishing SASL handshake with outcome PN_SASL_OK","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.961Z","sequence":22789,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"received connection request from client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.964Z","sequence":22790,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"processing open frame from client container [vert.x-6002332e-25c2-4c45-8ea8-6f1cb509d3f4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.965Z","sequence":22791,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"INFO","message":"client connected [container: vert.x-6002332e-25c2-4c45-8ea8-6f1cb509d3f4, user: command-router@HONO, token valid until: 2023-07-25T05:05:40Z]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.965Z","sequence":22792,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: vert.x-6002332e-25c2-4c45-8ea8-6f1cb509d3f4] closed connection","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.966Z","sequence":22793,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: vert.x-6002332e-25c2-4c45-8ea8-6f1cb509d3f4] disconnected","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.979Z","sequence":22794,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connected to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server], opening connection ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0521936242b92c62","traceId":"c4ce7205ba1ef1800add336a4f1ac3e1","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.982Z","sequence":22795,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connection to container [hono-auth-0.0.0.0:5671] at [amqps://aloxy-hono-service-auth:5671, role: Authentication Server] open","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0521936242b92c62","traceId":"c4ce7205ba1ef1800add336a4f1ac3e1","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.984Z","sequence":22796,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"opened receiver link to Authentication service, waiting for token ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0521936242b92c62","traceId":"c4ce7205ba1ef1800add336a4f1ac3e1","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.985Z","sequence":22797,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"successfully retrieved token from Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0521936242b92c62","traceId":"c4ce7205ba1ef1800add336a4f1ac3e1","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.985Z","sequence":22798,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"closing connection to Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0521936242b92c62","traceId":"c4ce7205ba1ef1800add336a4f1ac3e1","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.986Z","sequence":22799,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.EventBusAuthenticationService","level":"DEBUG","message":"received token [length: 696] in response to authentication request","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.987Z","sequence":22800,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.JjwtBasedAuthTokenValidator","level":"DEBUG","message":"using key [id: 984e3639028b1e7d0b7d97f8f3de6a82638af0ed7d06ce7d9e038a1c4c634169] to validate signature (alg: RS256]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.988Z","sequence":22801,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"authentication of client [authorization ID: command-router@HONO] succeeded","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.992Z","sequence":22802,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"finishing SASL handshake with outcome PN_SASL_OK","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.992Z","sequence":22803,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"received connection request from client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.995Z","sequence":22804,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"processing open frame from client container [vert.x-6eeb0c46-bd0e-408b-bf71-52eb5565596b]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.995Z","sequence":22805,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connected to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server], opening connection ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"489589c2908d8211","traceId":"101a94b5f2e57ee31b236726e1de9908","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.996Z","sequence":22806,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"INFO","message":"client connected [container: vert.x-6eeb0c46-bd0e-408b-bf71-52eb5565596b, user: command-router@HONO, token valid until: 2023-07-25T05:05:40Z]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:40.996Z","sequence":22807,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: vert.x-6eeb0c46-bd0e-408b-bf71-52eb5565596b] closed connection","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41Z","sequence":22808,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connection to container [hono-auth-0.0.0.0:5671] at [amqps://aloxy-hono-service-auth:5671, role: Authentication Server] open","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"489589c2908d8211","traceId":"101a94b5f2e57ee31b236726e1de9908","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.001Z","sequence":22809,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: vert.x-6eeb0c46-bd0e-408b-bf71-52eb5565596b] disconnected","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.004Z","sequence":22810,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"opened receiver link to Authentication service, waiting for token ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"489589c2908d8211","traceId":"101a94b5f2e57ee31b236726e1de9908","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.005Z","sequence":22811,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"successfully retrieved token from Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"489589c2908d8211","traceId":"101a94b5f2e57ee31b236726e1de9908","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.005Z","sequence":22812,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"closing connection to Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"489589c2908d8211","traceId":"101a94b5f2e57ee31b236726e1de9908","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.007Z","sequence":22813,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.EventBusAuthenticationService","level":"DEBUG","message":"received token [length: 969] in response to authentication request","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.008Z","sequence":22814,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.JjwtBasedAuthTokenValidator","level":"DEBUG","message":"using key [id: 984e3639028b1e7d0b7d97f8f3de6a82638af0ed7d06ce7d9e038a1c4c634169] to validate signature (alg: RS256]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.009Z","sequence":22815,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"authentication of client [authorization ID: lora-adapter@HONO] succeeded","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.012Z","sequence":22816,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"finishing SASL handshake with outcome PN_SASL_OK","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.012Z","sequence":22817,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"received connection request from client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.013Z","sequence":22818,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connected to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server], opening connection ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"eb7b58ad2bf987b9","traceId":"bdb0591ea5062c45cef7016c20d3ba20","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.015Z","sequence":22819,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"processing open frame from client container [vert.x-36d345ed-2e8a-46bd-a0b9-3f1ebab8ed39]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.015Z","sequence":22820,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"INFO","message":"client connected [container: vert.x-36d345ed-2e8a-46bd-a0b9-3f1ebab8ed39, user: lora-adapter@HONO, token valid until: 2023-07-25T05:05:40Z]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.015Z","sequence":22821,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: vert.x-36d345ed-2e8a-46bd-a0b9-3f1ebab8ed39] closed connection","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.016Z","sequence":22822,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: vert.x-36d345ed-2e8a-46bd-a0b9-3f1ebab8ed39] disconnected","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.016Z","sequence":22823,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connection to container [hono-auth-0.0.0.0:5671] at [amqps://aloxy-hono-service-auth:5671, role: Authentication Server] open","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"eb7b58ad2bf987b9","traceId":"bdb0591ea5062c45cef7016c20d3ba20","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.02Z","sequence":22824,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"opened receiver link to Authentication service, waiting for token ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"eb7b58ad2bf987b9","traceId":"bdb0591ea5062c45cef7016c20d3ba20","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.021Z","sequence":22825,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"successfully retrieved token from Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"eb7b58ad2bf987b9","traceId":"bdb0591ea5062c45cef7016c20d3ba20","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.021Z","sequence":22826,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"closing connection to Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"eb7b58ad2bf987b9","traceId":"bdb0591ea5062c45cef7016c20d3ba20","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.042Z","sequence":22827,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.EventBusAuthenticationService","level":"DEBUG","message":"received token [length: 969] in response to authentication request","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.042Z","sequence":22828,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.JjwtBasedAuthTokenValidator","level":"DEBUG","message":"using key [id: 984e3639028b1e7d0b7d97f8f3de6a82638af0ed7d06ce7d9e038a1c4c634169] to validate signature (alg: RS256]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.043Z","sequence":22829,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connected to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server], opening connection ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"28e5b337efc90792","traceId":"b050b85e4a5f47c1e864b6e32d70b0ef","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.043Z","sequence":22830,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"authentication of client [authorization ID: lora-adapter@HONO] succeeded","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.043Z","sequence":22831,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"finishing SASL handshake with outcome PN_SASL_OK","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.043Z","sequence":22832,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"received connection request from client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.048Z","sequence":22833,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connected to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server], opening connection ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"30b69e1491686e7e","traceId":"906ff460557620656c9c47ed8fafb1fa","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.049Z","sequence":22835,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connection to container [hono-auth-0.0.0.0:5671] at [amqps://aloxy-hono-service-auth:5671, role: Authentication Server] open","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"28e5b337efc90792","traceId":"b050b85e4a5f47c1e864b6e32d70b0ef","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.048Z","sequence":22834,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"processing open frame from client container [vert.x-140ef1d2-f017-4672-a3e4-8b9bcb99524a]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.056Z","sequence":22836,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"INFO","message":"client connected [container: vert.x-140ef1d2-f017-4672-a3e4-8b9bcb99524a, user: lora-adapter@HONO, token valid until: 2023-07-25T05:05:40Z]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.056Z","sequence":22837,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: vert.x-140ef1d2-f017-4672-a3e4-8b9bcb99524a] closed connection","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.056Z","sequence":22838,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: vert.x-140ef1d2-f017-4672-a3e4-8b9bcb99524a] disconnected","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.066Z","sequence":22839,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connection to container [hono-auth-0.0.0.0:5671] at [amqps://aloxy-hono-service-auth:5671, role: Authentication Server] open","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"30b69e1491686e7e","traceId":"906ff460557620656c9c47ed8fafb1fa","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.067Z","sequence":22840,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"opened receiver link to Authentication service, waiting for token ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"28e5b337efc90792","traceId":"b050b85e4a5f47c1e864b6e32d70b0ef","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.067Z","sequence":22841,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"successfully retrieved token from Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"28e5b337efc90792","traceId":"b050b85e4a5f47c1e864b6e32d70b0ef","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.07Z","sequence":22842,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"closing connection to Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"28e5b337efc90792","traceId":"b050b85e4a5f47c1e864b6e32d70b0ef","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.071Z","sequence":22843,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"opened receiver link to Authentication service, waiting for token ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"30b69e1491686e7e","traceId":"906ff460557620656c9c47ed8fafb1fa","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.072Z","sequence":22844,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.EventBusAuthenticationService","level":"DEBUG","message":"received token [length: 969] in response to authentication request","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.076Z","sequence":22845,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"successfully retrieved token from Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"30b69e1491686e7e","traceId":"906ff460557620656c9c47ed8fafb1fa","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.077Z","sequence":22847,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"closing connection to Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"30b69e1491686e7e","traceId":"906ff460557620656c9c47ed8fafb1fa","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.077Z","sequence":22846,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.JjwtBasedAuthTokenValidator","level":"DEBUG","message":"using key [id: 984e3639028b1e7d0b7d97f8f3de6a82638af0ed7d06ce7d9e038a1c4c634169] to validate signature (alg: RS256]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.079Z","sequence":22848,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connected to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server], opening connection ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1dedcda56e4adb81","traceId":"69c47c181948e7489cf5b4fef16ff098","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.08Z","sequence":22849,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"authentication of client [authorization ID: lora-adapter@HONO] succeeded","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.08Z","sequence":22850,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"finishing SASL handshake with outcome PN_SASL_OK","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.08Z","sequence":22851,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"received connection request from client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.08Z","sequence":22852,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.EventBusAuthenticationService","level":"DEBUG","message":"received token [length: 696] in response to authentication request","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.081Z","sequence":22853,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.JjwtBasedAuthTokenValidator","level":"DEBUG","message":"using key [id: 984e3639028b1e7d0b7d97f8f3de6a82638af0ed7d06ce7d9e038a1c4c634169] to validate signature (alg: RS256]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.081Z","sequence":22854,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connection to container [hono-auth-0.0.0.0:5671] at [amqps://aloxy-hono-service-auth:5671, role: Authentication Server] open","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1dedcda56e4adb81","traceId":"69c47c181948e7489cf5b4fef16ff098","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.085Z","sequence":22856,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"opened receiver link to Authentication service, waiting for token ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1dedcda56e4adb81","traceId":"69c47c181948e7489cf5b4fef16ff098","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.085Z","sequence":22857,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"successfully retrieved token from Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1dedcda56e4adb81","traceId":"69c47c181948e7489cf5b4fef16ff098","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.085Z","sequence":22858,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"closing connection to Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1dedcda56e4adb81","traceId":"69c47c181948e7489cf5b4fef16ff098","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.081Z","sequence":22855,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"authentication of client [authorization ID: command-router@HONO] succeeded","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.085Z","sequence":22859,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"finishing SASL handshake with outcome PN_SASL_OK","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.085Z","sequence":22860,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"received connection request from client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.086Z","sequence":22861,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.EventBusAuthenticationService","level":"DEBUG","message":"received token [length: 969] in response to authentication request","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.086Z","sequence":22862,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.JjwtBasedAuthTokenValidator","level":"DEBUG","message":"using key [id: 984e3639028b1e7d0b7d97f8f3de6a82638af0ed7d06ce7d9e038a1c4c634169] to validate signature (alg: RS256]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.087Z","sequence":22863,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"authentication of client [authorization ID: mqtt-adapter@HONO] succeeded","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.087Z","sequence":22864,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"finishing SASL handshake with outcome PN_SASL_OK","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.096Z","sequence":22865,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"received connection request from client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.097Z","sequence":22866,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connected to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server], opening connection ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ec4bf022a56ba538","traceId":"4c3e63cc85af37d5518b76ae649f82fb","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.097Z","sequence":22867,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"processing open frame from client container [Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.1Z","sequence":22868,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"INFO","message":"client connected [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6, user: lora-adapter@HONO, token valid until: 2023-07-25T05:05:40Z]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.101Z","sequence":22869,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connection to container [hono-auth-0.0.0.0:5671] at [amqps://aloxy-hono-service-auth:5671, role: Authentication Server] open","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ec4bf022a56ba538","traceId":"4c3e63cc85af37d5518b76ae649f82fb","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.103Z","sequence":22870,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"processing open frame from client container [Hono service-command-router-Tenant-8c258f6d-8b57-47cf-8f84-a38d9786fed2]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.103Z","sequence":22871,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"INFO","message":"client connected [container: Hono service-command-router-Tenant-8c258f6d-8b57-47cf-8f84-a38d9786fed2, user: command-router@HONO, token valid until: 2023-07-25T05:05:41Z]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.103Z","sequence":22872,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"processing open frame from client container [vert.x-860cd542-6100-4da1-ad66-623b709d6270]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.103Z","sequence":22873,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"INFO","message":"client connected [container: vert.x-860cd542-6100-4da1-ad66-623b709d6270, user: mqtt-adapter@HONO, token valid until: 2023-07-25T05:05:41Z]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.103Z","sequence":22874,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: vert.x-860cd542-6100-4da1-ad66-623b709d6270] closed connection","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.104Z","sequence":22875,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"opened receiver link to Authentication service, waiting for token ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ec4bf022a56ba538","traceId":"4c3e63cc85af37d5518b76ae649f82fb","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.104Z","sequence":22877,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"successfully retrieved token from Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ec4bf022a56ba538","traceId":"4c3e63cc85af37d5518b76ae649f82fb","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.104Z","sequence":22878,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"closing connection to Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ec4bf022a56ba538","traceId":"4c3e63cc85af37d5518b76ae649f82fb","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.104Z","sequence":22876,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: vert.x-860cd542-6100-4da1-ad66-623b709d6270] disconnected","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.108Z","sequence":22879,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.EventBusAuthenticationService","level":"DEBUG","message":"received token [length: 969] in response to authentication request","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.113Z","sequence":22881,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.JjwtBasedAuthTokenValidator","level":"DEBUG","message":"using key [id: 984e3639028b1e7d0b7d97f8f3de6a82638af0ed7d06ce7d9e038a1c4c634169] to validate signature (alg: RS256]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.112Z","sequence":22880,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connected to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server], opening connection ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9daa26f0b4c38e8a","traceId":"126476c66c93b60f13d5782531421e3f","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.114Z","sequence":22882,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"authentication of client [authorization ID: mqtt-adapter@HONO] succeeded","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.117Z","sequence":22884,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"finishing SASL handshake with outcome PN_SASL_OK","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.118Z","sequence":22885,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"received connection request from client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.117Z","sequence":22883,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connection to container [hono-auth-0.0.0.0:5671] at [amqps://aloxy-hono-service-auth:5671, role: Authentication Server] open","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9daa26f0b4c38e8a","traceId":"126476c66c93b60f13d5782531421e3f","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.124Z","sequence":22886,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"opening new session with client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.125Z","sequence":22888,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"opening new session with client [container: Hono service-command-router-Tenant-8c258f6d-8b57-47cf-8f84-a38d9786fed2]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.124Z","sequence":22887,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"opened receiver link to Authentication service, waiting for token ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9daa26f0b4c38e8a","traceId":"126476c66c93b60f13d5782531421e3f","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.127Z","sequence":22889,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"successfully retrieved token from Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9daa26f0b4c38e8a","traceId":"126476c66c93b60f13d5782531421e3f","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.127Z","sequence":22890,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"closing connection to Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9daa26f0b4c38e8a","traceId":"126476c66c93b60f13d5782531421e3f","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.127Z","sequence":22891,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connected to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server], opening connection ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fc1131b861fbfe30","traceId":"c791501ca5d4259c07262eb3a3874e2f","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.128Z","sequence":22892,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"processing open frame from client container [Hono adapter-mqtt-Tenant-ded758d0-b7cf-4d65-a210-6d11fa222d32]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.128Z","sequence":22893,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"INFO","message":"client connected [container: Hono adapter-mqtt-Tenant-ded758d0-b7cf-4d65-a210-6d11fa222d32, user: mqtt-adapter@HONO, token valid until: 2023-07-25T05:05:41Z]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.129Z","sequence":22894,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.EventBusAuthenticationService","level":"DEBUG","message":"received token [length: 969] in response to authentication request","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.13Z","sequence":22895,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.JjwtBasedAuthTokenValidator","level":"DEBUG","message":"using key [id: 984e3639028b1e7d0b7d97f8f3de6a82638af0ed7d06ce7d9e038a1c4c634169] to validate signature (alg: RS256]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.131Z","sequence":22896,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connection to container [hono-auth-0.0.0.0:5671] at [amqps://aloxy-hono-service-auth:5671, role: Authentication Server] open","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fc1131b861fbfe30","traceId":"c791501ca5d4259c07262eb3a3874e2f","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.132Z","sequence":22897,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"authentication of client [authorization ID: mqtt-adapter@HONO] succeeded","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.136Z","sequence":22898,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"opened receiver link to Authentication service, waiting for token ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fc1131b861fbfe30","traceId":"c791501ca5d4259c07262eb3a3874e2f","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.136Z","sequence":22899,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"finishing SASL handshake with outcome PN_SASL_OK","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.137Z","sequence":22901,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"received connection request from client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.138Z","sequence":22902,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"opening new session with client [container: Hono adapter-mqtt-Tenant-ded758d0-b7cf-4d65-a210-6d11fa222d32]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.136Z","sequence":22900,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"successfully retrieved token from Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fc1131b861fbfe30","traceId":"c791501ca5d4259c07262eb3a3874e2f","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.138Z","sequence":22903,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"closing connection to Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fc1131b861fbfe30","traceId":"c791501ca5d4259c07262eb3a3874e2f","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.139Z","sequence":22904,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.EventBusAuthenticationService","level":"DEBUG","message":"received token [length: 969] in response to authentication request","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.145Z","sequence":22905,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.JjwtBasedAuthTokenValidator","level":"DEBUG","message":"using key [id: 984e3639028b1e7d0b7d97f8f3de6a82638af0ed7d06ce7d9e038a1c4c634169] to validate signature (alg: RS256]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.146Z","sequence":22906,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"authentication of client [authorization ID: mqtt-adapter@HONO] succeeded","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.146Z","sequence":22907,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"finishing SASL handshake with outcome PN_SASL_OK","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.146Z","sequence":22908,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"received connection request from client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.147Z","sequence":22909,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"processing open frame from client container [vert.x-bf38d499-4461-42a8-b8db-a10cbd4b814f]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.147Z","sequence":22910,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"INFO","message":"client connected [container: vert.x-bf38d499-4461-42a8-b8db-a10cbd4b814f, user: mqtt-adapter@HONO, token valid until: 2023-07-25T05:05:41Z]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.147Z","sequence":22911,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: vert.x-bf38d499-4461-42a8-b8db-a10cbd4b814f] closed connection","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.148Z","sequence":22912,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: vert.x-bf38d499-4461-42a8-b8db-a10cbd4b814f] disconnected","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.148Z","sequence":22913,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"processing open frame from client container [Hono adapter-mqtt-Credentials-75faa79c-12c0-45f2-bd9c-973655a3937c]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.149Z","sequence":22914,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"INFO","message":"client connected [container: Hono adapter-mqtt-Credentials-75faa79c-12c0-45f2-bd9c-973655a3937c, user: mqtt-adapter@HONO, token valid until: 2023-07-25T05:05:41Z]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.153Z","sequence":22915,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"opening new session with client [container: Hono adapter-mqtt-Credentials-75faa79c-12c0-45f2-bd9c-973655a3937c]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.78Z","sequence":22916,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Credentials-75faa79c-12c0-45f2-bd9c-973655a3937c] wants to open a link [address: Source{address='credentials/oci/2e090c0f-8460-4c5a-9deb-229c6f5702fc', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.78Z","sequence":22917,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-0]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.78Z","sequence":22918,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@2e53c3cf] for replies to [credentials/oci/2e090c0f-8460-4c5a-9deb-229c6f5702fc]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.783Z","sequence":22919,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Credentials-75faa79c-12c0-45f2-bd9c-973655a3937c] wants to open a link [address: Target{address='credentials/oci', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.783Z","sequence":22920,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-1]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.784Z","sequence":22921,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.788Z","sequence":22922,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/oci:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.789Z","sequence":22923,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: oci, type: hashed-password, auth-id: auth-0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.825Z","sequence":22924,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-09e814f6-ed54-4499-b65b-ea7b1bd58b84, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.948Z","sequence":22925,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.948Z","sequence":22926,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AA7] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.949Z","sequence":22927,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.949Z","sequence":22928,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.96Z","sequence":22929,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.96Z","sequence":22930,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.963Z","sequence":22931,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0e0bc033-13dc-40b4-84d3-434641c37614, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:41.968Z","sequence":22932,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4c868146-24e3-4236-ac0c-d44ee62b8b01, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:42.439Z","sequence":22933,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:42.439Z","sequence":22934,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001E9] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:42.445Z","sequence":22935,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:42.445Z","sequence":22936,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:42.448Z","sequence":22937,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-617702c8-903f-4482-abf6-5365aa693b3d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:42.695Z","sequence":22938,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/oci:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:42.695Z","sequence":22939,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: oci, type: hashed-password, auth-id: auth-0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:42.715Z","sequence":22940,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-106457bc-ab76-4d37-9f49-ad4a1b87c2de, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:43.116Z","sequence":22941,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:43.116Z","sequence":22942,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001E9] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:43.117Z","sequence":22943,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:43.117Z","sequence":22944,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001E9] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:43.123Z","sequence":22945,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:43.123Z","sequence":22946,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:43.124Z","sequence":22947,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:43.124Z","sequence":22948,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:43.124Z","sequence":22949,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:43.124Z","sequence":22950,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A98] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:43.126Z","sequence":22951,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d194bde0-0984-4f36-8c83-c14a1d6c5c25, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:43.127Z","sequence":22952,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-46b02817-e1e6-44c9-9391-bba2f2c1424f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:43.13Z","sequence":22953,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:43.13Z","sequence":22954,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:43.136Z","sequence":22955,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-cdfb7709-8adb-42f8-b916-6f572b676bd4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:43.341Z","sequence":22956,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:43.341Z","sequence":22957,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A9C] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:43.347Z","sequence":22958,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:43.347Z","sequence":22959,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:43.353Z","sequence":22960,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c9059077-2e57-4522-ba91-74338fb45403, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:44.003Z","sequence":22961,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:44.003Z","sequence":22962,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A9D] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:44.009Z","sequence":22963,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:44.01Z","sequence":22964,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:44.017Z","sequence":22965,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2e17e18f-9619-4da1-8afe-ed1c1e208e68, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:44.215Z","sequence":22966,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:44.215Z","sequence":22967,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006AA] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:44.221Z","sequence":22968,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:44.221Z","sequence":22969,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:44.226Z","sequence":22970,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2e28b16d-7d0c-45ef-bd32-a46a634d73e6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:44.649Z","sequence":22971,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:44.649Z","sequence":22972,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C01] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:44.69Z","sequence":22973,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:44.69Z","sequence":22974,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:44.698Z","sequence":22975,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-13ee10ef-c910-4f42-a0e3-5cfa2529aaed, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:44.818Z","sequence":22976,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:44.818Z","sequence":22977,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AE3] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:44.824Z","sequence":22978,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:44.824Z","sequence":22979,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:44.829Z","sequence":22980,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-baa6dda2-ca5d-4eee-98df-d0c0f1f04209, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:45.525Z","sequence":22981,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:45.525Z","sequence":22982,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BFC] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:45.535Z","sequence":22983,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:45.536Z","sequence":22984,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:45.546Z","sequence":22985,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-392221fb-c550-4f20-8a65-b4bb1eb3c548, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:45.752Z","sequence":22986,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Tenant-995cc45f-23b2-488f-a5d9-0b18c4ae6c62] wants to open a link [address: Source{address='tenant/a7e529ec-49ab-4df1-bb01-d5e385e2f9be', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:45.752Z","sequence":22987,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-0]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:45.753Z","sequence":22988,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@471a70e2] for replies to [tenant/a7e529ec-49ab-4df1-bb01-d5e385e2f9be]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:45.755Z","sequence":22989,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Tenant-995cc45f-23b2-488f-a5d9-0b18c4ae6c62] wants to open a link [address: Target{address='tenant', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:45.755Z","sequence":22990,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-1]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:45.756Z","sequence":22991,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:45.758Z","sequence":22992,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:45.758Z","sequence":22993,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: shell]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:45.763Z","sequence":22994,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-996e4e6b-7ee6-461a-b68c-378f4dd3f853, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:45.765Z","sequence":22995,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Source{address='credentials/shell/3403eda1-6ecb-4f31-b820-3248932fc864', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:45.765Z","sequence":22996,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-0]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:45.765Z","sequence":22997,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@1f644af1] for replies to [credentials/shell/3403eda1-6ecb-4f31-b820-3248932fc864]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:45.767Z","sequence":22998,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Target{address='credentials/shell', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:45.767Z","sequence":22999,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-1]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:45.767Z","sequence":23000,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:45.77Z","sequence":23001,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/shell:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:45.77Z","sequence":23002,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: shell, type: hashed-password, auth-id: auth-gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:45.799Z","sequence":23003,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-ddba591b-0ade-4767-bf19-fb38ece52193, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:45.928Z","sequence":23004,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:45.928Z","sequence":23005,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AE5] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:45.938Z","sequence":23006,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:45.938Z","sequence":23007,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:45.948Z","sequence":23008,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ee0c919c-19c8-45c1-b626-62945736471b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:46.101Z","sequence":23009,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:46.101Z","sequence":23010,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A96] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:46.112Z","sequence":23011,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:46.112Z","sequence":23012,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:46.121Z","sequence":23013,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6eebb0c6-63e3-4bd2-9a44-3961b25aa8ff, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:49.139Z","sequence":23014,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:49.14Z","sequence":23015,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BB84C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:49.178Z","sequence":23016,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e58366b0-5dc0-4511-a18e-505016528f28, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:50.389Z","sequence":23017,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:50.389Z","sequence":23018,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 0008004B5135]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:50.413Z","sequence":23019,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e843a263-337a-4903-af74-4f1fb73a58fa, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:50.461Z","sequence":23020,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:50.461Z","sequence":23021,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000202] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:50.487Z","sequence":23022,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:50.488Z","sequence":23023,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:50.489Z","sequence":23024,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:50.49Z","sequence":23025,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000202] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:50.511Z","sequence":23026,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4ab27503-d02b-439f-bff7-c633c32f79c9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:50.52Z","sequence":23027,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:50.52Z","sequence":23028,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:50.531Z","sequence":23029,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-fff62fcf-49e2-42eb-ac5a-dc4c59570f11, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:51.301Z","sequence":23030,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Tenant-ded758d0-b7cf-4d65-a210-6d11fa222d32] wants to open a link [address: Source{address='tenant/13538422-3825-40b8-9b42-3845a47cdc5f', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:51.302Z","sequence":23031,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-0]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:51.302Z","sequence":23032,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@5b7d3b87] for replies to [tenant/13538422-3825-40b8-9b42-3845a47cdc5f]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:51.304Z","sequence":23033,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Tenant-ded758d0-b7cf-4d65-a210-6d11fa222d32] wants to open a link [address: Target{address='tenant', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:51.304Z","sequence":23034,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-1]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:51.304Z","sequence":23035,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:51.307Z","sequence":23036,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:51.307Z","sequence":23037,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: conditionall]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:51.314Z","sequence":23038,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-9b51041e-4187-4209-aefc-72f95326bcf4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:51.316Z","sequence":23039,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Credentials-75faa79c-12c0-45f2-bd9c-973655a3937c] wants to open a link [address: Source{address='credentials/conditionall/de75ca58-37da-4584-a725-8488b85cc39c', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:51.317Z","sequence":23040,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-2]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:51.317Z","sequence":23041,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@152567e0] for replies to [credentials/conditionall/de75ca58-37da-4584-a725-8488b85cc39c]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:51.32Z","sequence":23042,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Credentials-75faa79c-12c0-45f2-bd9c-973655a3937c] wants to open a link [address: Target{address='credentials/conditionall', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:51.321Z","sequence":23043,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:51.321Z","sequence":23044,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:51.324Z","sequence":23045,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/conditionall:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:51.325Z","sequence":23046,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: conditionall, type: hashed-password, auth-id: auth-0008004B512D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:51.364Z","sequence":23047,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-cdb13db7-c6ac-443d-baa0-fc84f2e593c6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:51.501Z","sequence":23048,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/conditionall:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:51.501Z","sequence":23049,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: conditionall, device-id: 0008004B512D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:51.529Z","sequence":23050,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-bdc551d0-d865-40b2-9216-e967ad6a1076, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:52.821Z","sequence":23051,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:52.821Z","sequence":23052,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AB2] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:52.839Z","sequence":23053,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:52.84Z","sequence":23054,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:52.856Z","sequence":23055,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ca148831-1ba1-4eb7-b672-11a8b50f4d1f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:53.874Z","sequence":23056,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:53.874Z","sequence":23057,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AA5] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:53.882Z","sequence":23058,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:53.882Z","sequence":23059,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:53.889Z","sequence":23060,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-63092642-3096-4f29-94d8-ed864aee1533, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:54.712Z","sequence":23061,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:54.713Z","sequence":23062,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 70B3D57BB1001260] for gateway [gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:54.714Z","sequence":23063,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:54.714Z","sequence":23064,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:54.754Z","sequence":23065,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6282cdd1-3bd3-4175-ba46-15fe93b52e9a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:54.755Z","sequence":23066,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:54.755Z","sequence":23067,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:54.773Z","sequence":23068,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5271a762-3b5e-4ca4-83e0-ecc3f8bb7922, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:54.913Z","sequence":23069,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:54.913Z","sequence":23070,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BBD1B]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:54.924Z","sequence":23071,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a5a8b718-137a-4660-be89-4055bf2b51b6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:56.325Z","sequence":23072,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:56.325Z","sequence":23073,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A97] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:56.331Z","sequence":23074,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:56.332Z","sequence":23075,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:56.339Z","sequence":23076,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e07590be-9c07-45e1-a8d1-0efae6ce2bce, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:58.69Z","sequence":23077,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:58.69Z","sequence":23078,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100016C] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:58.701Z","sequence":23079,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:58.701Z","sequence":23080,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:58.704Z","sequence":23081,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-530ed8c9-9ab2-4578-a511-0c95a8b5e131, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:58.71Z","sequence":23082,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:58.71Z","sequence":23083,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100016C] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:58.714Z","sequence":23084,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:58.714Z","sequence":23085,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:05:58.717Z","sequence":23086,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d1a5a05a-2e04-4800-ad0a-c2136859ed89, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:01.893Z","sequence":23087,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/arkema:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:01.894Z","sequence":23088,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: arkema, device-id: 0008004AE119]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:01.953Z","sequence":23089,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b8d3d545-e59c-4b53-9661-4b14b809d4fd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:01.96Z","sequence":23090,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:01.961Z","sequence":23091,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: arkema]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:01.967Z","sequence":23092,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-c9a8987b-f564-46f0-8f9c-a944ea47f111, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:05.451Z","sequence":23093,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:05.451Z","sequence":23094,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100190D] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:05.551Z","sequence":23095,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:05.551Z","sequence":23096,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:05.606Z","sequence":23097,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c35bbf1c-a0de-4a85-a1a1-9770c22b3c04, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:05.801Z","sequence":23098,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:05.802Z","sequence":23099,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006D1] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:05.814Z","sequence":23100,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:05.814Z","sequence":23101,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:05.821Z","sequence":23102,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-eba90c7e-a55f-4bcb-b3f8-75f5b2d6ec71, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:06.767Z","sequence":23103,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:06.767Z","sequence":23104,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10002D6] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:06.772Z","sequence":23105,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:06.772Z","sequence":23106,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:06.778Z","sequence":23107,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6fa9c2bb-4696-4c59-8e89-346b10d528a5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:09.989Z","sequence":23108,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:09.989Z","sequence":23109,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AAF] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:10.018Z","sequence":23110,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:10.019Z","sequence":23111,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:10.046Z","sequence":23112,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f753cad3-9583-4825-a34e-c78ae3f3507d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:11.449Z","sequence":23113,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:11.449Z","sequence":23114,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C15] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:11.477Z","sequence":23115,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:11.477Z","sequence":23116,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:11.503Z","sequence":23117,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-12ddc00f-9a30-41ea-901b-b2dc20e347c1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:14.02Z","sequence":23118,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:14.02Z","sequence":23119,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006B8] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:14.044Z","sequence":23120,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:14.044Z","sequence":23121,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:14.098Z","sequence":23122,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-864e9043-bd98-45c2-a77f-74fc6dc8ef8a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:14.778Z","sequence":23123,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:14.778Z","sequence":23124,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006B3] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:14.786Z","sequence":23125,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:14.786Z","sequence":23126,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:14.793Z","sequence":23127,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1b920f53-1c1b-4cd2-9099-ef07dc1fa7a9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:16.072Z","sequence":23128,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:16.072Z","sequence":23129,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:16.078Z","sequence":23130,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-44cfc514-8421-46f8-b01a-a5020572eef9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:16.861Z","sequence":23131,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:16.861Z","sequence":23132,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A9F] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:16.868Z","sequence":23133,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:16.868Z","sequence":23134,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:16.875Z","sequence":23135,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d8a2f4a9-c26c-4f68-a041-ae51077d0bdc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:19.471Z","sequence":23136,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:19.472Z","sequence":23137,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100140D] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:19.488Z","sequence":23138,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:19.489Z","sequence":23139,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:19.501Z","sequence":23140,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7fd43b7e-319e-421a-8fca-3a1226836f8c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:21.06Z","sequence":23141,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:21.06Z","sequence":23142,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C09] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:21.066Z","sequence":23143,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:21.066Z","sequence":23144,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:21.073Z","sequence":23145,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a71c8f5b-2f57-4b48-b49a-268e45b14b69, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:22.203Z","sequence":23146,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:22.203Z","sequence":23147,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A9A] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:22.209Z","sequence":23148,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:22.209Z","sequence":23149,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:22.216Z","sequence":23150,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-acc7d4d5-3e9e-4296-88ca-6369c79b0e82, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:23.113Z","sequence":23151,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:23.113Z","sequence":23152,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A46] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:23.118Z","sequence":23153,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:23.118Z","sequence":23154,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:23.125Z","sequence":23155,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c01e3743-8ed6-4d4c-a38a-19aaa6adaae5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:24.517Z","sequence":23156,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:24.517Z","sequence":23157,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100057A] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:24.544Z","sequence":23158,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:24.544Z","sequence":23159,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:24.557Z","sequence":23160,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-aaa0ecf1-fb5a-42ff-a655-4685eff7981a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:26.032Z","sequence":23161,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:26.032Z","sequence":23162,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AAB] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:26.038Z","sequence":23163,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:26.038Z","sequence":23164,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:26.045Z","sequence":23165,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-93370ed2-8e29-417f-80c9-253c20e71458, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:28.403Z","sequence":23166,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:28.403Z","sequence":23167,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000802] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:28.411Z","sequence":23168,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:28.411Z","sequence":23169,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:28.416Z","sequence":23170,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-cc6edefc-f746-4654-b412-41b14375218a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:29.217Z","sequence":23171,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:29.217Z","sequence":23172,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006C3] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:29.222Z","sequence":23173,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:29.222Z","sequence":23174,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:29.228Z","sequence":23175,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-52d04a33-bde0-4f41-87c2-7d2b54a60a30, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:32.069Z","sequence":23176,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:32.069Z","sequence":23177,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100190F] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:32.074Z","sequence":23178,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:32.074Z","sequence":23179,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:32.081Z","sequence":23180,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3c23f551-e975-4097-854d-0e4271bd6ea9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:35.49Z","sequence":23181,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:35.49Z","sequence":23182,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AA1] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:35.5Z","sequence":23183,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:35.5Z","sequence":23184,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:35.507Z","sequence":23185,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6af0b943-1f4f-4551-80f5-002d0f05c311, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:36.945Z","sequence":23186,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:36.945Z","sequence":23187,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10018EE] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:36.952Z","sequence":23188,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:36.952Z","sequence":23189,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:36.958Z","sequence":23190,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3b1438df-ce2b-444e-ba8c-e1f074752478, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:37.578Z","sequence":23191,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:37.579Z","sequence":23192,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AB3] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:37.585Z","sequence":23193,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:37.585Z","sequence":23194,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:37.592Z","sequence":23195,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4aacdf88-5ac7-45b7-8770-0e2146ec2960, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:41.021Z","sequence":23196,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:41.022Z","sequence":23197,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10018F1] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:41.027Z","sequence":23198,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:41.028Z","sequence":23199,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:41.034Z","sequence":23200,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1b659d70-390f-49a7-af4c-c5e7af92d95f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:42.641Z","sequence":23201,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:42.641Z","sequence":23202,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BBD1C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:42.645Z","sequence":23203,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-503ecfd2-4276-4342-bb58-70555a2c10b6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:42.65Z","sequence":23204,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:42.65Z","sequence":23205,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: lanxess]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:42.653Z","sequence":23206,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-d954ccea-560f-4f5e-bbc6-82f7cffb2dfb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:44.296Z","sequence":23207,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:44.296Z","sequence":23208,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:44.306Z","sequence":23209,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c5695355-6622-4823-b82f-5aa49d97966e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:44.311Z","sequence":23210,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:44.311Z","sequence":23211,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: ineos]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:44.314Z","sequence":23212,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-516a850e-99d1-4f90-9535-12e67b774a82, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:47.034Z","sequence":23213,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:47.034Z","sequence":23214,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006A4] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:47.04Z","sequence":23215,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:47.04Z","sequence":23216,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:47.046Z","sequence":23217,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-955a8f03-8bf8-4cfb-8543-0b329b0b823a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:51.891Z","sequence":23218,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:51.891Z","sequence":23219,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10018F0] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:51.911Z","sequence":23220,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:51.911Z","sequence":23221,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:51.923Z","sequence":23222,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4fd457bb-9a59-4e22-a33c-b0104acd78c2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:52.284Z","sequence":23223,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:52.285Z","sequence":23224,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AA0] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:52.29Z","sequence":23225,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:52.29Z","sequence":23226,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:52.296Z","sequence":23227,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-67fe8903-b2fa-43a3-9d06-3d746ff52a84, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:55.319Z","sequence":23228,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:55.319Z","sequence":23229,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001ABA] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:55.325Z","sequence":23230,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:55.325Z","sequence":23231,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:55.331Z","sequence":23232,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-60938fc7-94ae-4d34-acd4-3cc5cf1bc044, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:56.733Z","sequence":23233,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:56.733Z","sequence":23234,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10018F2] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:56.747Z","sequence":23235,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:56.747Z","sequence":23236,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:06:56.759Z","sequence":23237,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-995d5aff-6c0e-4e7f-b15e-dad59b4438da, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:01.842Z","sequence":23238,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:01.842Z","sequence":23239,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AAC] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:01.848Z","sequence":23240,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:01.848Z","sequence":23241,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:01.854Z","sequence":23242,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0eef510e-8542-4826-a380-3bfc939d1a96, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:02.597Z","sequence":23243,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:02.597Z","sequence":23244,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A94] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:02.605Z","sequence":23245,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:02.605Z","sequence":23246,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:02.613Z","sequence":23247,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9fd426f9-c792-4e8c-947c-3d1d54c0f390, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:04.433Z","sequence":23248,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191183]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2c02f75f7fbaf4b1","parentId":"d615d9455f32ee4d","traceId":"00000000000000009e64e11afef0ffae","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:04.468Z","sequence":23249,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191183, resource-version: e43b9286-b90f-474b-864f-9c157bf3e371]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2c02f75f7fbaf4b1","parentId":"d615d9455f32ee4d","traceId":"00000000000000009e64e11afef0ffae","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:04.477Z","sequence":23250,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191183, resource-version: 0695b97a-585a-4917-85ce-625637ff1bbd]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2c02f75f7fbaf4b1","parentId":"d615d9455f32ee4d","traceId":"00000000000000009e64e11afef0ffae","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:04.481Z","sequence":23251,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191183]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2c6bf8605a682439","parentId":"0b5977d61f5012ba","traceId":"00000000000000009e64e11afef0ffae","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:04.717Z","sequence":23252,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191183]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2c6bf8605a682439","parentId":"0b5977d61f5012ba","traceId":"00000000000000009e64e11afef0ffae","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:06.112Z","sequence":23253,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF4651805DFC97C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f9bf646ade077c19","parentId":"95aa6b8bab94c8a6","traceId":"00000000000000005f999a1c97a3368e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:06.13Z","sequence":23254,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF4651805DFC97C, resource-version: 47814ba4-a074-4bb5-a544-e0bbd674ddbe]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f9bf646ade077c19","parentId":"95aa6b8bab94c8a6","traceId":"00000000000000005f999a1c97a3368e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:06.136Z","sequence":23255,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF4651805DFC97C, resource-version: 8a3744d3-b151-4f95-a999-fa09a66a059d]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f9bf646ade077c19","parentId":"95aa6b8bab94c8a6","traceId":"00000000000000005f999a1c97a3368e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:06.479Z","sequence":23256,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFCB374F6944CEF]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"70a78f753537d6cb","parentId":"e47c0b8e2d0b79bc","traceId":"0000000000000000d2ddb758eca03d6e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:06.505Z","sequence":23257,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFCB374F6944CEF]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"70a78f753537d6cb","parentId":"e47c0b8e2d0b79bc","traceId":"0000000000000000d2ddb758eca03d6e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:07.259Z","sequence":23258,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:07.26Z","sequence":23259,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:07.263Z","sequence":23260,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-a900317f-5421-4d25-9785-48ae942b3e7f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:07.265Z","sequence":23261,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Source{address='credentials/integrationtest/d50593fe-40f8-427c-bdd6-e38aec9aaadb', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:07.265Z","sequence":23262,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-2]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:07.265Z","sequence":23263,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@77b7e935] for replies to [credentials/integrationtest/d50593fe-40f8-427c-bdd6-e38aec9aaadb]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:07.268Z","sequence":23264,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Target{address='credentials/integrationtest', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:07.268Z","sequence":23265,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:07.268Z","sequence":23266,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:07.271Z","sequence":23267,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:07.271Z","sequence":23268,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191183]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:07.286Z","sequence":23269,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-66543617-5256-44b4-958d-fbfbcad0b76d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:07.415Z","sequence":23270,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:07.415Z","sequence":23271,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF4651805DFC97C] for gateway [gateway_integrationtest_network_191183]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:07.416Z","sequence":23272,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:07.417Z","sequence":23273,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191183]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:07.422Z","sequence":23274,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:07.422Z","sequence":23275,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:07.423Z","sequence":23276,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a9d1929a-3107-472b-aaf0-a00bd3835e09, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:07.681Z","sequence":23277,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-43c4de32-6199-4d42-9e58-ce3979ffa995, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:07.812Z","sequence":23278,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 4E94896A69D4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"30cf4cf9e157edf7","parentId":"b82b5487b7004005","traceId":"0000000000000000a7a9510f8ce8ac25","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:08.297Z","sequence":23279,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 4E94896A69D4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"30cf4cf9e157edf7","parentId":"b82b5487b7004005","traceId":"0000000000000000a7a9510f8ce8ac25","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:09.123Z","sequence":23280,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:09.123Z","sequence":23281,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C0D] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:09.137Z","sequence":23282,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:09.138Z","sequence":23283,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:09.145Z","sequence":23284,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f0905bf7-3059-4a6b-960a-c502dd46fb4b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:10.269Z","sequence":23285,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:10.27Z","sequence":23286,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C13] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:10.28Z","sequence":23287,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:10.28Z","sequence":23288,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:10.289Z","sequence":23289,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0ab2e7e4-5975-499d-83f9-21c0a3f244e0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:12.832Z","sequence":23290,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 4E1B4BD43753]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d9f04693fbd7eb0e","parentId":"df17c73bb5bba295","traceId":"000000000000000006c18316269a8ee4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:12.849Z","sequence":23291,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 4E1B4BD43753, resource-version: 4b1c4bd2-c001-41b9-beeb-dfcf7e7e3129]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d9f04693fbd7eb0e","parentId":"df17c73bb5bba295","traceId":"000000000000000006c18316269a8ee4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:12.856Z","sequence":23292,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 4E1B4BD43753, resource-version: b416bd17-cbe6-4ec4-9b73-30b334ccf8c3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d9f04693fbd7eb0e","parentId":"df17c73bb5bba295","traceId":"000000000000000006c18316269a8ee4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:12.86Z","sequence":23293,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 4E1B4BD43753]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f9b528424a1d443c","parentId":"f847689d474c223c","traceId":"000000000000000006c18316269a8ee4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:12.971Z","sequence":23294,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 4E1B4BD43753]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f9b528424a1d443c","parentId":"f847689d474c223c","traceId":"000000000000000006c18316269a8ee4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:13.495Z","sequence":23295,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/conditionall:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:13.495Z","sequence":23296,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: conditionall, device-id: 70B3D57BB1000228] for gateway [0008004B512D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:13.5Z","sequence":23297,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_conditionall\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:13.5Z","sequence":23298,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_conditionall\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:13.503Z","sequence":23299,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-19d218fb-7e4b-4c0b-ac59-0eb32b3c6b72, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:13.728Z","sequence":23300,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFDB4864CD9C69F]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"30a5d1c00d6e23c2","parentId":"e697c61dfb1533bc","traceId":"00000000000000006b8a678435c4aec3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:13.744Z","sequence":23301,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFDB4864CD9C69F, resource-version: 4c018c42-da3a-47fa-804f-180efe6ed340]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"30a5d1c00d6e23c2","parentId":"e697c61dfb1533bc","traceId":"00000000000000006b8a678435c4aec3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:13.751Z","sequence":23302,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFDB4864CD9C69F, resource-version: b3b38d67-973b-4e2d-a1ea-25ff54d62b7d]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"30a5d1c00d6e23c2","parentId":"e697c61dfb1533bc","traceId":"00000000000000006b8a678435c4aec3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:14.807Z","sequence":23303,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:14.807Z","sequence":23304,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:14.81Z","sequence":23305,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-731c66c6-953a-4e9e-bcb0-7e3c513a90bf, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:14.812Z","sequence":23306,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Credentials-75faa79c-12c0-45f2-bd9c-973655a3937c] wants to open a link [address: Source{address='credentials/integrationtest/a233e9bf-3a9f-4520-8e01-c41f54686de5', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:14.813Z","sequence":23307,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:14.813Z","sequence":23308,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@3012057e] for replies to [credentials/integrationtest/a233e9bf-3a9f-4520-8e01-c41f54686de5]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:14.815Z","sequence":23309,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Credentials-75faa79c-12c0-45f2-bd9c-973655a3937c] wants to open a link [address: Target{address='credentials/integrationtest', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:14.815Z","sequence":23310,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-5]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:14.815Z","sequence":23311,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:14.817Z","sequence":23312,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:14.817Z","sequence":23313,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-4E1B4BD43753]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:14.827Z","sequence":23314,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-6e0005e9-bd9c-4227-8682-86b28c1ad9da, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:14.948Z","sequence":23315,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:14.948Z","sequence":23316,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 4E1B4BD43753]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:14.954Z","sequence":23317,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e6dbc364-68ad-4d92-9599-7a0a404b821f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:14.958Z","sequence":23318,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:14.958Z","sequence":23319,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDB4864CD9C69F] for gateway [4E1B4BD43753]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:14.964Z","sequence":23320,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:14.964Z","sequence":23321,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:15.135Z","sequence":23322,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a70451b3-fc7e-4687-b679-e1dcdf7c5d8e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:15.136Z","sequence":23323,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:15.136Z","sequence":23324,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 0008004C80F4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:15.141Z","sequence":23325,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-70dbadb0-6e2f-43af-816e-95cc0503e7ab, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:19.653Z","sequence":23326,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF4651805DFC97C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d411827328eee654","parentId":"58b0f88e1f39bd68","traceId":"00000000000000002a5f66322fd0a52f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:19.68Z","sequence":23327,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF4651805DFC97C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d411827328eee654","parentId":"58b0f88e1f39bd68","traceId":"00000000000000002a5f66322fd0a52f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:21.013Z","sequence":23328,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191183]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"798baf0abce96c9c","parentId":"2ee3d8804aa70d23","traceId":"0000000000000000c5f0d13fe601c34c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:21.03Z","sequence":23329,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191183]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"798baf0abce96c9c","parentId":"2ee3d8804aa70d23","traceId":"0000000000000000c5f0d13fe601c34c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:26.881Z","sequence":23330,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:26.881Z","sequence":23331,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AB1] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:26.886Z","sequence":23332,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:26.886Z","sequence":23333,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:26.893Z","sequence":23334,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8746807b-9710-4b2f-b40c-a8e832b7ca3b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:27.507Z","sequence":23335,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:27.507Z","sequence":23336,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001901] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:27.513Z","sequence":23337,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:27.513Z","sequence":23338,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:27.519Z","sequence":23339,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d803a852-a202-4169-a7a0-9627d48be034, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:29.765Z","sequence":23340,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFDB4864CD9C69F]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f95865b0f72a3508","parentId":"f15966a45c208dba","traceId":"0000000000000000d08f60ab79a4c360","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:29.79Z","sequence":23341,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFDB4864CD9C69F]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f95865b0f72a3508","parentId":"f15966a45c208dba","traceId":"0000000000000000d08f60ab79a4c360","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:30.009Z","sequence":23342,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oiltanking:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:30.009Z","sequence":23343,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oiltanking, device-id: 0008004BB60F]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:30.019Z","sequence":23344,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-34ca00da-5e09-4b99-b81b-60369b12b8ec, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:30.025Z","sequence":23345,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:30.025Z","sequence":23346,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oiltanking]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:30.03Z","sequence":23347,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-c2d0ea8e-8aaf-427f-ae57-bea8003dee9b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:32.121Z","sequence":23348,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 4E1B4BD43753]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"063f29949ec7fe38","parentId":"d336a6cce2d5a40c","traceId":"00000000000000004c42cd5039d5c545","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:32.139Z","sequence":23349,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 4E1B4BD43753]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"063f29949ec7fe38","parentId":"d336a6cce2d5a40c","traceId":"00000000000000004c42cd5039d5c545","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:34.786Z","sequence":23350,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:34.786Z","sequence":23351,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001910] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:34.824Z","sequence":23352,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:34.824Z","sequence":23353,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:34.834Z","sequence":23354,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-32d10363-e097-49df-a113-5d174c8f04c5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:35.44Z","sequence":23355,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:35.441Z","sequence":23356,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100190B] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:35.447Z","sequence":23357,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:35.447Z","sequence":23358,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:35.453Z","sequence":23359,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2d8d77a8-2498-43e9-b01c-44432197958a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:36.63Z","sequence":23360,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:36.63Z","sequence":23361,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001ABE] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:36.635Z","sequence":23362,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:36.635Z","sequence":23363,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:36.643Z","sequence":23364,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f081f7fb-bc25-4f29-a3b5-3dcbfaaafdbe, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:39.729Z","sequence":23365,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:39.729Z","sequence":23366,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AAA] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:39.769Z","sequence":23367,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:39.769Z","sequence":23368,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:39.785Z","sequence":23369,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8e28365a-05d9-4672-8ebd-3b30075971e0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:52.569Z","sequence":23370,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:52.569Z","sequence":23371,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001ABD] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:52.604Z","sequence":23372,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:52.604Z","sequence":23373,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:52.628Z","sequence":23374,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ea4f705d-de88-4957-aaa3-78aa69d471b4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:54.189Z","sequence":23375,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:54.189Z","sequence":23376,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oci]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:54.193Z","sequence":23377,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-e36156ff-b081-4cd3-b177-be77d5bf84cc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:54.195Z","sequence":23378,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:54.196Z","sequence":23379,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100016F] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:54.201Z","sequence":23380,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:54.201Z","sequence":23381,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:54.203Z","sequence":23382,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ca0856f3-0ce5-4746-9c62-e32d25cbe497, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:54.311Z","sequence":23383,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:54.311Z","sequence":23384,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100016F] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:54.315Z","sequence":23385,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:54.315Z","sequence":23386,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:54.318Z","sequence":23387,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-faaedd72-8d94-4be7-bff1-1a05e2480b9f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:57.637Z","sequence":23388,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:57.637Z","sequence":23389,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001919] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:57.643Z","sequence":23390,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:57.643Z","sequence":23391,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:57.648Z","sequence":23392,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ffe8309e-bf46-498d-ab1c-c74a314f5448, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:58.434Z","sequence":23393,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:58.434Z","sequence":23394,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: flint]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:58.453Z","sequence":23395,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-7e05799d-e1a4-415f-ba2e-c095b3def894, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:58.455Z","sequence":23396,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Source{address='credentials/flint/d13e7371-c71f-4762-9400-5761131a8e34', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:58.455Z","sequence":23397,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:58.455Z","sequence":23398,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@60c3cc13] for replies to [credentials/flint/d13e7371-c71f-4762-9400-5761131a8e34]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:58.461Z","sequence":23399,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Target{address='credentials/flint', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:58.461Z","sequence":23400,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-5]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:58.461Z","sequence":23401,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:58.463Z","sequence":23402,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/flint:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:58.464Z","sequence":23403,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: flint, type: hashed-password, auth-id: auth-flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:58.464Z","sequence":23404,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/flint:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:58.464Z","sequence":23405,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: flint, type: hashed-password, auth-id: auth-flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:58.552Z","sequence":23406,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-43977376-b000-49e2-9a2b-3b9d2ef42f2d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:58.557Z","sequence":23407,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-b0a0e4b9-5eda-4416-89c3-9e89335e196b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:58.669Z","sequence":23408,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:58.669Z","sequence":23409,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10018FE] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:58.695Z","sequence":23410,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:58.695Z","sequence":23411,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:58.709Z","sequence":23412,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3c5f3e19-f275-400f-8961-0e9ea61d93f5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:58.867Z","sequence":23413,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:58.867Z","sequence":23414,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000809] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:58.868Z","sequence":23415,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:58.868Z","sequence":23416,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:58.901Z","sequence":23417,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-572c8cd2-5d4b-475d-9793-1442abc964c9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:58.905Z","sequence":23418,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:58.905Z","sequence":23419,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:58.923Z","sequence":23420,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0c80d764-07a9-43a4-879e-4084a9fa50c4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:59.465Z","sequence":23421,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:59.468Z","sequence":23422,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: dow]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:59.481Z","sequence":23423,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-71098a9f-7762-4384-8c26-ed12047b5659, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:59.483Z","sequence":23424,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Source{address='credentials/dow/4e98ad04-ed7a-49b1-82c4-313fc808c894', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:59.483Z","sequence":23425,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-6]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:59.483Z","sequence":23426,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@6184c80e] for replies to [credentials/dow/4e98ad04-ed7a-49b1-82c4-313fc808c894]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:59.485Z","sequence":23427,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Target{address='credentials/dow', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:59.486Z","sequence":23428,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-7]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:59.486Z","sequence":23429,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:59.488Z","sequence":23430,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/dow:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:59.488Z","sequence":23431,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: dow, type: hashed-password, auth-id: auth-gateway_dow_network_39199]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:59.508Z","sequence":23432,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-592e62a6-6803-4e6f-b1f8-e34befd6f332, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:59.8Z","sequence":23433,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:59.801Z","sequence":23434,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 70B3D57BB10014FA] for gateway [gateway_dow_network_39199]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:59.801Z","sequence":23435,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:59.801Z","sequence":23436,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: gateway_dow_network_39199]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:59.825Z","sequence":23437,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4841f376-2fb3-4357-9ae0-f370fd4a224d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:59.825Z","sequence":23438,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:59.826Z","sequence":23439,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:07:59.839Z","sequence":23440,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e13fa529-78d9-498d-8e76-3da408fef628, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:08:00.765Z","sequence":23441,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"retrieving device [tenant: dow, device-id: 70B3D57BB10014FA]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8807805934a2cd1c","parentId":"4db98a91737c6577","traceId":"75d2a6dffedfea0f3ae61e944701c002","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:08:06.362Z","sequence":23442,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:08:06.362Z","sequence":23443,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000A22] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:08:06.367Z","sequence":23444,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:08:06.367Z","sequence":23445,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:08:06.371Z","sequence":23446,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c9bc88ce-e6d4-4097-9344-7de32531fd71, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:08:09.434Z","sequence":23447,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/aloxy:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:08:09.434Z","sequence":23448,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: aloxy, device-id: 0008004A8F68]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:08:09.442Z","sequence":23449,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-335d8a13-672e-4609-b0e8-1fadf6e51303, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:08:09.445Z","sequence":23450,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:08:09.445Z","sequence":23451,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: aloxy]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:08:09.448Z","sequence":23452,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-dbd667e0-35c4-41cc-ab3c-18dba04a9bbf, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:08:11.572Z","sequence":23453,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:08:11.572Z","sequence":23454,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BF1] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:08:11.578Z","sequence":23455,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:08:11.578Z","sequence":23456,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:08:11.586Z","sequence":23457,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5afdc83b-8b69-4d6a-941b-4f8b505c5ecf, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:08:11.637Z","sequence":23458,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:08:11.638Z","sequence":23459,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006C9] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:08:11.645Z","sequence":23460,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:08:11.645Z","sequence":23461,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:08:11.651Z","sequence":23462,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-11dc36d1-0a91-4542-90c1-3b3114f663c1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:08:14.627Z","sequence":23463,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:08:14.628Z","sequence":23464,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000204] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:08:14.653Z","sequence":23465,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:08:14.653Z","sequence":23466,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:08:14.661Z","sequence":23467,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:08:14.661Z","sequence":23468,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000204] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:08:14.668Z","sequence":23469,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3c3b21c5-35fe-4df6-81ab-95f9aa371b85, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:08:14.693Z","sequence":23470,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:08:14.693Z","sequence":23471,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:08:14.715Z","sequence":23472,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ce423cf8-987b-4d13-866d-2ab5e268ff6f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:08:19.877Z","sequence":23473,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:08:19.877Z","sequence":23474,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AE4] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:08:19.882Z","sequence":23475,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:08:19.883Z","sequence":23476,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:08:19.889Z","sequence":23477,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6a1a8f24-9043-41e6-bac4-7302f572f0b6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:08:22.973Z","sequence":23478,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:08:22.973Z","sequence":23479,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BB613]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:08:22.978Z","sequence":23480,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a369e9d0-7626-4196-b664-d42817542e65, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:08:25.024Z","sequence":23481,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:08:25.024Z","sequence":23482,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB1000A64] for gateway [0008004B5135]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:08:25.032Z","sequence":23483,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:08:25.032Z","sequence":23484,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:08:25.035Z","sequence":23485,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ef104495-27f5-42e9-9a56-8d31a3ea8278, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:08:25.211Z","sequence":23486,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:08:25.211Z","sequence":23487,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A75] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:08:25.218Z","sequence":23488,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:08:25.219Z","sequence":23489,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:08:25.225Z","sequence":23490,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a00b044b-8b42-4757-b1cc-928a60196674, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:08:35.854Z","sequence":23491,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:08:35.854Z","sequence":23492,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001F4] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:08:35.859Z","sequence":23493,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:08:35.859Z","sequence":23494,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:08:35.863Z","sequence":23495,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-691df29e-e960-4da4-8d72-83398a6ff8b7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:08:35.905Z","sequence":23496,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:08:35.905Z","sequence":23497,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001F4] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:08:35.911Z","sequence":23498,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:08:35.911Z","sequence":23499,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:08:35.916Z","sequence":23500,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-78f78c47-8cdb-4443-aa04-d230fe21903c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:08:36.116Z","sequence":23501,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:08:36.116Z","sequence":23502,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C0B] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:08:36.121Z","sequence":23503,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:08:36.121Z","sequence":23504,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:08:36.127Z","sequence":23505,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-45fc6bb6-bbe0-4b39-b279-1d52aee8b753, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:08:36.864Z","sequence":23506,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:08:36.865Z","sequence":23507,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BEE] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:08:36.87Z","sequence":23508,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:08:36.871Z","sequence":23509,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:08:36.877Z","sequence":23510,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1183c3fe-2417-4c1c-92cf-168eb149aa11, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:08:42.4Z","sequence":23511,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:08:42.4Z","sequence":23512,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10001C7] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:08:42.425Z","sequence":23513,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:08:42.425Z","sequence":23514,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:08:42.437Z","sequence":23515,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-62ae06fb-6ba1-4c51-8925-cfa65da70ad3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:08:50.941Z","sequence":23516,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:08:50.941Z","sequence":23517,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 70B3D57BB1000190] for gateway [0008004BB613]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:08:50.947Z","sequence":23518,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_lanxess\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:08:50.947Z","sequence":23519,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_lanxess\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:08:50.95Z","sequence":23520,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e71f727c-5f93-4187-88e2-5cda3b007983, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:08:52.782Z","sequence":23521,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/acta:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:08:52.782Z","sequence":23522,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: acta, device-id: 0008004AAAA3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:08:52.787Z","sequence":23523,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3fd6a5af-9e3c-416d-8075-1eed4afd70c1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:08:52.793Z","sequence":23524,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:08:52.793Z","sequence":23525,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: acta]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:08:52.796Z","sequence":23526,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-172603f8-f0d9-4257-93e3-ecc2d88fbc39, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:08:54.325Z","sequence":23527,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:08:54.325Z","sequence":23528,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB1000A88] for gateway [0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:08:54.331Z","sequence":23529,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:08:54.332Z","sequence":23530,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:08:54.34Z","sequence":23531,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3569022e-072b-4519-b6c9-72ab4c47d809, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:08:56.376Z","sequence":23532,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:08:56.377Z","sequence":23533,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: shell]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:08:56.38Z","sequence":23534,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-20aa6ea8-32c9-4c1e-826d-ac92fbf07351, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:08:56.382Z","sequence":23535,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/shell:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:08:56.383Z","sequence":23536,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: shell, type: hashed-password, auth-id: auth-gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:08:56.396Z","sequence":23537,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-02518356-1a3e-49cb-b807-1df3d2c3d9fc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:08:56.52Z","sequence":23538,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:08:56.52Z","sequence":23539,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10002D5] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:08:56.527Z","sequence":23540,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:08:56.527Z","sequence":23541,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:08:56.534Z","sequence":23542,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f26389ba-fa8f-45b3-9c18-191b4b134602, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:01.917Z","sequence":23543,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191185]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"41fb51e9664f92df","parentId":"e139b6d3bc33a783","traceId":"0000000000000000b20c778296a31c05","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:01.991Z","sequence":23544,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191185, resource-version: 668e0f50-14b2-4ee5-a9f3-2bbc596c9961]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"41fb51e9664f92df","parentId":"e139b6d3bc33a783","traceId":"0000000000000000b20c778296a31c05","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:02.002Z","sequence":23545,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191185, resource-version: 3411a511-943e-4c11-a3b1-c583f26e8857]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"41fb51e9664f92df","parentId":"e139b6d3bc33a783","traceId":"0000000000000000b20c778296a31c05","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:02.005Z","sequence":23546,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191185]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"587eb23fcb13ce34","parentId":"b6e1862709caa1c5","traceId":"0000000000000000b20c778296a31c05","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:02.188Z","sequence":23547,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191185]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"587eb23fcb13ce34","parentId":"b6e1862709caa1c5","traceId":"0000000000000000b20c778296a31c05","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:03.013Z","sequence":23548,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFFF4B7E40552F5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c0c462404f9e03d5","parentId":"02127f236ae5f83f","traceId":"0000000000000000c7102007b6a410ee","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:03.049Z","sequence":23549,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFFF4B7E40552F5, resource-version: f4fc8511-b65b-4324-84dd-68c4ffb5e8ec]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c0c462404f9e03d5","parentId":"02127f236ae5f83f","traceId":"0000000000000000c7102007b6a410ee","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:03.057Z","sequence":23550,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFFF4B7E40552F5, resource-version: bd6365d7-8d04-47ca-8855-02c8a8cc726e]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c0c462404f9e03d5","parentId":"02127f236ae5f83f","traceId":"0000000000000000c7102007b6a410ee","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:04.146Z","sequence":23551,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:04.146Z","sequence":23552,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191185]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:04.17Z","sequence":23553,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-10281475-834f-4b46-b860-ff88f9d920b3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:04.311Z","sequence":23554,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:04.311Z","sequence":23555,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFFF4B7E40552F5] for gateway [gateway_integrationtest_network_191185]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:04.312Z","sequence":23556,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:04.312Z","sequence":23557,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191185]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:04.337Z","sequence":23558,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ccaa299c-1330-4793-ab1d-6211db7f91b3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:04.337Z","sequence":23559,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:04.337Z","sequence":23560,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:04.75Z","sequence":23561,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-debb9c80-041a-4297-ac09-455b739d6409, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:04.764Z","sequence":23562,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 74A633486E82]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fc7811689cc7bb90","parentId":"cb498924d275a30b","traceId":"000000000000000033fb0c4372724255","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:04.785Z","sequence":23563,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 74A633486E82, resource-version: 177ef9f2-2647-451f-ae61-e9ea52d90ef3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fc7811689cc7bb90","parentId":"cb498924d275a30b","traceId":"000000000000000033fb0c4372724255","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:04.793Z","sequence":23564,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 74A633486E82, resource-version: 7c824409-1e9c-4fa2-8d14-23e8c6b4ec06]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fc7811689cc7bb90","parentId":"cb498924d275a30b","traceId":"000000000000000033fb0c4372724255","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:04.798Z","sequence":23565,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 74A633486E82]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5aa504c74ded99b6","parentId":"09eaede5530fb0e0","traceId":"000000000000000033fb0c4372724255","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:05.013Z","sequence":23566,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 74A633486E82]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5aa504c74ded99b6","parentId":"09eaede5530fb0e0","traceId":"000000000000000033fb0c4372724255","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:06.237Z","sequence":23567,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF3D09CEB6AAE0A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"de64968cf02b60c7","parentId":"3011f7b41c50d28e","traceId":"0000000000000000acaf1fcb8e6198c9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:06.265Z","sequence":23568,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF3D09CEB6AAE0A, resource-version: 53dd9e7b-6a63-4096-8fba-b80fe3fb21fc]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"de64968cf02b60c7","parentId":"3011f7b41c50d28e","traceId":"0000000000000000acaf1fcb8e6198c9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:06.3Z","sequence":23569,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF3D09CEB6AAE0A, resource-version: a3f7c79a-3748-461f-ac52-1501d356f5cb]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"de64968cf02b60c7","parentId":"3011f7b41c50d28e","traceId":"0000000000000000acaf1fcb8e6198c9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:07.298Z","sequence":23570,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:07.298Z","sequence":23571,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:07.304Z","sequence":23572,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a355cbd2-ad8e-4f94-b484-83ecf87feb73, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:07.416Z","sequence":23573,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:07.416Z","sequence":23574,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-74A633486E82]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:07.426Z","sequence":23575,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-fc15ac97-2549-4fb3-be7e-1ba84d065627, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:07.549Z","sequence":23576,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:07.549Z","sequence":23577,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 74A633486E82]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:07.556Z","sequence":23578,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8347b85e-9f3f-46e4-8647-024658cee4e5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:07.56Z","sequence":23579,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:07.56Z","sequence":23580,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF3D09CEB6AAE0A] for gateway [74A633486E82]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:07.565Z","sequence":23581,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:07.566Z","sequence":23582,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:07.753Z","sequence":23583,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8e2f837b-ac9a-4ee2-aba1-20b5a2406cfe, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:08.94Z","sequence":23584,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:08.94Z","sequence":23585,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: terega]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:08.949Z","sequence":23586,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-c4be23c4-bf9d-4a38-887b-bdb5119b8cce, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:08.953Z","sequence":23587,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Source{address='credentials/terega/c567dca3-4b17-4695-86fe-9c9fa48174b1', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:08.953Z","sequence":23588,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-8]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:08.953Z","sequence":23589,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@5ec61c01] for replies to [credentials/terega/c567dca3-4b17-4695-86fe-9c9fa48174b1]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:08.955Z","sequence":23590,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Target{address='credentials/terega', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:08.955Z","sequence":23591,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-9]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:08.955Z","sequence":23592,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:08.958Z","sequence":23593,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/terega:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:08.958Z","sequence":23594,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: terega, type: hashed-password, auth-id: auth-gateway_terega_network_27]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:08.997Z","sequence":23595,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-baec96c4-8635-4b0f-bd6f-a79eb17146f2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:09.129Z","sequence":23596,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/terega:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:09.129Z","sequence":23597,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: terega, device-id: 70B3D57BB1000E13] for gateway [gateway_terega_network_27]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:09.13Z","sequence":23598,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/terega:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:09.131Z","sequence":23599,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: terega, device-id: gateway_terega_network_27]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:09.135Z","sequence":23600,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_terega\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:09.135Z","sequence":23601,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_terega\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:09.136Z","sequence":23602,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-72c4d056-73cd-4cfe-98d6-dd3047af74ed, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:09.151Z","sequence":23603,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-cdc83fe9-52aa-4b5a-8f12-eee08dce1f04, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:10.169Z","sequence":23604,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:10.169Z","sequence":23605,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BF2] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:10.193Z","sequence":23606,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:10.193Z","sequence":23607,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:10.212Z","sequence":23608,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e7d1b0fa-107e-4e61-8232-d72c049936c7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:16.595Z","sequence":23609,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/repsol:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:16.595Z","sequence":23610,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: repsol, device-id: 0008004A37FF]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:16.619Z","sequence":23611,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-fb788770-2f21-4f95-b62e-1a1e7b520d97, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:16.624Z","sequence":23612,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:16.625Z","sequence":23613,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: repsol]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:16.629Z","sequence":23614,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-fe0865c0-df7b-4b9c-bd15-8db72811accb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:17.925Z","sequence":23615,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFFF4B7E40552F5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"281baa5ea3366c3b","parentId":"9a47bc4d4f1e2c7c","traceId":"0000000000000000ddd3c58de250709e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:17.949Z","sequence":23616,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFFF4B7E40552F5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"281baa5ea3366c3b","parentId":"9a47bc4d4f1e2c7c","traceId":"0000000000000000ddd3c58de250709e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:18.265Z","sequence":23617,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191185]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6fa8c93d56255932","parentId":"ecd54a0fe9dec246","traceId":"0000000000000000607b5e410ff234b3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:18.293Z","sequence":23618,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF3D09CEB6AAE0A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e3fb6c4433daf954","parentId":"27de556a697902ae","traceId":"0000000000000000a1b902d0bceb68a6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:18.301Z","sequence":23619,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191185]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6fa8c93d56255932","parentId":"ecd54a0fe9dec246","traceId":"0000000000000000607b5e410ff234b3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:18.312Z","sequence":23620,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF3D09CEB6AAE0A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e3fb6c4433daf954","parentId":"27de556a697902ae","traceId":"0000000000000000a1b902d0bceb68a6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:18.6Z","sequence":23621,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 74A633486E82]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ec63e6bcf8967336","parentId":"d827da73a1d06a60","traceId":"0000000000000000ac21e55a91945d61","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:18.645Z","sequence":23622,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 74A633486E82]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ec63e6bcf8967336","parentId":"d827da73a1d06a60","traceId":"0000000000000000ac21e55a91945d61","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:26.355Z","sequence":23623,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/dow:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:26.356Z","sequence":23624,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: dow, type: hashed-password, auth-id: auth-gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:26.366Z","sequence":23625,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-8aacbb20-3253-4c96-878f-dceb6d2ce09c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:26.474Z","sequence":23626,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:26.475Z","sequence":23627,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BF7] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:26.48Z","sequence":23628,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:26.48Z","sequence":23629,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:26.51Z","sequence":23630,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-cddee6b2-e972-41e6-beb4-a66e55977fff, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:26.688Z","sequence":23631,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:26.692Z","sequence":23632,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 70B3D57BB100126E] for gateway [gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:26.717Z","sequence":23633,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:26.717Z","sequence":23634,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:26.755Z","sequence":23635,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-97fa49c1-521a-4112-b52e-682a1f6046ba, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:39.618Z","sequence":23636,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:39.618Z","sequence":23637,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 0008004B51D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:39.618Z","sequence":23638,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:39.618Z","sequence":23639,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006A5] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:39.635Z","sequence":23640,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:39.635Z","sequence":23641,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:39.636Z","sequence":23642,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-272b72ce-a0cc-4344-b46a-6ac69e51b7d9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:39.64Z","sequence":23643,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:39.64Z","sequence":23644,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: dow]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:39.643Z","sequence":23645,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-0c32cf34-fca0-4d81-b690-56ab6dbb82d6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:39.646Z","sequence":23646,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-bc4a0813-2d23-4439-90db-fbf218aea0b6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:48.167Z","sequence":23647,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:48.167Z","sequence":23648,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AD2] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:48.199Z","sequence":23649,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:48.2Z","sequence":23650,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:48.295Z","sequence":23651,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-57f25d64-31d4-4569-ab98-1fee6a642ace, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:48.601Z","sequence":23652,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:48.602Z","sequence":23653,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000571] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:48.622Z","sequence":23654,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:48.623Z","sequence":23655,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:48.643Z","sequence":23656,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-47c2eb1b-355b-414c-b9fc-23236e9c0324, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:53.774Z","sequence":23657,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:53.774Z","sequence":23658,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C11] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:53.78Z","sequence":23659,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:53.781Z","sequence":23660,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:53.788Z","sequence":23661,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-35cdf4ba-bcf3-41e7-a958-cc31b088caa7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:57.768Z","sequence":23662,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:57.768Z","sequence":23663,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 70B3D57BB1001287] for gateway [gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:57.789Z","sequence":23664,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:57.792Z","sequence":23665,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:57.798Z","sequence":23666,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-76000706-588c-433c-9e85-70a3f9f7c82d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:58.359Z","sequence":23667,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:58.359Z","sequence":23668,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B2F] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:58.392Z","sequence":23669,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:58.392Z","sequence":23670,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:09:58.401Z","sequence":23671,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-baee2332-43af-449e-81d3-cf18649951cf, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:04.197Z","sequence":23672,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:04.197Z","sequence":23673,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C1A] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:04.207Z","sequence":23674,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:04.207Z","sequence":23675,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:04.214Z","sequence":23676,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b0ca37d4-95f8-4fd7-b3ad-68b44d01cf49, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:04.857Z","sequence":23677,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:04.857Z","sequence":23678,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 70B3D57BB10014ED] for gateway [gateway_dow_network_39199]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:04.864Z","sequence":23679,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:04.864Z","sequence":23680,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:04.901Z","sequence":23681,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8de7e0da-bfd1-4d78-a507-a99d3b95e569, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:14.465Z","sequence":23682,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:14.465Z","sequence":23683,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: conditionall]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:14.501Z","sequence":23684,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-88a4b3cd-e2b1-460b-a8b0-353a7cab9a4e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:18.867Z","sequence":23685,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:18.868Z","sequence":23686,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BF4] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:18.899Z","sequence":23687,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:18.899Z","sequence":23688,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:18.91Z","sequence":23689,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-edab9a7a-882a-41df-bd25-5642f052d942, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:18.958Z","sequence":23690,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:18.958Z","sequence":23691,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000528] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:18.963Z","sequence":23692,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:18.963Z","sequence":23693,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:18.967Z","sequence":23694,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-101b13b0-2d2e-4c04-9065-edb424fc7db6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:19.086Z","sequence":23695,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/terega:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:19.086Z","sequence":23696,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: terega, device-id: 70B3D57BB10000A2] for gateway [gateway_terega_network_27]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:19.091Z","sequence":23697,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_terega\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:19.091Z","sequence":23698,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_terega\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:19.095Z","sequence":23699,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8bc5e924-9e9f-43c1-a325-4b8bb63f476f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:21.241Z","sequence":23700,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:21.241Z","sequence":23701,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001949] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:21.247Z","sequence":23702,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:21.248Z","sequence":23703,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:21.254Z","sequence":23704,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-52607797-a066-40a9-9cd5-febc42b887d8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:32.938Z","sequence":23705,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:32.938Z","sequence":23706,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001B10] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:32.945Z","sequence":23707,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:32.945Z","sequence":23708,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:32.952Z","sequence":23709,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-abc1bec6-0e12-4fb3-a3ab-55aed10a6e4e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:36.304Z","sequence":23710,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:36.304Z","sequence":23711,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000179] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:36.311Z","sequence":23712,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:36.311Z","sequence":23713,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:36.328Z","sequence":23714,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:36.329Z","sequence":23715,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000179] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:36.333Z","sequence":23716,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:36.333Z","sequence":23717,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:36.35Z","sequence":23718,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-41821c10-c1de-4de5-9c22-401e3a441379, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:36.351Z","sequence":23719,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a17451f6-1948-47ca-b71b-075f98fd14c9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:40.346Z","sequence":23720,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:40.347Z","sequence":23721,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: exxon]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:40.351Z","sequence":23722,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-fe4d00a9-ae3d-45cf-9a35-3ba65d18eca1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:40.355Z","sequence":23723,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Source{address='credentials/exxon/db84f381-876c-49a5-afd3-738bc0420390', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:40.355Z","sequence":23724,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:40.355Z","sequence":23725,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@a3001da] for replies to [credentials/exxon/db84f381-876c-49a5-afd3-738bc0420390]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:40.357Z","sequence":23726,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Target{address='credentials/exxon', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:40.357Z","sequence":23727,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-11]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:40.357Z","sequence":23728,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:40.359Z","sequence":23729,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/exxon:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:40.359Z","sequence":23730,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: exxon, type: hashed-password, auth-id: auth-gateway_exxon_network_2559]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:40.374Z","sequence":23731,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-1af3ee06-fdc4-4c4a-bc05-ebe821a91133, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:40.493Z","sequence":23732,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] wants to open a link [address: Source{address='registration/exxon/1eb2f48b-c0b1-462a-aaea-fbf5cc6d4099', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:40.494Z","sequence":23733,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-16]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:40.494Z","sequence":23734,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@7533caf1] for replies to [registration/exxon/1eb2f48b-c0b1-462a-aaea-fbf5cc6d4099]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:40.496Z","sequence":23735,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] wants to open a link [address: Target{address='registration/exxon', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:40.496Z","sequence":23736,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-17]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:40.496Z","sequence":23737,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:40.499Z","sequence":23738,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/exxon:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:40.499Z","sequence":23739,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: exxon, device-id: 70B3D57BB10013DD] for gateway [gateway_exxon_network_2559]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:40.499Z","sequence":23740,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/exxon:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:40.499Z","sequence":23741,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: exxon, device-id: gateway_exxon_network_2559]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:40.505Z","sequence":23742,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_exxon\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:40.505Z","sequence":23743,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_exxon\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:40.507Z","sequence":23744,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-adf0c9c4-10a2-4f2c-976d-ebed4210454b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:40.507Z","sequence":23745,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b44d3c13-ab96-414a-b6c6-f06c24c3a162, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:46.974Z","sequence":23746,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:46.974Z","sequence":23747,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006CF] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:46.99Z","sequence":23748,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:46.99Z","sequence":23749,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:47.045Z","sequence":23750,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ba0076d2-6e58-425c-95c3-4c79ba641e94, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:49.356Z","sequence":23751,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:49.356Z","sequence":23752,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AF3] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:49.366Z","sequence":23753,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:49.366Z","sequence":23754,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:49.373Z","sequence":23755,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0d010b84-48a5-4446-ba95-974f7fb22729, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:51.109Z","sequence":23756,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:51.109Z","sequence":23757,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BB84C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:51.116Z","sequence":23758,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-dc5344ee-703e-4040-add2-1a3ca08927d5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:51.119Z","sequence":23759,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:51.12Z","sequence":23760,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: lanxess]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:51.122Z","sequence":23761,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-d30efdab-f216-4fb1-bd76-579496cb9cb0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:52.118Z","sequence":23762,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:52.118Z","sequence":23763,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 0008004B5135]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:52.189Z","sequence":23764,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-db917476-f812-4b26-9825-4e064ac908dd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:52.193Z","sequence":23765,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:52.193Z","sequence":23766,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: ineos]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:52.197Z","sequence":23767,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-0ea839dd-c761-42c8-ab82-c055cc027772, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:54.365Z","sequence":23768,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:54.365Z","sequence":23769,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AFD] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:54.377Z","sequence":23770,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:54.377Z","sequence":23771,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:54.405Z","sequence":23772,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ad4f458b-9e7a-4489-962f-0acf94e9dc79, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:55.117Z","sequence":23773,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:55.117Z","sequence":23774,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000ABE] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:55.122Z","sequence":23775,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:55.123Z","sequence":23776,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:55.129Z","sequence":23777,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1a612d1c-10c4-44be-9029-a566251f47ac, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:56.682Z","sequence":23778,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:56.682Z","sequence":23779,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BBD1B]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:56.688Z","sequence":23780,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d7377166-b3eb-4b3a-81d1-5d783aaa69b0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:58.146Z","sequence":23781,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:58.146Z","sequence":23782,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001928] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:58.152Z","sequence":23783,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:58.152Z","sequence":23784,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:58.159Z","sequence":23785,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9b414bcf-30df-4c49-9dc0-d803ef1d1c75, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:59.237Z","sequence":23786,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:59.237Z","sequence":23787,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AFB] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:59.245Z","sequence":23788,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:59.245Z","sequence":23789,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:59.251Z","sequence":23790,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a2efb445-c7e2-4e75-9aa1-d6442daa5728, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:59.857Z","sequence":23791,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:59.857Z","sequence":23792,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001945] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:59.894Z","sequence":23793,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:59.894Z","sequence":23794,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:10:59.913Z","sequence":23795,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-28cb8d78-61c6-4743-99bd-dbfb10806d81, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:03.672Z","sequence":23796,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/arkema:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:03.672Z","sequence":23797,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: arkema, device-id: 0008004AE119]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:03.695Z","sequence":23798,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e02ce2eb-7bf0-4abd-9d38-892c06c78518, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:03.698Z","sequence":23799,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:03.698Z","sequence":23800,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: arkema]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:03.701Z","sequence":23801,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-c159da56-315e-41a0-9f73-06ec015f76ec, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:04.226Z","sequence":23802,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191187]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"331bc9882f46450e","parentId":"afce03c4aeb8e7a4","traceId":"00000000000000003ca68cd4af31fe20","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:04.263Z","sequence":23803,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191187, resource-version: e6041428-f1a0-4f7a-a320-ca43345bc827]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"331bc9882f46450e","parentId":"afce03c4aeb8e7a4","traceId":"00000000000000003ca68cd4af31fe20","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:04.298Z","sequence":23804,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191187, resource-version: e2678882-7aa9-45ec-8511-962ea07784be]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"331bc9882f46450e","parentId":"afce03c4aeb8e7a4","traceId":"00000000000000003ca68cd4af31fe20","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:04.301Z","sequence":23805,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191187]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a338a723805ae039","parentId":"007125e9bf305abb","traceId":"00000000000000003ca68cd4af31fe20","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:04.513Z","sequence":23806,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191187]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a338a723805ae039","parentId":"007125e9bf305abb","traceId":"00000000000000003ca68cd4af31fe20","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:05.244Z","sequence":23807,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/repsol:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:05.245Z","sequence":23808,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: repsol, device-id: 70B3D57BB1000229] for gateway [0008004A37FF]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:05.252Z","sequence":23809,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:0.4.1\"\n },\n \"viaGroups\" : [ \"gateways_repsol\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:05.252Z","sequence":23810,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_repsol\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:05.255Z","sequence":23811,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3a07e7da-791e-4b2d-857e-2b9339f720b3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:05.651Z","sequence":23812,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:05.651Z","sequence":23813,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A66] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:05.66Z","sequence":23814,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:05.662Z","sequence":23815,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:05.673Z","sequence":23816,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8d218c77-0899-48e3-bdbc-e920efc0e5a4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:05.82Z","sequence":23817,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF2AC7313B5951A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"575c05a5bb8ffb02","parentId":"a582b9570d0965bd","traceId":"00000000000000008fca2f3996393649","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:05.831Z","sequence":23818,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:05.831Z","sequence":23819,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100194B] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:05.845Z","sequence":23820,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF2AC7313B5951A, resource-version: c5acfca2-ef46-4521-b038-4ec707bc3fd2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"575c05a5bb8ffb02","parentId":"a582b9570d0965bd","traceId":"00000000000000008fca2f3996393649","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:05.846Z","sequence":23821,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:05.846Z","sequence":23822,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:05.857Z","sequence":23823,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d6be2ee6-e4e7-4c17-9046-755e38705d93, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:05.857Z","sequence":23824,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF2AC7313B5951A, resource-version: f411bf24-454a-4db0-a341-f06db5897e22]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"575c05a5bb8ffb02","parentId":"a582b9570d0965bd","traceId":"00000000000000008fca2f3996393649","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:07.06Z","sequence":23825,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:07.06Z","sequence":23826,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:07.064Z","sequence":23827,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-71ed5fdd-064f-44a7-9ec5-daca0ba0e990, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:07.066Z","sequence":23828,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:07.067Z","sequence":23829,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191187]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:07.076Z","sequence":23830,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-2c9940b1-01e2-4699-984e-240ce493b0bf, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:07.206Z","sequence":23831,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:07.206Z","sequence":23832,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF2AC7313B5951A] for gateway [gateway_integrationtest_network_191187]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:07.207Z","sequence":23833,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:07.207Z","sequence":23834,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191187]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:07.212Z","sequence":23835,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:07.212Z","sequence":23836,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:07.22Z","sequence":23837,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-26d1f23f-0990-4092-9b37-6faa5f81fec7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:07.537Z","sequence":23838,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6775406f-748a-4a77-b771-1fae4f980957, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:11.287Z","sequence":23839,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:11.287Z","sequence":23840,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006BB] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:11.293Z","sequence":23841,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:11.293Z","sequence":23842,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:11.299Z","sequence":23843,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f0fa1c39-3c99-454e-96a9-a84ee9d84263, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:13.118Z","sequence":23844,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:13.118Z","sequence":23845,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001B0E] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:13.124Z","sequence":23846,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:13.124Z","sequence":23847,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:13.13Z","sequence":23848,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-62cc4b2d-f02c-4106-bd92-db6d536e8393, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:20.704Z","sequence":23849,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:20.704Z","sequence":23850,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:20.71Z","sequence":23851,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-dda1a8a2-1db9-4c9d-99c2-1b5595e0170f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:21.803Z","sequence":23852,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF2AC7313B5951A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0bfd2df03fd6e849","parentId":"1ec27e0d4d9dbaa4","traceId":"00000000000000003e7bb6a141873451","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:21.848Z","sequence":23853,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF2AC7313B5951A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0bfd2df03fd6e849","parentId":"1ec27e0d4d9dbaa4","traceId":"00000000000000003e7bb6a141873451","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:22.149Z","sequence":23854,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191187]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3b669e4b0729934b","parentId":"f8c039fc271737fb","traceId":"000000000000000019f90e66c844e479","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:22.196Z","sequence":23855,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191187]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3b669e4b0729934b","parentId":"f8c039fc271737fb","traceId":"000000000000000019f90e66c844e479","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:23.109Z","sequence":23856,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: D79746B3E294]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e4298c6c84f077a2","parentId":"c86643f7b44a9328","traceId":"0000000000000000b99a3bdd4bdff1c1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:23.207Z","sequence":23857,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: D79746B3E294, resource-version: 48e42200-5e42-47fc-bb4e-edc8468a1dc4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e4298c6c84f077a2","parentId":"c86643f7b44a9328","traceId":"0000000000000000b99a3bdd4bdff1c1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:23.26Z","sequence":23858,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: D79746B3E294, resource-version: ab72c94c-e94c-43df-ad30-e826a80b329c]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e4298c6c84f077a2","parentId":"c86643f7b44a9328","traceId":"0000000000000000b99a3bdd4bdff1c1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:23.265Z","sequence":23859,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: D79746B3E294]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"23e472d818a20b3e","parentId":"81121d97af46de11","traceId":"0000000000000000b99a3bdd4bdff1c1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:23.505Z","sequence":23860,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: D79746B3E294]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"23e472d818a20b3e","parentId":"81121d97af46de11","traceId":"0000000000000000b99a3bdd4bdff1c1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:24.183Z","sequence":23861,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF37271BE162E35]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a134c345ffb0e173","parentId":"1b71f58c7e612b50","traceId":"000000000000000060a9f7828e6bc573","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:24.246Z","sequence":23862,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF37271BE162E35, resource-version: 1553573b-28f9-4ed3-8456-75a035accd06]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a134c345ffb0e173","parentId":"1b71f58c7e612b50","traceId":"000000000000000060a9f7828e6bc573","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:24.253Z","sequence":23863,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF37271BE162E35, resource-version: 690d864c-5c1b-4b11-82a8-1bb58fb5bd52]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a134c345ffb0e173","parentId":"1b71f58c7e612b50","traceId":"000000000000000060a9f7828e6bc573","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:25.306Z","sequence":23864,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:25.306Z","sequence":23865,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:25.311Z","sequence":23866,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-982e8c26-e372-4521-8d64-96b34cb7c151, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:25.313Z","sequence":23867,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:25.314Z","sequence":23868,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-D79746B3E294]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:25.323Z","sequence":23869,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-c4bc9a5e-c473-455f-9f1f-f2f7ca810929, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:25.449Z","sequence":23870,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:25.449Z","sequence":23871,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: D79746B3E294]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:25.457Z","sequence":23872,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-76aef9e5-452c-4c6a-9e79-89b4639c70bd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:25.461Z","sequence":23873,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:25.461Z","sequence":23874,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF37271BE162E35] for gateway [D79746B3E294]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:25.465Z","sequence":23875,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:25.466Z","sequence":23876,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:25.711Z","sequence":23877,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f291817f-8457-43cc-a2ee-7d30e97a2a7f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:25.711Z","sequence":23878,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:25.711Z","sequence":23879,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: dow]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:25.715Z","sequence":23880,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-c2a70b09-7e16-4734-8c71-6f2a4c810221, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:25.981Z","sequence":23881,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:25.981Z","sequence":23882,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 70B3D57BB100125B] for gateway [gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:25.982Z","sequence":23883,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:25.982Z","sequence":23884,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:25.988Z","sequence":23885,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-96efadd7-daa7-41de-bf02-fd6ccfd08a6d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:25.989Z","sequence":23886,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:25.989Z","sequence":23887,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:25.993Z","sequence":23888,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-46e2f55b-a746-4c71-a42d-40fdddac5a17, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:26.646Z","sequence":23889,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:26.647Z","sequence":23890,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001B0F] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:26.667Z","sequence":23891,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:26.667Z","sequence":23892,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:26.673Z","sequence":23893,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-79af0135-15b4-4996-b598-31541ac4b3f9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:38.54Z","sequence":23894,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:38.54Z","sequence":23895,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001B14] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:38.55Z","sequence":23896,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:38.55Z","sequence":23897,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:38.602Z","sequence":23898,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1853f711-7ec0-482b-a058-cecd953f5f0e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:38.784Z","sequence":23899,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF37271BE162E35]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"88803f69bbc9f848","parentId":"b7d89444bde21a55","traceId":"0000000000000000e9825d9b71b0d3c7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:38.802Z","sequence":23900,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF37271BE162E35]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"88803f69bbc9f848","parentId":"b7d89444bde21a55","traceId":"0000000000000000e9825d9b71b0d3c7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:39.106Z","sequence":23901,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: D79746B3E294]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4de0d52bfc2c5afd","parentId":"91e10e1342a0aff1","traceId":"0000000000000000320eab95f2912724","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:39.145Z","sequence":23902,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: D79746B3E294]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4de0d52bfc2c5afd","parentId":"91e10e1342a0aff1","traceId":"0000000000000000320eab95f2912724","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:41.243Z","sequence":23903,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:41.243Z","sequence":23904,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 70B3D57BB1001277] for gateway [gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:41.251Z","sequence":23905,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:41.251Z","sequence":23906,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:41.286Z","sequence":23907,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-38c41659-ca49-4d95-9208-f149ec10e078, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:46.093Z","sequence":23908,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:46.093Z","sequence":23909,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:46.112Z","sequence":23910,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f3772d8c-cdcd-4a32-bc18-bbe812b2da55, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:46.171Z","sequence":23911,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:46.172Z","sequence":23912,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BBD1C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:46.177Z","sequence":23913,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f748d3fb-c761-4e33-af63-5fc2617fda19, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:57.187Z","sequence":23914,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:57.188Z","sequence":23915,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: shell]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:57.191Z","sequence":23916,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-a53cd1f6-d261-4b80-a0c2-e564b04f615e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:57.194Z","sequence":23917,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/shell:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:57.194Z","sequence":23918,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: shell, type: hashed-password, auth-id: auth-gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:57.206Z","sequence":23919,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-316be520-a2e3-46d6-83c1-2308a7900737, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:57.325Z","sequence":23920,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:57.325Z","sequence":23921,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100193E] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:57.351Z","sequence":23922,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:57.351Z","sequence":23923,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:11:57.402Z","sequence":23924,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2b76fcc9-6bd0-4615-b08d-f473eab2c036, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:12:03.494Z","sequence":23925,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:12:03.494Z","sequence":23926,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: flint]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:12:03.499Z","sequence":23927,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-2a4646fb-bb70-4033-b655-8c27135eb93d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:12:03.502Z","sequence":23928,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/flint:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:12:03.502Z","sequence":23929,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: flint, type: hashed-password, auth-id: auth-flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:12:03.517Z","sequence":23930,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-2b515961-316e-4a3f-9881-7798b96bf7e0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:12:03.707Z","sequence":23931,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:12:03.707Z","sequence":23932,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10007F7] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:12:03.715Z","sequence":23933,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:12:03.715Z","sequence":23934,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:12:03.721Z","sequence":23935,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-531d185e-2db6-4580-a42d-b5548f0a2702, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:12:06.657Z","sequence":23936,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:12:06.658Z","sequence":23937,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100194E] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:12:06.703Z","sequence":23938,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:12:06.703Z","sequence":23939,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:12:06.712Z","sequence":23940,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-25729132-353b-44ce-9a5d-6693a6b7d412, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:12:11.491Z","sequence":23941,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:12:11.491Z","sequence":23942,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB1000A87] for gateway [0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:12:11.497Z","sequence":23943,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:12:11.498Z","sequence":23944,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:12:11.501Z","sequence":23945,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d12665d4-56b8-4511-b6e3-3f04b983419e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:12:16.585Z","sequence":23946,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:12:16.585Z","sequence":23947,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AF2] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:12:16.594Z","sequence":23948,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:12:16.594Z","sequence":23949,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:12:16.6Z","sequence":23950,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f96a8548-3259-4990-8992-b161a7f4d961, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:12:16.901Z","sequence":23951,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:12:16.901Z","sequence":23952,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 0008004C80F4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:12:16.917Z","sequence":23953,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2673ef7d-3e24-45a3-86e7-9cbd7f140bf1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:12:16.957Z","sequence":23954,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:12:16.957Z","sequence":23955,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001944] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:12:16.972Z","sequence":23956,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:12:16.973Z","sequence":23957,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:12:16.985Z","sequence":23958,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-375e39e2-0b45-47e6-9a8a-afe26a4b99bf, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:12:26.064Z","sequence":23959,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:12:26.064Z","sequence":23960,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB100081A] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:12:26.07Z","sequence":23961,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:12:26.07Z","sequence":23962,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:12:26.074Z","sequence":23963,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d71bccd4-b7ff-4a48-b451-b464c158321f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:12:30.165Z","sequence":23964,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:12:30.165Z","sequence":23965,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oci]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:12:30.168Z","sequence":23966,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-0b8ed68f-b518-4cdf-86cb-2aefce1cb96b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:12:30.171Z","sequence":23967,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:12:30.171Z","sequence":23968,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000173] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:12:30.176Z","sequence":23969,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:12:30.176Z","sequence":23970,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:12:30.179Z","sequence":23971,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-20f3df32-0390-4347-9e25-734a8eb10af0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:12:30.194Z","sequence":23972,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:12:30.194Z","sequence":23973,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:12:30.2Z","sequence":23974,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3d1ac0d8-3f41-4978-8cd4-be3740c5f1a5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:12:30.203Z","sequence":23975,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:12:30.204Z","sequence":23976,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000173] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:12:30.209Z","sequence":23977,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:12:30.209Z","sequence":23978,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:12:30.211Z","sequence":23979,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-dc5f6eeb-adde-4bdb-bb5e-29638caeb3b2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:12:30.827Z","sequence":23980,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/conditionall:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:12:30.828Z","sequence":23981,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: conditionall, device-id: 0008004B512D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:12:30.834Z","sequence":23982,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-635048ba-6c3b-4784-9530-f0f691eb4bb3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:12:30.839Z","sequence":23983,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/conditionall:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:12:30.839Z","sequence":23984,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: conditionall, device-id: 70B3D57BB1000211] for gateway [0008004B512D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:12:30.847Z","sequence":23985,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_conditionall\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:12:30.848Z","sequence":23986,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_conditionall\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:12:30.851Z","sequence":23987,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9b409141-0aba-41cb-85e3-8a4184e8b90c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:12:31.931Z","sequence":23988,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oiltanking:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:12:31.931Z","sequence":23989,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oiltanking, device-id: 0008004BB60F]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:12:31.937Z","sequence":23990,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2dae402a-0494-4e82-8bf3-9162933a0105, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:12:31.942Z","sequence":23991,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:12:31.942Z","sequence":23992,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oiltanking]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:12:31.945Z","sequence":23993,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-96a7ac93-ef9b-4f31-b8d2-54227e066a6f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:12:39.989Z","sequence":23994,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:12:39.99Z","sequence":23995,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001403] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:12:39.996Z","sequence":23996,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:12:39.996Z","sequence":23997,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:12:40.01Z","sequence":23998,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-61cbe395-cff3-43a7-ba1a-d9d63cb14ef4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:12:40.658Z","sequence":23999,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:12:40.658Z","sequence":24000,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AFA] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:12:40.663Z","sequence":24001,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:12:40.663Z","sequence":24002,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:12:40.67Z","sequence":24003,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-954561f2-ac74-4209-8126-5888856eba96, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:12:41.158Z","sequence":24004,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:12:41.158Z","sequence":24005,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000ABF] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:12:41.164Z","sequence":24006,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:12:41.164Z","sequence":24007,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:12:41.171Z","sequence":24008,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-809e6cc1-e3bc-4b7f-99a0-b7123ed19170, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:12:47.208Z","sequence":24009,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:12:47.208Z","sequence":24010,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001B15] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:12:47.214Z","sequence":24011,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:12:47.214Z","sequence":24012,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:12:47.221Z","sequence":24013,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f0ef37ea-a88f-4355-a5d0-2fc96bbf166f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:12:51.854Z","sequence":24014,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:12:51.855Z","sequence":24015,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000154] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:12:51.862Z","sequence":24016,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:12:51.862Z","sequence":24017,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:12:51.865Z","sequence":24018,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9d84f47d-0395-459a-92a4-21f568fa6589, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:12:51.871Z","sequence":24019,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:12:51.871Z","sequence":24020,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000154] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:12:51.876Z","sequence":24021,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:12:51.876Z","sequence":24022,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:12:51.88Z","sequence":24023,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5c3e080c-b1d7-4a58-af4b-e8152cf5d66c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:12:52.951Z","sequence":24024,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:12:52.951Z","sequence":24025,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006D5] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:12:52.958Z","sequence":24026,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:12:52.958Z","sequence":24027,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:12:52.965Z","sequence":24028,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ff77fe85-5282-4d36-a0bb-aba19cce9216, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:13:03.131Z","sequence":24029,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:13:03.131Z","sequence":24030,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10013E9] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:13:03.137Z","sequence":24031,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:13:03.137Z","sequence":24032,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:13:03.144Z","sequence":24033,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-cf7bffee-9639-414c-8c99-70436414db38, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:13:04.756Z","sequence":24034,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191189]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"632a3bdacd04c45c","parentId":"1955de289bc89db6","traceId":"00000000000000001dfb28ac430f84e2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:13:04.779Z","sequence":24035,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191189, resource-version: c338b29c-aecf-4e13-a8e6-59135970123e]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"632a3bdacd04c45c","parentId":"1955de289bc89db6","traceId":"00000000000000001dfb28ac430f84e2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:13:04.787Z","sequence":24036,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191189, resource-version: 2301bb48-283e-4ab6-94b2-e73db0d91a85]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"632a3bdacd04c45c","parentId":"1955de289bc89db6","traceId":"00000000000000001dfb28ac430f84e2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:13:04.791Z","sequence":24037,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191189]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ae9a9437549c757b","parentId":"332b7cd5c10b2c7a","traceId":"00000000000000001dfb28ac430f84e2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:13:04.942Z","sequence":24038,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191189]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ae9a9437549c757b","parentId":"332b7cd5c10b2c7a","traceId":"00000000000000001dfb28ac430f84e2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:13:06.073Z","sequence":24039,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF45F13195A4C40]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bb4a1ab45b784355","parentId":"e2f6c02a1b3ea0bc","traceId":"00000000000000008bd7e6ac191fb41b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:13:06.09Z","sequence":24040,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF45F13195A4C40, resource-version: 6c30bc86-3f8e-481f-b145-97336417db9c]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bb4a1ab45b784355","parentId":"e2f6c02a1b3ea0bc","traceId":"00000000000000008bd7e6ac191fb41b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:13:06.098Z","sequence":24041,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF45F13195A4C40, resource-version: 7bb97c2f-0f2d-4c5f-93df-17efd189be60]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bb4a1ab45b784355","parentId":"e2f6c02a1b3ea0bc","traceId":"00000000000000008bd7e6ac191fb41b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:13:07.167Z","sequence":24042,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:13:07.168Z","sequence":24043,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191189]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:13:07.18Z","sequence":24044,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-fcd4b52b-dadf-494e-a127-5b284b30dedc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:13:07.304Z","sequence":24045,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:13:07.304Z","sequence":24046,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF45F13195A4C40] for gateway [gateway_integrationtest_network_191189]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:13:07.305Z","sequence":24047,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:13:07.305Z","sequence":24048,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191189]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:13:07.31Z","sequence":24049,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:13:07.31Z","sequence":24050,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:13:07.311Z","sequence":24051,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4890758d-c1b5-4865-b782-234046280320, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:13:07.657Z","sequence":24052,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-75b129ca-42b5-4505-aef1-6be99767da25, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:13:10.814Z","sequence":24053,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/aloxy:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:13:10.814Z","sequence":24054,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: aloxy, device-id: 0008004A8F68]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:13:10.82Z","sequence":24055,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5df2d04c-97cc-4c04-8d2f-d9baf6b6533c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:13:10.824Z","sequence":24056,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:13:10.824Z","sequence":24057,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: aloxy]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:13:10.827Z","sequence":24058,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-043e6649-6bcb-4d6f-b638-3d663f209166, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:13:12.118Z","sequence":24059,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:13:12.119Z","sequence":24060,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100021A] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:13:12.124Z","sequence":24061,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:0.4.1\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:13:12.124Z","sequence":24062,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:13:12.131Z","sequence":24063,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b562d0e8-2f3d-46e7-8e06-4db9ec92655a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:13:13.71Z","sequence":24064,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:13:13.711Z","sequence":24065,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000868] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:13:13.712Z","sequence":24066,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:13:13.712Z","sequence":24067,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:13:13.716Z","sequence":24068,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:13:13.716Z","sequence":24069,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:13:13.717Z","sequence":24070,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ba3cf1ee-59e0-4701-9598-5529b8ec06ed, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:13:13.72Z","sequence":24071,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-573d327a-f871-4598-b52d-88160b6d8d30, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:13:14.528Z","sequence":24072,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:13:14.529Z","sequence":24073,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10004BC] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:13:14.541Z","sequence":24074,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:13:14.541Z","sequence":24075,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:13:14.547Z","sequence":24076,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0bdb5440-b2f7-48cc-ab0b-d64c6a945780, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:13:17.187Z","sequence":24077,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF45F13195A4C40]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"70bd0b1f478460c5","parentId":"03ac5a77521aba71","traceId":"0000000000000000ab3c14ec97bb734f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:13:17.205Z","sequence":24078,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF45F13195A4C40]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"70bd0b1f478460c5","parentId":"03ac5a77521aba71","traceId":"0000000000000000ab3c14ec97bb734f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:13:17.5Z","sequence":24079,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191189]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a8d17656caac6cbb","parentId":"8871d6a621a63ca3","traceId":"00000000000000009baa4c1defe8c975","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:13:17.527Z","sequence":24080,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191189]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a8d17656caac6cbb","parentId":"8871d6a621a63ca3","traceId":"00000000000000009baa4c1defe8c975","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:13:18.11Z","sequence":24081,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 30CD5F49A65D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3f4b201ca4a7d90f","parentId":"b124ae5deb208412","traceId":"0000000000000000477e502a29e419ca","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:13:18.133Z","sequence":24082,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 30CD5F49A65D, resource-version: ab83a3a1-23d8-46e1-bffa-2ed64f46ec7c]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3f4b201ca4a7d90f","parentId":"b124ae5deb208412","traceId":"0000000000000000477e502a29e419ca","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:13:18.139Z","sequence":24083,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 30CD5F49A65D, resource-version: 3917f991-e29e-47dd-9391-b526b8afaab0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3f4b201ca4a7d90f","parentId":"b124ae5deb208412","traceId":"0000000000000000477e502a29e419ca","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:13:18.143Z","sequence":24084,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 30CD5F49A65D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"857d7e71ee8be79c","parentId":"2636ec441d055938","traceId":"0000000000000000477e502a29e419ca","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:13:18.36Z","sequence":24085,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 30CD5F49A65D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"857d7e71ee8be79c","parentId":"2636ec441d055938","traceId":"0000000000000000477e502a29e419ca","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:13:19.013Z","sequence":24086,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFC002BCB28A10E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5a85a324b34fc7aa","parentId":"7c3e2efb971a4d94","traceId":"0000000000000000c9272c56fb8a7afa","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:13:19.037Z","sequence":24087,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFC002BCB28A10E, resource-version: a467a6e2-7837-477c-96c3-ce0962d672cb]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5a85a324b34fc7aa","parentId":"7c3e2efb971a4d94","traceId":"0000000000000000c9272c56fb8a7afa","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:13:19.045Z","sequence":24088,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFC002BCB28A10E, resource-version: 96291fd0-30df-4a36-a9e6-e249b6935867]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5a85a324b34fc7aa","parentId":"7c3e2efb971a4d94","traceId":"0000000000000000c9272c56fb8a7afa","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:13:20.137Z","sequence":24089,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:13:20.138Z","sequence":24090,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-30CD5F49A65D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:13:20.149Z","sequence":24091,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-2e78737b-27db-4f85-a615-38f292456b96, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:13:20.309Z","sequence":24092,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:13:20.31Z","sequence":24093,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 30CD5F49A65D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:13:20.315Z","sequence":24094,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4fcf6ced-caa9-420a-adcc-cc9d55cf05e7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:13:20.319Z","sequence":24095,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:13:20.32Z","sequence":24096,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFC002BCB28A10E] for gateway [30CD5F49A65D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:13:20.325Z","sequence":24097,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:13:20.325Z","sequence":24098,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:13:20.65Z","sequence":24099,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-edc32c26-422f-484c-9e40-78467f959eca, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:13:24.733Z","sequence":24100,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:13:24.734Z","sequence":24101,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BB613]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:13:24.739Z","sequence":24102,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7881859f-3601-4569-a48d-fbedc979ff86, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:13:29.927Z","sequence":24103,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFC002BCB28A10E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8b9e0342a167775a","parentId":"8174ac2d0f69d739","traceId":"00000000000000004c565a5b67f4ddd7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:13:29.946Z","sequence":24104,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFC002BCB28A10E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8b9e0342a167775a","parentId":"8174ac2d0f69d739","traceId":"00000000000000004c565a5b67f4ddd7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:13:30.304Z","sequence":24105,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 30CD5F49A65D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cc6c4366b80cae7e","parentId":"7e43713b8ffd08f7","traceId":"000000000000000046260f5a34df29c4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:13:30.324Z","sequence":24106,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 30CD5F49A65D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cc6c4366b80cae7e","parentId":"7e43713b8ffd08f7","traceId":"000000000000000046260f5a34df29c4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:13:34.743Z","sequence":24107,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:13:34.743Z","sequence":24108,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BB9] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:13:34.749Z","sequence":24109,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:13:34.749Z","sequence":24110,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:13:34.758Z","sequence":24111,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-223d4e5d-166a-47d6-bcd7-ccde69490516, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:13:48.583Z","sequence":24112,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:13:48.583Z","sequence":24113,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AF4] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:13:48.588Z","sequence":24114,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:13:48.588Z","sequence":24115,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:13:48.595Z","sequence":24116,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-664e6133-9192-42b1-97b9-d36d03c1d934, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:13:54.91Z","sequence":24117,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/dow:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:13:54.91Z","sequence":24118,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: dow, type: hashed-password, auth-id: auth-gateway_dow_network_39199]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:13:54.921Z","sequence":24119,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-7253689a-d843-43af-88b7-f7f6f2bc6bfe, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:13:55.053Z","sequence":24120,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:13:55.054Z","sequence":24121,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 70B3D57BB10014EB] for gateway [gateway_dow_network_39199]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:13:55.055Z","sequence":24122,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:13:55.055Z","sequence":24123,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: gateway_dow_network_39199]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:13:55.066Z","sequence":24124,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ea329ca8-3b8c-4fc5-baf2-863ebff17b95, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:13:55.066Z","sequence":24125,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:13:55.066Z","sequence":24126,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:13:55.073Z","sequence":24127,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d8a09dd6-c27a-4c7f-b0b1-1994b9141822, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:13:55.577Z","sequence":24128,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/acta:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:13:55.577Z","sequence":24129,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: acta, device-id: 0008004AAAA3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:13:55.585Z","sequence":24130,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-366a1c10-f5c5-4029-b188-8d3c9891e2e1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:13:55.588Z","sequence":24131,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:13:55.592Z","sequence":24132,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: acta]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:13:55.597Z","sequence":24133,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-ee63cf37-db10-4d0d-bf24-a3a402c492af, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:13:59.211Z","sequence":24134,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:13:59.212Z","sequence":24135,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000834] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:13:59.217Z","sequence":24136,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:13:59.217Z","sequence":24137,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:13:59.222Z","sequence":24138,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e3671816-5415-4ae1-8e38-acec5e1f55bd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:14:01.76Z","sequence":24139,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:14:01.76Z","sequence":24140,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: lanxess]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:14:01.761Z","sequence":24141,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:14:01.761Z","sequence":24142,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10008A4] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:14:01.765Z","sequence":24143,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-bae61c09-dd16-4bfb-a137-e9a51096a1bf, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:14:01.769Z","sequence":24144,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:14:01.769Z","sequence":24145,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 70B3D57BB10001A5] for gateway [0008004BB84C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:14:01.771Z","sequence":24146,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:14:01.771Z","sequence":24147,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:14:01.777Z","sequence":24148,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-753127c6-aa54-4c3e-a43c-898ffd70bf7a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:14:01.777Z","sequence":24149,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:0.4.1\"\n },\n \"viaGroups\" : [ \"gateways_lanxess\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:14:01.777Z","sequence":24150,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_lanxess\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:14:01.781Z","sequence":24151,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4f39a2a9-e606-45b2-85f7-2ed41a1827f8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:14:04.59Z","sequence":24152,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/acta:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:14:04.59Z","sequence":24153,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: acta, device-id: 353438340047002F] for gateway [0008004AAAA3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:14:04.596Z","sequence":24154,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.3.0\"\n },\n \"viaGroups\" : [ \"gateways_acta\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:14:04.596Z","sequence":24155,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_acta\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:14:04.599Z","sequence":24156,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-30c0b27a-f9ee-4414-b0fb-cd2bea62a2aa, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:14:09.118Z","sequence":24157,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:14:09.118Z","sequence":24158,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:14:09.124Z","sequence":24159,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-50164b24-8d70-4f28-a433-a46ca6d8578c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:14:18.629Z","sequence":24160,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/repsol:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:14:18.629Z","sequence":24161,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: repsol, device-id: 0008004A37FF]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:14:18.639Z","sequence":24162,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6220d0b5-d09c-4b1d-b77f-495529e8cf00, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:14:18.643Z","sequence":24163,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:14:18.644Z","sequence":24164,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: repsol]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:14:18.646Z","sequence":24165,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-cff580dd-f6b3-4f56-b89a-08184c9e842a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:14:24.041Z","sequence":24166,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:14:24.041Z","sequence":24167,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A99] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:14:24.057Z","sequence":24168,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:14:24.058Z","sequence":24169,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:14:24.067Z","sequence":24170,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f5012914-88b2-472a-8b3b-3f450df8fbc1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:14:25.865Z","sequence":24171,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:14:25.865Z","sequence":24172,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001C0] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:14:25.872Z","sequence":24173,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:14:25.872Z","sequence":24174,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:14:25.875Z","sequence":24175,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-aadfbb05-4bb5-4b80-b63b-e33ad856efc5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:14:25.947Z","sequence":24176,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:14:25.948Z","sequence":24177,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001C0] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:14:25.953Z","sequence":24178,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:14:25.953Z","sequence":24179,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:14:25.955Z","sequence":24180,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7e6d28ac-7521-4e16-bf7d-6a398d4f7bcc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:14:27.472Z","sequence":24181,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:14:27.472Z","sequence":24182,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10009EA] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:14:27.484Z","sequence":24183,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:14:27.484Z","sequence":24184,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:14:27.488Z","sequence":24185,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-98e1a8a9-4ea2-4d1f-bb6e-a6b48e31aa9c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:14:31.645Z","sequence":24186,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:14:31.645Z","sequence":24187,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000169] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:14:31.651Z","sequence":24188,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:14:31.651Z","sequence":24189,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:14:31.655Z","sequence":24190,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a8bb1722-3a90-4889-bc00-ac229e243583, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:14:31.683Z","sequence":24191,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:14:31.683Z","sequence":24192,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000169] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:14:31.688Z","sequence":24193,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:14:31.688Z","sequence":24194,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:14:31.69Z","sequence":24195,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8d2b1dd5-4282-4e1d-be31-1006b752af5f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:14:34.377Z","sequence":24196,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:14:34.377Z","sequence":24197,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000897] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:14:34.383Z","sequence":24198,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:14:34.383Z","sequence":24199,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:14:34.387Z","sequence":24200,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4cd03607-da7c-49d8-9a6f-c20b80464167, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:14:36.652Z","sequence":24201,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:14:36.652Z","sequence":24202,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000A93] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:14:36.659Z","sequence":24203,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:14:36.659Z","sequence":24204,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:14:36.665Z","sequence":24205,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-10e4f0ec-e403-4e5e-a5c2-0748a31e75a3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:14:39.189Z","sequence":24206,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:14:39.189Z","sequence":24207,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000845] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:14:39.198Z","sequence":24208,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:14:39.198Z","sequence":24209,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:14:39.202Z","sequence":24210,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8adc781a-fb16-4b18-9c16-2ea4f82c1a1e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:14:41.522Z","sequence":24211,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:14:41.522Z","sequence":24212,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 0008004B51D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:14:41.528Z","sequence":24213,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0cb15f98-0790-422c-85b7-55e4e0c1113d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:14:41.531Z","sequence":24214,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:14:41.532Z","sequence":24215,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: dow]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:14:41.534Z","sequence":24216,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-ba07cb60-51c5-4bb0-81a3-bba265444898, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:14:47.712Z","sequence":24217,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:14:47.712Z","sequence":24218,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006C6] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:14:47.719Z","sequence":24219,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:14:47.719Z","sequence":24220,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:14:47.726Z","sequence":24221,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-62c43785-c01e-43aa-b382-f7b8a1ad01f7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:14:54.87Z","sequence":24222,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:14:54.87Z","sequence":24223,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10007FE] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:14:54.877Z","sequence":24224,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:14:54.878Z","sequence":24225,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:14:54.881Z","sequence":24226,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a61c4aa1-efee-4ebf-ba31-e67a846967a8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:01.201Z","sequence":24227,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:01.201Z","sequence":24228,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 70B3D57BB10001AE] for gateway [0008004BB84C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:01.207Z","sequence":24229,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:0.4.0\"\n },\n \"viaGroups\" : [ \"gateways_lanxess\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:01.207Z","sequence":24230,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_lanxess\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:01.21Z","sequence":24231,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-70de3efb-c0ed-4178-842f-4024b7ac82cf, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:01.385Z","sequence":24232,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:01.386Z","sequence":24233,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001E8] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:01.392Z","sequence":24234,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:01.392Z","sequence":24235,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001E8] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:01.395Z","sequence":24236,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:01.395Z","sequence":24237,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:01.398Z","sequence":24238,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:01.398Z","sequence":24239,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:01.399Z","sequence":24240,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f04a1bd2-70fa-4185-8b64-e737e694c55b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:01.404Z","sequence":24241,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f20a6550-07ee-4529-91bd-b973d47022dc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:02.161Z","sequence":24242,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:02.164Z","sequence":24243,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: shell]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:02.169Z","sequence":24244,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-828a9497-468c-49f0-83a0-ead16390ceaa, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:02.172Z","sequence":24245,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/shell:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:02.173Z","sequence":24246,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: shell, type: hashed-password, auth-id: auth-gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:02.205Z","sequence":24247,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-ef033be0-3f45-4787-bea1-a335b0976c44, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:02.332Z","sequence":24248,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:02.333Z","sequence":24249,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006E0] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:02.349Z","sequence":24250,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:02.349Z","sequence":24251,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:02.365Z","sequence":24252,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d1356392-0a88-483d-b7b9-c60e2f8c56e0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:04.207Z","sequence":24253,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191191]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a720684322350e04","parentId":"72448af513918a19","traceId":"0000000000000000a69f38cf4d97dcee","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:04.241Z","sequence":24254,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191191, resource-version: 63589926-0bc3-4fb4-b6dc-2752269f5143]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a720684322350e04","parentId":"72448af513918a19","traceId":"0000000000000000a69f38cf4d97dcee","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:04.25Z","sequence":24255,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191191, resource-version: 45e45f65-1251-4e70-abc8-4a8925991d83]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a720684322350e04","parentId":"72448af513918a19","traceId":"0000000000000000a69f38cf4d97dcee","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:04.253Z","sequence":24256,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191191]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e3cf732d51a084ac","parentId":"9d94eac25ee24e51","traceId":"0000000000000000a69f38cf4d97dcee","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:04.467Z","sequence":24257,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191191]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e3cf732d51a084ac","parentId":"9d94eac25ee24e51","traceId":"0000000000000000a69f38cf4d97dcee","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:05.238Z","sequence":24258,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF195F6E38CF7B5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3c1a85a716f38b25","parentId":"1ed4d7e0b1084f3a","traceId":"0000000000000000c197ade2129971e0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:05.255Z","sequence":24259,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF195F6E38CF7B5, resource-version: e0fa79d6-52d4-4395-8a44-4752cfad2a02]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3c1a85a716f38b25","parentId":"1ed4d7e0b1084f3a","traceId":"0000000000000000c197ade2129971e0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:05.263Z","sequence":24260,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF195F6E38CF7B5, resource-version: d194255c-1fa4-4ed1-b0fd-9a1718df28ef]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3c1a85a716f38b25","parentId":"1ed4d7e0b1084f3a","traceId":"0000000000000000c197ade2129971e0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:06.334Z","sequence":24261,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:06.334Z","sequence":24262,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:06.339Z","sequence":24263,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-a6fef997-5c86-409c-ba20-78495f35e3b7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:06.341Z","sequence":24264,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:06.342Z","sequence":24265,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191191]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:06.357Z","sequence":24266,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-4ee84a52-e4bf-42d7-bd7f-86c3f96ae144, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:06.479Z","sequence":24267,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:06.479Z","sequence":24268,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF195F6E38CF7B5] for gateway [gateway_integrationtest_network_191191]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:06.48Z","sequence":24269,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:06.48Z","sequence":24270,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191191]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:06.485Z","sequence":24271,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:06.485Z","sequence":24272,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:06.486Z","sequence":24273,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6abfad11-e9a3-4bf1-9c2c-8b61e9d4ec68, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:06.903Z","sequence":24274,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ca21b902-a912-46b1-91f4-167ee4f5943f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:07.06Z","sequence":24275,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:07.06Z","sequence":24276,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A92] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:07.066Z","sequence":24277,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:07.066Z","sequence":24278,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:07.072Z","sequence":24279,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-707c8724-f171-45de-ba22-4ba360fea50a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:09.849Z","sequence":24280,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:09.849Z","sequence":24281,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: flint]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:09.859Z","sequence":24282,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-e5df32be-d563-415b-a391-1d0de2873f47, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:09.867Z","sequence":24283,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/flint:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:09.867Z","sequence":24284,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: flint, type: hashed-password, auth-id: auth-flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:09.905Z","sequence":24285,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-4caeba2f-43ef-4b8d-9963-3135991b59b1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:10.193Z","sequence":24286,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:10.193Z","sequence":24287,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000804] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:10.203Z","sequence":24288,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:10.203Z","sequence":24289,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:10.207Z","sequence":24290,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7f0c0fa5-49c1-4a90-99f2-9b80cb5e27fe, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:11.193Z","sequence":24291,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:11.193Z","sequence":24292,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000579] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:11.216Z","sequence":24293,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:11.217Z","sequence":24294,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:11.225Z","sequence":24295,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2bbfceb0-9f79-46fe-bc61-d0783f0cb93b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:16.209Z","sequence":24296,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:16.209Z","sequence":24297,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: conditionall]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:16.212Z","sequence":24298,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-603cf33d-33d9-4320-b06a-5727fc0c0cba, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:17.624Z","sequence":24299,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF195F6E38CF7B5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"aa038ec2e1d8776f","parentId":"b94db9236e5311f7","traceId":"0000000000000000229a5a648bdd6434","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:17.647Z","sequence":24300,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF195F6E38CF7B5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"aa038ec2e1d8776f","parentId":"b94db9236e5311f7","traceId":"0000000000000000229a5a648bdd6434","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:17.769Z","sequence":24301,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:17.769Z","sequence":24302,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB100081B] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:17.775Z","sequence":24303,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:17.775Z","sequence":24304,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:17.778Z","sequence":24305,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-688240b7-d9b3-43eb-a63b-084d2b2f5f7d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:18.193Z","sequence":24306,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191191]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9cdbc18eb788a4cc","parentId":"d66c1e2120c8f3b1","traceId":"0000000000000000d990269a46ee99fb","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:18.24Z","sequence":24307,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191191]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9cdbc18eb788a4cc","parentId":"d66c1e2120c8f3b1","traceId":"0000000000000000d990269a46ee99fb","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:19.285Z","sequence":24308,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 83329178433A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"479d154b3800f020","parentId":"04cd98c6188c165c","traceId":"00000000000000007f15db5db60daf3b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:19.305Z","sequence":24309,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 83329178433A, resource-version: a0576650-44d5-4740-95c0-b545d1fe65f8]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"479d154b3800f020","parentId":"04cd98c6188c165c","traceId":"00000000000000007f15db5db60daf3b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:19.314Z","sequence":24310,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 83329178433A, resource-version: e64e45b9-5443-4127-bafc-8e920664f078]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"479d154b3800f020","parentId":"04cd98c6188c165c","traceId":"00000000000000007f15db5db60daf3b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:19.318Z","sequence":24311,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 83329178433A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0e393edcec24a02c","parentId":"9645159cee6fd07e","traceId":"00000000000000007f15db5db60daf3b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:19.487Z","sequence":24312,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 83329178433A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0e393edcec24a02c","parentId":"9645159cee6fd07e","traceId":"00000000000000007f15db5db60daf3b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:20.471Z","sequence":24313,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF9C9400C4DE6BE]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a04bd421b1b4b7c8","parentId":"9f17c6a1b06dd5c7","traceId":"000000000000000098ea72842272d738","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:20.491Z","sequence":24314,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF9C9400C4DE6BE, resource-version: 05887350-a6f8-4d7b-bbda-2190db10fa56]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a04bd421b1b4b7c8","parentId":"9f17c6a1b06dd5c7","traceId":"000000000000000098ea72842272d738","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:20.498Z","sequence":24315,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF9C9400C4DE6BE, resource-version: 530aad0f-179d-42b6-870c-221f98e91275]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a04bd421b1b4b7c8","parentId":"9f17c6a1b06dd5c7","traceId":"000000000000000098ea72842272d738","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:21.561Z","sequence":24316,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:21.561Z","sequence":24317,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:21.565Z","sequence":24318,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-c323fa34-ba0e-4c35-b363-a88ce01a189f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:21.568Z","sequence":24319,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:21.569Z","sequence":24320,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-83329178433A]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:21.591Z","sequence":24321,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-e821248c-e675-48df-86ad-00c955686567, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:21.709Z","sequence":24322,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:21.709Z","sequence":24323,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 83329178433A]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:21.717Z","sequence":24324,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5f24f0ca-0f2e-454d-a9a6-a994cb50b24a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:21.725Z","sequence":24325,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:21.725Z","sequence":24326,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF9C9400C4DE6BE] for gateway [83329178433A]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:21.733Z","sequence":24327,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:21.733Z","sequence":24328,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:22.063Z","sequence":24329,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1c8a1b28-0cb5-4fba-a3f1-624b0ba83263, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:22.064Z","sequence":24330,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:22.064Z","sequence":24331,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: ineos]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:22.068Z","sequence":24332,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-41e81967-0ec8-4b43-94b3-a9d3a224efc3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:22.071Z","sequence":24333,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:22.072Z","sequence":24334,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB1000B0C] for gateway [0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:22.081Z","sequence":24335,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:22.081Z","sequence":24336,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:22.084Z","sequence":24337,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-85b5eb73-ab9b-4205-ba6f-a80d219e1f37, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:33.651Z","sequence":24338,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF9C9400C4DE6BE]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"726da8d24a003253","parentId":"227284f1c5328775","traceId":"00000000000000006988a3432da8856b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:33.668Z","sequence":24339,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF9C9400C4DE6BE]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"726da8d24a003253","parentId":"227284f1c5328775","traceId":"00000000000000006988a3432da8856b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:33.967Z","sequence":24340,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 83329178433A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7835405cb9b25b80","parentId":"c4b87784af10caf9","traceId":"0000000000000000079951c618e1793a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:33.985Z","sequence":24341,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 83329178433A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7835405cb9b25b80","parentId":"c4b87784af10caf9","traceId":"0000000000000000079951c618e1793a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:35.695Z","sequence":24342,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:35.695Z","sequence":24343,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: terega]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:35.698Z","sequence":24344,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-0dc6ab04-258b-46db-b623-286ed5fcc241, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:35.702Z","sequence":24345,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/terega:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:35.702Z","sequence":24346,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: terega, type: hashed-password, auth-id: auth-gateway_terega_network_27]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:35.712Z","sequence":24347,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-b5f7850d-d9b4-439a-b1ed-0ccbd6c9240f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:35.832Z","sequence":24348,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/terega:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:35.832Z","sequence":24349,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: terega, device-id: 70B3D57BB1000E0D] for gateway [gateway_terega_network_27]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:35.832Z","sequence":24350,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/terega:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:35.832Z","sequence":24351,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: terega, device-id: gateway_terega_network_27]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:35.837Z","sequence":24352,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0971b9e0-ad61-4bf7-aac4-d35ae906019f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:35.838Z","sequence":24353,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_terega\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:35.838Z","sequence":24354,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_terega\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:35.842Z","sequence":24355,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6eccda4a-9392-4208-92e6-3584e6bfad56, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:38.793Z","sequence":24356,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:38.793Z","sequence":24357,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A9B] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:38.799Z","sequence":24358,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:38.799Z","sequence":24359,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:38.807Z","sequence":24360,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2db54f3a-3f83-4152-ae46-5feaa58857c6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:41.699Z","sequence":24361,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:41.699Z","sequence":24362,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B89] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:41.704Z","sequence":24363,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:41.704Z","sequence":24364,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:41.71Z","sequence":24365,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-048a4342-3c88-42ff-8557-263d97040962, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:43.995Z","sequence":24366,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:43.995Z","sequence":24367,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A80] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:44.011Z","sequence":24368,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:44.011Z","sequence":24369,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:44.017Z","sequence":24370,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a18e09e6-2714-4a97-ba69-b8a918fe855f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:50.969Z","sequence":24371,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:50.969Z","sequence":24372,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B58] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:50.976Z","sequence":24373,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:50.976Z","sequence":24374,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:50.982Z","sequence":24375,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8e986c3b-d867-4796-a143-34d4f67defaa, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:53.045Z","sequence":24376,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:53.045Z","sequence":24377,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BB84C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:53.051Z","sequence":24378,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-cd00136f-af73-4bc7-9f6e-bcc3d7eabca0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:54.261Z","sequence":24379,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:54.261Z","sequence":24380,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 0008004B5135]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:54.269Z","sequence":24381,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5cbf942e-ec07-4181-ab75-5c07ececfb3a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:54.749Z","sequence":24382,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:54.749Z","sequence":24383,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: exxon]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:54.752Z","sequence":24384,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-66fa59ca-f989-4cc8-bb3d-974331725209, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:54.754Z","sequence":24385,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/exxon:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:54.754Z","sequence":24386,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: exxon, type: hashed-password, auth-id: auth-gateway_exxon_network_2559]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:54.805Z","sequence":24387,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-d3ce339c-92f3-4a4a-b781-31e4833d3d68, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:54.927Z","sequence":24388,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/exxon:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:54.927Z","sequence":24389,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: exxon, device-id: 70B3D57BB1000B45] for gateway [gateway_exxon_network_2559]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:54.928Z","sequence":24390,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/exxon:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:54.929Z","sequence":24391,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: exxon, device-id: gateway_exxon_network_2559]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:54.934Z","sequence":24392,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_exxon\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:54.934Z","sequence":24393,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_exxon\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:54.935Z","sequence":24394,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-32a26e91-4dbd-41b6-b3ee-f50bec8f7a60, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:54.937Z","sequence":24395,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3af43cf3-f289-4960-9254-64ab75ff32e0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:55.333Z","sequence":24396,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:55.333Z","sequence":24397,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB100085F] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:55.341Z","sequence":24398,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:55.341Z","sequence":24399,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:55.346Z","sequence":24400,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7cda8d35-76ff-41a9-8688-bbb11d5933e6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:57.875Z","sequence":24401,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:57.875Z","sequence":24402,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AF5] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:57.884Z","sequence":24403,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:57.885Z","sequence":24404,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:57.893Z","sequence":24405,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-12fc86d5-2eaf-4cc0-8401-8e39dc34a52e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:57.93Z","sequence":24406,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:57.93Z","sequence":24407,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A9E] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:57.935Z","sequence":24408,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:57.936Z","sequence":24409,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:57.943Z","sequence":24410,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-dbcdc7d4-828d-44f6-b9c4-d34d3c26a673, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:58.428Z","sequence":24411,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:58.428Z","sequence":24412,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BBD1B]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:58.437Z","sequence":24413,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6e95434a-6ed3-4db7-9ca6-50372b98faf9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:59.593Z","sequence":24414,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:59.593Z","sequence":24415,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10008AF] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:59.6Z","sequence":24416,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:59.6Z","sequence":24417,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:15:59.609Z","sequence":24418,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b9999f98-dd3b-49f1-b833-1a509c022382, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:16:05.562Z","sequence":24419,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/arkema:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:16:05.562Z","sequence":24420,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: arkema, device-id: 0008004AE119]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:16:05.568Z","sequence":24421,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e1d004f2-76d5-4a61-90fa-a1bc0792164a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:16:05.571Z","sequence":24422,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:16:05.571Z","sequence":24423,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: arkema]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:16:05.574Z","sequence":24424,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-ffffc6a2-62d4-4526-9dd2-e746af0b07a3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:16:06.822Z","sequence":24425,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:16:06.822Z","sequence":24426,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C1E] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:16:06.832Z","sequence":24427,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:16:06.833Z","sequence":24428,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:16:06.839Z","sequence":24429,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ba1ff925-a2ce-42f5-8b81-bd173187b364, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:16:08.253Z","sequence":24430,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/terega:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:16:08.253Z","sequence":24431,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: terega, device-id: 70B3D57BB1000DFF] for gateway [gateway_terega_network_27]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:16:08.26Z","sequence":24432,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_terega\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:16:08.26Z","sequence":24433,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_terega\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:16:08.264Z","sequence":24434,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6364771f-bc10-480f-a7d3-e3b62c9cf0ab, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:16:12.693Z","sequence":24435,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:16:12.693Z","sequence":24436,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AA3] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:16:12.704Z","sequence":24437,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:16:12.704Z","sequence":24438,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:16:12.711Z","sequence":24439,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9e30ab0f-a5e8-4d31-b512-6b47ca34ba21, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:16:22.853Z","sequence":24440,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:16:22.853Z","sequence":24441,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C10] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:16:22.854Z","sequence":24442,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:16:22.854Z","sequence":24443,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:16:22.86Z","sequence":24444,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:16:22.86Z","sequence":24445,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:16:22.86Z","sequence":24446,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-624f4ba0-b1bd-44df-a476-fd8b73e99951, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:16:22.866Z","sequence":24447,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-99e048af-d977-4d11-a17e-9e3c9e3573cf, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:16:30.558Z","sequence":24448,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:16:30.558Z","sequence":24449,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100021F] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:16:30.564Z","sequence":24450,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:0.4.1\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:16:30.564Z","sequence":24451,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:16:30.569Z","sequence":24452,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1430b2bf-b97a-4c51-8c1f-9c23971ead7f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:16:32.657Z","sequence":24453,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:16:32.657Z","sequence":24454,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006A1] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:16:32.663Z","sequence":24455,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:16:32.663Z","sequence":24456,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:16:32.67Z","sequence":24457,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ee964536-7089-48b6-b301-d954d023c587, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:16:34.736Z","sequence":24458,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:16:34.736Z","sequence":24459,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A88] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:16:34.742Z","sequence":24460,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:16:34.742Z","sequence":24461,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:16:34.747Z","sequence":24462,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d13b51fc-1867-44bb-8c14-794858959890, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:16:34.865Z","sequence":24463,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:16:34.865Z","sequence":24464,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A93] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:16:34.871Z","sequence":24465,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:16:34.871Z","sequence":24466,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:16:34.877Z","sequence":24467,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8f4bec97-b86b-4d8a-922a-b49658c50317, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:16:45.63Z","sequence":24468,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:16:45.631Z","sequence":24469,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oci]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:16:45.635Z","sequence":24470,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-1a3b989d-068a-442a-800b-7d8974c9cd2c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:16:45.639Z","sequence":24471,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:16:45.639Z","sequence":24472,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000203] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:16:45.644Z","sequence":24473,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:16:45.644Z","sequence":24474,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:16:45.647Z","sequence":24475,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-03d10b5a-b4c5-4dfb-aa2a-ca144f56bfde, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:16:45.655Z","sequence":24476,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:16:45.655Z","sequence":24477,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000203] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:16:45.666Z","sequence":24478,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:16:45.666Z","sequence":24479,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:16:45.67Z","sequence":24480,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-cea726fa-815c-4190-bd14-7ae728ee203b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:16:47.792Z","sequence":24481,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:16:47.792Z","sequence":24482,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10007F4] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:16:47.798Z","sequence":24483,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:16:47.798Z","sequence":24484,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:16:47.801Z","sequence":24485,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-974ad141-0f5c-492e-b83c-422142a96092, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:16:47.898Z","sequence":24486,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:16:47.898Z","sequence":24487,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:16:47.904Z","sequence":24488,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a264eb63-734e-4b6b-a750-9451a0a7573b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:16:50.594Z","sequence":24489,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:16:50.594Z","sequence":24490,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BBD1C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:16:50.6Z","sequence":24491,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4dab796a-97bb-4004-839f-b5e70ca14dc1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:17:01.14Z","sequence":24492,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:17:01.141Z","sequence":24493,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: acta]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:17:01.145Z","sequence":24494,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-a80d8006-7bc2-4ad4-8705-f632672e447e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:17:01.149Z","sequence":24495,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/acta:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:17:01.149Z","sequence":24496,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: acta, device-id: 35343834001F0046] for gateway [0008004AAAA3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:17:01.162Z","sequence":24497,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.3.0\"\n },\n \"viaGroups\" : [ \"gateways_acta\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:17:01.162Z","sequence":24498,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_acta\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:17:01.165Z","sequence":24499,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c5fe8715-58dc-4b71-8980-5bd5de2febb1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:17:04.433Z","sequence":24500,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191193]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"070c1848c4ad696c","parentId":"fb8ff97f132f908f","traceId":"000000000000000022f9e2c3985329b8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:17:04.45Z","sequence":24501,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191193, resource-version: 92bbd94c-47f5-4bd2-afec-bf0ecbe329b7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"070c1848c4ad696c","parentId":"fb8ff97f132f908f","traceId":"000000000000000022f9e2c3985329b8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:17:04.457Z","sequence":24502,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191193, resource-version: 4b7245dd-d91c-4953-8ded-d9263d6b5885]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"070c1848c4ad696c","parentId":"fb8ff97f132f908f","traceId":"000000000000000022f9e2c3985329b8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:17:04.46Z","sequence":24503,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191193]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"901a7da547e5c10b","parentId":"6e8bf15d09ee554a","traceId":"000000000000000022f9e2c3985329b8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:17:04.654Z","sequence":24504,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191193]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"901a7da547e5c10b","parentId":"6e8bf15d09ee554a","traceId":"000000000000000022f9e2c3985329b8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:17:05.897Z","sequence":24505,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF1CC9510A96DD6]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8fa9af9f393b1322","parentId":"5c0a332917b22620","traceId":"0000000000000000791c3ffd0e021edf","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:17:05.919Z","sequence":24506,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF1CC9510A96DD6, resource-version: 3d4c21fb-12fd-42f5-88a9-ff1480533984]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8fa9af9f393b1322","parentId":"5c0a332917b22620","traceId":"0000000000000000791c3ffd0e021edf","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:17:05.93Z","sequence":24507,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF1CC9510A96DD6, resource-version: de9e3b1b-4134-4907-ab94-098e20ab3178]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8fa9af9f393b1322","parentId":"5c0a332917b22620","traceId":"0000000000000000791c3ffd0e021edf","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:17:06.231Z","sequence":24508,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:17:06.231Z","sequence":24509,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A3D] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:17:06.237Z","sequence":24510,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:17:06.237Z","sequence":24511,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:17:06.244Z","sequence":24512,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9f1ff678-8104-46cd-bb76-7f357275efe3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:17:06.756Z","sequence":24513,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:17:06.757Z","sequence":24514,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BB6] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:17:06.762Z","sequence":24515,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:17:06.763Z","sequence":24516,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:17:06.769Z","sequence":24517,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e2432ba6-1045-4e46-8953-0445b8058a2d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:17:07.027Z","sequence":24518,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:17:07.027Z","sequence":24519,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191193]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:17:07.041Z","sequence":24520,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-b134eba6-00a5-4198-9226-b71dc7687136, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:17:07.169Z","sequence":24521,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:17:07.169Z","sequence":24522,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF1CC9510A96DD6] for gateway [gateway_integrationtest_network_191193]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:17:07.17Z","sequence":24523,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:17:07.17Z","sequence":24524,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191193]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:17:07.193Z","sequence":24525,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:17:07.193Z","sequence":24526,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:17:07.194Z","sequence":24527,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ed9bcbb5-064b-4956-ac91-fc8db2c352f2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:17:07.694Z","sequence":24528,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-81b36394-5446-4c09-9fae-c0dcd2a572f7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:17:11.952Z","sequence":24529,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:17:11.952Z","sequence":24530,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A74] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:17:11.992Z","sequence":24531,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:17:11.992Z","sequence":24532,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:17:12.009Z","sequence":24533,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-46817b9a-cf3b-43a5-87bb-259ebb450dcc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:17:13.989Z","sequence":24534,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:17:13.99Z","sequence":24535,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000159] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:17:13.998Z","sequence":24536,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:17:14Z","sequence":24537,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000159] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:17:14.001Z","sequence":24538,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:17:14.001Z","sequence":24539,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:17:14.006Z","sequence":24540,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-eb0dc32f-8986-49b7-a3e1-001506985871, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:17:14.008Z","sequence":24541,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:17:14.008Z","sequence":24542,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:17:14.011Z","sequence":24543,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-833cd999-2938-4d8f-b1fc-27f1531157a1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:17:18.644Z","sequence":24544,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:17:18.645Z","sequence":24545,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 0008004C80F4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:17:18.654Z","sequence":24546,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d90b4954-3ba0-4fcc-9db6-de9b1a8738a4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:17:20.355Z","sequence":24547,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF1CC9510A96DD6]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0cb8ca7638aa9414","parentId":"fd5b7e201911ffd9","traceId":"0000000000000000af07978f98cb260f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:17:20.372Z","sequence":24548,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF1CC9510A96DD6]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0cb8ca7638aa9414","parentId":"fd5b7e201911ffd9","traceId":"0000000000000000af07978f98cb260f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:17:20.68Z","sequence":24549,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191193]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f66d4fb176a6ad2c","parentId":"f3c3b4a3a6274da4","traceId":"0000000000000000bb5c6c8d78bab2c8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:17:20.698Z","sequence":24550,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191193]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f66d4fb176a6ad2c","parentId":"f3c3b4a3a6274da4","traceId":"0000000000000000bb5c6c8d78bab2c8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:17:21.215Z","sequence":24551,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: A89CAB7F44BA]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"30c71c506e95351d","parentId":"b05d09c76751b85a","traceId":"0000000000000000646d48bea4302c09","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:17:21.236Z","sequence":24552,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: A89CAB7F44BA, resource-version: cd4c82d4-db8c-4075-88cd-ca9149e259cb]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"30c71c506e95351d","parentId":"b05d09c76751b85a","traceId":"0000000000000000646d48bea4302c09","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:17:21.245Z","sequence":24553,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: A89CAB7F44BA, resource-version: f5a5ab62-e472-407f-a282-aac422a6c5b9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"30c71c506e95351d","parentId":"b05d09c76751b85a","traceId":"0000000000000000646d48bea4302c09","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:17:21.249Z","sequence":24554,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: A89CAB7F44BA]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6ac8b642f0543c98","parentId":"02e79ce36030b724","traceId":"0000000000000000646d48bea4302c09","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:17:21.418Z","sequence":24555,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: A89CAB7F44BA]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6ac8b642f0543c98","parentId":"02e79ce36030b724","traceId":"0000000000000000646d48bea4302c09","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:17:22.107Z","sequence":24556,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF926488292BD30]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"00d01c7045bd6719","parentId":"d59276408e69d437","traceId":"000000000000000007e334b8b01328fe","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:17:22.123Z","sequence":24557,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF926488292BD30, resource-version: 8d371260-9f57-4261-aac0-19db12be9ced]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"00d01c7045bd6719","parentId":"d59276408e69d437","traceId":"000000000000000007e334b8b01328fe","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:17:22.132Z","sequence":24558,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF926488292BD30, resource-version: 10981b92-4e99-489d-82e7-d77fe05a798e]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"00d01c7045bd6719","parentId":"d59276408e69d437","traceId":"000000000000000007e334b8b01328fe","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:17:22.629Z","sequence":24559,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:17:22.629Z","sequence":24560,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000787] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:17:22.635Z","sequence":24561,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:17:22.636Z","sequence":24562,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:17:22.642Z","sequence":24563,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c69c4cfd-f1d0-4419-b45e-aeecc774ef6b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:17:23.196Z","sequence":24564,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:17:23.197Z","sequence":24565,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-A89CAB7F44BA]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:17:23.208Z","sequence":24566,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-d0710ccc-b717-4207-a214-251b489a6f34, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:17:23.33Z","sequence":24567,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:17:23.331Z","sequence":24568,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: A89CAB7F44BA]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:17:23.337Z","sequence":24569,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c0a69ad6-76c3-4493-8ea9-3b6f5c222825, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:17:23.341Z","sequence":24570,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:17:23.341Z","sequence":24571,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF926488292BD30] for gateway [A89CAB7F44BA]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:17:23.347Z","sequence":24572,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:17:23.347Z","sequence":24573,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:17:23.524Z","sequence":24574,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f59e5cbc-0a4e-4eed-9051-e82c2b83675e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:17:33.888Z","sequence":24575,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oiltanking:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:17:33.888Z","sequence":24576,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oiltanking, device-id: 0008004BB60F]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:17:33.894Z","sequence":24577,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-95131b91-0d7c-42f6-af07-565c74cedcd1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:17:33.897Z","sequence":24578,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:17:33.898Z","sequence":24579,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oiltanking]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:17:33.901Z","sequence":24580,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-722ecd0e-ad19-4a09-928a-352056a5a7ac, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:17:35.552Z","sequence":24581,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF926488292BD30]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"54950cbcc8392a0d","parentId":"de7d384019cc35cf","traceId":"0000000000000000bf2efcb8fa5d0705","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:17:35.577Z","sequence":24582,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF926488292BD30]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"54950cbcc8392a0d","parentId":"de7d384019cc35cf","traceId":"0000000000000000bf2efcb8fa5d0705","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:17:35.878Z","sequence":24583,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: A89CAB7F44BA]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8db4a21cbea33a20","parentId":"d11fbecb6d546ce7","traceId":"0000000000000000cb3bd012134bcefe","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:17:35.894Z","sequence":24584,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: A89CAB7F44BA]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8db4a21cbea33a20","parentId":"d11fbecb6d546ce7","traceId":"0000000000000000cb3bd012134bcefe","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:17:40.224Z","sequence":24585,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/terega:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:17:40.224Z","sequence":24586,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: terega, device-id: 70B3D57BB1000E06] for gateway [gateway_terega_network_27]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:17:40.229Z","sequence":24587,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_terega\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:17:40.229Z","sequence":24588,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_terega\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:17:40.232Z","sequence":24589,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e3c0dd2f-6015-4bf6-bea8-8ddf10c81f45, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:17:42.23Z","sequence":24590,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:17:42.23Z","sequence":24591,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001B17] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:17:42.235Z","sequence":24592,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:17:42.235Z","sequence":24593,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:17:42.242Z","sequence":24594,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-180bbe94-0f37-4530-8b75-a425447a03d8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:17:59.167Z","sequence":24595,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:17:59.167Z","sequence":24596,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B66] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:17:59.173Z","sequence":24597,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:17:59.173Z","sequence":24598,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:17:59.18Z","sequence":24599,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ba5f87cb-baba-4471-bde7-a7e1b5e66172, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:18:01.535Z","sequence":24600,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:18:01.536Z","sequence":24601,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A85] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:18:01.545Z","sequence":24602,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:18:01.545Z","sequence":24603,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:18:01.552Z","sequence":24604,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2ac44fa3-49c6-44d1-a0d7-ea2846ea6f8e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:18:02.228Z","sequence":24605,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:18:02.228Z","sequence":24606,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B70] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:18:02.233Z","sequence":24607,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:18:02.233Z","sequence":24608,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: shell]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:18:02.24Z","sequence":24609,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-5f0f56db-d6c3-478a-99c9-13b645235de6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:18:02.24Z","sequence":24610,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:18:02.24Z","sequence":24611,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:18:02.253Z","sequence":24612,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-af102eee-22c1-4da2-b0c2-e7ecbb64339f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:18:12.395Z","sequence":24613,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/aloxy:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:18:12.395Z","sequence":24614,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: aloxy, device-id: 0008004A8F68]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:18:12.404Z","sequence":24615,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9ae46509-22ad-490f-aa7b-e102fcba1816, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:18:12.407Z","sequence":24616,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:18:12.407Z","sequence":24617,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: aloxy]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:18:12.411Z","sequence":24618,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-4cde13ca-e942-4253-a8d4-8a5212c67dd3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:18:16.483Z","sequence":24619,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/shell:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:18:16.483Z","sequence":24620,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: shell, type: hashed-password, auth-id: auth-gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:18:16.503Z","sequence":24621,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-15b53dc6-f5d7-4c8c-ae5e-5c6df7de4c1f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:18:21.765Z","sequence":24622,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:18:21.765Z","sequence":24623,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: flint]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:18:21.771Z","sequence":24624,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-9d2a88d7-bbcb-47cf-b8f9-6052a0ed0839, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:18:21.773Z","sequence":24625,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/flint:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:18:21.773Z","sequence":24626,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: flint, type: hashed-password, auth-id: auth-flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:18:21.786Z","sequence":24627,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-6ba54c2c-ece8-4068-9983-50b19fcd38fe, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:18:21.903Z","sequence":24628,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:18:21.904Z","sequence":24629,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10009DA] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:18:21.904Z","sequence":24630,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:18:21.904Z","sequence":24631,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:18:21.91Z","sequence":24632,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-69cd4df1-0caa-4275-9964-aa1c66729d9d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:18:21.91Z","sequence":24633,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:18:21.91Z","sequence":24634,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:18:21.915Z","sequence":24635,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3735b3fe-d9df-4399-9c79-a3037307f021, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:18:26.474Z","sequence":24636,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:18:26.474Z","sequence":24637,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BB613]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:18:26.481Z","sequence":24638,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-011de7c8-8a32-46bd-8b69-7c57b0a2b2e2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:18:26.484Z","sequence":24639,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:18:26.484Z","sequence":24640,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: lanxess]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:18:26.487Z","sequence":24641,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-1a20c396-c564-4684-822f-c902a1620d12, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:18:29.607Z","sequence":24642,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/terega:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:18:29.607Z","sequence":24643,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: terega, device-id: 70B3D57BB1000E12] for gateway [gateway_terega_network_27]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:18:29.612Z","sequence":24644,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_terega\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:18:29.612Z","sequence":24645,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_terega\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:18:29.615Z","sequence":24646,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8c3d6b6d-24b4-4825-b8b0-ef66796ed6ae, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:18:31.582Z","sequence":24647,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:18:31.582Z","sequence":24648,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B7F] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:18:31.588Z","sequence":24649,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:18:31.588Z","sequence":24650,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:18:31.595Z","sequence":24651,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-77b205aa-4037-4d3b-bd47-9bb29617fdf0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:18:38.692Z","sequence":24652,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:18:38.692Z","sequence":24653,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: dow]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:18:38.695Z","sequence":24654,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-1b29fd12-b7df-4c18-91b7-d8257d1a238a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:18:38.697Z","sequence":24655,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/dow:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:18:38.697Z","sequence":24656,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: dow, type: hashed-password, auth-id: auth-gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:18:38.709Z","sequence":24657,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-691c7a94-dd81-49a8-a37e-8261fa874986, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:18:38.998Z","sequence":24658,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:18:38.999Z","sequence":24659,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 70B3D57BB1001247] for gateway [gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:18:39Z","sequence":24660,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:18:39Z","sequence":24661,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:18:39.005Z","sequence":24662,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b425ee44-6b10-41e1-b048-d9dea87cf9ae, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:18:39.006Z","sequence":24663,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:18:39.006Z","sequence":24664,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:18:39.012Z","sequence":24665,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3e7c1c64-be6e-4c62-bf96-a412a35f1d8a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:18:45.465Z","sequence":24666,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:18:45.466Z","sequence":24667,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 70B3D57BB1000196] for gateway [0008004BBD1B]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:18:45.478Z","sequence":24668,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:0.4.1\"\n },\n \"viaGroups\" : [ \"gateways_lanxess\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:18:45.478Z","sequence":24669,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_lanxess\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:18:45.481Z","sequence":24670,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0651386f-e06f-4d74-99e6-f2889f526d99, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:18:58.384Z","sequence":24671,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/acta:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:18:58.385Z","sequence":24672,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: acta, device-id: 0008004AAAA3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:18:58.39Z","sequence":24673,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1c80dc0d-2b2c-4ea5-805a-1f3548b7d76e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:18:58.809Z","sequence":24674,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:18:58.809Z","sequence":24675,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000856] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:18:58.815Z","sequence":24676,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:18:58.816Z","sequence":24677,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:18:58.821Z","sequence":24678,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4316c4c1-4cc8-4cc7-8508-179a1d9340d9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:18:59.359Z","sequence":24679,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:18:59.359Z","sequence":24680,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: chevronsgp]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:18:59.365Z","sequence":24681,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-7cc7d257-b928-4edf-a89b-7128bbd1ac41, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:18:59.368Z","sequence":24682,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Source{address='credentials/chevronsgp/76fad359-a9f4-43a8-b8df-64fba2d82f08', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:18:59.369Z","sequence":24683,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-12]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:18:59.369Z","sequence":24684,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@7111cff6] for replies to [credentials/chevronsgp/76fad359-a9f4-43a8-b8df-64fba2d82f08]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:18:59.372Z","sequence":24685,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Target{address='credentials/chevronsgp', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:18:59.373Z","sequence":24686,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-13]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:18:59.373Z","sequence":24687,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:18:59.376Z","sequence":24688,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/chevronsgp:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:18:59.377Z","sequence":24689,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: chevronsgp, type: hashed-password, auth-id: auth-chevronsgp_42]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:18:59.392Z","sequence":24690,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-ab4c40d8-becd-4107-b9d7-f55b67092923, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:18:59.516Z","sequence":24691,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] wants to open a link [address: Source{address='registration/chevronsgp/feb2e14a-86ff-40fe-969e-9ec71be1b054', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:18:59.517Z","sequence":24692,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-18]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:18:59.517Z","sequence":24693,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@765831ec] for replies to [registration/chevronsgp/feb2e14a-86ff-40fe-969e-9ec71be1b054]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:18:59.52Z","sequence":24694,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] wants to open a link [address: Target{address='registration/chevronsgp', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:18:59.521Z","sequence":24695,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-19]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:18:59.521Z","sequence":24696,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:18:59.524Z","sequence":24697,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/chevronsgp:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:18:59.525Z","sequence":24698,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: chevronsgp, device-id: 70B3D57BB1000851] for gateway [gateway_chevronsgp_network_42]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:18:59.526Z","sequence":24699,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/chevronsgp:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:18:59.526Z","sequence":24700,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: chevronsgp, device-id: gateway_chevronsgp_network_42]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:18:59.533Z","sequence":24701,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ea23a42d-de24-412b-970c-aa137774eff1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:18:59.534Z","sequence":24702,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_chevronsgp\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:18:59.534Z","sequence":24703,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_chevronsgp\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:18:59.54Z","sequence":24704,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6036d26e-e5ed-43ac-9ce8-8d057cc992a9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:00.748Z","sequence":24705,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:00.748Z","sequence":24706,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001B05] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:00.757Z","sequence":24707,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:00.757Z","sequence":24708,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:00.767Z","sequence":24709,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0474e124-e910-4d12-a1f4-fe7469d5e070, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:02.756Z","sequence":24710,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:02.756Z","sequence":24711,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:02.766Z","sequence":24712,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-64f8e97b-f798-4f59-a671-46d734ea7dac, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:02.77Z","sequence":24713,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:02.77Z","sequence":24714,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000209] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:02.777Z","sequence":24715,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:02.777Z","sequence":24716,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:02.782Z","sequence":24717,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-bf4f9999-def0-4f0d-91af-55beb98f86fc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:03.098Z","sequence":24718,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:03.098Z","sequence":24719,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000209] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:03.107Z","sequence":24720,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:03.107Z","sequence":24721,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:03.111Z","sequence":24722,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-302bff5a-bc69-4512-bc38-c23462b26ade, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:03.949Z","sequence":24723,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:03.949Z","sequence":24724,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BB7] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:03.964Z","sequence":24725,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:03.964Z","sequence":24726,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:03.972Z","sequence":24727,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2441cf77-e67d-44a5-87d9-15ba976617ed, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:04.596Z","sequence":24728,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191195]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"64cc94ec82106e71","parentId":"3fae77e9a1c7902d","traceId":"0000000000000000a49e272aa24939d5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:04.644Z","sequence":24729,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191195, resource-version: 6e7cd461-3f76-400f-a604-a004233d709d]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"64cc94ec82106e71","parentId":"3fae77e9a1c7902d","traceId":"0000000000000000a49e272aa24939d5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:04.656Z","sequence":24730,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191195, resource-version: f08a83ea-4298-451d-bf65-541b16218879]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"64cc94ec82106e71","parentId":"3fae77e9a1c7902d","traceId":"0000000000000000a49e272aa24939d5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:04.661Z","sequence":24731,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191195]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"689306af97eea428","parentId":"35dca86286dc0c25","traceId":"0000000000000000a49e272aa24939d5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:04.872Z","sequence":24732,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191195]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"689306af97eea428","parentId":"35dca86286dc0c25","traceId":"0000000000000000a49e272aa24939d5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:05.713Z","sequence":24733,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF28D097CDD5E92]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a0b9b83aadfcf477","parentId":"8632246bc78be920","traceId":"0000000000000000dc2ba1792172796a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:05.732Z","sequence":24734,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF28D097CDD5E92, resource-version: 3ac19b83-6912-4c77-b983-39559749d609]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a0b9b83aadfcf477","parentId":"8632246bc78be920","traceId":"0000000000000000dc2ba1792172796a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:05.739Z","sequence":24735,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF28D097CDD5E92, resource-version: e4b39e7d-1a75-42d3-a496-790544bbd081]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a0b9b83aadfcf477","parentId":"8632246bc78be920","traceId":"0000000000000000dc2ba1792172796a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:06.81Z","sequence":24736,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:06.811Z","sequence":24737,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:06.817Z","sequence":24738,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-626ee3eb-4f41-4a9c-b956-4033891f3554, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:06.821Z","sequence":24739,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:06.821Z","sequence":24740,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191195]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:06.831Z","sequence":24741,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-1ccd1907-c61d-4eaf-a58e-36b08ca546ca, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:06.965Z","sequence":24742,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:06.965Z","sequence":24743,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF28D097CDD5E92] for gateway [gateway_integrationtest_network_191195]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:06.966Z","sequence":24744,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:06.966Z","sequence":24745,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191195]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:06.989Z","sequence":24746,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-32fceb14-daf6-4405-a0a8-6bbccbdf1adb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:06.989Z","sequence":24747,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:06.989Z","sequence":24748,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:07.424Z","sequence":24749,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2423579b-1786-4d61-9abd-c5be96051032, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:10.364Z","sequence":24750,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:10.364Z","sequence":24751,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB100083B] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:10.37Z","sequence":24752,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:10.37Z","sequence":24753,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:10.374Z","sequence":24754,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0d2f52ab-643c-49e1-ab3a-b487ba1d2e2c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:10.544Z","sequence":24755,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:10.544Z","sequence":24756,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001B0B] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:10.551Z","sequence":24757,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:10.551Z","sequence":24758,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:10.559Z","sequence":24759,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7296f4cf-cc83-4b45-8694-906b32cfb5af, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:10.659Z","sequence":24760,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:10.659Z","sequence":24761,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:10.665Z","sequence":24762,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-887f33db-2fb6-4c97-b934-e2b2b25c68d7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:13.999Z","sequence":24763,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:13.999Z","sequence":24764,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001B13] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:14.009Z","sequence":24765,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:14.009Z","sequence":24766,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:14.015Z","sequence":24767,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4eaefb16-0ca9-47fa-9959-974666e30c14, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:15.343Z","sequence":24768,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:15.343Z","sequence":24769,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BC1] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:15.348Z","sequence":24770,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:15.349Z","sequence":24771,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:15.355Z","sequence":24772,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-28b031b9-f8d2-4b78-8ffd-4b2679ca4ca3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:17.779Z","sequence":24773,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF28D097CDD5E92]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e8c296c634352bc9","parentId":"7c28fac71253b557","traceId":"00000000000000008451dbf6ad1c52b6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:17.796Z","sequence":24774,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF28D097CDD5E92]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e8c296c634352bc9","parentId":"7c28fac71253b557","traceId":"00000000000000008451dbf6ad1c52b6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:18.067Z","sequence":24775,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191195]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f5cfafebfbc92388","parentId":"5d8b47723396f306","traceId":"00000000000000002bdb6675d0fe103f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:18.085Z","sequence":24776,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191195]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f5cfafebfbc92388","parentId":"5d8b47723396f306","traceId":"00000000000000002bdb6675d0fe103f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:18.663Z","sequence":24777,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: C80D92FF4C54]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"24091a8e8041fcb9","parentId":"e9f694191fdce0c0","traceId":"000000000000000015ad68955c7c9223","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:18.687Z","sequence":24778,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: C80D92FF4C54, resource-version: 04aaef63-4a59-4058-9a32-4fbec9b942e9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"24091a8e8041fcb9","parentId":"e9f694191fdce0c0","traceId":"000000000000000015ad68955c7c9223","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:18.698Z","sequence":24779,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: C80D92FF4C54, resource-version: 73ce40fa-61ec-434d-8c96-e7d43c23f2d6]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"24091a8e8041fcb9","parentId":"e9f694191fdce0c0","traceId":"000000000000000015ad68955c7c9223","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:18.703Z","sequence":24780,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: C80D92FF4C54]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d29955fc93f3e032","parentId":"8170a416259116ce","traceId":"000000000000000015ad68955c7c9223","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:18.863Z","sequence":24781,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: C80D92FF4C54]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d29955fc93f3e032","parentId":"8170a416259116ce","traceId":"000000000000000015ad68955c7c9223","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:19.52Z","sequence":24782,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFE55A0B4753073]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"03e329f63f0f6233","parentId":"2d23e525bbebd6df","traceId":"00000000000000008b982a576a338c86","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:19.538Z","sequence":24783,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFE55A0B4753073, resource-version: 00d739bd-c0c4-4e14-83a7-7c99f35d671a]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"03e329f63f0f6233","parentId":"2d23e525bbebd6df","traceId":"00000000000000008b982a576a338c86","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:19.545Z","sequence":24784,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFE55A0B4753073, resource-version: bb517522-b70b-4e2b-ac3d-a3361e0ca508]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"03e329f63f0f6233","parentId":"2d23e525bbebd6df","traceId":"00000000000000008b982a576a338c86","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:20.345Z","sequence":24785,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/repsol:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:20.345Z","sequence":24786,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: repsol, device-id: 0008004A37FF]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:20.351Z","sequence":24787,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c08e2d7b-daed-4510-b1b4-2822dd6b4c70, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:20.354Z","sequence":24788,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:20.354Z","sequence":24789,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: repsol]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:20.357Z","sequence":24790,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-b6b60c2c-79df-496d-bfc5-70c45a446efc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:20.598Z","sequence":24791,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:20.598Z","sequence":24792,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:20.601Z","sequence":24793,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-581598d7-761d-4bd9-8ed6-7887eafbba0c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:20.604Z","sequence":24794,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:20.604Z","sequence":24795,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-C80D92FF4C54]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:20.614Z","sequence":24796,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-b2cfbc9f-2f7e-4037-ad19-a6396cf33a97, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:20.735Z","sequence":24797,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:20.735Z","sequence":24798,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: C80D92FF4C54]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:20.744Z","sequence":24799,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d1fa2e1f-71d9-4f19-84dc-6da9e35305ea, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:20.748Z","sequence":24800,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:20.749Z","sequence":24801,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFE55A0B4753073] for gateway [C80D92FF4C54]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:20.756Z","sequence":24802,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:20.756Z","sequence":24803,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:21.101Z","sequence":24804,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-dbf768ea-e64e-44c8-87f1-835c1879ecbb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:28.243Z","sequence":24805,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:28.244Z","sequence":24806,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B4F] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:28.25Z","sequence":24807,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:28.25Z","sequence":24808,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:28.257Z","sequence":24809,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0ee4bcf7-300a-4363-9fcb-7f14838d23ef, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:33.613Z","sequence":24810,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFE55A0B4753073]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5fa9f42fa14b806d","parentId":"55b1efce85c2651d","traceId":"00000000000000001152963ab263caf3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:33.632Z","sequence":24811,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFE55A0B4753073]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5fa9f42fa14b806d","parentId":"55b1efce85c2651d","traceId":"00000000000000001152963ab263caf3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:33.934Z","sequence":24812,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: C80D92FF4C54]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ac99344bd9236cc3","parentId":"6d65a80f6c55e43c","traceId":"0000000000000000d21f8700744894df","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:33.951Z","sequence":24813,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: C80D92FF4C54]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ac99344bd9236cc3","parentId":"6d65a80f6c55e43c","traceId":"0000000000000000d21f8700744894df","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:42.936Z","sequence":24814,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:42.936Z","sequence":24815,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AEF] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:42.941Z","sequence":24816,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:42.941Z","sequence":24817,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:42.948Z","sequence":24818,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-064738ce-c7b8-4f5d-933c-a809b4e4abaa, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:43.365Z","sequence":24819,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:43.365Z","sequence":24820,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 0008004B51D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:43.39Z","sequence":24821,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-bc7ad5e2-dd20-4b97-9b6b-f16f656cd2db, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:43.401Z","sequence":24822,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:43.402Z","sequence":24823,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: dow]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:43.409Z","sequence":24824,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-c800dca4-e7fe-4c5c-9ee5-b8ed044f4ecd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:43.448Z","sequence":24825,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:43.449Z","sequence":24826,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10009C7] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:43.468Z","sequence":24827,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:43.468Z","sequence":24828,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:43.474Z","sequence":24829,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-52054a8e-27de-4f0c-9084-de585933a6f0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:43.797Z","sequence":24830,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:43.797Z","sequence":24831,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000524] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:43.802Z","sequence":24832,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:43.802Z","sequence":24833,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:43.809Z","sequence":24834,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2a2124ce-da94-44df-9431-6ae7b8be14cf, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:45.969Z","sequence":24835,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:45.969Z","sequence":24836,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C1F] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:45.982Z","sequence":24837,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:45.982Z","sequence":24838,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:45.988Z","sequence":24839,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c8ba5985-7ea9-42fb-96b7-c516c6931647, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:47.421Z","sequence":24840,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:47.421Z","sequence":24841,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000508] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:47.426Z","sequence":24842,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:47.426Z","sequence":24843,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:47.436Z","sequence":24844,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-bc207ab5-239d-4a64-ab49-27215612b183, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:54.353Z","sequence":24845,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:54.353Z","sequence":24846,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001B06] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:54.36Z","sequence":24847,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:54.36Z","sequence":24848,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:54.373Z","sequence":24849,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-64d7e209-24b1-4f64-a65b-e4ae5d65f5bb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:56.838Z","sequence":24850,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:56.839Z","sequence":24851,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001B04] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:56.849Z","sequence":24852,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:56.851Z","sequence":24853,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:19:56.858Z","sequence":24854,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-30ee58ed-b4db-4821-958a-eebc7e9716f4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:20:02.421Z","sequence":24855,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:20:02.421Z","sequence":24856,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB100084F] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:20:02.427Z","sequence":24857,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:20:02.428Z","sequence":24858,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:20:02.432Z","sequence":24859,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-91db5ead-bb19-4cbb-88bd-bad035ca0915, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:20:04.976Z","sequence":24860,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:20:04.977Z","sequence":24861,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000F76] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:20:04.983Z","sequence":24862,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:20:04.983Z","sequence":24863,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:20:04.989Z","sequence":24864,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-63e8a0ce-4240-4e6b-a86e-3d175695973c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:20:05.727Z","sequence":24865,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:20:05.727Z","sequence":24866,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100052A] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:20:05.737Z","sequence":24867,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:20:05.737Z","sequence":24868,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:20:05.744Z","sequence":24869,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3a8829ae-1c3c-479e-82c5-02d6bbe5837b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:20:08.568Z","sequence":24870,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:20:08.568Z","sequence":24871,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AFE] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:20:08.574Z","sequence":24872,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:20:08.574Z","sequence":24873,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:20:08.581Z","sequence":24874,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a8858c38-4eb7-4f46-8908-04fd7f8e09fa, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:20:17.938Z","sequence":24875,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/conditionall:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:20:17.939Z","sequence":24876,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: conditionall, device-id: 0008004B512D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:20:17.945Z","sequence":24877,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-47419ad7-9a49-4c4c-85a7-56026b94ed62, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:20:17.95Z","sequence":24878,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:20:17.951Z","sequence":24879,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: conditionall]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:20:17.953Z","sequence":24880,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-9a2d736e-7d85-486a-82b6-eb4d9f31af20, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:20:20.595Z","sequence":24881,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:20:20.595Z","sequence":24882,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A59] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:20:20.604Z","sequence":24883,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:20:20.605Z","sequence":24884,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:20:20.612Z","sequence":24885,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-dff61430-5e0b-461f-9985-36fe8de7adab, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:20:21.392Z","sequence":24886,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:20:21.392Z","sequence":24887,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001B19] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:20:21.399Z","sequence":24888,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:20:21.399Z","sequence":24889,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:20:21.405Z","sequence":24890,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-dff25b00-6b45-45b7-8edd-75c10d37cf60, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:20:23.122Z","sequence":24891,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:20:23.122Z","sequence":24892,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B7C] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:20:23.128Z","sequence":24893,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:20:23.128Z","sequence":24894,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:20:23.134Z","sequence":24895,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6bdcf9d2-bc17-4d9b-adfe-472cc4f51ba7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:20:27.018Z","sequence":24896,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:20:27.019Z","sequence":24897,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oci]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:20:27.022Z","sequence":24898,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-4d35eb2f-ffbe-4cea-8d61-d12eba13b305, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:20:30.711Z","sequence":24899,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:20:30.711Z","sequence":24900,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100192B] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:20:30.717Z","sequence":24901,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:20:30.717Z","sequence":24902,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:20:30.723Z","sequence":24903,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-623325bd-9742-4473-96b1-b310ca1bc87d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:20:32.211Z","sequence":24904,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:20:32.211Z","sequence":24905,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001B03] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:20:32.225Z","sequence":24906,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:20:32.225Z","sequence":24907,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:20:32.23Z","sequence":24908,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1a3b9af4-7e1c-4842-a678-9291d3346d2c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:20:36.538Z","sequence":24909,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:20:36.538Z","sequence":24910,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: acta]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:20:36.541Z","sequence":24911,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-9bdf362e-52d1-4c94-8ec3-6bd3362588e9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:20:36.545Z","sequence":24912,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/acta:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:20:36.545Z","sequence":24913,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: acta, device-id: 39383837002B0047] for gateway [0008004AAAA3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:20:36.55Z","sequence":24914,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.3.0\"\n },\n \"viaGroups\" : [ \"gateways_acta\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:20:36.55Z","sequence":24915,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_acta\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:20:36.553Z","sequence":24916,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-669dce74-9805-47f4-a0aa-946c50686fd3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:20:44.41Z","sequence":24917,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:20:44.411Z","sequence":24918,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: ineos]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:20:44.414Z","sequence":24919,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-51ab4d0e-c97c-46ac-9292-42ab74bfa962, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:20:44.418Z","sequence":24920,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:20:44.418Z","sequence":24921,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB1000B1B] for gateway [0008004B5135]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:20:44.426Z","sequence":24922,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:20:44.426Z","sequence":24923,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:20:44.429Z","sequence":24924,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c9eb522e-8b59-4089-ab5e-b239c0c558e2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:20:44.645Z","sequence":24925,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:20:44.645Z","sequence":24926,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001946] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:20:44.659Z","sequence":24927,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:20:44.659Z","sequence":24928,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:20:44.673Z","sequence":24929,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-450f184d-59c4-42c9-8b44-da7c87d63ed2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:20:50.244Z","sequence":24930,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:20:50.245Z","sequence":24931,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006C5] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:20:50.256Z","sequence":24932,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:20:50.256Z","sequence":24933,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:20:50.271Z","sequence":24934,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-fc3e7d94-f72f-4f7b-bbba-89d35133a9de, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:20:54.82Z","sequence":24935,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:20:54.82Z","sequence":24936,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BB84C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:20:54.831Z","sequence":24937,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-09a7492b-feaa-41c7-8569-89b44974864c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:20:56.067Z","sequence":24938,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:20:56.067Z","sequence":24939,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10007F2] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:20:56.074Z","sequence":24940,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:20:56.075Z","sequence":24941,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:20:56.104Z","sequence":24942,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-168e1404-e78b-4930-b149-66e875ca5d66, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:20:56.343Z","sequence":24943,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:20:56.344Z","sequence":24944,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 0008004B5135]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:20:56.354Z","sequence":24945,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b10df917-52cf-4d4e-84f6-e133df0d1df3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:20:59.506Z","sequence":24946,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:20:59.506Z","sequence":24947,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001D4] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:20:59.52Z","sequence":24948,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:20:59.52Z","sequence":24949,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001D4] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:20:59.549Z","sequence":24950,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:20:59.549Z","sequence":24951,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:20:59.549Z","sequence":24952,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:20:59.55Z","sequence":24953,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:20:59.552Z","sequence":24954,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b9bc335c-8416-4ca3-ad84-245e504cf7f2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:20:59.554Z","sequence":24955,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-488f947e-9bdb-4449-b05c-a8d67b840617, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:00.279Z","sequence":24956,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:00.279Z","sequence":24957,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BBD1B]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:00.312Z","sequence":24958,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1a2829b4-0e14-4501-97d1-554ae52d5d06, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:00.489Z","sequence":24959,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:00.489Z","sequence":24960,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10002AC] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:00.519Z","sequence":24961,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:00.519Z","sequence":24962,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001950] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:00.525Z","sequence":24963,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:00.525Z","sequence":24964,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:00.541Z","sequence":24965,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:00.541Z","sequence":24966,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:00.541Z","sequence":24967,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-146c451f-b65d-488b-9a29-82a862ea457b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:00.57Z","sequence":24968,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2bfe8bcc-09fc-4709-b43c-0643357a3a59, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:01.665Z","sequence":24969,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/conditionall:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:01.665Z","sequence":24970,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: conditionall, device-id: 70B3D57BB10001F0] for gateway [0008004B512D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:01.675Z","sequence":24971,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_conditionall\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:01.676Z","sequence":24972,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_conditionall\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:01.678Z","sequence":24973,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f793871e-5343-471d-9798-c03a771d62d7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:04.238Z","sequence":24974,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191197]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a7a69445622d4d36","parentId":"2e19f0769d10273d","traceId":"000000000000000036756f30e73019d9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:04.303Z","sequence":24975,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191197, resource-version: d5c3437c-cc94-4a7e-bc3b-01a1d043a1c0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a7a69445622d4d36","parentId":"2e19f0769d10273d","traceId":"000000000000000036756f30e73019d9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:04.349Z","sequence":24976,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191197, resource-version: a1eb9fb5-8bb4-4845-9fc3-473c276dd2b5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a7a69445622d4d36","parentId":"2e19f0769d10273d","traceId":"000000000000000036756f30e73019d9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:04.352Z","sequence":24977,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191197]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"351bfef6dc30ecaf","parentId":"a691c6d0928d749d","traceId":"000000000000000036756f30e73019d9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:04.512Z","sequence":24978,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191197]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"351bfef6dc30ecaf","parentId":"a691c6d0928d749d","traceId":"000000000000000036756f30e73019d9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:05.282Z","sequence":24979,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF5F2402FE18D21]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"57fa6c26229045ce","parentId":"a633d401bd58e4b8","traceId":"00000000000000004ec9d37db89f8c58","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:05.301Z","sequence":24980,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF5F2402FE18D21, resource-version: a6b07c87-0575-4c81-8d33-bd60e20ac1c3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"57fa6c26229045ce","parentId":"a633d401bd58e4b8","traceId":"00000000000000004ec9d37db89f8c58","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:05.315Z","sequence":24981,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF5F2402FE18D21, resource-version: 8c730fc6-1d7e-448d-b41d-5136fef0fad1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"57fa6c26229045ce","parentId":"a633d401bd58e4b8","traceId":"00000000000000004ec9d37db89f8c58","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:06.461Z","sequence":24982,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:06.461Z","sequence":24983,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191197]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:06.471Z","sequence":24984,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-cf78e416-8822-48dc-a529-81cf4d4a62e9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:06.592Z","sequence":24985,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:06.592Z","sequence":24986,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF5F2402FE18D21] for gateway [gateway_integrationtest_network_191197]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:06.593Z","sequence":24987,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:06.593Z","sequence":24988,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191197]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:06.598Z","sequence":24989,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:06.598Z","sequence":24990,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:06.6Z","sequence":24991,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-03c7c1ea-b1ed-4874-97b0-ac5eaf5b91b4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:06.9Z","sequence":24992,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ee541deb-f4d0-45ed-8214-5fb28d7d3895, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:07.305Z","sequence":24993,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/arkema:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:07.305Z","sequence":24994,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: arkema, device-id: 0008004AE119]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:07.327Z","sequence":24995,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e40c24e9-329d-4a02-a142-5e08e9074ade, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:07.333Z","sequence":24996,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:07.333Z","sequence":24997,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: arkema]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:07.337Z","sequence":24998,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-c8b38b7c-d883-4096-933b-0c36c016f42a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:07.926Z","sequence":24999,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:07.927Z","sequence":25000,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: shell]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:07.931Z","sequence":25001,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-38294c94-eb03-4be4-8eb7-00594c166c3c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:08.054Z","sequence":25002,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:08.054Z","sequence":25003,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000574] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:08.069Z","sequence":25004,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:08.069Z","sequence":25005,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:08.08Z","sequence":25006,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-af5c3efc-0d1a-41e9-95ee-5b6172887d51, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:14.933Z","sequence":25007,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:14.933Z","sequence":25008,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100194C] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:14.956Z","sequence":25009,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:14.956Z","sequence":25010,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:14.977Z","sequence":25011,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e443c919-ef9b-4a48-8a0f-46cfbe844059, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:15.912Z","sequence":25012,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:15.913Z","sequence":25013,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 70B3D57BB100018E] for gateway [0008004BB84C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:15.919Z","sequence":25014,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_lanxess\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:15.919Z","sequence":25015,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_lanxess\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:15.922Z","sequence":25016,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-44198400-75ff-4c19-8117-4225e56b90c8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:17.025Z","sequence":25017,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/shell:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:17.025Z","sequence":25018,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: shell, type: hashed-password, auth-id: auth-gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:17.036Z","sequence":25019,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-82dd3fc5-1e8a-45d5-86b8-1bf1c4582b8b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:17.164Z","sequence":25020,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:17.164Z","sequence":25021,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100140E] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:17.17Z","sequence":25022,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:17.17Z","sequence":25023,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:17.176Z","sequence":25024,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7fff41a2-1549-4b1d-b81b-ff04d35c7002, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:17.371Z","sequence":25025,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:17.371Z","sequence":25026,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oiltanking]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:17.377Z","sequence":25027,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-3805f663-a8b4-42ad-8c03-803f5ae004f5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:17.379Z","sequence":25028,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oiltanking:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:17.379Z","sequence":25029,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oiltanking, device-id: 3536333500420028] for gateway [0008004BB60F]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:17.385Z","sequence":25030,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_oiltanking\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:17.385Z","sequence":25031,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oiltanking\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:17.388Z","sequence":25032,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-54db7d15-ed7d-4459-b197-7db1eaf2c4fd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:18.71Z","sequence":25033,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF5F2402FE18D21]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5720ea0aba2fd951","parentId":"0a5f4e1a6e36f122","traceId":"0000000000000000344614ee22df4fc2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:18.727Z","sequence":25034,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF5F2402FE18D21]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5720ea0aba2fd951","parentId":"0a5f4e1a6e36f122","traceId":"0000000000000000344614ee22df4fc2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:18.872Z","sequence":25035,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191197]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5d8c56814a3829f6","parentId":"ddbbdcff05538b16","traceId":"0000000000000000a709133601ed0e22","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:18.894Z","sequence":25036,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191197]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5d8c56814a3829f6","parentId":"ddbbdcff05538b16","traceId":"0000000000000000a709133601ed0e22","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:19.515Z","sequence":25037,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 6857F53F1479]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d4567a66d87693e9","parentId":"fd7c6186aad544f7","traceId":"000000000000000044701a1e5533eaf5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:19.535Z","sequence":25038,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 6857F53F1479, resource-version: 21fdf1a9-ecf4-4f13-a425-5140fe61a0f2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d4567a66d87693e9","parentId":"fd7c6186aad544f7","traceId":"000000000000000044701a1e5533eaf5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:19.545Z","sequence":25039,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 6857F53F1479, resource-version: 24c9e0d9-490e-444e-b21a-7b9cf110e918]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d4567a66d87693e9","parentId":"fd7c6186aad544f7","traceId":"000000000000000044701a1e5533eaf5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:19.549Z","sequence":25040,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 6857F53F1479]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"eeaf5fb09e1c4aa1","parentId":"bb404f18ce7a2965","traceId":"000000000000000044701a1e5533eaf5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:19.771Z","sequence":25041,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 6857F53F1479]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"eeaf5fb09e1c4aa1","parentId":"bb404f18ce7a2965","traceId":"000000000000000044701a1e5533eaf5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:20.369Z","sequence":25042,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFCEE9966F67115]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"12195138217bc995","parentId":"eb2c08b4ba504381","traceId":"000000000000000052899a409cd4030d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:20.392Z","sequence":25043,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFCEE9966F67115, resource-version: 900cffce-efb2-425f-a57e-127c262311d1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"12195138217bc995","parentId":"eb2c08b4ba504381","traceId":"000000000000000052899a409cd4030d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:20.4Z","sequence":25044,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFCEE9966F67115, resource-version: f14b38f8-27ce-4f72-8dd2-1f06b6ac3587]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"12195138217bc995","parentId":"eb2c08b4ba504381","traceId":"000000000000000052899a409cd4030d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:21.448Z","sequence":25045,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:21.448Z","sequence":25046,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-6857F53F1479]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:21.462Z","sequence":25047,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-1522ff5d-534c-4c83-a84b-b33b8172703d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:21.584Z","sequence":25048,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:21.584Z","sequence":25049,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 6857F53F1479]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:21.59Z","sequence":25050,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-164fa59c-c2af-45dc-bf6c-8d8b658bedb6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:21.594Z","sequence":25051,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:21.594Z","sequence":25052,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCEE9966F67115] for gateway [6857F53F1479]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:21.6Z","sequence":25053,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:21.6Z","sequence":25054,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:21.801Z","sequence":25055,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c4932b84-e476-4eef-876f-299f2d3b0fd2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:22.963Z","sequence":25056,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:22.963Z","sequence":25057,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B2E] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:22.964Z","sequence":25058,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:22.964Z","sequence":25059,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:22.97Z","sequence":25060,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3e5adb4f-56d4-466a-aff4-398ba342c8d3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:22.971Z","sequence":25061,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:22.971Z","sequence":25062,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:22.979Z","sequence":25063,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-10bb05d7-aa06-4fba-a86d-ea3bbc20201c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:27.79Z","sequence":25064,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:27.791Z","sequence":25065,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB1000A74] for gateway [0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:27.796Z","sequence":25066,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:27.796Z","sequence":25067,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:27.799Z","sequence":25068,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a50e6cba-895c-4920-9600-45b0c106de0c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:29.42Z","sequence":25069,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:29.42Z","sequence":25070,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B57] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:29.425Z","sequence":25071,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:29.425Z","sequence":25072,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:29.431Z","sequence":25073,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7a6954de-dac0-4fad-a343-d48b11432c98, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:30.993Z","sequence":25074,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/acta:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:30.994Z","sequence":25075,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: acta, device-id: 35343834003C0033] for gateway [0008004AAAA3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:31.003Z","sequence":25076,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.3.0\"\n },\n \"viaGroups\" : [ \"gateways_acta\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:31.003Z","sequence":25077,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_acta\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:31.006Z","sequence":25078,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9b52dffc-eaf1-4838-b741-099b9f02ef28, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:31.091Z","sequence":25079,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFCEE9966F67115]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8c9e031a46c068ed","parentId":"db1799fe1bedf8b4","traceId":"0000000000000000425eca2e15bec4d2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:31.119Z","sequence":25080,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFCEE9966F67115]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8c9e031a46c068ed","parentId":"db1799fe1bedf8b4","traceId":"0000000000000000425eca2e15bec4d2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:31.428Z","sequence":25081,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 6857F53F1479]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7900884f6ae2d6df","parentId":"569aba639c61e796","traceId":"0000000000000000604b6dcc4ca6a4ee","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:31.446Z","sequence":25082,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 6857F53F1479]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7900884f6ae2d6df","parentId":"569aba639c61e796","traceId":"0000000000000000604b6dcc4ca6a4ee","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:36.778Z","sequence":25083,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:36.778Z","sequence":25084,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10001DE] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:36.783Z","sequence":25085,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:0.4.1\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:36.783Z","sequence":25086,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:36.79Z","sequence":25087,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4350b04a-e303-435b-8e9b-b000fcd71104, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:46.244Z","sequence":25088,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:46.244Z","sequence":25089,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B92] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:46.251Z","sequence":25090,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:46.251Z","sequence":25091,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:46.257Z","sequence":25092,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8c81afb5-1215-4b12-9e26-bcffe6291da1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:49.688Z","sequence":25093,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:49.688Z","sequence":25094,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:49.695Z","sequence":25095,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1fa37f46-02ec-420a-bb26-61117c7c4f10, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:54.019Z","sequence":25096,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:54.019Z","sequence":25097,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BBD1C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:54.024Z","sequence":25098,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-83c9fe65-1e10-46f1-b23d-108dbf17714b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:54.027Z","sequence":25099,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:54.027Z","sequence":25100,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: lanxess]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:21:54.03Z","sequence":25101,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-346be3ff-a0c1-45b7-9b2c-1f74e00e182b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:22:05.913Z","sequence":25102,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:22:05.913Z","sequence":25103,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006A2] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:22:05.92Z","sequence":25104,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:22:05.92Z","sequence":25105,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:22:05.927Z","sequence":25106,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-83d7d6ef-b7fc-4a20-924c-393611122d8c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:22:20.532Z","sequence":25107,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:22:20.532Z","sequence":25108,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 0008004C80F4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:22:20.538Z","sequence":25109,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e4d9ef8d-3cd4-41cc-9504-8bdff239e368, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:22:21.68Z","sequence":25110,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:22:21.68Z","sequence":25111,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001FC] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:22:21.681Z","sequence":25112,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:22:21.681Z","sequence":25113,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001FC] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:22:21.686Z","sequence":25114,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:22:21.686Z","sequence":25115,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:22:21.686Z","sequence":25116,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:22:21.686Z","sequence":25117,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:22:21.689Z","sequence":25118,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-32e05ee5-366b-42a9-9593-68f24d928589, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:22:21.69Z","sequence":25119,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-919ae272-ca4d-4c4b-ac21-188010d84bcd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:22:22.277Z","sequence":25120,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:22:22.277Z","sequence":25121,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001943] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:22:22.284Z","sequence":25122,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:22:22.284Z","sequence":25123,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:22:22.29Z","sequence":25124,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5deeab41-1e17-4833-9206-858a5d39ca7e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:22:27.51Z","sequence":25125,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:22:27.51Z","sequence":25126,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AF8] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:22:27.525Z","sequence":25127,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:22:27.525Z","sequence":25128,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:22:27.548Z","sequence":25129,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-07b08172-4eed-472e-9065-3060c2a6aa11, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:22:31.257Z","sequence":25130,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:22:31.257Z","sequence":25131,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006B9] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:22:31.262Z","sequence":25132,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:22:31.263Z","sequence":25133,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:22:31.269Z","sequence":25134,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e088f767-9bcf-49dc-8be5-f879e690478b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:22:34.372Z","sequence":25135,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:22:34.372Z","sequence":25136,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B7A] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:22:34.378Z","sequence":25137,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:22:34.378Z","sequence":25138,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:22:34.384Z","sequence":25139,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7dbbdab1-03da-4abb-88d1-7f84c20c3191, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:22:35.671Z","sequence":25140,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oiltanking:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:22:35.671Z","sequence":25141,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oiltanking, device-id: 0008004BB60F]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:22:35.676Z","sequence":25142,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-fb87e6b2-1f0e-4bbc-b9d4-edc3428ece42, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:22:39.465Z","sequence":25143,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:22:39.465Z","sequence":25144,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B74] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:22:39.471Z","sequence":25145,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:22:39.471Z","sequence":25146,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:22:39.477Z","sequence":25147,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4d8f37c2-69fe-41c4-bb28-3fda1e962417, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:22:41.258Z","sequence":25148,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:22:41.258Z","sequence":25149,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100194D] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:22:41.263Z","sequence":25150,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:22:41.263Z","sequence":25151,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:22:41.27Z","sequence":25152,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4dd6953d-ca82-4cb0-859b-919f1c7843be, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:22:52.997Z","sequence":25153,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:22:52.997Z","sequence":25154,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001B11] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:22:53.011Z","sequence":25155,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:22:53.012Z","sequence":25156,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:22:53.021Z","sequence":25157,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b393fdf8-922d-43a3-a44f-8ccbf0fc26d9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:02.895Z","sequence":25158,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:02.895Z","sequence":25159,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10001DF] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:02.907Z","sequence":25160,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:02.907Z","sequence":25161,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:02.914Z","sequence":25162,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-956101c0-7fb5-4462-afa7-16f5a128bb5d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:03.513Z","sequence":25163,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:03.513Z","sequence":25164,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: chevronsgp]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:03.529Z","sequence":25165,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-b6663d3d-8c6e-4fe3-a6b9-f4727c1fc965, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:03.533Z","sequence":25166,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/chevronsgp:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:03.533Z","sequence":25167,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: chevronsgp, type: hashed-password, auth-id: auth-chevronsgp_42]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:03.57Z","sequence":25168,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-0ef6914b-7b6e-4e90-a839-aebaee03a62b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:03.689Z","sequence":25169,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/chevronsgp:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:03.689Z","sequence":25170,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: chevronsgp, device-id: 70B3D57BB1000869] for gateway [gateway_chevronsgp_network_42]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:03.712Z","sequence":25171,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_chevronsgp\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:03.713Z","sequence":25172,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_chevronsgp\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:03.75Z","sequence":25173,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-de332bc4-5094-4ed9-9854-c0ce8fd5a3b6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:03.995Z","sequence":25174,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:03.995Z","sequence":25175,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001947] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:04.036Z","sequence":25176,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:04.037Z","sequence":25177,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:04.049Z","sequence":25178,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ef2f07d2-cd3e-4807-ac7f-05ff5d1760ae, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:05.217Z","sequence":25179,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191199]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"22e0b167effea056","parentId":"9ee23bbcc8b07933","traceId":"0000000000000000591775b60578ade7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:05.291Z","sequence":25180,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191199, resource-version: 4ef43cdd-d814-48a6-96f5-e2266c67c42f]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"22e0b167effea056","parentId":"9ee23bbcc8b07933","traceId":"0000000000000000591775b60578ade7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:05.315Z","sequence":25181,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191199, resource-version: 0a531e81-7c37-4bcf-a5b7-1820dec1d58d]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"22e0b167effea056","parentId":"9ee23bbcc8b07933","traceId":"0000000000000000591775b60578ade7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:05.319Z","sequence":25182,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191199]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3b0c57a20bca6b65","parentId":"5e5c272afec3d8d4","traceId":"0000000000000000591775b60578ade7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:05.525Z","sequence":25183,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191199]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3b0c57a20bca6b65","parentId":"5e5c272afec3d8d4","traceId":"0000000000000000591775b60578ade7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:06.092Z","sequence":25184,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF5B0F95F1821C0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d372967ae38eba88","parentId":"de4b381a97392b6e","traceId":"0000000000000000c151fdf5c43892b6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:06.115Z","sequence":25185,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF5B0F95F1821C0, resource-version: 432e9975-9df0-482e-8f97-c674be1d529c]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d372967ae38eba88","parentId":"de4b381a97392b6e","traceId":"0000000000000000c151fdf5c43892b6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:06.123Z","sequence":25186,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF5B0F95F1821C0, resource-version: 667c40e0-c2fe-4234-8250-17dee41e4f95]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d372967ae38eba88","parentId":"de4b381a97392b6e","traceId":"0000000000000000c151fdf5c43892b6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:07.252Z","sequence":25187,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:07.253Z","sequence":25188,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:07.257Z","sequence":25189,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-4db2da7e-0d0e-4bbf-b48d-68cfb173f49e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:07.261Z","sequence":25190,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:07.261Z","sequence":25191,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191199]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:07.277Z","sequence":25192,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-08dd729c-3ac7-4839-b151-2edaa7140171, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:07.397Z","sequence":25193,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:07.397Z","sequence":25194,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF5B0F95F1821C0] for gateway [gateway_integrationtest_network_191199]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:07.398Z","sequence":25195,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:07.398Z","sequence":25196,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191199]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:07.404Z","sequence":25197,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-62aebe3d-2d98-417b-b605-097ea436a267, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:07.405Z","sequence":25198,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:07.405Z","sequence":25199,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:07.733Z","sequence":25200,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e34b3d16-be10-4e20-883c-e6f355c642ab, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:10.505Z","sequence":25201,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:10.505Z","sequence":25202,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: dow]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:10.516Z","sequence":25203,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-8c89df4a-ef7c-4d61-9bb3-99a4b1c47bdf, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:10.526Z","sequence":25204,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/dow:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:10.526Z","sequence":25205,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: dow, type: hashed-password, auth-id: auth-gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:10.585Z","sequence":25206,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-abfef5b5-7d05-4de9-bd44-e2ffa3c7bd07, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:10.872Z","sequence":25207,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:10.872Z","sequence":25208,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 70B3D57BB100123E] for gateway [gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:10.88Z","sequence":25209,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:10.881Z","sequence":25210,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:10.884Z","sequence":25211,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c1b94db9-9d76-4130-a9e0-1250d1fba60b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:11.292Z","sequence":25212,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:11.294Z","sequence":25213,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001948] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:11.305Z","sequence":25214,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:11.305Z","sequence":25215,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:11.312Z","sequence":25216,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-69942414-a9eb-4578-bd7b-4728e8485e04, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:13.603Z","sequence":25217,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/aloxy:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:13.603Z","sequence":25218,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: aloxy, device-id: 0008004A8F68]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:13.609Z","sequence":25219,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-99bfd94f-8b0c-4b5e-8eed-7799a4294c6b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:13.612Z","sequence":25220,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:13.612Z","sequence":25221,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: aloxy]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:13.615Z","sequence":25222,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-adbeccd9-dcfe-440e-b4e8-1a7dad886128, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:17.196Z","sequence":25223,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF5B0F95F1821C0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1b1ac2ff34202ca5","parentId":"d03b2cb12faade68","traceId":"0000000000000000a33247780d004a05","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:17.22Z","sequence":25224,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF5B0F95F1821C0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1b1ac2ff34202ca5","parentId":"d03b2cb12faade68","traceId":"0000000000000000a33247780d004a05","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:17.409Z","sequence":25225,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191199]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"507f4e79fb3dc7dc","parentId":"97c6671c7aa956c4","traceId":"0000000000000000c9d9a45b278be129","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:17.427Z","sequence":25226,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191199]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"507f4e79fb3dc7dc","parentId":"97c6671c7aa956c4","traceId":"0000000000000000c9d9a45b278be129","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:18.011Z","sequence":25227,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 719FBF0103F0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"207275d2e97b31ed","parentId":"39b6e9189881d5ef","traceId":"00000000000000003d68b67e33adb2df","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:18.027Z","sequence":25228,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 719FBF0103F0, resource-version: 205b5cf4-5b51-4eed-be2e-e436690400aa]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"207275d2e97b31ed","parentId":"39b6e9189881d5ef","traceId":"00000000000000003d68b67e33adb2df","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:18.033Z","sequence":25229,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 719FBF0103F0, resource-version: 786516cb-6d70-482a-8ff2-2d2ad6e2919a]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"207275d2e97b31ed","parentId":"39b6e9189881d5ef","traceId":"00000000000000003d68b67e33adb2df","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:18.036Z","sequence":25230,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 719FBF0103F0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5a01fb7e8ba8e425","parentId":"dd197c1639bc4069","traceId":"00000000000000003d68b67e33adb2df","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:18.155Z","sequence":25231,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 719FBF0103F0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5a01fb7e8ba8e425","parentId":"dd197c1639bc4069","traceId":"00000000000000003d68b67e33adb2df","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:18.568Z","sequence":25232,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFB9AA67DDEEE40]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1aa928d3aafb8b1a","parentId":"d9e2e00df3978e20","traceId":"00000000000000001b251523876046b3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:18.585Z","sequence":25233,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFB9AA67DDEEE40, resource-version: a1984e63-dde6-400c-97bd-9f7ecef9d175]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1aa928d3aafb8b1a","parentId":"d9e2e00df3978e20","traceId":"00000000000000001b251523876046b3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:18.593Z","sequence":25234,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFB9AA67DDEEE40, resource-version: 38d1fe1f-7cb8-4ed7-b160-ce26e11ea55f]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1aa928d3aafb8b1a","parentId":"d9e2e00df3978e20","traceId":"00000000000000001b251523876046b3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:19.647Z","sequence":25235,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:19.647Z","sequence":25236,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:19.65Z","sequence":25237,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-44b04a15-da88-4022-972a-733466142353, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:19.654Z","sequence":25238,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:19.654Z","sequence":25239,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-719FBF0103F0]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:19.663Z","sequence":25240,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-2c48b8e6-f29c-4dfc-bd4c-b753d2a61623, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:19.783Z","sequence":25241,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:19.783Z","sequence":25242,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 719FBF0103F0]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:19.787Z","sequence":25243,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-642d5973-220a-4ec0-b4b1-9edfa3ab80a6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:19.791Z","sequence":25244,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:19.791Z","sequence":25245,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFB9AA67DDEEE40] for gateway [719FBF0103F0]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:19.796Z","sequence":25246,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:19.796Z","sequence":25247,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:19.973Z","sequence":25248,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a81a362a-77c2-4bc4-b83e-61eacf5aad99, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:27.051Z","sequence":25249,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:27.051Z","sequence":25250,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oci]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:27.054Z","sequence":25251,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-e798c901-9610-4a8c-9906-c1b5ee731f86, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:27.056Z","sequence":25252,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:27.056Z","sequence":25253,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100016A] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:27.061Z","sequence":25254,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:27.061Z","sequence":25255,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:27.064Z","sequence":25256,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1478df89-4653-4a7d-a196-8ec5384d1d46, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:27.157Z","sequence":25257,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:27.157Z","sequence":25258,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100016A] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:27.162Z","sequence":25259,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:27.162Z","sequence":25260,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:27.165Z","sequence":25261,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ed7dbc1b-8a79-486f-bb66-a9f31669bc6f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:28.855Z","sequence":25262,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:28.855Z","sequence":25263,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BB613]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:28.861Z","sequence":25264,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-237c5299-fcaf-4926-9c67-9833411dce5d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:31.116Z","sequence":25265,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:31.117Z","sequence":25266,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: flint]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:31.12Z","sequence":25267,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-5a6f752c-2fee-4396-9259-aa9632ebce9f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:31.124Z","sequence":25268,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/flint:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:31.125Z","sequence":25269,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: flint, type: hashed-password, auth-id: auth-flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:31.139Z","sequence":25270,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-70018b7f-e8a5-4046-90a5-0dab7d0eb4f3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:31.265Z","sequence":25271,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:31.265Z","sequence":25272,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10009BF] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:31.266Z","sequence":25273,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:31.266Z","sequence":25274,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:31.271Z","sequence":25275,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8862014a-dea1-4dd0-946d-9cc115de645c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:31.271Z","sequence":25276,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:31.272Z","sequence":25277,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:31.275Z","sequence":25278,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-86806ec5-82ae-4987-8152-bc3ee6079b22, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:31.472Z","sequence":25279,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFB9AA67DDEEE40]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d33187b2a81bfea1","parentId":"8f67994e060d20a6","traceId":"0000000000000000b09be2920165dabc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:31.492Z","sequence":25280,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFB9AA67DDEEE40]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d33187b2a81bfea1","parentId":"8f67994e060d20a6","traceId":"0000000000000000b09be2920165dabc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:31.875Z","sequence":25281,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 719FBF0103F0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7a8154d031c1632f","parentId":"18c5ae788a81fcf6","traceId":"00000000000000004debec06ba8464e7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:31.893Z","sequence":25282,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 719FBF0103F0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7a8154d031c1632f","parentId":"18c5ae788a81fcf6","traceId":"00000000000000004debec06ba8464e7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:34.002Z","sequence":25283,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:34.002Z","sequence":25284,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000170] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:34.007Z","sequence":25285,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:34.007Z","sequence":25286,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:34.011Z","sequence":25287,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-736550cf-0cb2-4751-96fc-24d4e9abfcc7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:34.019Z","sequence":25288,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:34.019Z","sequence":25289,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000170] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:34.025Z","sequence":25290,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:34.025Z","sequence":25291,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:34.029Z","sequence":25292,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-76a37227-c1f0-4a87-8c03-14ab21f786e8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:39.781Z","sequence":25293,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:39.781Z","sequence":25294,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100018D] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:39.788Z","sequence":25295,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:39.788Z","sequence":25296,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:39.789Z","sequence":25297,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:39.789Z","sequence":25298,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100018D] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:39.791Z","sequence":25299,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c9cab819-5b01-414e-bed8-98bae01bed13, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:39.793Z","sequence":25300,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:39.793Z","sequence":25301,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:39.797Z","sequence":25302,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-fb31b372-2278-40f4-9767-16bf869d02e0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:54.237Z","sequence":25303,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:54.237Z","sequence":25304,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B79] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:54.243Z","sequence":25305,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:54.243Z","sequence":25306,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:23:54.251Z","sequence":25307,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c8697f3f-70ec-43d0-9cd7-a0646a150a0b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:24:01.219Z","sequence":25308,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:24:01.219Z","sequence":25309,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000575] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:24:01.227Z","sequence":25310,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:24:01.227Z","sequence":25311,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:24:01.233Z","sequence":25312,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-525a7b03-fbcf-4d09-8e10-c671739c3325, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:24:01.234Z","sequence":25313,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/acta:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:24:01.234Z","sequence":25314,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: acta, device-id: 0008004AAAA3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:24:01.241Z","sequence":25315,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a973fc44-1b46-4287-93c7-cae535a38802, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:24:01.244Z","sequence":25316,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:24:01.244Z","sequence":25317,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: acta]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:24:01.247Z","sequence":25318,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-4638dee2-de2b-4c8b-a862-19f9728db9ed, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:24:05.498Z","sequence":25319,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:24:05.499Z","sequence":25320,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:24:05.505Z","sequence":25321,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b64dcefc-1d1c-41ca-965e-96306a59fc68, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:24:05.508Z","sequence":25322,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:24:05.508Z","sequence":25323,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100015F] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:24:05.513Z","sequence":25324,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:24:05.513Z","sequence":25325,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:24:05.516Z","sequence":25326,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b031233d-e970-4c86-96a3-5ec6a0fc2a83, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:24:05.669Z","sequence":25327,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:24:05.669Z","sequence":25328,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100015F] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:24:05.677Z","sequence":25329,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:24:05.677Z","sequence":25330,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:24:05.685Z","sequence":25331,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-610a8da7-4075-4f40-8f13-79c9237b44e4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:24:05.795Z","sequence":25332,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:24:05.795Z","sequence":25333,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AC6] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:24:05.802Z","sequence":25334,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:24:05.802Z","sequence":25335,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:24:05.808Z","sequence":25336,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ab3b5fea-84b0-46ec-ad4b-a7e21ceff915, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:24:08.074Z","sequence":25337,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:24:08.074Z","sequence":25338,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: shell]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:24:08.078Z","sequence":25339,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-f6b657be-44eb-4d51-9e21-3066ce543d75, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:24:11.35Z","sequence":25340,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:24:11.35Z","sequence":25341,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10009CC] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:24:11.356Z","sequence":25342,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:24:11.357Z","sequence":25343,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:24:11.36Z","sequence":25344,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-853d5fbe-2e36-4ab0-9a4d-b3b952200e7f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:24:12.407Z","sequence":25345,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:24:12.407Z","sequence":25346,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:24:12.413Z","sequence":25347,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4501b323-e626-4c2c-8b49-47760f7cf21e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:24:22.042Z","sequence":25348,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/repsol:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:24:22.042Z","sequence":25349,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: repsol, device-id: 0008004A37FF]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:24:22.048Z","sequence":25350,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-02a3e712-4c1d-4471-8109-bf8e74178c53, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:24:22.051Z","sequence":25351,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:24:22.051Z","sequence":25352,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: repsol]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:24:22.055Z","sequence":25353,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-85aa3096-900b-4ac2-86f8-a2d453a9056e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:24:35.14Z","sequence":25354,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:24:35.14Z","sequence":25355,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: ineos]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:24:35.144Z","sequence":25356,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-57bcc865-33a0-4398-a4e6-e60b81554ce9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:24:35.147Z","sequence":25357,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:24:35.147Z","sequence":25358,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB1000A8D] for gateway [0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:24:35.153Z","sequence":25359,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:24:35.153Z","sequence":25360,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:24:35.157Z","sequence":25361,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7b1bf107-3b5e-4244-af32-fb0b82e99aa4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:24:35.517Z","sequence":25362,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/shell:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:24:35.517Z","sequence":25363,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: shell, type: hashed-password, auth-id: auth-gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:24:35.527Z","sequence":25364,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-7f04ace1-18f7-403a-823c-e5b7ef7ab4ab, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:24:35.656Z","sequence":25365,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:24:35.656Z","sequence":25366,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B6A] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:24:35.662Z","sequence":25367,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:24:35.662Z","sequence":25368,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:24:35.67Z","sequence":25369,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a27a00fb-0e7b-4fb1-bc23-2a6acd7aac8a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:24:45.243Z","sequence":25370,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:24:45.243Z","sequence":25371,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 0008004B51D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:24:45.25Z","sequence":25372,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-db5cca89-d8f2-461f-b9ca-4784b7e4077e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:24:45.253Z","sequence":25373,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:24:45.253Z","sequence":25374,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: dow]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:24:45.256Z","sequence":25375,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-7463e96b-9f76-420a-bb70-1fa1e3a2b4bf, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:24:45.565Z","sequence":25376,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:24:45.567Z","sequence":25377,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A04] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:24:45.573Z","sequence":25378,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:24:45.573Z","sequence":25379,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:24:45.579Z","sequence":25380,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4fa29201-091c-47a8-9b51-cddc8954a71c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:24:51.769Z","sequence":25381,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:24:51.769Z","sequence":25382,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100015B] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:24:51.776Z","sequence":25383,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:0.4.1\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:24:51.776Z","sequence":25384,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:24:51.784Z","sequence":25385,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-12904677-768c-47f2-a38b-604896fa43ab, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:24:54.053Z","sequence":25386,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:24:54.053Z","sequence":25387,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: arkema]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:24:54.059Z","sequence":25388,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-2c472f05-6d95-405b-92ef-405628976c52, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:24:54.063Z","sequence":25389,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/arkema:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:24:54.064Z","sequence":25390,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: arkema, device-id: 70B3D57BB10012FF] for gateway [0008004AE119]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:24:54.071Z","sequence":25391,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_arkema\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:24:54.072Z","sequence":25392,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_arkema\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:24:54.087Z","sequence":25393,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-51d2c3db-b2a1-4b1c-b08c-e5cae77c7d57, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:24:54.909Z","sequence":25394,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:24:54.909Z","sequence":25395,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AB0] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:24:54.916Z","sequence":25396,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:24:54.916Z","sequence":25397,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:24:54.922Z","sequence":25398,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f0e8ac94-1f1d-4239-8032-5b5580495bfd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:24:55.537Z","sequence":25399,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:24:55.537Z","sequence":25400,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006B7] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:24:55.542Z","sequence":25401,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:24:55.542Z","sequence":25402,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:24:55.548Z","sequence":25403,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5e4f35e3-9727-4792-a3fa-74200f53eedc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:24:57.781Z","sequence":25404,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:24:57.781Z","sequence":25405,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: terega]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:24:57.788Z","sequence":25406,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-7a37f741-450c-4cfe-a484-75950fbf49f6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:24:57.791Z","sequence":25407,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/terega:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:24:57.792Z","sequence":25408,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: terega, type: hashed-password, auth-id: auth-gateway_terega_network_27]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:24:57.802Z","sequence":25409,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-cdde64ec-653a-4a55-a585-34fca24a1d14, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:24:57.922Z","sequence":25410,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/terega:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:24:57.923Z","sequence":25411,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: terega, device-id: 39383837002F0030] for gateway [gateway_terega_network_27]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:24:57.924Z","sequence":25412,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/terega:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:24:57.924Z","sequence":25413,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: terega, device-id: gateway_terega_network_27]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:24:57.929Z","sequence":25414,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_terega\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:24:57.929Z","sequence":25415,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_terega\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:24:57.932Z","sequence":25416,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-522ea4fc-bbf8-4d65-8a5e-e91b10a7bf49, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:24:57.933Z","sequence":25417,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1bc6299c-dbfa-4bc4-8654-b01b34e43809, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:02.068Z","sequence":25418,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:02.069Z","sequence":25419,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AB6] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:02.075Z","sequence":25420,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:02.075Z","sequence":25421,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:02.081Z","sequence":25422,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c506f2ac-f6f7-4964-9ac5-d697fd337ab2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:04.367Z","sequence":25423,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191201]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"15f56f142cbef347","parentId":"a37cd19741cac17a","traceId":"000000000000000091fd7cbd63198582","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:04.405Z","sequence":25424,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191201, resource-version: 307031ad-b5a2-417e-8504-0d439c3e6ee7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"15f56f142cbef347","parentId":"a37cd19741cac17a","traceId":"000000000000000091fd7cbd63198582","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:04.413Z","sequence":25425,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191201, resource-version: 1e2fd818-6a41-40a6-8ff8-c18d16a330b8]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"15f56f142cbef347","parentId":"a37cd19741cac17a","traceId":"000000000000000091fd7cbd63198582","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:04.416Z","sequence":25426,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191201]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bf299e705c73f022","parentId":"8d962ff05f71e581","traceId":"000000000000000091fd7cbd63198582","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:04.732Z","sequence":25427,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191201]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bf299e705c73f022","parentId":"8d962ff05f71e581","traceId":"000000000000000091fd7cbd63198582","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:05.565Z","sequence":25428,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:05.566Z","sequence":25429,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AB7] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:05.572Z","sequence":25430,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:05.572Z","sequence":25431,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:05.577Z","sequence":25432,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a9c3c911-6e5e-48ad-b55d-ff8cf1fcbdb4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:05.735Z","sequence":25433,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFD2D1990AC5ADF]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fef2f1482a8d54c3","parentId":"432ede932dea940b","traceId":"000000000000000028e572e60c9ef17c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:05.75Z","sequence":25434,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFD2D1990AC5ADF, resource-version: 3b87f524-5639-451e-adac-acaee1aa2825]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fef2f1482a8d54c3","parentId":"432ede932dea940b","traceId":"000000000000000028e572e60c9ef17c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:05.756Z","sequence":25435,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFD2D1990AC5ADF, resource-version: 05747778-2320-44bb-8d06-1bdd51a796f6]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fef2f1482a8d54c3","parentId":"432ede932dea940b","traceId":"000000000000000028e572e60c9ef17c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:06.855Z","sequence":25436,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:06.856Z","sequence":25437,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191201]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:06.868Z","sequence":25438,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-b033c045-2942-4f6b-863f-bbc1f3552fc5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:06.994Z","sequence":25439,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:06.994Z","sequence":25440,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD2D1990AC5ADF] for gateway [gateway_integrationtest_network_191201]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:06.995Z","sequence":25441,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:06.995Z","sequence":25442,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191201]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:07.002Z","sequence":25443,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:07.002Z","sequence":25444,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:07.003Z","sequence":25445,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-828a96ea-51d5-47e4-adcd-854dc2d0dcc2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:07.395Z","sequence":25446,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e09c9bdc-d8e0-46e0-9d90-0edb017aa560, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:11.899Z","sequence":25447,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:11.9Z","sequence":25448,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001ABF] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:11.906Z","sequence":25449,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:11.906Z","sequence":25450,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:11.913Z","sequence":25451,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c09c51a7-e66b-441d-8508-e420ec302119, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:12.313Z","sequence":25452,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:12.313Z","sequence":25453,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019EC] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:12.325Z","sequence":25454,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:12.325Z","sequence":25455,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:12.333Z","sequence":25456,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e41a3d45-0594-4c22-92bf-9ac43677255c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:13.395Z","sequence":25457,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:13.395Z","sequence":25458,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006D0] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:13.401Z","sequence":25459,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:13.401Z","sequence":25460,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:13.407Z","sequence":25461,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-bb39228b-dc1e-4b25-81c3-5b2c9cf37dde, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:14.859Z","sequence":25462,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:14.859Z","sequence":25463,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100016D] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:14.882Z","sequence":25464,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:14.882Z","sequence":25465,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:14.885Z","sequence":25466,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-23b996e7-b25c-41ab-9602-02f1f49eb669, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:14.901Z","sequence":25467,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:14.901Z","sequence":25468,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100016D] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:14.908Z","sequence":25469,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:14.908Z","sequence":25470,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:14.911Z","sequence":25471,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-70c72f12-457d-470b-ad92-cb746f9208b3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:17.105Z","sequence":25472,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:17.105Z","sequence":25473,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001EB] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:17.117Z","sequence":25474,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:17.117Z","sequence":25475,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:17.121Z","sequence":25476,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-531797f5-c7d2-4d4a-8751-d57a7a2a33f0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:17.13Z","sequence":25477,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:17.13Z","sequence":25478,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001EB] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:17.136Z","sequence":25479,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:17.136Z","sequence":25480,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:17.149Z","sequence":25481,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5973aba0-9aee-4732-a31d-b153553f7229, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:19.689Z","sequence":25482,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/conditionall:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:19.689Z","sequence":25483,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: conditionall, device-id: 0008004B512D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:19.701Z","sequence":25484,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3a2e8c59-bccf-443f-8826-aba9d8e0aa92, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:19.704Z","sequence":25485,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:19.705Z","sequence":25486,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: conditionall]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:19.713Z","sequence":25487,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-b0527548-4caf-4b0d-916b-7fc0672687b8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:21.283Z","sequence":25488,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFD2D1990AC5ADF]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d5a5ecba6d958023","parentId":"fa6969f052efba92","traceId":"0000000000000000c35b08b691a84ae9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:21.304Z","sequence":25489,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFD2D1990AC5ADF]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d5a5ecba6d958023","parentId":"fa6969f052efba92","traceId":"0000000000000000c35b08b691a84ae9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:21.696Z","sequence":25490,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191201]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b259de8145d81fb6","parentId":"20034374a02bddb3","traceId":"00000000000000005cbd32fc7a4dc7c5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:21.716Z","sequence":25491,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191201]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b259de8145d81fb6","parentId":"20034374a02bddb3","traceId":"00000000000000005cbd32fc7a4dc7c5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:22.241Z","sequence":25492,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 023712AF627D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cc7cd231e37f1317","parentId":"17026dabdc301c7b","traceId":"0000000000000000180153b86e9a982e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:22.299Z","sequence":25493,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 023712AF627D, resource-version: 4d4f13aa-1e39-49af-ac92-10e6d46ca12b]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cc7cd231e37f1317","parentId":"17026dabdc301c7b","traceId":"0000000000000000180153b86e9a982e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:22.307Z","sequence":25494,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 023712AF627D, resource-version: a45a45b0-760a-40d1-b8ff-b46ec01cdfcf]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cc7cd231e37f1317","parentId":"17026dabdc301c7b","traceId":"0000000000000000180153b86e9a982e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:22.311Z","sequence":25495,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 023712AF627D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4233d4676e925b26","parentId":"31dbb79490a2c49b","traceId":"0000000000000000180153b86e9a982e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:22.586Z","sequence":25496,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 023712AF627D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4233d4676e925b26","parentId":"31dbb79490a2c49b","traceId":"0000000000000000180153b86e9a982e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:23.437Z","sequence":25497,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF89B9D033D9605]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"89e1bed6ba1c69ae","parentId":"e0c6aa9dcfdcb7de","traceId":"00000000000000007994c4d215986a4b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:23.456Z","sequence":25498,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF89B9D033D9605, resource-version: 6a2fc262-72c4-4536-8e1e-b6a471418131]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"89e1bed6ba1c69ae","parentId":"e0c6aa9dcfdcb7de","traceId":"00000000000000007994c4d215986a4b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:23.464Z","sequence":25499,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF89B9D033D9605, resource-version: 5d2df820-f479-4372-a2e5-6a7fc01b728d]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"89e1bed6ba1c69ae","parentId":"e0c6aa9dcfdcb7de","traceId":"00000000000000007994c4d215986a4b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:24.508Z","sequence":25500,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:24.508Z","sequence":25501,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-023712AF627D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:24.522Z","sequence":25502,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-b761113a-b501-4a90-85f3-2a0a67b4ea17, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:24.65Z","sequence":25503,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:24.65Z","sequence":25504,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 023712AF627D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:24.656Z","sequence":25505,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-04a8da53-cac7-477c-b529-fc660bd07686, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:24.661Z","sequence":25506,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:24.661Z","sequence":25507,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF89B9D033D9605] for gateway [023712AF627D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:24.666Z","sequence":25508,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:24.666Z","sequence":25509,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:24.827Z","sequence":25510,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-445a253c-5d17-42f5-87f8-ab39d82a67b1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:30.322Z","sequence":25511,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:30.322Z","sequence":25512,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10008A9] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:30.328Z","sequence":25513,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:30.328Z","sequence":25514,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:30.332Z","sequence":25515,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-09ca8a30-2d6d-44bb-92ff-59ac00bdfd15, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:34.058Z","sequence":25516,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF89B9D033D9605]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6d9828da6001cea6","parentId":"f3959147b7471c89","traceId":"000000000000000055e89133cae6ee51","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:34.084Z","sequence":25517,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF89B9D033D9605]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6d9828da6001cea6","parentId":"f3959147b7471c89","traceId":"000000000000000055e89133cae6ee51","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:34.419Z","sequence":25518,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 023712AF627D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"342a5af312218898","parentId":"cf5d343c62a091a1","traceId":"000000000000000007f33d0a8e0eda2d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:34.437Z","sequence":25519,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 023712AF627D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"342a5af312218898","parentId":"cf5d343c62a091a1","traceId":"000000000000000007f33d0a8e0eda2d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:37.998Z","sequence":25520,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:37.999Z","sequence":25521,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: exxon]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:38.002Z","sequence":25522,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-8fca88d5-8263-4e9a-8d82-e8c1617b91e4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:38.007Z","sequence":25523,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/exxon:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:38.007Z","sequence":25524,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: exxon, type: hashed-password, auth-id: auth-gateway_exxon_network_2559]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:38.018Z","sequence":25525,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-0532b590-a179-4640-9683-a076ee3f1126, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:38.137Z","sequence":25526,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/exxon:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:38.137Z","sequence":25527,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: exxon, device-id: 70B3D57BB1000B38] for gateway [gateway_exxon_network_2559]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:38.137Z","sequence":25528,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/exxon:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:38.137Z","sequence":25529,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: exxon, device-id: gateway_exxon_network_2559]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:38.144Z","sequence":25530,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_exxon\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:38.144Z","sequence":25531,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_exxon\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:38.145Z","sequence":25532,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ccf160d3-965f-45d9-8e94-b817a7b373f9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:38.147Z","sequence":25533,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-12eac290-9eea-465c-9f29-c10a42c3aaa3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:40.549Z","sequence":25534,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:40.549Z","sequence":25535,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B71] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:40.556Z","sequence":25536,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:40.556Z","sequence":25537,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:40.562Z","sequence":25538,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f9947afe-f432-4234-90a0-11f4ac064ee6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:41.281Z","sequence":25539,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:41.281Z","sequence":25540,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AAD] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:41.287Z","sequence":25541,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:41.287Z","sequence":25542,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:41.294Z","sequence":25543,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-efad6f30-2481-4e11-862e-9dda223425ec, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:42.541Z","sequence":25544,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:42.541Z","sequence":25545,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AB4] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:42.547Z","sequence":25546,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:42.547Z","sequence":25547,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:42.553Z","sequence":25548,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-47934a71-1a2d-41d4-be60-5fc3b390601a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:44.885Z","sequence":25549,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:44.885Z","sequence":25550,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AB8] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:44.902Z","sequence":25551,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:44.902Z","sequence":25552,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:44.909Z","sequence":25553,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b2354e29-9829-482e-9727-76d4c7201481, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:56.584Z","sequence":25554,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:56.584Z","sequence":25555,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BB84C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:56.589Z","sequence":25556,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-de7d4547-d77b-41d6-a1dc-692371cc90fa, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:56.592Z","sequence":25557,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:56.592Z","sequence":25558,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: lanxess]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:56.595Z","sequence":25559,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-8febe259-a24d-44f5-8d7a-206429875970, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:58.293Z","sequence":25560,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:58.293Z","sequence":25561,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 0008004B5135]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:58.302Z","sequence":25562,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-fa4676c1-4e1a-408e-8422-f85b6206dc6c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:59.052Z","sequence":25563,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:59.053Z","sequence":25564,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AA8] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:59.058Z","sequence":25565,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:59.058Z","sequence":25566,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:25:59.065Z","sequence":25567,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5f369e39-8e90-4287-b8dc-d557da0e3b3e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:26:02.021Z","sequence":25568,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:26:02.021Z","sequence":25569,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BBD1B]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:26:02.053Z","sequence":25570,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-29595d52-0594-45dc-b933-64ea9b3dc6d4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:26:08.974Z","sequence":25571,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:26:08.974Z","sequence":25572,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB1000B1C] for gateway [0008004B5135]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:26:08.981Z","sequence":25573,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:26:08.982Z","sequence":25574,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:26:08.985Z","sequence":25575,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8cacb7ae-9134-4dd2-b913-b3b6ef6010fa, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:26:09.11Z","sequence":25576,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/arkema:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:26:09.11Z","sequence":25577,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: arkema, device-id: 0008004AE119]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:26:09.115Z","sequence":25578,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-351f0d88-fe25-4739-9bdb-4e120b3cb863, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:26:12.037Z","sequence":25579,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:26:12.037Z","sequence":25580,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006CB] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:26:12.043Z","sequence":25581,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.8.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:26:12.043Z","sequence":25582,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:26:12.049Z","sequence":25583,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-99cc4d15-d51f-438a-aba4-21a3537e1426, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:26:12.472Z","sequence":25584,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/arkema:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:26:12.472Z","sequence":25585,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: arkema, device-id: 70B3D57BB1001301] for gateway [0008004AE119]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:26:12.477Z","sequence":25586,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_arkema\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:26:12.477Z","sequence":25587,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_arkema\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:26:12.48Z","sequence":25588,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1dff1e4c-6998-47dd-b6b5-51421acec20d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:26:21.252Z","sequence":25589,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:26:21.252Z","sequence":25590,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AA6] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:26:21.258Z","sequence":25591,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:26:21.258Z","sequence":25592,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:26:21.264Z","sequence":25593,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-63d05cc7-df05-433f-a5f1-d5acd3a3887f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:26:23.929Z","sequence":25594,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:26:23.929Z","sequence":25595,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:26:23.935Z","sequence":25596,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8c56dd4f-b70d-407c-b3af-aa4a2f0fa6f8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:26:30.519Z","sequence":25597,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:26:30.52Z","sequence":25598,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000500] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:26:30.525Z","sequence":25599,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:26:30.525Z","sequence":25600,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:26:30.532Z","sequence":25601,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b8e7b05e-7f45-424f-92ff-c32ce749c9bf, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:26:40.908Z","sequence":25602,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/repsol:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:26:40.908Z","sequence":25603,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: repsol, device-id: 70B3D57BB1000207] for gateway [0008004A37FF]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:26:40.915Z","sequence":25604,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:0.4.1\"\n },\n \"viaGroups\" : [ \"gateways_repsol\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:26:40.915Z","sequence":25605,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_repsol\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:26:40.919Z","sequence":25606,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7e4e3291-a288-4d0f-987d-775fd159e9fb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:26:42.534Z","sequence":25607,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:26:42.534Z","sequence":25608,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000ADB] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:26:42.539Z","sequence":25609,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:26:42.539Z","sequence":25610,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:26:42.546Z","sequence":25611,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f80cbf53-6329-4141-b779-56c38f515596, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:26:43.603Z","sequence":25612,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:26:43.604Z","sequence":25613,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AAE] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:26:43.612Z","sequence":25614,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:26:43.612Z","sequence":25615,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:26:43.618Z","sequence":25616,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1d6489d6-9071-426f-b8ef-9cde66d0a579, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:26:50.242Z","sequence":25617,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:26:50.243Z","sequence":25618,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: flint]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:26:50.257Z","sequence":25619,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-9ee47f9e-8ed3-4bcf-a2c6-c4a60709350a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:26:50.26Z","sequence":25620,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/flint:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:26:50.261Z","sequence":25621,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: flint, type: hashed-password, auth-id: auth-flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:26:50.277Z","sequence":25622,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-72d095a7-0fd0-49c4-8e98-1414676d02d1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:26:50.506Z","sequence":25623,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:26:50.506Z","sequence":25624,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB100080A] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:26:50.512Z","sequence":25625,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:26:50.512Z","sequence":25626,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:26:50.516Z","sequence":25627,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b82c504a-64a1-448b-a562-7fe495f2038e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:26:51.323Z","sequence":25628,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:26:51.323Z","sequence":25629,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oci]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:26:51.327Z","sequence":25630,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-372a8740-b076-48d3-8672-c8bf33898d5e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:26:51.339Z","sequence":25631,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:26:51.339Z","sequence":25632,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001C1] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:26:51.356Z","sequence":25633,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:26:51.356Z","sequence":25634,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:26:51.365Z","sequence":25635,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c7470299-7c77-4e3e-8acf-dd4f563bb703, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:26:51.452Z","sequence":25636,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:26:51.452Z","sequence":25637,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001C1] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:26:51.461Z","sequence":25638,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:26:51.461Z","sequence":25639,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:26:51.465Z","sequence":25640,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c82a0cfe-f8b9-4fa8-9a2e-ff005a1e4d0c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:26:51.516Z","sequence":25641,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:26:51.517Z","sequence":25642,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:26:51.525Z","sequence":25643,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-98e1b04b-6960-47da-be58-5232be0225fc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:26:55.759Z","sequence":25644,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:26:55.759Z","sequence":25645,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100056E] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:26:55.767Z","sequence":25646,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:26:55.767Z","sequence":25647,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:26:55.789Z","sequence":25648,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-53b399c9-1d22-418f-a74e-ed0909356501, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:26:57.318Z","sequence":25649,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:26:57.319Z","sequence":25650,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BBD1C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:26:57.325Z","sequence":25651,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-cfbaa2cc-c85e-42fa-9ccf-366ddd806329, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:26:58.274Z","sequence":25652,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:26:58.274Z","sequence":25653,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BBF] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:26:58.281Z","sequence":25654,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:26:58.282Z","sequence":25655,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:26:58.289Z","sequence":25656,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-64260d06-3e50-47b8-b5ed-4020b95c6836, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:04.752Z","sequence":25657,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191203]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ed03bd3d5fa92947","parentId":"460ae5a4e101acc5","traceId":"00000000000000003496dc4ed148df79","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:04.799Z","sequence":25658,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191203, resource-version: 7675fe30-0659-4cc0-8b6d-9c57f2c906a8]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ed03bd3d5fa92947","parentId":"460ae5a4e101acc5","traceId":"00000000000000003496dc4ed148df79","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:04.81Z","sequence":25659,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191203, resource-version: 85373c5c-65bc-4d10-86c4-383900982365]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ed03bd3d5fa92947","parentId":"460ae5a4e101acc5","traceId":"00000000000000003496dc4ed148df79","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:04.813Z","sequence":25660,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191203]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cb05cb0cca017256","parentId":"d4877ff36c4b1fab","traceId":"00000000000000003496dc4ed148df79","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:04.925Z","sequence":25661,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191203]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cb05cb0cca017256","parentId":"d4877ff36c4b1fab","traceId":"00000000000000003496dc4ed148df79","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:05.644Z","sequence":25662,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF5E32AC4CB8B7C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"753405949f01238e","parentId":"2aebf33de69d84dd","traceId":"000000000000000061fa600676f3bbd7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:05.692Z","sequence":25663,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF5E32AC4CB8B7C, resource-version: 6af6fe9a-1ac0-4e09-8a3a-c11a9de3a9e9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"753405949f01238e","parentId":"2aebf33de69d84dd","traceId":"000000000000000061fa600676f3bbd7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:05.701Z","sequence":25664,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF5E32AC4CB8B7C, resource-version: 1363b7de-206f-450e-b198-4636a2106b8c]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"753405949f01238e","parentId":"2aebf33de69d84dd","traceId":"000000000000000061fa600676f3bbd7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:06.794Z","sequence":25665,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:06.794Z","sequence":25666,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:06.799Z","sequence":25667,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-add59a34-8907-44a9-9ca1-0ac4b82ff1d4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:06.801Z","sequence":25668,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:06.801Z","sequence":25669,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191203]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:06.812Z","sequence":25670,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-af39eef7-7431-4556-94e6-430a3caf17fc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:06.95Z","sequence":25671,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:06.95Z","sequence":25672,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF5E32AC4CB8B7C] for gateway [gateway_integrationtest_network_191203]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:06.951Z","sequence":25673,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:06.951Z","sequence":25674,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191203]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:06.963Z","sequence":25675,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:06.963Z","sequence":25676,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:06.964Z","sequence":25677,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7611bd85-d500-40bb-b19b-81da163af16f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:07.336Z","sequence":25678,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-27562467-6c91-4d71-bc0d-f4fcf9d5fc1f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:09.912Z","sequence":25679,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:09.912Z","sequence":25680,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: shell]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:09.915Z","sequence":25681,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-d060e350-653a-41f3-8310-322c449efe39, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:10.062Z","sequence":25682,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:10.063Z","sequence":25683,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B36] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:10.07Z","sequence":25684,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:10.07Z","sequence":25685,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:10.078Z","sequence":25686,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e858ce35-ffc4-4be5-97f3-18d30733e50c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:12.313Z","sequence":25687,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:12.313Z","sequence":25688,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10002D2] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:12.322Z","sequence":25689,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:12.322Z","sequence":25690,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:12.326Z","sequence":25691,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-af779ce8-58aa-4ef6-a9f1-a50361f11d6d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:16.392Z","sequence":25692,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF5E32AC4CB8B7C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"12dae49560e327f6","parentId":"ec953b3c04f2acc1","traceId":"0000000000000000706e8c4c0a4a6699","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:16.441Z","sequence":25693,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF5E32AC4CB8B7C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"12dae49560e327f6","parentId":"ec953b3c04f2acc1","traceId":"0000000000000000706e8c4c0a4a6699","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:16.887Z","sequence":25694,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191203]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"210b2d1851d7ac74","parentId":"978108e174ce188b","traceId":"0000000000000000fe62a9804b8a238c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:16.904Z","sequence":25695,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191203]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"210b2d1851d7ac74","parentId":"978108e174ce188b","traceId":"0000000000000000fe62a9804b8a238c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:17.398Z","sequence":25696,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 1C6567499D61]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"943139603dce1bab","parentId":"63684c4984b8b68a","traceId":"0000000000000000abc78879a300703e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:17.457Z","sequence":25697,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 1C6567499D61, resource-version: e587bc15-0f51-4954-a13a-abaa7a40f3e9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"943139603dce1bab","parentId":"63684c4984b8b68a","traceId":"0000000000000000abc78879a300703e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:17.501Z","sequence":25698,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 1C6567499D61, resource-version: 9bbfe227-bce9-47b5-a8ad-b7615d8b6290]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"943139603dce1bab","parentId":"63684c4984b8b68a","traceId":"0000000000000000abc78879a300703e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:17.509Z","sequence":25699,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 1C6567499D61]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"39123985059780df","parentId":"b26ad800fc5d31e6","traceId":"0000000000000000abc78879a300703e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:17.753Z","sequence":25700,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 1C6567499D61]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"39123985059780df","parentId":"b26ad800fc5d31e6","traceId":"0000000000000000abc78879a300703e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:18.607Z","sequence":25701,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF9B9DE873F75E3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b96e8806d056fd7c","parentId":"d501e9f3e46f55be","traceId":"00000000000000008595bf58606a16b1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:18.651Z","sequence":25702,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF9B9DE873F75E3, resource-version: 2dcfccc6-1d38-465d-b99c-2d72aa83bfad]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b96e8806d056fd7c","parentId":"d501e9f3e46f55be","traceId":"00000000000000008595bf58606a16b1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:18.666Z","sequence":25703,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF9B9DE873F75E3, resource-version: 694384c9-2944-4f0f-8409-f84324cebb2c]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b96e8806d056fd7c","parentId":"d501e9f3e46f55be","traceId":"00000000000000008595bf58606a16b1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:19.757Z","sequence":25704,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:19.757Z","sequence":25705,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:19.761Z","sequence":25706,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-e7b0c5f1-31a1-4a70-837c-8da7111f9c4e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:19.764Z","sequence":25707,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:19.764Z","sequence":25708,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-1C6567499D61]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:19.775Z","sequence":25709,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-a97ce0e1-5d19-48c7-bd8d-622cdf3f07b3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:19.893Z","sequence":25710,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:19.894Z","sequence":25711,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 1C6567499D61]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:19.899Z","sequence":25712,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5288572a-2361-445a-a9a5-1c627d3f6717, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:19.904Z","sequence":25713,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:19.904Z","sequence":25714,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF9B9DE873F75E3] for gateway [1C6567499D61]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:19.909Z","sequence":25715,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:19.909Z","sequence":25716,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:20.158Z","sequence":25717,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d88a4daf-8552-481f-b162-e57458fc3fe4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:20.752Z","sequence":25718,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:20.752Z","sequence":25719,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006C7] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:20.794Z","sequence":25720,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:20.794Z","sequence":25721,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:20.803Z","sequence":25722,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-411d8260-0a81-471b-80ec-4385ce516c32, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:22.3Z","sequence":25723,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:22.301Z","sequence":25724,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 0008004C80F4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:22.306Z","sequence":25725,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-01960d31-0093-4254-a78d-14c8c7d67073, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:28.469Z","sequence":25726,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:28.469Z","sequence":25727,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000F79] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:28.501Z","sequence":25728,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:28.501Z","sequence":25729,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:28.549Z","sequence":25730,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-09e60850-d559-460a-8c69-77a14f807d49, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:33.706Z","sequence":25731,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF9B9DE873F75E3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"309e5f8351903ec0","parentId":"83c3a94c09e6d8f5","traceId":"0000000000000000d7635a974a2415e5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:34.196Z","sequence":25732,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF9B9DE873F75E3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"309e5f8351903ec0","parentId":"83c3a94c09e6d8f5","traceId":"0000000000000000d7635a974a2415e5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:34.539Z","sequence":25733,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 1C6567499D61]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"71b7cbb797622795","parentId":"fd3fc4c3a98b581c","traceId":"00000000000000006a855d48bc6afa46","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:34.557Z","sequence":25734,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 1C6567499D61]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"71b7cbb797622795","parentId":"fd3fc4c3a98b581c","traceId":"00000000000000006a855d48bc6afa46","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:37.533Z","sequence":25735,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oiltanking:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:37.533Z","sequence":25736,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oiltanking, device-id: 0008004BB60F]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:37.594Z","sequence":25737,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4f438762-a11c-489f-aa2d-d5e2af55d56c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:37.598Z","sequence":25738,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:37.598Z","sequence":25739,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oiltanking]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:37.603Z","sequence":25740,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-d6ad3dad-6117-4769-b737-88c7c4431a40, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:37.876Z","sequence":25741,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:37.876Z","sequence":25742,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100015E] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:37.882Z","sequence":25743,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:37.882Z","sequence":25744,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:37.885Z","sequence":25745,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6dbb1cb6-2d7a-4fe8-be53-31e483b88187, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:37.928Z","sequence":25746,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:37.928Z","sequence":25747,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10009BD] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:37.938Z","sequence":25748,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:37.939Z","sequence":25749,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100015E] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:37.944Z","sequence":25750,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:37.944Z","sequence":25751,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:37.945Z","sequence":25752,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:37.945Z","sequence":25753,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:37.948Z","sequence":25754,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ac3fd199-f795-437c-80a4-57f7ef12f68f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:37.949Z","sequence":25755,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6f6ce34b-b7ff-4214-af21-539b93602354, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:43.182Z","sequence":25756,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/shell:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:43.182Z","sequence":25757,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: shell, type: hashed-password, auth-id: auth-gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:43.208Z","sequence":25758,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-6cd870de-9608-4e40-833a-0bb83db1afa8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:43.332Z","sequence":25759,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:43.332Z","sequence":25760,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B56] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:43.341Z","sequence":25761,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:43.342Z","sequence":25762,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:43.351Z","sequence":25763,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-94bd9ed4-98be-4dcb-ae42-47b1ae62ebca, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:45.869Z","sequence":25764,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:45.869Z","sequence":25765,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: chevronsgp]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:45.9Z","sequence":25766,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-a275261c-c337-4d97-b1f1-37b0815ab0af, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:45.902Z","sequence":25767,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/chevronsgp:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:45.903Z","sequence":25768,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: chevronsgp, type: hashed-password, auth-id: auth-chevronsgp_42]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:45.95Z","sequence":25769,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-1160b634-5f3d-48e6-b0c0-123af26da72a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:46.076Z","sequence":25770,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/chevronsgp:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:46.077Z","sequence":25771,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: chevronsgp, device-id: 70B3D57BB100086D] for gateway [gateway_chevronsgp_network_42]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:46.077Z","sequence":25772,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/chevronsgp:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:46.077Z","sequence":25773,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: chevronsgp, device-id: gateway_chevronsgp_network_42]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:46.083Z","sequence":25774,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-20e8f4ad-036f-49ca-88c7-3570fbcfed85, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:46.083Z","sequence":25775,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_chevronsgp\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:46.083Z","sequence":25776,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_chevronsgp\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:27:46.09Z","sequence":25777,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c2024a39-a48c-44b6-b5b5-e36f5b209e07, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:28:13.177Z","sequence":25778,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:28:13.177Z","sequence":25779,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100080F] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:28:13.185Z","sequence":25780,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:28:13.185Z","sequence":25781,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:28:13.199Z","sequence":25782,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-beef6118-3239-4aaa-b280-f130e383f10c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:28:14.931Z","sequence":25783,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/aloxy:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:28:14.932Z","sequence":25784,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: aloxy, device-id: 0008004A8F68]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:28:14.94Z","sequence":25785,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4378309e-3c9e-4f29-840e-d299e4c7d41e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:28:14.943Z","sequence":25786,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:28:14.943Z","sequence":25787,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: aloxy]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:28:14.946Z","sequence":25788,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-dff9c3f6-a7c5-47aa-96de-191f6293c29e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:28:24.437Z","sequence":25789,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:28:24.437Z","sequence":25790,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000F8B] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:28:24.447Z","sequence":25791,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:28:24.447Z","sequence":25792,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:28:24.501Z","sequence":25793,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7a00fa84-5efe-42bb-bc1a-276b5c6f6a91, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:28:30.592Z","sequence":25794,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:28:30.593Z","sequence":25795,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BB613]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:28:30.6Z","sequence":25796,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-64d19d00-dd90-4514-a909-f2aae65728ce, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:28:47.202Z","sequence":25797,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oiltanking:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:28:47.203Z","sequence":25798,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oiltanking, device-id: 70B3D57BB10001DA] for gateway [0008004BB60F]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:28:47.253Z","sequence":25799,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_oiltanking\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:28:47.253Z","sequence":25800,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oiltanking\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:28:47.298Z","sequence":25801,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-472d76e5-fc22-4a8d-b02e-e620db326015, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:28:49.79Z","sequence":25802,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:28:49.79Z","sequence":25803,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001B02] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:28:49.798Z","sequence":25804,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:28:49.798Z","sequence":25805,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:28:49.848Z","sequence":25806,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-119c09aa-8790-43b8-8f09-d53d441026c7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:28:49.877Z","sequence":25807,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:28:49.877Z","sequence":25808,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006D9] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:28:49.883Z","sequence":25809,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:28:49.883Z","sequence":25810,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:28:49.889Z","sequence":25811,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1ca3af49-e042-4a4f-a98a-1e4aea3a6512, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:28:54.494Z","sequence":25812,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:28:54.495Z","sequence":25813,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000829] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:28:54.497Z","sequence":25814,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:28:54.497Z","sequence":25815,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:28:54.55Z","sequence":25816,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-57fe451c-e9c1-4b11-86a4-043c51c48040, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:28:54.551Z","sequence":25817,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:28:54.551Z","sequence":25818,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:28:54.557Z","sequence":25819,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-094b727e-3825-4555-8692-925473f23174, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:28:55.176Z","sequence":25820,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:28:55.177Z","sequence":25821,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100017A] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:28:55.188Z","sequence":25822,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:28:55.189Z","sequence":25823,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100017A] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:28:55.206Z","sequence":25824,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:28:55.206Z","sequence":25825,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:28:55.217Z","sequence":25826,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:28:55.217Z","sequence":25827,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:28:55.221Z","sequence":25828,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a9c1634b-94e8-4fee-9977-8bff5b39c1cb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:28:55.232Z","sequence":25829,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d2ff80e3-3ab6-48ad-a037-ea19402a60b8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:00.513Z","sequence":25830,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:00.513Z","sequence":25831,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000861] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:00.52Z","sequence":25832,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:00.52Z","sequence":25833,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:00.528Z","sequence":25834,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3e768577-8b73-4933-9e9c-9916861a4e96, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:01.59Z","sequence":25835,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:01.59Z","sequence":25836,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100193B] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:01.649Z","sequence":25837,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:01.649Z","sequence":25838,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:01.699Z","sequence":25839,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-059e7fc0-720d-4439-955f-998b554b50b3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:04.114Z","sequence":25840,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/acta:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:04.114Z","sequence":25841,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: acta, device-id: 0008004AAAA3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:04.143Z","sequence":25842,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-fdba8633-7dc7-467b-93cf-44c14f18c66d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:04.147Z","sequence":25843,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:04.147Z","sequence":25844,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: acta]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:04.15Z","sequence":25845,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-20022a0d-c1b6-4242-ab7a-1f98cb83ae5b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:04.277Z","sequence":25846,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191205]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"131315d600b6eb1f","parentId":"9fa4e3e25c2c0bb2","traceId":"000000000000000078a5982d1b72f246","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:04.304Z","sequence":25847,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191205, resource-version: cf1d93fc-581c-45e5-b9cf-94330892a425]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"131315d600b6eb1f","parentId":"9fa4e3e25c2c0bb2","traceId":"000000000000000078a5982d1b72f246","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:04.345Z","sequence":25848,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191205, resource-version: ee5972ac-0028-47ca-80ec-b23da64389d2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"131315d600b6eb1f","parentId":"9fa4e3e25c2c0bb2","traceId":"000000000000000078a5982d1b72f246","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:04.348Z","sequence":25849,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191205]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"395b5d2aca030d04","parentId":"72f9b2937d6493b9","traceId":"000000000000000078a5982d1b72f246","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:04.503Z","sequence":25850,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191205]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"395b5d2aca030d04","parentId":"72f9b2937d6493b9","traceId":"000000000000000078a5982d1b72f246","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:04.532Z","sequence":25851,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:04.532Z","sequence":25852,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B65] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:04.543Z","sequence":25853,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:04.543Z","sequence":25854,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:04.55Z","sequence":25855,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a41b43cf-fec7-43dd-a8c0-52af7a7a29f3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:05.952Z","sequence":25856,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF162601A389EFF]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"71f8ead4770e102f","parentId":"6d5043f59ac4f1d0","traceId":"00000000000000004ee5c887389e9942","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:05.97Z","sequence":25857,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF162601A389EFF, resource-version: b09d253a-1057-477e-b440-02c2c294c4c4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"71f8ead4770e102f","parentId":"6d5043f59ac4f1d0","traceId":"00000000000000004ee5c887389e9942","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:05.978Z","sequence":25858,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF162601A389EFF, resource-version: 2aa54b8a-ca38-468d-9ad9-43a2793536a6]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"71f8ead4770e102f","parentId":"6d5043f59ac4f1d0","traceId":"00000000000000004ee5c887389e9942","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:07.089Z","sequence":25859,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:07.089Z","sequence":25860,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191205]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:07.1Z","sequence":25861,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-0bc23375-24e3-413d-b95c-b5f6dd4732ba, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:07.219Z","sequence":25862,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:07.219Z","sequence":25863,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF162601A389EFF] for gateway [gateway_integrationtest_network_191205]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:07.22Z","sequence":25864,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:07.22Z","sequence":25865,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191205]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:07.225Z","sequence":25866,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f90011a4-b3d8-4f8a-9ee1-787c51e2e8ba, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:07.226Z","sequence":25867,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:07.226Z","sequence":25868,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:07.466Z","sequence":25869,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-aea9f860-e049-4e52-95bb-fca7cf3d56b3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:09.177Z","sequence":25870,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:09.178Z","sequence":25871,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AF0] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:09.185Z","sequence":25872,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:09.185Z","sequence":25873,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:09.192Z","sequence":25874,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0f807cc3-aee4-47f3-b344-e4fec1cd4e9e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:10.837Z","sequence":25875,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:10.837Z","sequence":25876,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: ineos]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:10.84Z","sequence":25877,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-2112e6d3-2586-44db-9030-39d1a65c4e4f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:10.843Z","sequence":25878,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:10.843Z","sequence":25879,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB1000B27] for gateway [0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:10.848Z","sequence":25880,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:10.849Z","sequence":25881,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:10.852Z","sequence":25882,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-71ae969b-38a3-4626-bfb5-1de728cfef15, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:11.573Z","sequence":25883,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:11.573Z","sequence":25884,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B6F] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:11.581Z","sequence":25885,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:11.581Z","sequence":25886,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:11.587Z","sequence":25887,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7532e59f-45bd-4ed6-8981-f25fc823b2a3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:13.504Z","sequence":25888,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:13.505Z","sequence":25889,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:13.51Z","sequence":25890,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-337aad8c-708d-4a60-9fc0-78e8225190c4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:13.514Z","sequence":25891,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:13.514Z","sequence":25892,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001FA] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:13.52Z","sequence":25893,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:13.52Z","sequence":25894,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:13.523Z","sequence":25895,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0d5da7b4-3fb4-4a58-a6d4-23dd2cd560a3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:13.529Z","sequence":25896,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:13.529Z","sequence":25897,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:13.535Z","sequence":25898,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-69726131-833a-44b1-80a8-e8c334a56ca2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:13.541Z","sequence":25899,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:13.542Z","sequence":25900,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001FA] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:13.547Z","sequence":25901,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:13.549Z","sequence":25902,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:13.552Z","sequence":25903,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f6a1ca8e-b0a7-458f-9887-9c2ccf6ccd7c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:17.609Z","sequence":25904,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF162601A389EFF]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ce28f50e4de14d59","parentId":"27f75f076441cb7a","traceId":"0000000000000000d72bcb0bbad888ea","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:17.627Z","sequence":25905,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF162601A389EFF]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ce28f50e4de14d59","parentId":"27f75f076441cb7a","traceId":"0000000000000000d72bcb0bbad888ea","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:17.867Z","sequence":25906,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191205]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"451016673e71e7a6","parentId":"2ab7582f2d04a425","traceId":"00000000000000007d6613276129f185","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:17.897Z","sequence":25907,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191205]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"451016673e71e7a6","parentId":"2ab7582f2d04a425","traceId":"00000000000000007d6613276129f185","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:18.477Z","sequence":25908,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: D2E2D2826808]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"664f82d0c2690c83","parentId":"b09a1029e1e3a1f5","traceId":"0000000000000000e922b72e98b4cb4e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:18.505Z","sequence":25909,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: D2E2D2826808, resource-version: fa2052e5-9580-4f83-8d31-f72d44168a9d]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"664f82d0c2690c83","parentId":"b09a1029e1e3a1f5","traceId":"0000000000000000e922b72e98b4cb4e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:18.539Z","sequence":25910,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: D2E2D2826808, resource-version: 3f6cc032-3110-4d66-b4fb-913bcda86955]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"664f82d0c2690c83","parentId":"b09a1029e1e3a1f5","traceId":"0000000000000000e922b72e98b4cb4e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:18.542Z","sequence":25911,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: D2E2D2826808]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5db59e7cacbd102d","parentId":"db2fd1887873ca9f","traceId":"0000000000000000e922b72e98b4cb4e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:18.747Z","sequence":25912,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: D2E2D2826808]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5db59e7cacbd102d","parentId":"db2fd1887873ca9f","traceId":"0000000000000000e922b72e98b4cb4e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:19.483Z","sequence":25913,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFD362B720745F9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5dd113dfc47d8485","parentId":"1152079ac15fc3e9","traceId":"000000000000000016a3e5f42bd22859","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:19.501Z","sequence":25914,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFD362B720745F9, resource-version: ca7dda35-7dfc-4c29-b0af-e4cf692e63f4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5dd113dfc47d8485","parentId":"1152079ac15fc3e9","traceId":"000000000000000016a3e5f42bd22859","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:19.51Z","sequence":25915,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFD362B720745F9, resource-version: c7e2e68c-21cf-425d-b35b-f1bfd67f60d7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5dd113dfc47d8485","parentId":"1152079ac15fc3e9","traceId":"000000000000000016a3e5f42bd22859","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:20.568Z","sequence":25916,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:20.568Z","sequence":25917,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-D2E2D2826808]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:20.578Z","sequence":25918,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-4a4779dc-4955-4d51-8039-4e21a66905a1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:20.701Z","sequence":25919,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:20.702Z","sequence":25920,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: D2E2D2826808]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:20.709Z","sequence":25921,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-479a5c6a-d19c-4181-a1d0-8a1770a1c36c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:20.713Z","sequence":25922,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:20.714Z","sequence":25923,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD362B720745F9] for gateway [D2E2D2826808]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:20.719Z","sequence":25924,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:20.719Z","sequence":25925,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:21.049Z","sequence":25926,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-27a9bbc8-f615-4f9e-bca6-87ffd2de6a70, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:23.775Z","sequence":25927,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/repsol:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:23.775Z","sequence":25928,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: repsol, device-id: 0008004A37FF]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:23.796Z","sequence":25929,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-24d4fd07-c88a-41fd-9a7d-42db1298f82e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:23.799Z","sequence":25930,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:23.799Z","sequence":25931,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: repsol]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:23.804Z","sequence":25932,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-f3008ecd-2360-4c78-ac90-d83e226b20ea, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:34.687Z","sequence":25933,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFD362B720745F9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"653dd09d6409fcdd","parentId":"7523b48d602aceb3","traceId":"00000000000000002638fae73528fb3a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:34.705Z","sequence":25934,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFD362B720745F9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"653dd09d6409fcdd","parentId":"7523b48d602aceb3","traceId":"00000000000000002638fae73528fb3a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:35.124Z","sequence":25935,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: D2E2D2826808]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f2627ed72b622d34","parentId":"a205e5876d5fb289","traceId":"000000000000000076c145b342eeeaf7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:35.144Z","sequence":25936,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: D2E2D2826808]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f2627ed72b622d34","parentId":"a205e5876d5fb289","traceId":"000000000000000076c145b342eeeaf7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:36.147Z","sequence":25937,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:36.147Z","sequence":25938,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB1000B26] for gateway [0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:36.157Z","sequence":25939,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:36.157Z","sequence":25940,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:36.161Z","sequence":25941,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-53c12e7c-76e1-4b22-a961-028e18dd9323, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:41.15Z","sequence":25942,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:41.15Z","sequence":25943,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AFF] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:41.156Z","sequence":25944,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:41.157Z","sequence":25945,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:41.168Z","sequence":25946,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-fa6c66ce-fa6d-42b0-bb4f-1d4d990e393c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:45.571Z","sequence":25947,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:45.574Z","sequence":25948,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AE7] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:45.58Z","sequence":25949,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:45.58Z","sequence":25950,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:45.586Z","sequence":25951,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-22a20700-eacf-4c53-8b50-b3ca226ab9ff, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:45.973Z","sequence":25952,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:45.973Z","sequence":25953,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001B0D] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:45.993Z","sequence":25954,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:45.993Z","sequence":25955,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:46.017Z","sequence":25956,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3d45c236-4f58-43af-ac7c-56beafaa65f2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:47.124Z","sequence":25957,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:47.124Z","sequence":25958,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 0008004B51D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:47.137Z","sequence":25959,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6cf8feb5-8408-40ce-b3af-853acf373d4d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:47.141Z","sequence":25960,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:47.141Z","sequence":25961,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: dow]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:47.144Z","sequence":25962,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-a3eecd06-875b-407e-9512-ed6575ff5096, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:48.082Z","sequence":25963,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:48.082Z","sequence":25964,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B6B] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:48.089Z","sequence":25965,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:48.089Z","sequence":25966,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:48.095Z","sequence":25967,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d73ee455-a912-4672-962e-13bad81bb1d6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:52.348Z","sequence":25968,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:52.348Z","sequence":25969,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001B0A] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:52.356Z","sequence":25970,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:52.357Z","sequence":25971,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:52.363Z","sequence":25972,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0c81c23c-4156-4f66-9fe1-b0e777cfcfaa, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:58.098Z","sequence":25973,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:58.098Z","sequence":25974,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AE4] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:58.11Z","sequence":25975,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:58.11Z","sequence":25976,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:58.12Z","sequence":25977,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-617acd1b-b492-47cd-83ee-c9f9b5307697, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:58.999Z","sequence":25978,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:58.999Z","sequence":25979,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: flint]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:59.003Z","sequence":25980,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-8bc5d45e-fb69-4e40-8db7-0f451d75e39c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:59.005Z","sequence":25981,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/flint:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:59.005Z","sequence":25982,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: flint, type: hashed-password, auth-id: auth-flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:59.016Z","sequence":25983,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-181993e3-32db-4dbd-898a-be1e03d4fe6c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:59.137Z","sequence":25984,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:59.137Z","sequence":25985,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10009CF] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:59.143Z","sequence":25986,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:59.143Z","sequence":25987,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:29:59.147Z","sequence":25988,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-09a4c6eb-36f9-48d0-ae9f-95fbc5772a8b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:30:00.345Z","sequence":25989,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:30:00.345Z","sequence":25990,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: lanxess]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:30:00.349Z","sequence":25991,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-eb54a383-dfd0-45ba-a979-92af162b34ae, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:30:00.353Z","sequence":25992,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:30:00.353Z","sequence":25993,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 70B3D57BB10001B5] for gateway [0008004BB84C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:30:00.359Z","sequence":25994,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_lanxess\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:30:00.359Z","sequence":25995,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_lanxess\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:30:00.363Z","sequence":25996,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e8f7ec53-83ef-4f3f-9d32-619816c4fa18, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:30:00.565Z","sequence":25997,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:30:00.565Z","sequence":25998,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000567] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:30:00.585Z","sequence":25999,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:30:00.585Z","sequence":26000,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:30:00.593Z","sequence":26001,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ebdec025-90fa-4ee0-a772-4761e7411257, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:30:04.731Z","sequence":26002,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:30:04.731Z","sequence":26003,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100193D] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:30:04.737Z","sequence":26004,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:30:04.737Z","sequence":26005,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:30:04.743Z","sequence":26006,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8ef8ebdc-6e4c-4a1d-aa3b-512cb58ec68a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:30:04.896Z","sequence":26007,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:30:04.896Z","sequence":26008,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B5A] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:30:04.903Z","sequence":26009,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:30:04.904Z","sequence":26010,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:30:04.911Z","sequence":26011,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-70edf8e8-c7a1-4708-9c55-af3c7978df74, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:30:09.595Z","sequence":26012,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:30:09.595Z","sequence":26013,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000F86] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:30:09.601Z","sequence":26014,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:30:09.602Z","sequence":26015,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:30:09.609Z","sequence":26016,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-fd135ea5-0622-4cd6-9b35-9ad1a91af099, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:30:13.596Z","sequence":26017,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:30:13.596Z","sequence":26018,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: shell]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:30:13.6Z","sequence":26019,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-5b92e907-1f4f-4fa6-a748-6bf2c942af5b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:30:13.723Z","sequence":26020,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:30:13.723Z","sequence":26021,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AE3] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:30:13.732Z","sequence":26022,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:30:13.732Z","sequence":26023,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:30:13.74Z","sequence":26024,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2a01552d-31d9-41a7-a2c0-180500242aa4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:30:21.426Z","sequence":26025,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/conditionall:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:30:21.426Z","sequence":26026,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: conditionall, device-id: 0008004B512D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:30:21.432Z","sequence":26027,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-834e7b56-ddd9-4ef6-8faf-188331ac288c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:30:21.435Z","sequence":26028,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:30:21.435Z","sequence":26029,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: conditionall]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:30:21.439Z","sequence":26030,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-6f895b90-ff58-49a8-af79-d97e3af13525, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:30:23.061Z","sequence":26031,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:30:23.061Z","sequence":26032,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AE8] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:30:23.066Z","sequence":26033,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:30:23.066Z","sequence":26034,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:30:23.073Z","sequence":26035,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6760508b-9b79-49fa-b5b4-c502f88215a8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:30:24.005Z","sequence":26036,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:30:24.005Z","sequence":26037,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 70B3D57BB100017F] for gateway [0008004BB84C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:30:24.012Z","sequence":26038,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_lanxess\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:30:24.013Z","sequence":26039,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_lanxess\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:30:24.016Z","sequence":26040,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-64ab6b51-4f4f-4f4b-a90d-b2f0464bd44f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:30:29.164Z","sequence":26041,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:30:29.164Z","sequence":26042,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B51] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:30:29.17Z","sequence":26043,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:30:29.17Z","sequence":26044,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:30:29.177Z","sequence":26045,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2e4a5856-898a-4479-9ccb-f6a6e5e008f8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:30:30.667Z","sequence":26046,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:30:30.667Z","sequence":26047,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oci]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:30:30.671Z","sequence":26048,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-6f1eb02d-7d20-42f1-9017-c0942b63ae2c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:30:31.065Z","sequence":26049,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:30:31.065Z","sequence":26050,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10001D5] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:30:31.07Z","sequence":26051,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:0.4.1\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:30:31.07Z","sequence":26052,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:30:31.076Z","sequence":26053,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-aa356b21-5eb1-46c1-996f-652c4bfe91c4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:30:33.621Z","sequence":26054,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:30:33.622Z","sequence":26055,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A6F] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:30:33.627Z","sequence":26056,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:30:33.627Z","sequence":26057,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:30:33.633Z","sequence":26058,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c2a9918e-1727-4b7f-9281-22e7b85556b2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:30:34.515Z","sequence":26059,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:30:34.515Z","sequence":26060,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AA9] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:30:34.521Z","sequence":26061,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:30:34.521Z","sequence":26062,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:30:34.526Z","sequence":26063,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0a3291d5-f425-4942-aa7a-cfb4931405cc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:30:41.476Z","sequence":26064,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:30:41.476Z","sequence":26065,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100068B] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:30:41.482Z","sequence":26066,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:30:41.482Z","sequence":26067,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:30:41.489Z","sequence":26068,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f2769b50-05f6-4f8b-9491-f475e0d1abe1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:30:43.369Z","sequence":26069,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:30:43.369Z","sequence":26070,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB100089D] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:30:43.384Z","sequence":26071,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:30:43.384Z","sequence":26072,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:30:43.393Z","sequence":26073,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4e06ed97-87b6-4738-803b-037e706e6c4f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:30:44.404Z","sequence":26074,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/shell:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:30:44.405Z","sequence":26075,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: shell, type: hashed-password, auth-id: auth-gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:30:44.417Z","sequence":26076,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-3eeee0a1-96d5-4053-9780-3f3608eb27f9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:30:58.381Z","sequence":26077,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:30:58.382Z","sequence":26078,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BB84C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:30:58.389Z","sequence":26079,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3069aa10-06dc-4621-97aa-e18210c8b215, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:30:59.974Z","sequence":26080,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:30:59.974Z","sequence":26081,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 0008004B5135]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:00.001Z","sequence":26082,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-01b81d50-01eb-4716-a8cd-f85342eb2971, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:02.535Z","sequence":26083,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:02.535Z","sequence":26084,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001B00] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:02.541Z","sequence":26085,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:02.541Z","sequence":26086,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:02.547Z","sequence":26087,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5d6f83e3-edbc-4447-9157-4a0454ae72a1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:03.78Z","sequence":26088,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:03.781Z","sequence":26089,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BBD1B]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:03.786Z","sequence":26090,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ea278e3d-3065-4920-bc3e-57737a300610, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:04.41Z","sequence":26091,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191207]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d3d6a8a746813c0d","parentId":"a5e16dc145bf4334","traceId":"0000000000000000a4deaa3b39f7e24b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:04.443Z","sequence":26092,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191207, resource-version: 08eecde9-0dd3-4e91-8d9a-f53e9fe60399]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d3d6a8a746813c0d","parentId":"a5e16dc145bf4334","traceId":"0000000000000000a4deaa3b39f7e24b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:04.451Z","sequence":26093,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191207, resource-version: 7f618a73-0a53-4557-8da3-97714dcfdeab]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d3d6a8a746813c0d","parentId":"a5e16dc145bf4334","traceId":"0000000000000000a4deaa3b39f7e24b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:04.454Z","sequence":26094,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191207]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9283eff3466dd85c","parentId":"9edfae7e184827ed","traceId":"0000000000000000a4deaa3b39f7e24b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:04.607Z","sequence":26095,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191207]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9283eff3466dd85c","parentId":"9edfae7e184827ed","traceId":"0000000000000000a4deaa3b39f7e24b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:05.531Z","sequence":26096,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF4534BAF7767A3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7886e8c040a2c569","parentId":"6c4be956ae2ab8a5","traceId":"00000000000000001174c30ec4371fe4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:05.548Z","sequence":26097,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF4534BAF7767A3, resource-version: 41f531e5-2f4d-47cc-b184-c4cc96c2fb8d]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7886e8c040a2c569","parentId":"6c4be956ae2ab8a5","traceId":"00000000000000001174c30ec4371fe4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:05.555Z","sequence":26098,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF4534BAF7767A3, resource-version: 53dea2aa-9f0e-4e3d-9c1c-9fe4707b82af]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7886e8c040a2c569","parentId":"6c4be956ae2ab8a5","traceId":"00000000000000001174c30ec4371fe4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:06.645Z","sequence":26099,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:06.645Z","sequence":26100,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:06.648Z","sequence":26101,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-c8d29b2c-d8bb-40b4-8e32-cef6d861a8fd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:06.652Z","sequence":26102,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:06.653Z","sequence":26103,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191207]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:06.669Z","sequence":26104,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-e57693c2-584f-4f74-93d3-350dbdaa8963, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:06.883Z","sequence":26105,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:06.883Z","sequence":26106,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000811] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:06.889Z","sequence":26107,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:06.889Z","sequence":26108,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:06.894Z","sequence":26109,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:06.894Z","sequence":26110,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF4534BAF7767A3] for gateway [gateway_integrationtest_network_191207]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:06.895Z","sequence":26111,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-718f1d3f-0613-46d8-bb46-eaefa45e92ea, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:06.895Z","sequence":26112,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:06.895Z","sequence":26113,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191207]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:06.9Z","sequence":26114,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:06.901Z","sequence":26115,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:06.901Z","sequence":26116,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-573b96ba-aca1-4d1b-8b9d-3ecc0edc361c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:07.231Z","sequence":26117,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2559400c-d39e-4384-a4fe-3af46285a500, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:10.905Z","sequence":26118,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/arkema:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:10.905Z","sequence":26119,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: arkema, device-id: 0008004AE119]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:10.911Z","sequence":26120,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-52fa28a4-76a0-415c-b6fb-7e2aaef04973, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:10.924Z","sequence":26121,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:10.924Z","sequence":26122,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: arkema]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:10.927Z","sequence":26123,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-66eaabeb-a1a4-433d-b927-ff26a9e53711, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:13.374Z","sequence":26124,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:13.374Z","sequence":26125,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10009E3] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:13.384Z","sequence":26126,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:13.385Z","sequence":26127,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:13.389Z","sequence":26128,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-50a724b2-bd82-4d12-9557-70507627a9b0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:17.692Z","sequence":26129,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF4534BAF7767A3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d63a3da7a5f7383a","parentId":"0c06b2c99723e607","traceId":"0000000000000000dfe2b7cb7a680201","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:17.711Z","sequence":26130,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF4534BAF7767A3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d63a3da7a5f7383a","parentId":"0c06b2c99723e607","traceId":"0000000000000000dfe2b7cb7a680201","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:17.975Z","sequence":26131,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191207]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7c172572ec6afc33","parentId":"2432ffeb82686846","traceId":"000000000000000059dcb6bbe9f7722b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:17.991Z","sequence":26132,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191207]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7c172572ec6afc33","parentId":"2432ffeb82686846","traceId":"000000000000000059dcb6bbe9f7722b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:18.541Z","sequence":26133,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 5A3BE28F7CB7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0378daa64783eb22","parentId":"ce569e52cfd45625","traceId":"000000000000000091a3ae229752e967","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:18.562Z","sequence":26134,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 5A3BE28F7CB7, resource-version: 2b523c27-5b9d-4008-a721-e03309ea8455]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0378daa64783eb22","parentId":"ce569e52cfd45625","traceId":"000000000000000091a3ae229752e967","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:18.567Z","sequence":26135,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 5A3BE28F7CB7, resource-version: 19636608-9773-4199-b313-d30d566d8b57]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0378daa64783eb22","parentId":"ce569e52cfd45625","traceId":"000000000000000091a3ae229752e967","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:18.576Z","sequence":26136,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 5A3BE28F7CB7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"467665bfbb298c95","parentId":"2456ac7c57741053","traceId":"000000000000000091a3ae229752e967","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:18.699Z","sequence":26137,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 5A3BE28F7CB7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"467665bfbb298c95","parentId":"2456ac7c57741053","traceId":"000000000000000091a3ae229752e967","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:19.166Z","sequence":26138,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF83E1AF4E3CED7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1b72792cd73a471a","parentId":"98a6fae4353f94ca","traceId":"00000000000000009c77f446f259dc59","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:19.187Z","sequence":26139,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF83E1AF4E3CED7, resource-version: 178633ad-a99d-4694-9be1-3834062e3871]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1b72792cd73a471a","parentId":"98a6fae4353f94ca","traceId":"00000000000000009c77f446f259dc59","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:19.195Z","sequence":26140,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF83E1AF4E3CED7, resource-version: 80fb5baf-f8b6-4d71-a104-2a8ed4cc9234]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1b72792cd73a471a","parentId":"98a6fae4353f94ca","traceId":"00000000000000009c77f446f259dc59","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:20.246Z","sequence":26141,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:20.246Z","sequence":26142,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:20.249Z","sequence":26143,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-49ad8236-2b24-4ebb-b726-48a9efe31be5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:20.25Z","sequence":26144,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:20.251Z","sequence":26145,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB100082F] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:20.253Z","sequence":26146,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:20.254Z","sequence":26147,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-5A3BE28F7CB7]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:20.259Z","sequence":26148,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:20.259Z","sequence":26149,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:20.263Z","sequence":26150,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-af97a460-71b0-40c6-bac3-e852591b2ed3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:20.266Z","sequence":26151,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-c833d56c-792e-4f37-b4f7-fe3dffa1d731, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:20.395Z","sequence":26152,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:20.395Z","sequence":26153,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 5A3BE28F7CB7]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:20.401Z","sequence":26154,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b722485f-7f9d-4b74-a999-8eb95f1efd2e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:20.405Z","sequence":26155,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:20.405Z","sequence":26156,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF83E1AF4E3CED7] for gateway [5A3BE28F7CB7]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:20.419Z","sequence":26157,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:20.419Z","sequence":26158,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:20.781Z","sequence":26159,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7ce1f39f-7ef3-4028-afca-b1936a82d9d2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:26.58Z","sequence":26160,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:26.58Z","sequence":26161,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000A9D] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:26.581Z","sequence":26162,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:26.581Z","sequence":26163,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:26.586Z","sequence":26164,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4e011b15-cc9b-4d68-9f9c-9a7717498032, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:26.587Z","sequence":26165,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:26.587Z","sequence":26166,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:26.593Z","sequence":26167,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8f8aed00-b9ce-4af6-a7d5-e8ea22800ddf, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:28.03Z","sequence":26168,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:28.03Z","sequence":26169,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AB5] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:28.035Z","sequence":26170,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:28.035Z","sequence":26171,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:28.041Z","sequence":26172,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6026308a-fe77-4806-9b54-9c08e5588969, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:29.979Z","sequence":26173,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:29.979Z","sequence":26174,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10001FE] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:29.985Z","sequence":26175,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:29.985Z","sequence":26176,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:29.992Z","sequence":26177,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2e8572a3-8cc1-41d3-bf23-4f5ac209f20c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:33.211Z","sequence":26178,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF83E1AF4E3CED7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cbe920ce48e6d11c","parentId":"ad319c7a1fd90d20","traceId":"0000000000000000240054932c1a1233","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:33.231Z","sequence":26179,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF83E1AF4E3CED7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cbe920ce48e6d11c","parentId":"ad319c7a1fd90d20","traceId":"0000000000000000240054932c1a1233","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:33.544Z","sequence":26180,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 5A3BE28F7CB7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9f81468303ffe4eb","parentId":"469bc203559ac898","traceId":"000000000000000040c93885fd0c305d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:33.562Z","sequence":26181,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 5A3BE28F7CB7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9f81468303ffe4eb","parentId":"469bc203559ac898","traceId":"000000000000000040c93885fd0c305d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:39.294Z","sequence":26182,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/acta:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:39.294Z","sequence":26183,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: acta, device-id: 3534383400470039] for gateway [0008004AAAA3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:39.3Z","sequence":26184,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.3.0\"\n },\n \"viaGroups\" : [ \"gateways_acta\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:39.3Z","sequence":26185,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_acta\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:39.303Z","sequence":26186,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a1af2fbc-bb35-4df8-a93c-310600c28b76, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:45.698Z","sequence":26187,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:45.699Z","sequence":26188,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B53] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:45.704Z","sequence":26189,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:45.704Z","sequence":26190,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:45.71Z","sequence":26191,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-677ae1dc-ffbf-45fa-bec3-18d8cdcfdb92, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:47.072Z","sequence":26192,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/acta:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:47.072Z","sequence":26193,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: acta, device-id: 35363335003A0032] for gateway [0008004AAAA3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:47.079Z","sequence":26194,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_acta\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:47.079Z","sequence":26195,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_acta\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:47.082Z","sequence":26196,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1aba57ed-8c47-4e01-b166-ef3cc4600e7a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:48.383Z","sequence":26197,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:48.383Z","sequence":26198,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000848] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:48.389Z","sequence":26199,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:48.389Z","sequence":26200,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:48.392Z","sequence":26201,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-48a57219-5e3f-407c-b642-ff83df35fc54, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:53.373Z","sequence":26202,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:53.373Z","sequence":26203,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:53.38Z","sequence":26204,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3722b255-f23c-476c-99b7-922a4fe0baec, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:53.895Z","sequence":26205,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/conditionall:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:53.895Z","sequence":26206,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: conditionall, device-id: 70B3D57BB1000226] for gateway [0008004B512D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:53.902Z","sequence":26207,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_conditionall\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:53.902Z","sequence":26208,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_conditionall\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:31:53.905Z","sequence":26209,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d0ecf13a-6783-47d5-b0b6-ca0fa61d121e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:32:00.773Z","sequence":26210,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:32:00.773Z","sequence":26211,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BBD1C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:32:00.78Z","sequence":26212,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-272cefa2-522a-4b52-94a6-92be9489e5db, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:32:02.166Z","sequence":26213,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:32:02.166Z","sequence":26214,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001E1] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:32:02.172Z","sequence":26215,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:32:02.172Z","sequence":26216,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:32:02.176Z","sequence":26217,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6abb87fc-5fb8-49b2-8ad2-d10a434e7985, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:32:02.292Z","sequence":26218,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:32:02.293Z","sequence":26219,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001E1] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:32:02.312Z","sequence":26220,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:32:02.313Z","sequence":26221,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:32:02.321Z","sequence":26222,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d3fc04a6-abb7-4411-b48e-c05dabbddd69, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:32:05.621Z","sequence":26223,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:32:05.621Z","sequence":26224,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019F3] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:32:05.627Z","sequence":26225,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:32:05.628Z","sequence":26226,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:32:05.634Z","sequence":26227,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-62b64ca2-991c-45a9-96e4-3aa3c9601cf4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:32:16.755Z","sequence":26228,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:32:16.755Z","sequence":26229,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: ineos]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:32:16.759Z","sequence":26230,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-7376a0c0-6012-43ad-8ada-12705bad73bc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:32:16.761Z","sequence":26231,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:32:16.761Z","sequence":26232,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB1000A91] for gateway [0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:32:16.768Z","sequence":26233,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:32:16.768Z","sequence":26234,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:32:16.772Z","sequence":26235,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a719182a-e636-4a97-bac1-4003417c8e17, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:32:19.905Z","sequence":26236,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:32:19.905Z","sequence":26237,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100016B] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:32:19.91Z","sequence":26238,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:32:19.91Z","sequence":26239,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:32:19.914Z","sequence":26240,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-59964c5d-c90c-49cc-8b30-71de258f96cb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:32:20.024Z","sequence":26241,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:32:20.024Z","sequence":26242,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100016B] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:32:20.03Z","sequence":26243,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:32:20.03Z","sequence":26244,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:32:20.032Z","sequence":26245,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3af00e38-f88e-43be-8cfb-96f1505e6d29, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:32:21.013Z","sequence":26246,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:32:21.013Z","sequence":26247,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B67] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:32:21.02Z","sequence":26248,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:32:21.02Z","sequence":26249,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:32:21.027Z","sequence":26250,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6fb7281b-7786-4450-92ef-b73a6dbd0cdb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:32:21.505Z","sequence":26251,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:32:21.505Z","sequence":26252,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: terega]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:32:21.509Z","sequence":26253,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-c3e24e08-146d-461a-9026-d6c59a80ede4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:32:21.511Z","sequence":26254,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/terega:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:32:21.511Z","sequence":26255,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: terega, type: hashed-password, auth-id: auth-gateway_terega_network_27]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:32:21.52Z","sequence":26256,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-818a8ea7-fabd-43a9-870c-105baa744a0a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:32:21.636Z","sequence":26257,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/terega:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:32:21.637Z","sequence":26258,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: terega, device-id: 70B3D57BB1000091] for gateway [gateway_terega_network_27]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:32:21.637Z","sequence":26259,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/terega:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:32:21.638Z","sequence":26260,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: terega, device-id: gateway_terega_network_27]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:32:21.642Z","sequence":26261,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_terega\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:32:21.642Z","sequence":26262,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_terega\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:32:21.643Z","sequence":26263,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-cbfbd4bd-4c4e-4a76-88c8-9e6bdff6704a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:32:21.645Z","sequence":26264,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3d04df55-1b48-4d06-bb9d-5d38d2019a20, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:32:24.061Z","sequence":26265,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:32:24.061Z","sequence":26266,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 0008004C80F4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:32:24.068Z","sequence":26267,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-701683db-7f03-4388-b1e4-554d6c9d423e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:32:24.861Z","sequence":26268,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:32:24.861Z","sequence":26269,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001915] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:32:24.867Z","sequence":26270,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:32:24.867Z","sequence":26271,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:32:24.873Z","sequence":26272,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-63f9ea08-1907-4fad-b8cd-c7be1fdd78ef, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:32:27.832Z","sequence":26273,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:32:27.832Z","sequence":26274,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006A3] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:32:27.838Z","sequence":26275,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:32:27.838Z","sequence":26276,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:32:27.844Z","sequence":26277,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-433965e0-a7a0-4afe-b2b8-0d11c8165960, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:32:29.041Z","sequence":26278,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:32:29.041Z","sequence":26279,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10008A3] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:32:29.048Z","sequence":26280,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:32:29.048Z","sequence":26281,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:32:29.052Z","sequence":26282,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2baa1a5d-0749-481b-b2b2-8b77aec7a318, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:32:29.383Z","sequence":26283,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:32:29.384Z","sequence":26284,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AE2] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:32:29.39Z","sequence":26285,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:32:29.39Z","sequence":26286,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:32:29.397Z","sequence":26287,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e5464349-a161-426e-ad82-3006b82e075a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:32:33.863Z","sequence":26288,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:32:33.863Z","sequence":26289,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A04] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:32:33.87Z","sequence":26290,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:32:33.87Z","sequence":26291,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:32:33.877Z","sequence":26292,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-62280c64-55ca-4acc-8e5a-5a4f41fd5e49, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:32:39.369Z","sequence":26293,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oiltanking:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:32:39.369Z","sequence":26294,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oiltanking, device-id: 0008004BB60F]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:32:39.376Z","sequence":26295,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-edaccc7c-7243-48fe-8158-fa3bb3ab17cd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:32:39.379Z","sequence":26296,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:32:39.379Z","sequence":26297,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oiltanking]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:32:39.382Z","sequence":26298,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-a2983b1d-5fd5-466b-ae47-e9976e13345c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:32:59.558Z","sequence":26299,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:32:59.558Z","sequence":26300,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001900] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:32:59.564Z","sequence":26301,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:32:59.564Z","sequence":26302,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:32:59.57Z","sequence":26303,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d9b17120-c993-4042-be3e-c45a4a01a33c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:03.889Z","sequence":26304,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:03.889Z","sequence":26305,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000516] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:03.898Z","sequence":26306,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:03.898Z","sequence":26307,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:03.906Z","sequence":26308,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ac2088b0-c2ea-43cf-a137-30ce4c587624, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:04.23Z","sequence":26309,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191209]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6446030bce3f25a3","parentId":"0965948aa320c3b6","traceId":"0000000000000000c79bfa5b478dfb19","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:04.261Z","sequence":26310,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191209, resource-version: 1ee27133-56bb-4ed8-8b31-132ba911b30c]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6446030bce3f25a3","parentId":"0965948aa320c3b6","traceId":"0000000000000000c79bfa5b478dfb19","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:04.271Z","sequence":26311,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191209, resource-version: a1a7a2b0-78c0-41e7-b7e6-5c224405837a]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6446030bce3f25a3","parentId":"0965948aa320c3b6","traceId":"0000000000000000c79bfa5b478dfb19","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:04.277Z","sequence":26312,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191209]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"23b42470fdcb0ee0","parentId":"e4c90269028dee8f","traceId":"0000000000000000c79bfa5b478dfb19","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:04.527Z","sequence":26313,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191209]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"23b42470fdcb0ee0","parentId":"e4c90269028dee8f","traceId":"0000000000000000c79bfa5b478dfb19","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:05.346Z","sequence":26314,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFED654920827F1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9582ea9beefaafc2","parentId":"172823142193b7d7","traceId":"000000000000000037f18bc92d8b2b85","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:05.369Z","sequence":26315,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFED654920827F1, resource-version: 759329e1-b3ba-42f8-83f9-6fc68ea5810e]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9582ea9beefaafc2","parentId":"172823142193b7d7","traceId":"000000000000000037f18bc92d8b2b85","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:05.379Z","sequence":26316,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFED654920827F1, resource-version: 1301d1a9-8ba8-4c87-a2c5-2a4a4ec8dcc1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9582ea9beefaafc2","parentId":"172823142193b7d7","traceId":"000000000000000037f18bc92d8b2b85","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:06.459Z","sequence":26317,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:06.459Z","sequence":26318,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191209]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:06.474Z","sequence":26319,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-a0e54b2c-add0-4a2d-8c3e-203f33907470, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:06.594Z","sequence":26320,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:06.594Z","sequence":26321,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFED654920827F1] for gateway [gateway_integrationtest_network_191209]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:06.595Z","sequence":26322,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:06.595Z","sequence":26323,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191209]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:06.599Z","sequence":26324,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:06.599Z","sequence":26325,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:06.6Z","sequence":26326,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d94e5ee6-a590-4a0d-a5b7-0191c729aa85, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:06.95Z","sequence":26327,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7563ac1f-b557-4f15-973a-365a68d07f7d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:07.328Z","sequence":26328,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:07.329Z","sequence":26329,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10018FC] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:07.337Z","sequence":26330,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:07.337Z","sequence":26331,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:07.345Z","sequence":26332,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-73069505-410d-4427-9973-506074838a3c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:13.81Z","sequence":26333,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:13.81Z","sequence":26334,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001FD] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:13.817Z","sequence":26335,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:13.817Z","sequence":26336,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:13.82Z","sequence":26337,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7977057b-eed4-4619-80d3-e4a668dd200b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:13.829Z","sequence":26338,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:13.829Z","sequence":26339,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001FD] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:13.834Z","sequence":26340,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:13.834Z","sequence":26341,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:13.837Z","sequence":26342,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b2207921-28ae-420b-97b2-ea02f269c9d4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:17.144Z","sequence":26343,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono service-command-router-Tenant-8c258f6d-8b57-47cf-8f84-a38d9786fed2] wants to open a link [address: Source{address='tenant/e61c1d2a-09ce-42f3-97c3-b060ae675355', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:17.144Z","sequence":26344,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-0]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:17.145Z","sequence":26345,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@494a32a0] for replies to [tenant/e61c1d2a-09ce-42f3-97c3-b060ae675355]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:17.147Z","sequence":26346,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono service-command-router-Tenant-8c258f6d-8b57-47cf-8f84-a38d9786fed2] wants to open a link [address: Target{address='tenant', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:17.147Z","sequence":26347,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-1]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:17.147Z","sequence":26348,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:17.149Z","sequence":26349,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [command-router@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:17.149Z","sequence":26350,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oiltanking]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:17.152Z","sequence":26351,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-3e84ffd5-532e-4fcd-ac8a-4017cb1213b4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:17.155Z","sequence":26352,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [command-router@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:17.155Z","sequence":26353,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: lanxess]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:17.158Z","sequence":26354,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-f8b81fed-08bf-4086-8299-79efd1caae87, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:17.16Z","sequence":26355,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [command-router@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:17.161Z","sequence":26356,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: ineos]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:17.164Z","sequence":26357,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-b1627b20-2f38-4c58-8cf8-ee65976a242d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:17.166Z","sequence":26358,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [command-router@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:17.166Z","sequence":26359,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: aloxy]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:17.17Z","sequence":26360,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-8fa43976-7c68-4b34-b55f-931e9a81dfc7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:17.172Z","sequence":26361,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [command-router@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:17.172Z","sequence":26362,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: dow]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:17.176Z","sequence":26363,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-16679300-4b1f-49a3-9e96-78da16b81d23, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:17.179Z","sequence":26364,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [command-router@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:17.179Z","sequence":26365,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: acta]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:17.182Z","sequence":26366,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-0a7e6ded-35a3-4aa0-be3b-6f509239b7c6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:17.184Z","sequence":26367,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [command-router@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:17.185Z","sequence":26368,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: arkema]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:17.187Z","sequence":26369,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-dd9b8984-32ab-44e8-80d1-72f6fd66eb09, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:17.351Z","sequence":26370,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/aloxy:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:17.352Z","sequence":26371,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: aloxy, device-id: 0008004A8F68]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:17.357Z","sequence":26372,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-008da1e6-3032-44c0-a37c-0e4a6151de3e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:17.36Z","sequence":26373,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:17.36Z","sequence":26374,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: aloxy]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:17.363Z","sequence":26375,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-1f677e98-163e-4e0e-b450-bf16bfa556f2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:19.614Z","sequence":26376,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFED654920827F1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b095f812ed916945","parentId":"726e6b66c73ab874","traceId":"0000000000000000d4ec4249d0b4b6c9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:19.632Z","sequence":26377,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFED654920827F1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b095f812ed916945","parentId":"726e6b66c73ab874","traceId":"0000000000000000d4ec4249d0b4b6c9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:19.768Z","sequence":26378,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191209]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"84adbe295efe3e35","parentId":"59e7b0db8f4885f7","traceId":"000000000000000065da60d69b4a2676","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:19.787Z","sequence":26379,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191209]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"84adbe295efe3e35","parentId":"59e7b0db8f4885f7","traceId":"000000000000000065da60d69b4a2676","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:20.237Z","sequence":26380,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: F7D812923D55]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d14ad68a38a3b098","parentId":"22cffe21b0b19387","traceId":"00000000000000007e0d8dab948a1d9e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:20.254Z","sequence":26381,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: F7D812923D55, resource-version: f8e2c4a8-b94e-44fd-91ef-d623238625fc]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d14ad68a38a3b098","parentId":"22cffe21b0b19387","traceId":"00000000000000007e0d8dab948a1d9e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:20.26Z","sequence":26382,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: F7D812923D55, resource-version: eea0153a-1268-4146-b71c-8da01a9b26c1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d14ad68a38a3b098","parentId":"22cffe21b0b19387","traceId":"00000000000000007e0d8dab948a1d9e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:20.264Z","sequence":26383,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: F7D812923D55]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9ca148a165cbd357","parentId":"01bb9b8c11140cc6","traceId":"00000000000000007e0d8dab948a1d9e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:20.39Z","sequence":26384,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: F7D812923D55]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9ca148a165cbd357","parentId":"01bb9b8c11140cc6","traceId":"00000000000000007e0d8dab948a1d9e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:20.796Z","sequence":26385,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF196BE49AF1303]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d6bb11af08c5f3c8","parentId":"b7ba6edd325110ce","traceId":"000000000000000098700b1dd95afc87","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:20.813Z","sequence":26386,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF196BE49AF1303, resource-version: c121dc61-a0dd-4f8d-a5de-a465f38aa1cc]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d6bb11af08c5f3c8","parentId":"b7ba6edd325110ce","traceId":"000000000000000098700b1dd95afc87","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:20.822Z","sequence":26387,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF196BE49AF1303, resource-version: 43aaebe9-64e6-4268-b23d-e6aab0ba3941]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d6bb11af08c5f3c8","parentId":"b7ba6edd325110ce","traceId":"000000000000000098700b1dd95afc87","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:21.874Z","sequence":26388,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:21.874Z","sequence":26389,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-F7D812923D55]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:21.885Z","sequence":26390,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-55d16a09-d55c-48e9-bb33-84afe3f53b6c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:22.003Z","sequence":26391,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:22.004Z","sequence":26392,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: F7D812923D55]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:22.009Z","sequence":26393,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9cc26432-a783-43ec-a71f-e6fb9b7c62db, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:22.015Z","sequence":26394,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:22.015Z","sequence":26395,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF196BE49AF1303] for gateway [F7D812923D55]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:22.02Z","sequence":26396,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:22.02Z","sequence":26397,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:22.242Z","sequence":26398,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2341cbc9-cfcb-4e80-82c2-7dd3dcc4f70a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:22.644Z","sequence":26399,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:22.644Z","sequence":26400,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: shell]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:22.647Z","sequence":26401,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-01661954-e74f-4223-bc7a-053ee06630e4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:22.77Z","sequence":26402,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:22.77Z","sequence":26403,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10018FD] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:22.784Z","sequence":26404,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:22.784Z","sequence":26405,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:22.79Z","sequence":26406,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-66624dcf-5859-43c0-bcb7-d119930090f2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:24.345Z","sequence":26407,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:24.345Z","sequence":26408,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000214] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:24.351Z","sequence":26409,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:24.351Z","sequence":26410,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:24.354Z","sequence":26411,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4a384e2f-d4f6-4119-8bb7-22eb1d098657, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:24.445Z","sequence":26412,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:24.445Z","sequence":26413,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000214] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:24.451Z","sequence":26414,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:24.451Z","sequence":26415,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:24.454Z","sequence":26416,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a35e31f5-88c2-4a65-b5dd-7c456e371a7a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:25.305Z","sequence":26417,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:25.305Z","sequence":26418,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A0D] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:25.312Z","sequence":26419,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:25.312Z","sequence":26420,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:25.318Z","sequence":26421,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8bda4dc4-90f5-469f-9e03-9de66708e0d5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:28.113Z","sequence":26422,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:28.113Z","sequence":26423,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10018FF] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:28.119Z","sequence":26424,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:28.119Z","sequence":26425,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:28.127Z","sequence":26426,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8a7650d8-bd61-431e-a8ad-eee70cec1bb0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:29.138Z","sequence":26427,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:29.138Z","sequence":26428,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019ED] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:29.143Z","sequence":26429,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:29.143Z","sequence":26430,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:29.149Z","sequence":26431,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-baa3acae-6f2d-41cb-bed3-220b7f61d5b3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:32.715Z","sequence":26432,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:32.715Z","sequence":26433,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BB613]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:32.722Z","sequence":26434,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-515b9dd5-1be3-4853-86c5-5a41b625f8ef, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:32.725Z","sequence":26435,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:32.725Z","sequence":26436,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: lanxess]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:32.728Z","sequence":26437,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-b165f4b3-b385-4034-bf79-600133e857b4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:32.741Z","sequence":26438,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:32.741Z","sequence":26439,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001912] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:32.746Z","sequence":26440,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:32.746Z","sequence":26441,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:32.752Z","sequence":26442,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-75816433-0894-46dc-a3e8-b6ca579055b9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:33.763Z","sequence":26443,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:33.763Z","sequence":26444,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100191D] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:33.769Z","sequence":26445,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:33.77Z","sequence":26446,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:33.776Z","sequence":26447,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a37adb2a-2744-4b92-9255-a8073af5a51f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:35.109Z","sequence":26448,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF196BE49AF1303]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7d12ea580b9e059d","parentId":"f0a4a2127957323b","traceId":"000000000000000059c7e460ca3df8a3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:35.133Z","sequence":26449,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF196BE49AF1303]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7d12ea580b9e059d","parentId":"f0a4a2127957323b","traceId":"000000000000000059c7e460ca3df8a3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:35.366Z","sequence":26450,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:35.366Z","sequence":26451,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB1000A7A] for gateway [0008004B5135]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:35.371Z","sequence":26452,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:35.371Z","sequence":26453,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:35.374Z","sequence":26454,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3f43e368-8319-43d7-a087-c4b4bc9b39d8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:35.436Z","sequence":26455,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: F7D812923D55]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6415aef4c799dd96","parentId":"6fdf4111fe95ef1e","traceId":"0000000000000000bbcde6478ae41f22","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:35.455Z","sequence":26456,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: F7D812923D55]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6415aef4c799dd96","parentId":"6fdf4111fe95ef1e","traceId":"0000000000000000bbcde6478ae41f22","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:35.646Z","sequence":26457,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:35.646Z","sequence":26458,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oci]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:35.652Z","sequence":26459,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-c2fc9530-88ae-4382-add4-8ba396346685, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:35.654Z","sequence":26460,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:35.654Z","sequence":26461,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000168] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:35.66Z","sequence":26462,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:35.66Z","sequence":26463,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:35.663Z","sequence":26464,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-09e96d9b-e021-4bf6-8a0c-ade3f9e0a43a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:35.766Z","sequence":26465,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:35.766Z","sequence":26466,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000168] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:35.773Z","sequence":26467,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:35.773Z","sequence":26468,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:35.776Z","sequence":26469,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a3f03f4f-9f09-4f6d-961a-16662bc516fe, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:37.493Z","sequence":26470,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:37.493Z","sequence":26471,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006C4] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:37.499Z","sequence":26472,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:37.499Z","sequence":26473,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:37.506Z","sequence":26474,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0c04068f-7542-48a5-9078-4a6b54a69f7a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:38.695Z","sequence":26475,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:38.695Z","sequence":26476,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006C2] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:38.702Z","sequence":26477,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:38.702Z","sequence":26478,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:38.707Z","sequence":26479,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a7f93599-564d-4c66-83ec-ebdcc4b4cc07, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:40.661Z","sequence":26480,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:40.661Z","sequence":26481,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001EA] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:40.668Z","sequence":26482,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:40.668Z","sequence":26483,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:40.671Z","sequence":26484,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7c6e271c-beeb-440d-8461-ae4870c45a8a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:40.691Z","sequence":26485,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:40.691Z","sequence":26486,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001EA] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:40.697Z","sequence":26487,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:40.697Z","sequence":26488,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:40.701Z","sequence":26489,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-11365b36-154a-439c-85d0-bf996ba667b3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:44.541Z","sequence":26490,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/shell:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:44.541Z","sequence":26491,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: shell, type: hashed-password, auth-id: auth-gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:44.552Z","sequence":26492,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-0f51a61f-f516-42a3-a3aa-4a058e27f125, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:44.69Z","sequence":26493,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:44.69Z","sequence":26494,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019FF] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:44.701Z","sequence":26495,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:44.701Z","sequence":26496,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:44.707Z","sequence":26497,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-29e023d3-ac3a-422c-9af4-724d34b8a0f4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:44.938Z","sequence":26498,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:44.939Z","sequence":26499,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10018D3] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:44.953Z","sequence":26500,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:44.953Z","sequence":26501,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:44.959Z","sequence":26502,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a1667306-9e98-47b2-b41a-e82b20997736, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:45.129Z","sequence":26503,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:45.129Z","sequence":26504,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: flint]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:45.133Z","sequence":26505,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-1becddb6-6b8b-4927-acb9-5a1c56836fe2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:45.136Z","sequence":26506,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/flint:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:45.137Z","sequence":26507,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: flint, type: hashed-password, auth-id: auth-flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:45.151Z","sequence":26508,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-8672447c-a3a1-4a14-a824-86d873db6875, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:45.273Z","sequence":26509,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:45.273Z","sequence":26510,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10008A5] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:45.281Z","sequence":26511,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:45.281Z","sequence":26512,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:45.285Z","sequence":26513,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-778f346c-91a0-4629-b855-2b54cdb2613f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:47.389Z","sequence":26514,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:47.389Z","sequence":26515,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB100052B] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:47.394Z","sequence":26516,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:47.394Z","sequence":26517,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:47.398Z","sequence":26518,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-47e5b83f-fe58-41d9-818f-65c1f94946a6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:52.233Z","sequence":26519,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:52.233Z","sequence":26520,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10018B7] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:52.24Z","sequence":26521,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:52.24Z","sequence":26522,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:52.248Z","sequence":26523,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f5657d1e-4725-45e3-ae2e-3c756e10eee7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:53.526Z","sequence":26524,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:53.526Z","sequence":26525,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001921] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:53.536Z","sequence":26526,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:53.536Z","sequence":26527,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:53.542Z","sequence":26528,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5fe66e30-b34a-4709-80d7-3174682b2a51, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:55.541Z","sequence":26529,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:55.541Z","sequence":26530,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB1000A8A] for gateway [0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:55.555Z","sequence":26531,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:55.555Z","sequence":26532,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:55.564Z","sequence":26533,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-75d4fa39-97ce-458e-b429-a25e4a41a1e8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:57.72Z","sequence":26534,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:57.72Z","sequence":26535,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001907] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:57.726Z","sequence":26536,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:57.726Z","sequence":26537,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:33:57.732Z","sequence":26538,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d002819f-cf09-4943-8130-ae2ef1698df3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:34:01.992Z","sequence":26539,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:34:01.992Z","sequence":26540,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:34:02.001Z","sequence":26541,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-019090ae-cdd2-4d79-ba41-fc6f84868a20, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:34:07.002Z","sequence":26542,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/acta:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:34:07.002Z","sequence":26543,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: acta, device-id: 0008004AAAA3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:34:07.008Z","sequence":26544,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-eac1e883-69c4-4b08-ab36-2ca26c51dfd6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:34:07.011Z","sequence":26545,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:34:07.011Z","sequence":26546,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: acta]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:34:07.014Z","sequence":26547,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-bd878f36-e920-40a6-a5be-eb7017408449, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:34:09.592Z","sequence":26548,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:34:09.592Z","sequence":26549,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019E5] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:34:09.599Z","sequence":26550,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:34:09.6Z","sequence":26551,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:34:09.605Z","sequence":26552,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2c32f8da-088e-4803-bb01-c189b594afc1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:34:11.093Z","sequence":26553,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:34:11.093Z","sequence":26554,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000218] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:34:11.099Z","sequence":26555,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:34:11.099Z","sequence":26556,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:34:11.107Z","sequence":26557,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3e785cc4-1637-4a85-84d8-8d46dcc6b0e3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:34:11.111Z","sequence":26558,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:34:11.111Z","sequence":26559,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000218] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:34:11.116Z","sequence":26560,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:34:11.117Z","sequence":26561,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:34:11.119Z","sequence":26562,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0564251d-009a-4a45-bcf0-5f2f40b92b4e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:34:13.755Z","sequence":26563,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:34:13.755Z","sequence":26564,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006BE] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:34:13.765Z","sequence":26565,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:34:13.765Z","sequence":26566,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:34:13.772Z","sequence":26567,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5f61689c-58a2-421a-be03-46eb0216247f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:34:15.169Z","sequence":26568,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:34:15.169Z","sequence":26569,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006C8] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:34:15.177Z","sequence":26570,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:34:15.177Z","sequence":26571,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:34:15.185Z","sequence":26572,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-78dcfe3d-cc1a-4652-a69a-e03b07d035c3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:34:15.986Z","sequence":26573,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:34:15.986Z","sequence":26574,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:34:15.991Z","sequence":26575,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b4bd45a9-aad6-4aa6-aefd-91db08e895b9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:34:17.973Z","sequence":26576,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:34:17.973Z","sequence":26577,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019E9] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:34:17.98Z","sequence":26578,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:34:17.98Z","sequence":26579,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:34:17.985Z","sequence":26580,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-199df564-8958-47f2-89d8-2a7eee301877, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:34:17.996Z","sequence":26581,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/terega:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:34:17.997Z","sequence":26582,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: terega, device-id: 70B3D57BB10000C4] for gateway [gateway_terega_network_27]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:34:18.003Z","sequence":26583,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_terega\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:34:18.004Z","sequence":26584,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_terega\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:34:18.006Z","sequence":26585,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4df9decb-d03a-4feb-9ae1-89eb43dafbe4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:34:21.626Z","sequence":26586,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:34:21.626Z","sequence":26587,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A13] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:34:21.631Z","sequence":26588,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:34:21.631Z","sequence":26589,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:34:21.637Z","sequence":26590,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b2cb274d-b96d-46e0-86d3-8b853d29a9ef, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:34:25.449Z","sequence":26591,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/repsol:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:34:25.449Z","sequence":26592,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: repsol, device-id: 0008004A37FF]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:34:25.456Z","sequence":26593,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9e98bdd2-2b2d-444e-a82c-e8f6055bb876, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:34:25.459Z","sequence":26594,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:34:25.459Z","sequence":26595,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: repsol]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:34:25.461Z","sequence":26596,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-63aa34a7-40ca-4212-b250-5738859051e4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:34:28.884Z","sequence":26597,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:34:28.884Z","sequence":26598,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100190E] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:34:28.89Z","sequence":26599,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:34:28.891Z","sequence":26600,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:34:28.897Z","sequence":26601,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4f7d3a60-18f0-4d09-8337-cd2446f05489, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:34:32.689Z","sequence":26602,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:34:32.689Z","sequence":26603,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:34:32.695Z","sequence":26604,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:34:32.695Z","sequence":26605,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000208] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:34:32.696Z","sequence":26606,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4045f18e-30d2-44fa-bc16-3bf09e01045e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:34:32.701Z","sequence":26607,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:34:32.701Z","sequence":26608,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000208] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:34:32.702Z","sequence":26609,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:34:32.702Z","sequence":26610,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:34:32.705Z","sequence":26611,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-952bf06c-96ae-4ac7-a498-500eb62f3abc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:34:32.706Z","sequence":26612,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:34:32.706Z","sequence":26613,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:34:32.709Z","sequence":26614,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3284e26d-9f7b-419b-8e4e-aba8c614f002, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:34:37.656Z","sequence":26615,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:34:37.656Z","sequence":26616,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10018AF] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:34:37.662Z","sequence":26617,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:34:37.662Z","sequence":26618,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:34:37.669Z","sequence":26619,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-33bcc33a-4d0e-4522-a6c1-2d734487dd6b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:34:46.86Z","sequence":26620,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:34:46.86Z","sequence":26621,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001914] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:34:46.866Z","sequence":26622,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:34:46.868Z","sequence":26623,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:34:46.874Z","sequence":26624,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e92e4be9-24dd-4a01-bf06-2d9496c307eb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:34:48.96Z","sequence":26625,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:34:48.961Z","sequence":26626,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 0008004B51D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:34:48.979Z","sequence":26627,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-87fd8d93-3120-4d71-8064-fce4b3d1b438, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:34:48.984Z","sequence":26628,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:34:48.985Z","sequence":26629,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: dow]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:34:48.988Z","sequence":26630,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-40688d95-217a-4df5-874c-dcd84a0c4243, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:34:49.221Z","sequence":26631,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:34:49.221Z","sequence":26632,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B59] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:34:49.229Z","sequence":26633,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:34:49.229Z","sequence":26634,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:34:49.236Z","sequence":26635,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c73a333d-bcf2-4c4a-b718-df1c2d0d5e9b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:34:51.877Z","sequence":26636,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:34:51.877Z","sequence":26637,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10008CC] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:34:51.883Z","sequence":26638,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:34:51.883Z","sequence":26639,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:34:51.889Z","sequence":26640,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c8ff65a8-c602-42d2-b9ea-9be77afdc594, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:34:53.053Z","sequence":26641,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/repsol:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:34:53.053Z","sequence":26642,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: repsol, device-id: 70B3D57BB1000187] for gateway [0008004A37FF]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:34:53.061Z","sequence":26643,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:0.4.1\"\n },\n \"viaGroups\" : [ \"gateways_repsol\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:34:53.061Z","sequence":26644,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_repsol\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:34:53.065Z","sequence":26645,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-44cbc61a-0dd4-4ecf-ae0c-f7ee34b29875, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:34:59.22Z","sequence":26646,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:34:59.22Z","sequence":26647,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A18] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:34:59.228Z","sequence":26648,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:34:59.228Z","sequence":26649,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:34:59.234Z","sequence":26650,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d546da64-f582-4049-a23d-8816b8a4c7df, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:04.598Z","sequence":26651,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191211]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"36cdb370a6b6d961","parentId":"9ee5db24f8ecad96","traceId":"00000000000000005d9d7af82d2a54c2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:04.631Z","sequence":26652,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191211, resource-version: f986cd7f-e5fe-4b02-bdf5-bdeb0704e2df]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"36cdb370a6b6d961","parentId":"9ee5db24f8ecad96","traceId":"00000000000000005d9d7af82d2a54c2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:04.641Z","sequence":26653,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191211, resource-version: 73e22c8b-fbc6-493a-b4e1-dc76de1793dc]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"36cdb370a6b6d961","parentId":"9ee5db24f8ecad96","traceId":"00000000000000005d9d7af82d2a54c2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:04.645Z","sequence":26654,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191211]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ad145b8bdb7edd0f","parentId":"3f4d538360cfb338","traceId":"00000000000000005d9d7af82d2a54c2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:04.824Z","sequence":26655,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191211]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ad145b8bdb7edd0f","parentId":"3f4d538360cfb338","traceId":"00000000000000005d9d7af82d2a54c2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:05.38Z","sequence":26656,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF9AE7DFCC5EB52]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e0cfdd3f9bb4aa78","parentId":"fcb34b4d49350f5a","traceId":"000000000000000013c338dcecfe2eb2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:05.397Z","sequence":26657,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF9AE7DFCC5EB52, resource-version: c4ff12d2-0831-4d3f-b841-5ff5a75a5017]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e0cfdd3f9bb4aa78","parentId":"fcb34b4d49350f5a","traceId":"000000000000000013c338dcecfe2eb2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:05.405Z","sequence":26658,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF9AE7DFCC5EB52, resource-version: cf3007e7-1cad-4bd3-b4ac-1255d184798f]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e0cfdd3f9bb4aa78","parentId":"fcb34b4d49350f5a","traceId":"000000000000000013c338dcecfe2eb2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:06.479Z","sequence":26659,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:06.481Z","sequence":26660,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:06.485Z","sequence":26661,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-b3f05676-ed57-4447-a37d-f3a9d39cd6b3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:06.488Z","sequence":26662,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:06.489Z","sequence":26663,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191211]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:06.503Z","sequence":26664,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-0254226c-5e88-4842-b34d-f4f502a94c48, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:06.625Z","sequence":26665,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:06.625Z","sequence":26666,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF9AE7DFCC5EB52] for gateway [gateway_integrationtest_network_191211]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:06.626Z","sequence":26667,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:06.626Z","sequence":26668,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191211]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:06.631Z","sequence":26669,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:06.631Z","sequence":26670,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:06.632Z","sequence":26671,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a037a214-c622-49f1-a337-a9629d732711, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:06.962Z","sequence":26672,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0b025a5f-90f4-4454-b282-89505b98b6cb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:07.425Z","sequence":26673,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:07.425Z","sequence":26674,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006DC] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:07.441Z","sequence":26675,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:07.441Z","sequence":26676,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:07.453Z","sequence":26677,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d34b1ae7-8b1d-487e-b068-3461587063b1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:07.833Z","sequence":26678,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:07.833Z","sequence":26679,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000A96] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:07.844Z","sequence":26680,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:07.845Z","sequence":26681,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:07.857Z","sequence":26682,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-06a0dc21-aa43-4b98-a256-ab35f8d1ce4a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:12.837Z","sequence":26683,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:12.837Z","sequence":26684,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A14] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:12.843Z","sequence":26685,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:12.843Z","sequence":26686,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:12.85Z","sequence":26687,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d445c6dd-a40b-4b5e-a358-b56afe2a21b3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:19.897Z","sequence":26688,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF9AE7DFCC5EB52]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bd47ba476ef3a969","parentId":"a4a5dc4729eafc92","traceId":"0000000000000000be87989ca81c3699","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:19.922Z","sequence":26689,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF9AE7DFCC5EB52]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bd47ba476ef3a969","parentId":"a4a5dc4729eafc92","traceId":"0000000000000000be87989ca81c3699","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:20.317Z","sequence":26690,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:20.317Z","sequence":26691,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006A7] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:20.323Z","sequence":26692,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:20.323Z","sequence":26693,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:20.328Z","sequence":26694,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-cf273482-7e4a-4f69-832b-b0b4e97a95a2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:20.512Z","sequence":26695,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191211]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d50a2778ffd3c8cc","parentId":"9c5fd5eda803c993","traceId":"0000000000000000bbf13776a4b9b050","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:20.532Z","sequence":26696,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191211]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d50a2778ffd3c8cc","parentId":"9c5fd5eda803c993","traceId":"0000000000000000bbf13776a4b9b050","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:21.289Z","sequence":26697,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 4DBBE58C3499]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2f0cf068c151258c","parentId":"cb605d127c4c39e1","traceId":"00000000000000005d8f1c320a3ccbd6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:21.313Z","sequence":26698,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 4DBBE58C3499, resource-version: aa9f4c38-6aea-46ab-959a-66e5df48fe4c]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2f0cf068c151258c","parentId":"cb605d127c4c39e1","traceId":"00000000000000005d8f1c320a3ccbd6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:21.325Z","sequence":26699,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 4DBBE58C3499, resource-version: f9bcd3b8-7b0f-409b-a52d-98ee24460f76]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2f0cf068c151258c","parentId":"cb605d127c4c39e1","traceId":"00000000000000005d8f1c320a3ccbd6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:21.328Z","sequence":26700,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 4DBBE58C3499]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4e35426c743a797f","parentId":"0801816e6c822063","traceId":"00000000000000005d8f1c320a3ccbd6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:21.556Z","sequence":26701,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 4DBBE58C3499]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4e35426c743a797f","parentId":"0801816e6c822063","traceId":"00000000000000005d8f1c320a3ccbd6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:21.672Z","sequence":26702,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:21.672Z","sequence":26703,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006BA] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:21.678Z","sequence":26704,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:21.679Z","sequence":26705,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:21.684Z","sequence":26706,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4bf7dccf-a96f-426f-aa38-a6f483970079, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:22.463Z","sequence":26707,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF25E00DB4AAC84]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"53e4d9e7e609f4a7","parentId":"d7f0a32ff2307ae9","traceId":"000000000000000014eacc6bbf8be0b7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:22.488Z","sequence":26708,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF25E00DB4AAC84, resource-version: 720b5983-63d1-4b33-88fd-1d9dcec8d6db]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"53e4d9e7e609f4a7","parentId":"d7f0a32ff2307ae9","traceId":"000000000000000014eacc6bbf8be0b7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:22.496Z","sequence":26709,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF25E00DB4AAC84, resource-version: c02d84aa-8412-4679-b56e-b41c6d1011f5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"53e4d9e7e609f4a7","parentId":"d7f0a32ff2307ae9","traceId":"000000000000000014eacc6bbf8be0b7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:23.285Z","sequence":26710,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/conditionall:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:23.285Z","sequence":26711,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: conditionall, device-id: 0008004B512D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:23.306Z","sequence":26712,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-52c645b3-96ab-495e-8342-f63e75829faa, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:23.309Z","sequence":26713,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:23.309Z","sequence":26714,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: conditionall]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:23.313Z","sequence":26715,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-9cb4e961-b686-49a0-bd97-2d2b484fcc19, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:23.623Z","sequence":26716,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:23.623Z","sequence":26717,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:23.626Z","sequence":26718,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-d4855459-f97e-49b0-a607-66c1583c70c1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:23.629Z","sequence":26719,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:23.629Z","sequence":26720,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-4DBBE58C3499]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:23.649Z","sequence":26721,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-feaa7603-42a8-487e-aca9-3139e7c0694d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:23.771Z","sequence":26722,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:23.772Z","sequence":26723,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 4DBBE58C3499]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:23.795Z","sequence":26724,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c9518534-8b97-469c-a9f3-6c0df271e5cb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:23.8Z","sequence":26725,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:23.8Z","sequence":26726,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF25E00DB4AAC84] for gateway [4DBBE58C3499]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:23.806Z","sequence":26727,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:23.806Z","sequence":26728,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:24.221Z","sequence":26729,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c1341337-367c-4794-a10e-5bd51c5246eb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:31.805Z","sequence":26730,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:31.805Z","sequence":26731,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001E9] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:31.811Z","sequence":26732,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:31.811Z","sequence":26733,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:31.814Z","sequence":26734,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b9f113a0-6472-4235-aefc-8cb555ccc51c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:31.961Z","sequence":26735,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:31.962Z","sequence":26736,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001E9] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:31.968Z","sequence":26737,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:31.968Z","sequence":26738,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:31.971Z","sequence":26739,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4a855f2d-1245-4123-8f33-81cbc402b392, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:33.481Z","sequence":26740,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:33.481Z","sequence":26741,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100191B] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:33.488Z","sequence":26742,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:33.488Z","sequence":26743,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:33.494Z","sequence":26744,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-286f0c71-07f7-4188-b724-3daacf982c9f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:34.142Z","sequence":26745,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF25E00DB4AAC84]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9b8f4c1e01f56c9b","parentId":"58e53f2c37c7ec2a","traceId":"0000000000000000af412e06be8f192e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:34.197Z","sequence":26746,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF25E00DB4AAC84]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9b8f4c1e01f56c9b","parentId":"58e53f2c37c7ec2a","traceId":"0000000000000000af412e06be8f192e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:34.575Z","sequence":26747,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 4DBBE58C3499]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"58f0ccdbb6b6a82e","parentId":"11d93cd121249a59","traceId":"0000000000000000edcf67a06d88be48","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:34.599Z","sequence":26748,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 4DBBE58C3499]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"58f0ccdbb6b6a82e","parentId":"11d93cd121249a59","traceId":"0000000000000000edcf67a06d88be48","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:34.747Z","sequence":26749,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:34.747Z","sequence":26750,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BE2] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:34.753Z","sequence":26751,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:34.753Z","sequence":26752,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:34.76Z","sequence":26753,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-567c12b7-30be-4999-997c-db4a70c7a461, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:35.764Z","sequence":26754,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:35.764Z","sequence":26755,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006AE] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:35.769Z","sequence":26756,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:35.769Z","sequence":26757,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:35.775Z","sequence":26758,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4b3fe08c-2c79-4258-a89c-2920b782ec17, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:38.078Z","sequence":26759,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:38.079Z","sequence":26760,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100068C] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:38.086Z","sequence":26761,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:38.086Z","sequence":26762,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:38.093Z","sequence":26763,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-67cd4d32-c234-4b31-ae05-4db71c140a10, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:48.6Z","sequence":26764,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:48.6Z","sequence":26765,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B62] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:48.608Z","sequence":26766,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:48.609Z","sequence":26767,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:48.627Z","sequence":26768,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e0199e96-1e6f-45f2-8029-644937e0b99d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:49.605Z","sequence":26769,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:49.605Z","sequence":26770,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000A9A] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:49.612Z","sequence":26771,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:49.613Z","sequence":26772,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:49.633Z","sequence":26773,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-146b6e34-6be9-4536-a1e3-8ee975fe10fd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:50.469Z","sequence":26774,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:50.47Z","sequence":26775,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000202] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:50.482Z","sequence":26776,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:50.483Z","sequence":26777,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:50.488Z","sequence":26778,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-65208d4b-ec08-4df8-b661-0dddf1ca1df4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:50.49Z","sequence":26779,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:50.49Z","sequence":26780,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000202] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:50.501Z","sequence":26781,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:50.501Z","sequence":26782,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:50.508Z","sequence":26783,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6ad043fd-ded7-4a9e-b080-ddc7db392135, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:58.009Z","sequence":26784,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:58.009Z","sequence":26785,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AA0] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:58.04Z","sequence":26786,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:58.041Z","sequence":26787,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:58.049Z","sequence":26788,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8cca7529-e90a-455d-a5a6-1e4e3a9b24e9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:58.585Z","sequence":26789,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:58.585Z","sequence":26790,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100016C] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:58.598Z","sequence":26791,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:58.598Z","sequence":26792,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:58.609Z","sequence":26793,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-185e9cb7-d567-48ba-8ec9-66936fcddc51, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:58.628Z","sequence":26794,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:58.628Z","sequence":26795,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100016C] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:58.649Z","sequence":26796,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:58.649Z","sequence":26797,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:58.657Z","sequence":26798,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a69a3027-175c-424c-939b-9edbd33934c7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:59.897Z","sequence":26799,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:59.897Z","sequence":26800,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019E6] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:59.91Z","sequence":26801,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:59.91Z","sequence":26802,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:35:59.917Z","sequence":26803,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-690edb87-f4fc-4d01-8f6f-db492a88fca5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:36:00.18Z","sequence":26804,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:36:00.18Z","sequence":26805,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BB84C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:36:00.186Z","sequence":26806,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f7aedb88-eb92-42df-b58b-b5fdf36d8923, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:36:01.727Z","sequence":26807,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:36:01.727Z","sequence":26808,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 0008004B5135]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:36:01.734Z","sequence":26809,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-36942177-7242-4993-a41d-71c8066c762e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:36:01.737Z","sequence":26810,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:36:01.739Z","sequence":26811,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: ineos]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:36:01.742Z","sequence":26812,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-cf3e94c0-7ec0-44e1-98a7-d960739d078a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:36:05.569Z","sequence":26813,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:36:05.569Z","sequence":26814,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BBD1B]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:36:05.576Z","sequence":26815,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1e694250-2dfd-4d4b-ae67-2c1b8fc33920, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:36:05.753Z","sequence":26816,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:36:05.754Z","sequence":26817,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006D1] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:36:05.76Z","sequence":26818,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:36:05.76Z","sequence":26819,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:36:05.766Z","sequence":26820,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a1be0bce-4a12-43f0-8c9d-7c75b477974b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:36:11.893Z","sequence":26821,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:36:11.893Z","sequence":26822,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006B8] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:36:11.902Z","sequence":26823,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:36:11.902Z","sequence":26824,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:36:11.908Z","sequence":26825,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9b7d8f13-d3c4-4065-bf24-e353b209be34, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:36:12.794Z","sequence":26826,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/arkema:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:36:12.794Z","sequence":26827,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: arkema, device-id: 0008004AE119]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:36:12.801Z","sequence":26828,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f0a6c750-899c-4fed-9f03-a453dfb3d170, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:36:12.804Z","sequence":26829,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:36:12.804Z","sequence":26830,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: arkema]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:36:12.807Z","sequence":26831,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-b91ee1a7-993d-4a6b-a0e2-d2f2af276f2e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:36:15.869Z","sequence":26832,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:36:15.87Z","sequence":26833,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006B3] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:36:15.899Z","sequence":26834,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:36:15.899Z","sequence":26835,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:36:15.952Z","sequence":26836,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-799e46f5-0a81-4d43-b5e6-c3c1c207df29, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:36:17.033Z","sequence":26837,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:36:17.033Z","sequence":26838,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10008D2] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:36:17.039Z","sequence":26839,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:36:17.039Z","sequence":26840,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:36:17.046Z","sequence":26841,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7424cddb-cee5-433e-bd26-76297b4f68cb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:36:21.635Z","sequence":26842,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:36:21.635Z","sequence":26843,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100057A] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:36:21.643Z","sequence":26844,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:36:21.643Z","sequence":26845,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:36:21.651Z","sequence":26846,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-70b3cc5c-93aa-4975-8c40-57a306842ae1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:36:26.679Z","sequence":26847,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:36:26.68Z","sequence":26848,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: shell]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:36:26.685Z","sequence":26849,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-88099823-4af2-4cfb-b704-e0fcedd6bb93, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:36:26.813Z","sequence":26850,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:36:26.813Z","sequence":26851,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100067B] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:36:26.813Z","sequence":26852,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:36:26.813Z","sequence":26853,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:36:26.818Z","sequence":26854,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:36:26.818Z","sequence":26855,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:36:26.819Z","sequence":26856,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8ada1d74-1264-4efd-b298-596d9a741382, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:36:26.823Z","sequence":26857,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a9a3b325-e77a-4a79-ad7f-8a03e3b1ff9b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:36:29.102Z","sequence":26858,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:36:29.102Z","sequence":26859,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006C3] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:36:29.107Z","sequence":26860,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:36:29.108Z","sequence":26861,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:36:29.113Z","sequence":26862,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d472b3ce-a038-4a19-93f0-2d551c34ddcd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:36:32.707Z","sequence":26863,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:36:32.707Z","sequence":26864,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001ABD] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:36:32.713Z","sequence":26865,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:36:32.713Z","sequence":26866,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:36:32.719Z","sequence":26867,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2d03617b-5618-4879-862f-23e5d01c00ed, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:36:37.021Z","sequence":26868,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:36:37.021Z","sequence":26869,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006A4] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:36:37.027Z","sequence":26870,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:36:37.028Z","sequence":26871,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:36:37.036Z","sequence":26872,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-254bb921-d4d4-414b-b650-28019612c9dc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:36:40.977Z","sequence":26873,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:36:40.978Z","sequence":26874,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB100082E] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:36:40.984Z","sequence":26875,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:36:40.984Z","sequence":26876,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:36:40.988Z","sequence":26877,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2f5e468a-500f-45ac-8d0d-8f98f79fb65c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:36:46.113Z","sequence":26878,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/shell:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:36:46.113Z","sequence":26879,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: shell, type: hashed-password, auth-id: auth-gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:36:46.126Z","sequence":26880,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-dcc05465-71a4-40c9-8618-803b5411efe8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:36:46.243Z","sequence":26881,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:36:46.244Z","sequence":26882,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BCC] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:36:46.25Z","sequence":26883,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:36:46.25Z","sequence":26884,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:36:46.257Z","sequence":26885,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e9094911-76dd-49b3-bf43-1583e0a5db43, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:36:51.169Z","sequence":26886,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:36:51.17Z","sequence":26887,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10008CE] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:36:51.176Z","sequence":26888,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:36:51.176Z","sequence":26889,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:36:51.183Z","sequence":26890,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e1ff083c-4fd3-4a50-8460-ecdfe49a5f5f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:36:52.9Z","sequence":26891,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:36:52.9Z","sequence":26892,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B6C] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:36:52.906Z","sequence":26893,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:36:52.906Z","sequence":26894,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:36:52.912Z","sequence":26895,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b8aaeec1-5e15-464d-ba71-70d4afd3dd6a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:36:55.161Z","sequence":26896,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:36:55.162Z","sequence":26897,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:36:55.169Z","sequence":26898,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-61b7df82-2af3-43da-9c1b-4eec214d8792, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:04.234Z","sequence":26899,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191213]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"092e824f054f29af","parentId":"f3514dba284285ea","traceId":"00000000000000001acd24beba4cbf0e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:04.257Z","sequence":26900,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191213, resource-version: 39ab8428-c067-4819-a207-1bbf16ce4a95]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"092e824f054f29af","parentId":"f3514dba284285ea","traceId":"00000000000000001acd24beba4cbf0e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:04.27Z","sequence":26901,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191213, resource-version: 22bb5129-bcec-4fc4-b3e0-dd7337cdfe61]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"092e824f054f29af","parentId":"f3514dba284285ea","traceId":"00000000000000001acd24beba4cbf0e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:04.273Z","sequence":26902,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191213]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"67f8f5bba37856dd","parentId":"a4e18d1837ba9b63","traceId":"00000000000000001acd24beba4cbf0e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:04.373Z","sequence":26903,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:04.373Z","sequence":26904,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BBD1C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:04.379Z","sequence":26905,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-af156ca9-05a8-4e5c-bd00-4de52766acd2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:04.382Z","sequence":26906,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:04.382Z","sequence":26907,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: lanxess]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:04.385Z","sequence":26908,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-72596dff-eb7f-43c9-9cfc-94f569388dda, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:04.439Z","sequence":26909,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191213]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"67f8f5bba37856dd","parentId":"a4e18d1837ba9b63","traceId":"00000000000000001acd24beba4cbf0e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:05.371Z","sequence":26910,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF59561DC07A349]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3d7b6a1b9e7658dd","parentId":"33f183f183ffbe6d","traceId":"00000000000000008c92454c480aa5ed","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:05.39Z","sequence":26911,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF59561DC07A349, resource-version: 5b6f9a20-bdaf-4f30-9d80-acddd6ce914e]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3d7b6a1b9e7658dd","parentId":"33f183f183ffbe6d","traceId":"00000000000000008c92454c480aa5ed","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:05.398Z","sequence":26912,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF59561DC07A349, resource-version: dbe89664-4bd1-43b8-923a-3425104303fa]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3d7b6a1b9e7658dd","parentId":"33f183f183ffbe6d","traceId":"00000000000000008c92454c480aa5ed","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:06.483Z","sequence":26913,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:06.484Z","sequence":26914,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191213]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:06.505Z","sequence":26915,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-e62c4a19-d1e1-4e79-bfa1-4d43a83933d1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:06.634Z","sequence":26916,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:06.635Z","sequence":26917,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF59561DC07A349] for gateway [gateway_integrationtest_network_191213]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:06.635Z","sequence":26918,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:06.635Z","sequence":26919,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191213]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:06.646Z","sequence":26920,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:06.646Z","sequence":26921,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:06.648Z","sequence":26922,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e150c91a-575d-4d7a-a6bc-cf6592dbb8c1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:06.947Z","sequence":26923,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d23b11fc-ae04-412e-8f36-83a3c578a9f5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:09.983Z","sequence":26924,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:09.984Z","sequence":26925,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AEC] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:09.99Z","sequence":26926,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:09.99Z","sequence":26927,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:09.996Z","sequence":26928,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-28252ac7-a8a4-4933-aefd-971241339137, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:13.487Z","sequence":26929,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/conditionall:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:13.488Z","sequence":26930,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: conditionall, device-id: 70B3D57BB1000228] for gateway [0008004B512D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:13.507Z","sequence":26931,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_conditionall\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:13.508Z","sequence":26932,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_conditionall\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:13.511Z","sequence":26933,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b05482e2-38d8-4740-9a0b-427135427543, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:16.436Z","sequence":26934,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:16.436Z","sequence":26935,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oci]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:16.44Z","sequence":26936,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-5ce566e9-ab17-40fc-84b4-879058bbb31f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:16.444Z","sequence":26937,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:16.445Z","sequence":26938,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000471] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:16.453Z","sequence":26939,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:16.453Z","sequence":26940,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:16.457Z","sequence":26941,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-340cbb45-ad2d-4824-ba1b-a2b714f64a33, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:16.509Z","sequence":26942,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:16.509Z","sequence":26943,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000471] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:16.514Z","sequence":26944,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:16.514Z","sequence":26945,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:16.516Z","sequence":26946,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-08f526b4-acd0-4ba4-b2e9-e88c5950a81e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:17.151Z","sequence":26947,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:17.151Z","sequence":26948,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100067F] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:17.165Z","sequence":26949,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:17.166Z","sequence":26950,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:17.173Z","sequence":26951,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-07af06a2-88a2-4517-ac3e-ecaeae7050eb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:18.732Z","sequence":26952,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:18.732Z","sequence":26953,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001B16] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:18.738Z","sequence":26954,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:18.738Z","sequence":26955,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:18.744Z","sequence":26956,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9be08990-f911-4adc-a2b2-015e654a17cb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:19.599Z","sequence":26957,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF59561DC07A349]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f6e24c89928b8a3e","parentId":"2c0b61a1d41a17e6","traceId":"00000000000000005013227f1af474ac","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:19.618Z","sequence":26958,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF59561DC07A349]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f6e24c89928b8a3e","parentId":"2c0b61a1d41a17e6","traceId":"00000000000000005013227f1af474ac","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:19.732Z","sequence":26959,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191213]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c4e69ffd28b3bc93","parentId":"df9442be79cdb1ef","traceId":"0000000000000000c1a539dc74c27a15","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:19.751Z","sequence":26960,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191213]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c4e69ffd28b3bc93","parentId":"df9442be79cdb1ef","traceId":"0000000000000000c1a539dc74c27a15","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:20.266Z","sequence":26961,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 2037CFC0B839]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6e89608ccab20013","parentId":"7ca38740cd89c52a","traceId":"000000000000000012cb0eafd49c748c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:20.283Z","sequence":26962,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 2037CFC0B839, resource-version: cfe27afa-c420-4245-8b46-cff472ce3b76]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6e89608ccab20013","parentId":"7ca38740cd89c52a","traceId":"000000000000000012cb0eafd49c748c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:20.292Z","sequence":26963,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 2037CFC0B839, resource-version: 19861ded-3668-4450-9556-c39436bb8ef7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6e89608ccab20013","parentId":"7ca38740cd89c52a","traceId":"000000000000000012cb0eafd49c748c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:20.296Z","sequence":26964,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 2037CFC0B839]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a648b1f6b021d680","parentId":"73b75d9017ff3f3a","traceId":"000000000000000012cb0eafd49c748c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:20.425Z","sequence":26965,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 2037CFC0B839]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a648b1f6b021d680","parentId":"73b75d9017ff3f3a","traceId":"000000000000000012cb0eafd49c748c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:20.965Z","sequence":26966,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFDA04F0FE0F300]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"59d384ece78dadc5","parentId":"1b4d5f5598298faa","traceId":"00000000000000006ad96036189fe63e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:20.983Z","sequence":26967,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFDA04F0FE0F300, resource-version: 22568b26-6ee2-4fee-95e8-740e9eb260eb]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"59d384ece78dadc5","parentId":"1b4d5f5598298faa","traceId":"00000000000000006ad96036189fe63e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:20.991Z","sequence":26968,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFDA04F0FE0F300, resource-version: 767762d7-1fff-469b-b54c-e71cb3331aba]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"59d384ece78dadc5","parentId":"1b4d5f5598298faa","traceId":"00000000000000006ad96036189fe63e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:22.035Z","sequence":26969,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:22.036Z","sequence":26970,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-2037CFC0B839]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:22.047Z","sequence":26971,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-62750ec6-8540-4ee2-94c2-dc7370c246dc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:22.173Z","sequence":26972,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:22.173Z","sequence":26973,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 2037CFC0B839]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:22.178Z","sequence":26974,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-53220563-543a-45f5-979f-a7358331e2f9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:22.182Z","sequence":26975,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:22.182Z","sequence":26976,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDA04F0FE0F300] for gateway [2037CFC0B839]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:22.187Z","sequence":26977,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:22.187Z","sequence":26978,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:22.35Z","sequence":26979,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9db4a02b-0370-4ba8-9f85-6435a397c89f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:24.923Z","sequence":26980,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:24.923Z","sequence":26981,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019F5] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:24.929Z","sequence":26982,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:24.929Z","sequence":26983,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:24.934Z","sequence":26984,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d40380d5-89f6-41d0-891d-a1397762f735, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:25.692Z","sequence":26985,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:25.692Z","sequence":26986,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 0008004C80F4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:25.698Z","sequence":26987,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d701716f-6447-4577-81a6-b92956a8925c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:31.444Z","sequence":26988,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:31.444Z","sequence":26989,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A12] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:31.449Z","sequence":26990,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:31.449Z","sequence":26991,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:31.455Z","sequence":26992,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e55c8e3e-ebd3-4212-b21e-3601536f88cc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:32.726Z","sequence":26993,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFDA04F0FE0F300]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8eee0916504230bd","parentId":"6aea23cc2bf8e507","traceId":"00000000000000007168eca919e1895d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:32.742Z","sequence":26994,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFDA04F0FE0F300]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8eee0916504230bd","parentId":"6aea23cc2bf8e507","traceId":"00000000000000007168eca919e1895d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:33.129Z","sequence":26995,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 2037CFC0B839]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"da9534540f7361a4","parentId":"a9088aa976d14032","traceId":"00000000000000009f20972230c4ad5b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:33.15Z","sequence":26996,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 2037CFC0B839]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"da9534540f7361a4","parentId":"a9088aa976d14032","traceId":"00000000000000009f20972230c4ad5b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:33.893Z","sequence":26997,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:33.893Z","sequence":26998,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A07] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:33.899Z","sequence":26999,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:33.899Z","sequence":27000,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:33.905Z","sequence":27001,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3de2d1db-50eb-4820-b243-b7fd6935380b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:38.553Z","sequence":27002,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:38.553Z","sequence":27003,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BE8] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:38.559Z","sequence":27004,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:38.559Z","sequence":27005,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:38.566Z","sequence":27006,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-44013c6e-95ee-4111-873f-261695523de0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:38.822Z","sequence":27007,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:38.822Z","sequence":27008,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BE4] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:38.829Z","sequence":27009,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:38.829Z","sequence":27010,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:38.835Z","sequence":27011,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-36adf3f3-a441-4bc5-a7bd-ebf30c5752f6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:41.332Z","sequence":27012,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oiltanking:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:41.332Z","sequence":27013,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oiltanking, device-id: 0008004BB60F]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:41.338Z","sequence":27014,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-549e772d-9b67-4e73-8d8c-e269c3cd9210, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:41.341Z","sequence":27015,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:41.341Z","sequence":27016,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oiltanking]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:41.344Z","sequence":27017,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-00818ecf-58aa-4d2e-8717-eefa6f63dbe2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:54.116Z","sequence":27018,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:54.116Z","sequence":27019,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100016F] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:54.126Z","sequence":27020,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:54.126Z","sequence":27021,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:54.13Z","sequence":27022,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:54.13Z","sequence":27023,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100016F] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:54.146Z","sequence":27024,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3f0fd0c1-b3ab-40e7-b82e-ef3b8aa84d20, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:54.151Z","sequence":27025,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:54.156Z","sequence":27026,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:54.163Z","sequence":27027,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-bb184fb5-bd48-418f-ac1e-82d6546b0b46, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:56.709Z","sequence":27028,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:56.709Z","sequence":27029,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001E7] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:56.717Z","sequence":27030,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:56.717Z","sequence":27031,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:56.721Z","sequence":27032,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f40cfe09-713b-43de-9c57-83191ab98135, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:56.741Z","sequence":27033,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:56.741Z","sequence":27034,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001E7] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:56.748Z","sequence":27035,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:56.748Z","sequence":27036,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:56.751Z","sequence":27037,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d4ebcbd8-f717-4026-bd62-91c741e5d6f2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:58.353Z","sequence":27038,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:58.353Z","sequence":27039,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: flint]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:58.357Z","sequence":27040,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-c816be8b-391c-4cf3-845f-fbecd13448f7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:58.36Z","sequence":27041,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/flint:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:58.362Z","sequence":27042,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: flint, type: hashed-password, auth-id: auth-flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:58.366Z","sequence":27043,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/flint:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:58.368Z","sequence":27044,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: flint, type: hashed-password, auth-id: auth-flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:58.378Z","sequence":27045,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-15c2e880-bf72-4cf0-be7a-0d2d5fd59124, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:58.382Z","sequence":27046,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-4d168615-6547-461c-924a-a07ed567264e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:58.6Z","sequence":27047,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:58.6Z","sequence":27048,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000809] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:58.606Z","sequence":27049,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:58.606Z","sequence":27050,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:37:58.611Z","sequence":27051,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2d5465b6-b65d-4810-b2ec-ef6f8d75d8a7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:38:00.779Z","sequence":27052,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:38:00.779Z","sequence":27053,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AED] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:38:00.787Z","sequence":27054,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:38:00.787Z","sequence":27055,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:38:00.794Z","sequence":27056,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-475da527-5f93-4c68-8afa-8ceb44947033, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:38:03.193Z","sequence":27057,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:38:03.193Z","sequence":27058,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AEE] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:38:03.199Z","sequence":27059,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:38:03.199Z","sequence":27060,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:38:03.205Z","sequence":27061,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-73d3a90a-1ec0-4326-b7b0-36dfeb63f154, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:38:08.897Z","sequence":27062,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:38:08.897Z","sequence":27063,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006D2] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:38:08.903Z","sequence":27064,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.8.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:38:08.903Z","sequence":27065,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:38:08.91Z","sequence":27066,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3eaae234-1384-4ed6-b5ea-cdccae80663f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:38:11.585Z","sequence":27067,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:38:11.586Z","sequence":27068,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006C9] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:38:11.593Z","sequence":27069,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:38:11.594Z","sequence":27070,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:38:11.604Z","sequence":27071,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d825aac1-a816-46b2-ac3d-c46df005d81b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:38:12.589Z","sequence":27072,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:38:12.589Z","sequence":27073,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001B12] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:38:12.596Z","sequence":27074,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:38:12.596Z","sequence":27075,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:38:12.602Z","sequence":27076,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0fda2be7-822f-4e60-8f35-c666dfe5de41, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:38:14.67Z","sequence":27077,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:38:14.671Z","sequence":27078,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000204] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:38:14.676Z","sequence":27079,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:38:14.676Z","sequence":27080,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:38:14.679Z","sequence":27081,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e94f1e0f-c177-4e39-92ef-27c5740a5fc5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:38:14.773Z","sequence":27082,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:38:14.773Z","sequence":27083,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000204] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:38:14.779Z","sequence":27084,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:38:14.779Z","sequence":27085,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:38:14.783Z","sequence":27086,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e7f97af0-1d98-448d-8023-ea2c8a6250af, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:38:16.216Z","sequence":27087,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:38:16.216Z","sequence":27088,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001B1A] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:38:16.223Z","sequence":27089,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:38:16.223Z","sequence":27090,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:38:16.232Z","sequence":27091,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a06179f0-191d-4fb3-b3a2-d87ab9d59d19, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:38:18.541Z","sequence":27092,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/aloxy:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:38:18.541Z","sequence":27093,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: aloxy, device-id: 0008004A8F68]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:38:18.557Z","sequence":27094,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-772b61e6-9616-4f78-9f51-9366f451b7b2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:38:18.56Z","sequence":27095,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:38:18.56Z","sequence":27096,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: aloxy]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:38:18.567Z","sequence":27097,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-3f0c09e6-6fee-403c-bbd7-ff0aa2b15d6c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:38:24.279Z","sequence":27098,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:38:24.279Z","sequence":27099,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AE5] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:38:24.286Z","sequence":27100,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:38:24.286Z","sequence":27101,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:38:24.292Z","sequence":27102,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-87ca78ee-7cba-47f8-bd75-c28dc8aee669, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:38:28.476Z","sequence":27103,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:38:28.476Z","sequence":27104,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001B08] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:38:28.482Z","sequence":27105,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:38:28.482Z","sequence":27106,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:38:28.487Z","sequence":27107,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-35a1274b-ec8b-469d-945e-6f2e81a3c93a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:38:29.188Z","sequence":27108,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:38:29.189Z","sequence":27109,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006CA] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:38:29.194Z","sequence":27110,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.8.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:38:29.195Z","sequence":27111,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:38:29.201Z","sequence":27112,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8f9f3730-7c73-42b3-a51e-c593100f5bd0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:38:34.595Z","sequence":27113,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:38:34.595Z","sequence":27114,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BB613]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:38:34.602Z","sequence":27115,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7d05d21f-1dbb-4030-906f-12d042fdf180, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:38:35.848Z","sequence":27116,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:38:35.848Z","sequence":27117,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001F4] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:38:35.855Z","sequence":27118,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:38:35.855Z","sequence":27119,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:38:35.858Z","sequence":27120,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7fbfda72-3d82-4355-ab09-641b624b8592, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:38:35.859Z","sequence":27121,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:38:35.859Z","sequence":27122,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001F4] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:38:35.866Z","sequence":27123,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:38:35.867Z","sequence":27124,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:38:35.869Z","sequence":27125,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-cb715299-181b-49ff-a875-21aaebb2c4c8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:38:50.795Z","sequence":27126,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:38:50.795Z","sequence":27127,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000A5C] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:38:50.801Z","sequence":27128,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:38:50.801Z","sequence":27129,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:38:50.807Z","sequence":27130,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8f3f5212-3a81-445d-b05d-7a71d47b0fc7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:38:50.872Z","sequence":27131,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:38:50.873Z","sequence":27132,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 70B3D57BB1000190] for gateway [0008004BB613]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:38:50.878Z","sequence":27133,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_lanxess\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:38:50.878Z","sequence":27134,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_lanxess\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:38:50.881Z","sequence":27135,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3cc01746-23fa-4e09-bfa1-01f2522d7779, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:38:52Z","sequence":27136,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:38:52.001Z","sequence":27137,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10009C4] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:38:52.02Z","sequence":27138,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:38:52.021Z","sequence":27139,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:38:52.029Z","sequence":27140,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f0aa6bff-ee26-428b-afcd-6948c5bd938b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:38:56.874Z","sequence":27141,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:38:56.874Z","sequence":27142,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB1000A7C] for gateway [0008004B5135]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:38:56.882Z","sequence":27143,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:38:56.882Z","sequence":27144,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:38:56.885Z","sequence":27145,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-579c4b27-11fa-431d-8775-88bc47a71331, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:04.394Z","sequence":27146,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191215]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3cd05a929bccf1ae","parentId":"545fad0028d95e57","traceId":"000000000000000002b9c9506df853dc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:04.411Z","sequence":27147,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191215, resource-version: 6e485bc0-2756-4630-a738-b866703bb967]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3cd05a929bccf1ae","parentId":"545fad0028d95e57","traceId":"000000000000000002b9c9506df853dc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:04.417Z","sequence":27148,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191215, resource-version: cdbda531-d922-4f17-b939-5c981fbb14d4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3cd05a929bccf1ae","parentId":"545fad0028d95e57","traceId":"000000000000000002b9c9506df853dc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:04.42Z","sequence":27149,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191215]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"611849c4255eda7d","parentId":"ea957b399cd8c38e","traceId":"000000000000000002b9c9506df853dc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:04.592Z","sequence":27150,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191215]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"611849c4255eda7d","parentId":"ea957b399cd8c38e","traceId":"000000000000000002b9c9506df853dc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:05.411Z","sequence":27151,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF17A40956F6607]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"12cfb33d45741cf0","parentId":"2a05254bde6a63a0","traceId":"000000000000000009be1a898df643ec","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:05.428Z","sequence":27152,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF17A40956F6607, resource-version: 507ad445-9123-454a-8163-9faa81a01a8f]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"12cfb33d45741cf0","parentId":"2a05254bde6a63a0","traceId":"000000000000000009be1a898df643ec","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:05.435Z","sequence":27153,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF17A40956F6607, resource-version: 12cb28bc-95df-4254-8960-91a521a791c4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"12cfb33d45741cf0","parentId":"2a05254bde6a63a0","traceId":"000000000000000009be1a898df643ec","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:06.511Z","sequence":27154,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:06.512Z","sequence":27155,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:06.515Z","sequence":27156,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-65a90818-8108-4d0a-90d6-d26d1a5f1f8e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:06.519Z","sequence":27157,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:06.519Z","sequence":27158,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191215]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:06.529Z","sequence":27159,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-de6a9e0a-0c76-4e37-9106-0e268a65a428, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:06.649Z","sequence":27160,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:06.65Z","sequence":27161,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF17A40956F6607] for gateway [gateway_integrationtest_network_191215]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:06.651Z","sequence":27162,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:06.651Z","sequence":27163,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191215]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:06.655Z","sequence":27164,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:06.656Z","sequence":27165,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:06.657Z","sequence":27166,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e3b29ded-ed7a-488b-9a55-11a37cef3455, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:06.971Z","sequence":27167,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9f2c4943-a574-46d4-b240-e6e13c85444c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:09.865Z","sequence":27168,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/acta:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:09.865Z","sequence":27169,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: acta, device-id: 0008004AAAA3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:09.876Z","sequence":27170,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a7996f51-2aca-4cd9-bb49-fb727b5c32ae, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:09.88Z","sequence":27171,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:09.88Z","sequence":27172,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: acta]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:09.883Z","sequence":27173,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-7068e166-4b29-4b6a-be88-dd34da36e283, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:15.477Z","sequence":27174,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:15.477Z","sequence":27175,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10018B1] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:15.483Z","sequence":27176,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:15.483Z","sequence":27177,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:15.489Z","sequence":27178,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6aae7efa-d397-4c54-b1b0-c8ec545bb31d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:17.169Z","sequence":27179,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:17.169Z","sequence":27180,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10018DF] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:17.176Z","sequence":27181,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:17.176Z","sequence":27182,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:17.182Z","sequence":27183,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-48336d8d-e0b0-4d9a-b9cb-4ff27e4a3b4d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:17.813Z","sequence":27184,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:17.813Z","sequence":27185,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:17.822Z","sequence":27186,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e9e70b74-23b0-4c3a-9e5f-8f524b0d5235, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:18.384Z","sequence":27187,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF17A40956F6607]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a58b21c2db0e4646","parentId":"50b1f8e546727fa0","traceId":"00000000000000003331019d7c1ed364","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:18.401Z","sequence":27188,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF17A40956F6607]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a58b21c2db0e4646","parentId":"50b1f8e546727fa0","traceId":"00000000000000003331019d7c1ed364","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:18.565Z","sequence":27189,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191215]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"17cd915c9bf3260c","parentId":"009a95ee4bad1ea5","traceId":"0000000000000000b165872a665795f0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:18.581Z","sequence":27190,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191215]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"17cd915c9bf3260c","parentId":"009a95ee4bad1ea5","traceId":"0000000000000000b165872a665795f0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:19.145Z","sequence":27191,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 251FDCB3CC7A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c170ca4c8a850c49","parentId":"b5c8ef27c233e31b","traceId":"0000000000000000f384ed69a8edcb35","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:19.166Z","sequence":27192,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 251FDCB3CC7A, resource-version: 758112d0-72ed-4207-99ee-cabc1a57ac06]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c170ca4c8a850c49","parentId":"b5c8ef27c233e31b","traceId":"0000000000000000f384ed69a8edcb35","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:19.174Z","sequence":27193,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 251FDCB3CC7A, resource-version: ad7cc6cb-107c-46ae-87f4-f66684815977]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c170ca4c8a850c49","parentId":"b5c8ef27c233e31b","traceId":"0000000000000000f384ed69a8edcb35","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:19.178Z","sequence":27194,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 251FDCB3CC7A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0a035a0b285f5d1f","parentId":"03b11672f30d2bbc","traceId":"0000000000000000f384ed69a8edcb35","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:19.301Z","sequence":27195,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 251FDCB3CC7A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0a035a0b285f5d1f","parentId":"03b11672f30d2bbc","traceId":"0000000000000000f384ed69a8edcb35","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:19.885Z","sequence":27196,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF2803BC5222118]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5106910abfca7a12","parentId":"efbf1f9a952e4cda","traceId":"000000000000000000606793bdb48743","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:19.902Z","sequence":27197,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF2803BC5222118, resource-version: 509bc0ff-2689-4cf7-a462-7d95e2cabfd7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5106910abfca7a12","parentId":"efbf1f9a952e4cda","traceId":"000000000000000000606793bdb48743","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:19.909Z","sequence":27198,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF2803BC5222118, resource-version: babd35e3-8161-49c6-a7c8-572fcb3dd4f7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5106910abfca7a12","parentId":"efbf1f9a952e4cda","traceId":"000000000000000000606793bdb48743","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:20.952Z","sequence":27199,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:20.953Z","sequence":27200,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:20.956Z","sequence":27201,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-a4d2143e-d5c0-4e2d-94a9-d68968757e5f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:20.963Z","sequence":27202,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:20.963Z","sequence":27203,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-251FDCB3CC7A]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:20.973Z","sequence":27204,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-68c6371d-ae77-4903-8e7a-e573e13e99e9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:21.097Z","sequence":27205,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:21.097Z","sequence":27206,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 251FDCB3CC7A]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:21.106Z","sequence":27207,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-dfbbe32e-1d56-470d-9a8d-945e0436a060, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:21.111Z","sequence":27208,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:21.111Z","sequence":27209,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF2803BC5222118] for gateway [251FDCB3CC7A]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:21.116Z","sequence":27210,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:21.116Z","sequence":27211,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:21.281Z","sequence":27212,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5c31534a-3a38-456f-838b-08513bdb5db2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:23.406Z","sequence":27213,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:23.406Z","sequence":27214,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: ineos]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:23.409Z","sequence":27215,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-1019630d-9b41-4d0c-a04f-462766eb6d0d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:23.411Z","sequence":27216,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:23.411Z","sequence":27217,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB1000A8C] for gateway [0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:23.417Z","sequence":27218,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:23.417Z","sequence":27219,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:23.419Z","sequence":27220,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1aee90a0-ffc8-4484-9651-961c4beb8ed3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:25.539Z","sequence":27221,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:25.539Z","sequence":27222,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10018BB] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:25.545Z","sequence":27223,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:25.545Z","sequence":27224,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:25.551Z","sequence":27225,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a0919b5b-9f03-4013-8aef-a4b704b650ab, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:27.162Z","sequence":27226,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/repsol:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:27.163Z","sequence":27227,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: repsol, device-id: 0008004A37FF]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:27.168Z","sequence":27228,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-cfc01bac-49e4-4bfc-bbdb-6eac8f327bbb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:27.171Z","sequence":27229,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:27.171Z","sequence":27230,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: repsol]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:27.173Z","sequence":27231,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-bb9fc434-adff-4ee0-a18f-2a2443332f5a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:32.998Z","sequence":27232,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF2803BC5222118]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ef91f4d9c9375763","parentId":"443fcf61577ba68f","traceId":"00000000000000004d7b4ecdf061e0a7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:33.029Z","sequence":27233,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF2803BC5222118]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ef91f4d9c9375763","parentId":"443fcf61577ba68f","traceId":"00000000000000004d7b4ecdf061e0a7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:33.358Z","sequence":27234,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 251FDCB3CC7A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4afaaa3f4268bb7f","parentId":"5c4717ec725f972f","traceId":"0000000000000000b62f3104502b2490","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:33.376Z","sequence":27235,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 251FDCB3CC7A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4afaaa3f4268bb7f","parentId":"5c4717ec725f972f","traceId":"0000000000000000b62f3104502b2490","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:39.505Z","sequence":27236,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:39.506Z","sequence":27237,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: shell]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:39.509Z","sequence":27238,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-4c73e267-1906-4b99-9994-3f5da05d89d7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:39.679Z","sequence":27239,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:39.679Z","sequence":27240,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006A5] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:39.686Z","sequence":27241,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:39.686Z","sequence":27242,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:39.691Z","sequence":27243,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7b872355-4393-4863-b2ca-4a4c43ca7038, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:39.698Z","sequence":27244,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:39.698Z","sequence":27245,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10008A7] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:39.699Z","sequence":27246,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:39.699Z","sequence":27247,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:39.704Z","sequence":27248,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c7ee11a7-d8b2-41a5-a3d5-4db2bd37e10d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:39.704Z","sequence":27249,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:39.704Z","sequence":27250,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:39.708Z","sequence":27251,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-536d4ac6-3ba2-4166-8a27-bd8c7ea0387a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:43.599Z","sequence":27252,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:43.599Z","sequence":27253,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10018AD] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:43.605Z","sequence":27254,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:43.605Z","sequence":27255,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:43.611Z","sequence":27256,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e4e8ce85-1f40-4945-a117-500d87cb5e29, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:45.692Z","sequence":27257,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:45.693Z","sequence":27258,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001909] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:45.698Z","sequence":27259,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:45.699Z","sequence":27260,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:45.705Z","sequence":27261,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-bc50602d-f6d8-4668-b0e0-2e7488067616, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:48.404Z","sequence":27262,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/shell:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:48.404Z","sequence":27263,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: shell, type: hashed-password, auth-id: auth-gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:48.415Z","sequence":27264,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-ddfbbeba-9f5d-4576-8088-d7ce88e3f4e1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:48.54Z","sequence":27265,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:48.54Z","sequence":27266,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000571] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:48.551Z","sequence":27267,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:48.551Z","sequence":27268,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:48.558Z","sequence":27269,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d8a1ed89-433f-472a-adca-8034924b8760, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:50.812Z","sequence":27270,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:50.812Z","sequence":27271,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 0008004B51D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:50.819Z","sequence":27272,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e56328a0-0b38-4f65-961f-992dbd8fe6f4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:50.822Z","sequence":27273,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:50.822Z","sequence":27274,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: dow]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:50.825Z","sequence":27275,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-cbe29f95-b6c8-4f78-9dfa-75c5cbf7af25, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:52.764Z","sequence":27276,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:52.765Z","sequence":27277,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10018B0] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:52.779Z","sequence":27278,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:52.78Z","sequence":27279,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:39:52.786Z","sequence":27280,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7160ed4d-68a9-455f-865f-afbe5d831034, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:40:08.974Z","sequence":27281,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:40:08.975Z","sequence":27282,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10009D0] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:40:08.982Z","sequence":27283,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:40:08.982Z","sequence":27284,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:40:08.985Z","sequence":27285,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-803fba0a-b5a6-4cee-8c4d-58ee747691c2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:40:09.873Z","sequence":27286,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:40:09.873Z","sequence":27287,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: terega]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:40:09.881Z","sequence":27288,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-db2cd13d-74bc-463e-a016-ca9aab15991b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:40:09.884Z","sequence":27289,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/terega:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:40:09.885Z","sequence":27290,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: terega, type: hashed-password, auth-id: auth-gateway_terega_network_27]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:40:09.896Z","sequence":27291,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-32ffc7b7-e050-4aea-9909-8cbff929ac0f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:40:10.039Z","sequence":27292,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/terega:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:40:10.039Z","sequence":27293,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: terega, device-id: 70B3D57BB10000A2] for gateway [gateway_terega_network_27]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:40:10.04Z","sequence":27294,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/terega:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:40:10.04Z","sequence":27295,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: terega, device-id: gateway_terega_network_27]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:40:10.048Z","sequence":27296,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_terega\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:40:10.048Z","sequence":27297,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_terega\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:40:10.049Z","sequence":27298,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b1108456-fa0b-4248-a9ee-7cc6e378b59c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:40:10.051Z","sequence":27299,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d0aced75-6227-4e58-b316-4b0c2488c5e2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:40:18.035Z","sequence":27300,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:40:18.035Z","sequence":27301,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000822] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:40:18.042Z","sequence":27302,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:40:18.042Z","sequence":27303,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:40:18.046Z","sequence":27304,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-96398eaa-b42b-436e-bb55-d0c3d2b83185, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:40:20.258Z","sequence":27305,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:40:20.258Z","sequence":27306,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BD9] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:40:20.265Z","sequence":27307,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:40:20.265Z","sequence":27308,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:40:20.271Z","sequence":27309,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7da6cee2-58d1-4657-b776-62ce56f24b29, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:40:21.091Z","sequence":27310,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:40:21.091Z","sequence":27311,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001903] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:40:21.098Z","sequence":27312,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:40:21.098Z","sequence":27313,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:40:21.107Z","sequence":27314,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-baa39ea8-6fb8-446d-b391-6e7a088ee238, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:40:21.457Z","sequence":27315,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:40:21.458Z","sequence":27316,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100191E] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:40:21.464Z","sequence":27317,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:40:21.464Z","sequence":27318,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:40:21.47Z","sequence":27319,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-569d0aed-1579-47d1-9aef-08ae3cb451c8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:40:23.545Z","sequence":27320,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:40:23.546Z","sequence":27321,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10018DA] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:40:23.551Z","sequence":27322,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:40:23.551Z","sequence":27323,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:40:23.557Z","sequence":27324,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c63b9198-dc51-413d-bef4-28a8395fa14b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:40:24.979Z","sequence":27325,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/conditionall:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:40:24.979Z","sequence":27326,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: conditionall, device-id: 0008004B512D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:40:24.986Z","sequence":27327,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-59490f29-4da3-4c30-9f26-aabf76583e5a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:40:24.989Z","sequence":27328,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:40:24.989Z","sequence":27329,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: conditionall]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:40:24.992Z","sequence":27330,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-08dd1f6b-86f5-4081-81b3-0f7e41a27642, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:40:27.578Z","sequence":27331,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:40:27.578Z","sequence":27332,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100194A] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:40:27.584Z","sequence":27333,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:40:27.584Z","sequence":27334,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:40:27.59Z","sequence":27335,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ca2385f2-865e-4ee0-b773-5f75feadb34a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:40:34.529Z","sequence":27336,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:40:34.529Z","sequence":27337,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:40:34.535Z","sequence":27338,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-665afdf3-6942-4d6f-999a-0abb39d7c4c4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:40:34.539Z","sequence":27339,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:40:34.539Z","sequence":27340,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oci]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:40:34.542Z","sequence":27341,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-a363686e-5647-49d2-9897-e8a0fd342f15, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:40:36.243Z","sequence":27342,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:40:36.244Z","sequence":27343,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000179] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:40:36.249Z","sequence":27344,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:40:36.249Z","sequence":27345,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:40:36.252Z","sequence":27346,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-fe9ed18f-082c-4e42-b6d0-1c68ff0a28ac, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:40:36.356Z","sequence":27347,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:40:36.356Z","sequence":27348,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000179] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:40:36.362Z","sequence":27349,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:40:36.362Z","sequence":27350,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:40:36.365Z","sequence":27351,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-30dff8cc-98e9-4d82-85f9-b3cc53e874bc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:40:38.999Z","sequence":27352,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:40:38.999Z","sequence":27353,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001902] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:40:39.005Z","sequence":27354,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:40:39.006Z","sequence":27355,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:40:39.012Z","sequence":27356,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7aa070de-e4a2-4923-a64d-3cd6d41b0320, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:40:40.703Z","sequence":27357,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:40:40.703Z","sequence":27358,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001913] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:40:40.71Z","sequence":27359,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:40:40.71Z","sequence":27360,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:40:40.717Z","sequence":27361,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-402ed419-7c33-43f1-a4eb-2a6c6965cc60, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:40:46.422Z","sequence":27362,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:40:46.422Z","sequence":27363,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006CF] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:40:46.428Z","sequence":27364,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:40:46.428Z","sequence":27365,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:40:46.434Z","sequence":27366,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6ad4b093-2daf-4e4f-b749-58220a23ca74, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:40:47.737Z","sequence":27367,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:40:47.737Z","sequence":27368,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019F0] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:40:47.745Z","sequence":27369,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:40:47.745Z","sequence":27370,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:40:47.751Z","sequence":27371,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-fd759404-7cbc-4558-bf44-3c5992056fcb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:40:53.065Z","sequence":27372,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:40:53.065Z","sequence":27373,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001904] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:40:53.071Z","sequence":27374,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:40:53.072Z","sequence":27375,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:40:53.078Z","sequence":27376,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-70d694ec-7376-4812-ba95-194bcbc3708a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:40:53.111Z","sequence":27377,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:40:53.111Z","sequence":27378,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10018AE] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:40:53.116Z","sequence":27379,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:40:53.116Z","sequence":27380,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:40:53.121Z","sequence":27381,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-266ac7d2-53dd-4ebe-9bba-d6b9bc97a72d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:40:55.759Z","sequence":27382,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:40:55.759Z","sequence":27383,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000F88] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:40:55.769Z","sequence":27384,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:40:55.769Z","sequence":27385,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:40:55.775Z","sequence":27386,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4ec03fbf-7fd2-43d2-b6d5-c9c577f3ab26, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:00.883Z","sequence":27387,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/terega:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:00.883Z","sequence":27388,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: terega, device-id: 353438340046002D] for gateway [gateway_terega_network_27]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:00.892Z","sequence":27389,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_terega\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:00.892Z","sequence":27390,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_terega\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:00.895Z","sequence":27391,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-bc5aff53-5c6b-4ad3-844f-02d5c6e32240, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:01.981Z","sequence":27392,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:01.981Z","sequence":27393,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BB84C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:01.987Z","sequence":27394,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0f21c1d2-ff74-4cce-b1be-3a74cd1573fa, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:01.99Z","sequence":27395,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:01.99Z","sequence":27396,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: lanxess]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:01.995Z","sequence":27397,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-4fc84ae0-fce3-4beb-aa10-bb17a2c91608, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:02.982Z","sequence":27398,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:02.982Z","sequence":27399,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001920] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:02.987Z","sequence":27400,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:02.988Z","sequence":27401,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:02.993Z","sequence":27402,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d7e85592-96aa-4213-b900-e06454a2a63c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:03.467Z","sequence":27403,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:03.468Z","sequence":27404,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 0008004B5135]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:03.473Z","sequence":27405,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-923ce513-edad-46b0-9f00-70d65f9a1796, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:04.386Z","sequence":27406,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191217]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d456249d7f504dce","parentId":"5128e1e748b0620c","traceId":"000000000000000090264649c7d26fba","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:04.403Z","sequence":27407,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191217, resource-version: 073598bc-b3b1-489c-ad1b-7774440a5d80]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d456249d7f504dce","parentId":"5128e1e748b0620c","traceId":"000000000000000090264649c7d26fba","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:04.411Z","sequence":27408,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191217, resource-version: 7a2cc406-01a8-41ec-b051-93a96d3620d5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d456249d7f504dce","parentId":"5128e1e748b0620c","traceId":"000000000000000090264649c7d26fba","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:04.414Z","sequence":27409,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191217]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"20d464cad3c3d6ff","parentId":"fad213dd4736d56a","traceId":"000000000000000090264649c7d26fba","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:04.544Z","sequence":27410,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191217]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"20d464cad3c3d6ff","parentId":"fad213dd4736d56a","traceId":"000000000000000090264649c7d26fba","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:05.283Z","sequence":27411,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/repsol:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:05.283Z","sequence":27412,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: repsol, device-id: 70B3D57BB1000229] for gateway [0008004A37FF]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:05.289Z","sequence":27413,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:0.4.1\"\n },\n \"viaGroups\" : [ \"gateways_repsol\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:05.289Z","sequence":27414,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_repsol\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:05.292Z","sequence":27415,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c4286e51-83f5-463a-8f95-10894106b433, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:05.367Z","sequence":27416,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF0969F4522A40A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cbc35a94c6555b04","parentId":"c78477980a9be81e","traceId":"000000000000000090b2b3ed37e53f86","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:05.424Z","sequence":27417,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF0969F4522A40A, resource-version: 0477c295-106c-4fc9-9ec3-3c2d35375ad5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cbc35a94c6555b04","parentId":"c78477980a9be81e","traceId":"000000000000000090b2b3ed37e53f86","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:05.451Z","sequence":27418,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF0969F4522A40A, resource-version: a16bd9ee-34dd-4aa5-be73-209df6ebd5ba]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cbc35a94c6555b04","parentId":"c78477980a9be81e","traceId":"000000000000000090b2b3ed37e53f86","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:06.557Z","sequence":27419,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:06.558Z","sequence":27420,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191217]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:06.576Z","sequence":27421,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-cdc1bb70-4b88-4c4c-9976-5c5941d72b2f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:06.693Z","sequence":27422,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:06.693Z","sequence":27423,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF0969F4522A40A] for gateway [gateway_integrationtest_network_191217]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:06.694Z","sequence":27424,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:06.694Z","sequence":27425,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191217]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:06.698Z","sequence":27426,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:06.699Z","sequence":27427,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:06.7Z","sequence":27428,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-25908a78-ab62-4a69-a3cd-eb876799726b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:06.986Z","sequence":27429,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ba7efa0c-2d72-47de-aee7-09c8f24c779e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:07.316Z","sequence":27430,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:07.317Z","sequence":27431,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BBD1B]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:07.349Z","sequence":27432,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e6e8bf4e-7f77-4b09-bb81-023edbd2762a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:14.367Z","sequence":27433,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:14.367Z","sequence":27434,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100191C] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:14.378Z","sequence":27435,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:14.378Z","sequence":27436,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:14.385Z","sequence":27437,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0f6f3307-7b4d-4c11-8651-32fbf90c63cf, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:14.609Z","sequence":27438,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/arkema:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:14.609Z","sequence":27439,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: arkema, device-id: 0008004AE119]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:14.615Z","sequence":27440,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-55d8043e-e46d-4f8d-878f-177449a908bd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:14.618Z","sequence":27441,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:14.618Z","sequence":27442,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: arkema]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:14.621Z","sequence":27443,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-b420f6b7-f6e9-4193-bfcb-09a4b3d0bcc6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:17.352Z","sequence":27444,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:17.352Z","sequence":27445,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100078A] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:17.358Z","sequence":27446,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:17.358Z","sequence":27447,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:17.364Z","sequence":27448,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7366c682-8642-440e-9fec-29cd6a33d1c5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:19.487Z","sequence":27449,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:19.487Z","sequence":27450,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000227] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:19.494Z","sequence":27451,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:19.494Z","sequence":27452,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:19.497Z","sequence":27453,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6f355ab8-2821-435f-bc7c-681ee401559d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:19.519Z","sequence":27454,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:19.519Z","sequence":27455,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000227] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:19.527Z","sequence":27456,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:19.527Z","sequence":27457,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:19.53Z","sequence":27458,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9beffb48-08ad-4b81-b136-caae3121a7bc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:20.954Z","sequence":27459,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF0969F4522A40A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7a644e03207ec3ae","parentId":"84efb4b4c38d16bf","traceId":"0000000000000000b5fca45b821cafaa","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:20.972Z","sequence":27460,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF0969F4522A40A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7a644e03207ec3ae","parentId":"84efb4b4c38d16bf","traceId":"0000000000000000b5fca45b821cafaa","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:21.096Z","sequence":27461,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191217]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e928d93eb4ecd78f","parentId":"d3ea0b8c1d19d0ed","traceId":"00000000000000004d4909f7b55ca11b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:21.115Z","sequence":27462,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191217]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e928d93eb4ecd78f","parentId":"d3ea0b8c1d19d0ed","traceId":"00000000000000004d4909f7b55ca11b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:21.246Z","sequence":27463,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:21.246Z","sequence":27464,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB1000A5D] for gateway [0008004B5135]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:21.252Z","sequence":27465,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:21.252Z","sequence":27466,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:21.255Z","sequence":27467,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-13684001-d7ba-470c-a426-684dbe0104be, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:21.845Z","sequence":27468,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 868FC924E195]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d2ffdf721c2db589","parentId":"70733e04ee4d30dd","traceId":"0000000000000000a27d0f4ab4b5bc2f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:21.866Z","sequence":27469,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 868FC924E195, resource-version: 3af80860-efcb-44cb-8263-8262532c4b1a]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d2ffdf721c2db589","parentId":"70733e04ee4d30dd","traceId":"0000000000000000a27d0f4ab4b5bc2f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:21.874Z","sequence":27470,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 868FC924E195, resource-version: 9a56fde3-e08c-4997-8991-3c2be7bcbdca]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d2ffdf721c2db589","parentId":"70733e04ee4d30dd","traceId":"0000000000000000a27d0f4ab4b5bc2f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:21.878Z","sequence":27471,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 868FC924E195]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1d31db1658c2b6fb","parentId":"e117d4c9d3710cfc","traceId":"0000000000000000a27d0f4ab4b5bc2f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:22.014Z","sequence":27472,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 868FC924E195]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1d31db1658c2b6fb","parentId":"e117d4c9d3710cfc","traceId":"0000000000000000a27d0f4ab4b5bc2f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:22.661Z","sequence":27473,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFE9542E67CA5B1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"00691145d380ff58","parentId":"bed7f11ac86d08c7","traceId":"00000000000000000673b4ccf7b3eeee","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:22.681Z","sequence":27474,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFE9542E67CA5B1, resource-version: 9be2f003-a7d0-495d-b533-770a2078e559]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"00691145d380ff58","parentId":"bed7f11ac86d08c7","traceId":"00000000000000000673b4ccf7b3eeee","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:22.687Z","sequence":27475,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFE9542E67CA5B1, resource-version: 63a3771d-f4f1-432f-8568-11a2616289d9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"00691145d380ff58","parentId":"bed7f11ac86d08c7","traceId":"00000000000000000673b4ccf7b3eeee","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:22.924Z","sequence":27476,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:22.924Z","sequence":27477,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001908] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:22.929Z","sequence":27478,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:22.93Z","sequence":27479,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:22.936Z","sequence":27480,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b921193b-2c14-4990-937c-913ad29baad2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:23.738Z","sequence":27481,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:23.738Z","sequence":27482,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-868FC924E195]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:23.749Z","sequence":27483,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-1eedaa9e-1533-4d54-be00-6173e93262a8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:23.869Z","sequence":27484,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:23.869Z","sequence":27485,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 868FC924E195]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:23.877Z","sequence":27486,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b88eb463-c87e-4b1a-8a13-e18881de11c4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:23.883Z","sequence":27487,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:23.883Z","sequence":27488,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFE9542E67CA5B1] for gateway [868FC924E195]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:23.889Z","sequence":27489,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:23.889Z","sequence":27490,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:24.12Z","sequence":27491,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-bdca7140-7563-4bb6-809d-4d3e5cb55b34, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:33.001Z","sequence":27492,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:33.002Z","sequence":27493,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AE6] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:33.002Z","sequence":27494,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:33.002Z","sequence":27495,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:33.01Z","sequence":27496,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:33.01Z","sequence":27497,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:33.014Z","sequence":27498,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-516dabb1-ed8b-4919-b6cd-92319eb9bdd8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:33.016Z","sequence":27499,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6f920ae6-14f5-468d-a0e6-75e89938b978, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:34.075Z","sequence":27500,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:34.075Z","sequence":27501,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000A94] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:34.082Z","sequence":27502,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:34.082Z","sequence":27503,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:34.088Z","sequence":27504,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-709a1889-6d56-4a28-be24-1e7429fbb902, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:34.241Z","sequence":27505,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFE9542E67CA5B1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fe0611a6a8497c03","parentId":"66f2d97eb46241da","traceId":"00000000000000004ddbcb52bc84359a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:34.27Z","sequence":27506,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFE9542E67CA5B1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fe0611a6a8497c03","parentId":"66f2d97eb46241da","traceId":"00000000000000004ddbcb52bc84359a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:35.004Z","sequence":27507,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 868FC924E195]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"dc7592ef228e6be4","parentId":"8cb502ec8e20b443","traceId":"000000000000000000f31c609be1f5ff","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:35.021Z","sequence":27508,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 868FC924E195]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"dc7592ef228e6be4","parentId":"8cb502ec8e20b443","traceId":"000000000000000000f31c609be1f5ff","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:38.854Z","sequence":27509,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:38.854Z","sequence":27510,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BC4] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:38.859Z","sequence":27511,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:38.86Z","sequence":27512,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:38.866Z","sequence":27513,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8a78c265-7955-4f2b-970c-b060f5f1602f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:42.788Z","sequence":27514,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:42.788Z","sequence":27515,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 70B3D57BB10001A5] for gateway [0008004BB84C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:42.794Z","sequence":27516,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:0.4.1\"\n },\n \"viaGroups\" : [ \"gateways_lanxess\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:42.794Z","sequence":27517,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_lanxess\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:42.796Z","sequence":27518,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-54613fe6-47c0-4e40-b665-e115a75e730f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:55.457Z","sequence":27519,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/terega:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:55.457Z","sequence":27520,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: terega, device-id: 3938383700390044] for gateway [gateway_terega_network_27]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:55.482Z","sequence":27521,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_terega\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:55.482Z","sequence":27522,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_terega\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:55.491Z","sequence":27523,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-57da29ae-3e3d-4c69-b6db-11e16b338245, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:56.822Z","sequence":27524,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:56.822Z","sequence":27525,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:56.828Z","sequence":27526,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0b0dd30f-6ed9-4d6f-a9a3-7962e98564a2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:58.108Z","sequence":27527,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:58.108Z","sequence":27528,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: flint]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:58.112Z","sequence":27529,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-c0fa027a-c3b5-4335-aedf-13a5e4c12a13, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:58.115Z","sequence":27530,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/flint:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:58.115Z","sequence":27531,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: flint, type: hashed-password, auth-id: auth-flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:58.117Z","sequence":27532,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/flint:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:58.117Z","sequence":27533,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: flint, type: hashed-password, auth-id: auth-flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:58.126Z","sequence":27534,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-94e486a9-db0c-4131-b76c-ec9c2d5245f8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:58.127Z","sequence":27535,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-9e544ee8-72ef-4b53-9c07-bbaae403d72f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:58.402Z","sequence":27536,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:58.403Z","sequence":27537,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10007F7] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:58.41Z","sequence":27538,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:58.411Z","sequence":27539,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:41:58.414Z","sequence":27540,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-21cd844d-c502-458d-89ca-b9ff682bac7b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:42:01.726Z","sequence":27541,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:42:01.726Z","sequence":27542,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB100084C] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:42:01.737Z","sequence":27543,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:42:01.737Z","sequence":27544,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:42:01.741Z","sequence":27545,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3c0b7b67-56c8-46e8-9f89-c498f5c435b5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:42:08.076Z","sequence":27546,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:42:08.076Z","sequence":27547,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BBD1C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:42:08.082Z","sequence":27548,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a944b893-69f2-4a05-a9f5-7c90af01b492, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:42:10.568Z","sequence":27549,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:42:10.568Z","sequence":27550,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B90] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:42:10.575Z","sequence":27551,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:42:10.575Z","sequence":27552,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:42:10.582Z","sequence":27553,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b0a59ffd-e8db-450d-a373-3ecdd3bf36d0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:42:14.753Z","sequence":27554,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:42:14.753Z","sequence":27555,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100191A] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:42:14.771Z","sequence":27556,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:42:14.771Z","sequence":27557,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:42:14.778Z","sequence":27558,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7bbfabf7-c2ce-4c97-be57-f57a1eb65201, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:42:22.333Z","sequence":27559,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:42:22.333Z","sequence":27560,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B9D] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:42:22.338Z","sequence":27561,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:42:22.338Z","sequence":27562,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:42:22.344Z","sequence":27563,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1d0dad5a-7a9d-480b-8067-d7ea31908423, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:42:27.451Z","sequence":27564,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:42:27.451Z","sequence":27565,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 0008004C80F4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:42:27.457Z","sequence":27566,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1ad0f5f4-9aaf-4814-80ff-36d6e30e3e07, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:42:28.579Z","sequence":27567,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:42:28.579Z","sequence":27568,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AE9] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:42:28.584Z","sequence":27569,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:42:28.584Z","sequence":27570,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:42:28.59Z","sequence":27571,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-56c44c2a-9c4b-4b78-b509-ceeb56a1504a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:42:30.103Z","sequence":27572,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:42:30.103Z","sequence":27573,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000173] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:42:30.108Z","sequence":27574,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:42:30.109Z","sequence":27575,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:42:30.112Z","sequence":27576,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3f67a56e-e084-4589-a679-11bda3f99109, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:42:30.119Z","sequence":27577,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:42:30.12Z","sequence":27578,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000173] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:42:30.124Z","sequence":27579,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:42:30.124Z","sequence":27580,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:42:30.128Z","sequence":27581,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b9ccb71c-7b4b-4e83-8883-0341d3158ed2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:42:30.757Z","sequence":27582,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/conditionall:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:42:30.757Z","sequence":27583,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: conditionall, device-id: 70B3D57BB1000211] for gateway [0008004B512D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:42:30.763Z","sequence":27584,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_conditionall\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:42:30.763Z","sequence":27585,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_conditionall\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:42:30.766Z","sequence":27586,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-784b7961-2d1c-482d-b37c-4ca61c738ea7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:42:43.227Z","sequence":27587,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oiltanking:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:42:43.228Z","sequence":27588,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oiltanking, device-id: 0008004BB60F]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:42:43.237Z","sequence":27589,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-27213e7d-fde3-40a0-a7b4-ca730f30af69, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:42:43.24Z","sequence":27590,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:42:43.24Z","sequence":27591,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oiltanking]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:42:43.247Z","sequence":27592,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-a961c4fd-c1f7-4898-b644-9c308da90dfb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:42:51.747Z","sequence":27593,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:42:51.747Z","sequence":27594,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000154] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:42:51.754Z","sequence":27595,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:42:51.754Z","sequence":27596,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:42:51.757Z","sequence":27597,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2f41475a-8c83-480f-b69d-26be05e1c5bd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:42:51.84Z","sequence":27598,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:42:51.84Z","sequence":27599,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000154] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:42:51.849Z","sequence":27600,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:42:51.849Z","sequence":27601,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:42:51.857Z","sequence":27602,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-71ba2c19-5a4b-4e32-ae5f-2f62a9efa571, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:43:04.246Z","sequence":27603,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191219]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"481c4b2055b94393","parentId":"909063d3cc110a32","traceId":"0000000000000000f8b76f5fdcf9299f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:43:04.267Z","sequence":27604,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191219, resource-version: d9a70029-313f-413a-8c2b-977b6bd7f981]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"481c4b2055b94393","parentId":"909063d3cc110a32","traceId":"0000000000000000f8b76f5fdcf9299f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:43:04.273Z","sequence":27605,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191219, resource-version: 29942540-9f11-4477-ba9a-07655236c406]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"481c4b2055b94393","parentId":"909063d3cc110a32","traceId":"0000000000000000f8b76f5fdcf9299f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:43:04.277Z","sequence":27606,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191219]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4987b10b38cf721b","parentId":"9e24cb6a75ac862c","traceId":"0000000000000000f8b76f5fdcf9299f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:43:04.46Z","sequence":27607,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191219]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4987b10b38cf721b","parentId":"9e24cb6a75ac862c","traceId":"0000000000000000f8b76f5fdcf9299f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:43:05.329Z","sequence":27608,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF7182A0D410DC3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"57273aac425ddf45","parentId":"7012c901650b542f","traceId":"0000000000000000012ce22170dd3678","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:43:05.347Z","sequence":27609,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF7182A0D410DC3, resource-version: 0565e02d-5ffc-452c-990a-fcfa1d2a84bd]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"57273aac425ddf45","parentId":"7012c901650b542f","traceId":"0000000000000000012ce22170dd3678","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:43:05.353Z","sequence":27610,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF7182A0D410DC3, resource-version: d2457cd4-c75f-481b-957c-a3b586d51c6e]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"57273aac425ddf45","parentId":"7012c901650b542f","traceId":"0000000000000000012ce22170dd3678","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:43:06.462Z","sequence":27611,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:43:06.462Z","sequence":27612,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:43:06.466Z","sequence":27613,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-a5c9a1a9-9690-4e38-a838-6498e5ad8bdd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:43:06.468Z","sequence":27614,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:43:06.469Z","sequence":27615,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191219]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:43:06.48Z","sequence":27616,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-8b51bfae-7d9f-4633-b29d-54ad3a93b75d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:43:06.6Z","sequence":27617,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:43:06.601Z","sequence":27618,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF7182A0D410DC3] for gateway [gateway_integrationtest_network_191219]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:43:06.601Z","sequence":27619,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:43:06.601Z","sequence":27620,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191219]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:43:06.61Z","sequence":27621,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-829dda39-6e31-4c2a-9481-2fa0e74be38e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:43:06.611Z","sequence":27622,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:43:06.611Z","sequence":27623,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:43:06.927Z","sequence":27624,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3e8840e9-0eb5-49d6-903c-b87e0f330e5b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:43:06.988Z","sequence":27625,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:43:06.989Z","sequence":27626,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: shell]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:43:06.992Z","sequence":27627,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-3dc9d23d-0564-448c-acfe-75ec57638634, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:43:06.994Z","sequence":27628,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/shell:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:43:06.995Z","sequence":27629,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: shell, type: hashed-password, auth-id: auth-gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:43:07.006Z","sequence":27630,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-13d10ccc-0824-4cdc-94a4-24a05e0209d3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:43:07.152Z","sequence":27631,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:43:07.153Z","sequence":27632,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100020C] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:43:07.16Z","sequence":27633,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:43:07.161Z","sequence":27634,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:43:07.169Z","sequence":27635,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2201ee23-acc4-459d-8838-765c9a1953c2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:43:12.225Z","sequence":27636,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:43:12.226Z","sequence":27637,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100021A] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:43:12.232Z","sequence":27638,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:0.4.1\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:43:12.232Z","sequence":27639,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:43:12.238Z","sequence":27640,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a003a665-f944-4f3f-a7a1-847724444897, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:43:19.782Z","sequence":27641,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/aloxy:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:43:19.783Z","sequence":27642,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: aloxy, device-id: 0008004A8F68]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:43:19.789Z","sequence":27643,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9e95ae35-6d1b-487b-851e-c4e9d9b37331, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:43:19.792Z","sequence":27644,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:43:19.793Z","sequence":27645,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: aloxy]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:43:19.796Z","sequence":27646,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-14a8fe06-9cec-4ccb-8082-adfe837a49e4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:43:19.838Z","sequence":27647,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/arkema:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:43:19.838Z","sequence":27648,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: arkema, device-id: 70B3D57BB100045E] for gateway [0008004AE119]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:43:19.843Z","sequence":27649,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_arkema\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:43:19.843Z","sequence":27650,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_arkema\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:43:19.846Z","sequence":27651,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-cfdecaef-2047-41ec-9fc8-87c7a43cbe51, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:43:20.984Z","sequence":27652,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF7182A0D410DC3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"93dfd0982de46987","parentId":"2fa15dfe2d0fa6c2","traceId":"0000000000000000bf81f2c4d6c7c6a8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:43:21.005Z","sequence":27653,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF7182A0D410DC3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"93dfd0982de46987","parentId":"2fa15dfe2d0fa6c2","traceId":"0000000000000000bf81f2c4d6c7c6a8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:43:21.12Z","sequence":27654,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191219]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6cf19a564be65e5a","parentId":"a52239c3eff76b08","traceId":"0000000000000000cec5a087e6076db2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:43:21.143Z","sequence":27655,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191219]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6cf19a564be65e5a","parentId":"a52239c3eff76b08","traceId":"0000000000000000cec5a087e6076db2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:43:21.548Z","sequence":27656,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: EB134F8705AD]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"78bfa40939701b09","parentId":"11bab4ec272f3e91","traceId":"00000000000000006c0b811f2801aa58","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:43:21.564Z","sequence":27657,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: EB134F8705AD, resource-version: ff6f9502-62e2-402b-8d2a-a5a8ba588d8d]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"78bfa40939701b09","parentId":"11bab4ec272f3e91","traceId":"00000000000000006c0b811f2801aa58","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:43:21.571Z","sequence":27658,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: EB134F8705AD, resource-version: 6c0c47f3-1d0a-49cb-b940-7ed0738c6257]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"78bfa40939701b09","parentId":"11bab4ec272f3e91","traceId":"00000000000000006c0b811f2801aa58","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:43:21.574Z","sequence":27659,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: EB134F8705AD]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2ae6149435abd2da","parentId":"61ff64af22075de1","traceId":"00000000000000006c0b811f2801aa58","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:43:21.702Z","sequence":27660,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: EB134F8705AD]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2ae6149435abd2da","parentId":"61ff64af22075de1","traceId":"00000000000000006c0b811f2801aa58","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:43:22.304Z","sequence":27661,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF3FAF7DF90650B]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c6cf47a134eabb5d","parentId":"25b0f30a4fdb825a","traceId":"0000000000000000371dece046cba962","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:43:22.322Z","sequence":27662,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF3FAF7DF90650B, resource-version: 965c872e-4e6c-4c0d-a4e1-cf1916ce1be5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c6cf47a134eabb5d","parentId":"25b0f30a4fdb825a","traceId":"0000000000000000371dece046cba962","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:43:22.33Z","sequence":27663,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF3FAF7DF90650B, resource-version: 39ec8a37-8ae9-4dc6-b1df-c89cdfddecfb]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c6cf47a134eabb5d","parentId":"25b0f30a4fdb825a","traceId":"0000000000000000371dece046cba962","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:43:23.427Z","sequence":27664,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:43:23.427Z","sequence":27665,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:43:23.431Z","sequence":27666,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-af795b79-f7bd-44c2-816e-045757103653, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:43:23.433Z","sequence":27667,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:43:23.434Z","sequence":27668,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-EB134F8705AD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:43:23.445Z","sequence":27669,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-410dc484-ce6b-4d68-b413-abf9c930d617, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:43:23.576Z","sequence":27670,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:43:23.576Z","sequence":27671,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: EB134F8705AD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:43:23.581Z","sequence":27672,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-48198277-895f-4c7e-b738-82b1c832ebde, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:43:23.585Z","sequence":27673,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:43:23.585Z","sequence":27674,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF3FAF7DF90650B] for gateway [EB134F8705AD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:43:23.592Z","sequence":27675,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:43:23.592Z","sequence":27676,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:43:23.755Z","sequence":27677,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b4024fae-feaf-472c-9c97-2bcd4a9083a8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:43:28.915Z","sequence":27678,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:43:28.915Z","sequence":27679,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B9C] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:43:28.921Z","sequence":27680,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:43:28.921Z","sequence":27681,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:43:28.927Z","sequence":27682,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-69a53c81-093d-494c-a9e0-3b7f9b7fda17, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:43:30.172Z","sequence":27683,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:43:30.172Z","sequence":27684,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000A9C] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:43:30.178Z","sequence":27685,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:43:30.178Z","sequence":27686,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:43:30.184Z","sequence":27687,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-45e2bbaa-9be8-42cb-b31c-b5d3891ecfbe, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:43:36.412Z","sequence":27688,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:43:36.412Z","sequence":27689,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BB613]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:43:36.418Z","sequence":27690,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-42f10426-e6db-4a1e-ad0a-c6d83ca96885, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:43:37.164Z","sequence":27691,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:43:37.164Z","sequence":27692,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000F8A] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:43:37.171Z","sequence":27693,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:43:37.171Z","sequence":27694,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:43:37.176Z","sequence":27695,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e887533b-3a69-4adc-814c-24481bb5c168, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:43:37.3Z","sequence":27696,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF3FAF7DF90650B]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6f7861924ff20458","parentId":"2dc4de875707c4fa","traceId":"00000000000000007b47992d3172207f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:43:37.321Z","sequence":27697,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF3FAF7DF90650B]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6f7861924ff20458","parentId":"2dc4de875707c4fa","traceId":"00000000000000007b47992d3172207f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:43:37.663Z","sequence":27698,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: EB134F8705AD]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c88fac2209f290bb","parentId":"e6d82c3ddebd853c","traceId":"00000000000000003df08cac55440d29","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:43:37.68Z","sequence":27699,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: EB134F8705AD]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c88fac2209f290bb","parentId":"e6d82c3ddebd853c","traceId":"00000000000000003df08cac55440d29","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:43:43.918Z","sequence":27700,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:43:43.918Z","sequence":27701,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BDD] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:43:43.924Z","sequence":27702,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:43:43.924Z","sequence":27703,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:43:43.932Z","sequence":27704,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2c4dbd9a-2feb-410f-8249-6cd41bc4f7a5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:43:59.431Z","sequence":27705,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:43:59.431Z","sequence":27706,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000ACA] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:43:59.438Z","sequence":27707,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:43:59.438Z","sequence":27708,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:43:59.445Z","sequence":27709,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6e07bc40-134b-4958-b0f4-0ffcba97e417, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:02.273Z","sequence":27710,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:02.273Z","sequence":27711,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oci]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:02.285Z","sequence":27712,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-e8aef4f1-cbf8-4d3b-ac0b-d7e58ff0351a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:02.288Z","sequence":27713,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:02.289Z","sequence":27714,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000166] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:02.296Z","sequence":27715,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:02.297Z","sequence":27716,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000166] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:02.309Z","sequence":27717,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:02.309Z","sequence":27718,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:02.317Z","sequence":27719,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d53291a6-998d-4714-bd12-ca4afac4a13e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:02.317Z","sequence":27720,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:02.317Z","sequence":27721,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:02.325Z","sequence":27722,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-18b18867-75ac-47aa-b8c7-6f71307fc886, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:04.674Z","sequence":27723,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:04.675Z","sequence":27724,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: chevron]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:04.678Z","sequence":27725,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-9a9d2031-12a3-4bd1-a294-2e9cf549bfde, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:04.68Z","sequence":27726,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Source{address='credentials/chevron/025d7c66-8ceb-4047-acd2-0b5229103c0d', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:04.68Z","sequence":27727,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-14]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:04.681Z","sequence":27728,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@12726982] for replies to [credentials/chevron/025d7c66-8ceb-4047-acd2-0b5229103c0d]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:04.683Z","sequence":27729,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Target{address='credentials/chevron', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:04.683Z","sequence":27730,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-15]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:04.683Z","sequence":27731,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:04.685Z","sequence":27732,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/chevron:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:04.685Z","sequence":27733,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: chevron, type: hashed-password, auth-id: auth-CHEVRON-ORBIWISE-EL-SEGUNDO]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:04.697Z","sequence":27734,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-e620e5bc-99dd-4b76-88c1-127b861d243e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:04.781Z","sequence":27735,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:04.781Z","sequence":27736,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: acta]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:04.785Z","sequence":27737,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-9adfd36f-7740-4e20-b926-fe02879d4b96, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:04.787Z","sequence":27738,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/acta:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:04.787Z","sequence":27739,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: acta, device-id: 353438340047002F] for gateway [0008004AAAA3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:04.795Z","sequence":27740,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.3.0\"\n },\n \"viaGroups\" : [ \"gateways_acta\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:04.795Z","sequence":27741,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_acta\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:04.798Z","sequence":27742,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d8bb0f9d-c58a-4d13-be2a-643473c39b77, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:04.828Z","sequence":27743,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/chevron:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:04.828Z","sequence":27744,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: chevron, device-id: 70B3D57BB10005E6] for gateway [CHEVRON-ORBIWISE-EL-SEGUNDO]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:04.829Z","sequence":27745,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/chevron:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:04.83Z","sequence":27746,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: chevron, device-id: CHEVRON-ORBIWISE-EL-SEGUNDO]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:04.833Z","sequence":27747,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_chevron\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:04.834Z","sequence":27748,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_chevron\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:04.835Z","sequence":27749,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-33274b08-5d6d-4dc2-b3ad-3959718df309, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:04.837Z","sequence":27750,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-53f0e3e0-f05c-44ba-8258-ede483154e6e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:09.603Z","sequence":27751,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:09.604Z","sequence":27752,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001916] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:09.609Z","sequence":27753,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:09.609Z","sequence":27754,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:09.616Z","sequence":27755,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5b1b07b5-4744-4e09-afd7-d9171796fac8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:12.664Z","sequence":27756,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/acta:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:12.664Z","sequence":27757,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: acta, device-id: 0008004AAAA3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:12.67Z","sequence":27758,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-063926bf-75d2-4663-b140-75ce7e149b7e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:18.247Z","sequence":27759,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:18.247Z","sequence":27760,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B8F] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:18.254Z","sequence":27761,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:18.254Z","sequence":27762,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:18.261Z","sequence":27763,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-446e87d0-89a3-4eeb-96b7-2e5e5fed0351, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:19.804Z","sequence":27764,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:19.805Z","sequence":27765,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:19.811Z","sequence":27766,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b0232763-92e2-4629-ac89-6e84b8cd98e9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:21.105Z","sequence":27767,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:21.105Z","sequence":27768,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000817] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:21.115Z","sequence":27769,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:21.116Z","sequence":27770,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:21.122Z","sequence":27771,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-70e434cc-cd5e-45ce-b837-4f48f7c294ae, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:23.41Z","sequence":27772,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:23.41Z","sequence":27773,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: ineos]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:23.413Z","sequence":27774,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-9f15198c-08db-4b4a-9025-93ae8025e43a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:23.416Z","sequence":27775,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:23.416Z","sequence":27776,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB1000A80] for gateway [0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:23.421Z","sequence":27777,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:23.421Z","sequence":27778,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:23.424Z","sequence":27779,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4007ab13-d9ff-4b55-91e1-44c89a9c09d6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:25.725Z","sequence":27780,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:25.725Z","sequence":27781,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001C0] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:25.739Z","sequence":27782,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:25.739Z","sequence":27783,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:25.742Z","sequence":27784,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-680d0f85-92e3-431c-a444-74d042c448d5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:25.829Z","sequence":27785,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:25.829Z","sequence":27786,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001C0] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:25.835Z","sequence":27787,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:25.835Z","sequence":27788,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:25.837Z","sequence":27789,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-99db05dc-7521-4492-a62c-a0a32d9aa10f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:28.912Z","sequence":27790,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/repsol:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:28.912Z","sequence":27791,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: repsol, device-id: 0008004A37FF]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:28.951Z","sequence":27792,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-423a174a-ca27-4e4f-af67-4831fbb69e38, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:28.954Z","sequence":27793,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:28.954Z","sequence":27794,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: repsol]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:28.957Z","sequence":27795,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-fd93e56a-c085-4db3-b648-a8f7e76401a8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:29.768Z","sequence":27796,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:29.768Z","sequence":27797,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B8B] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:29.773Z","sequence":27798,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:29.773Z","sequence":27799,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:29.785Z","sequence":27800,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7be5a527-c8c0-4eeb-94da-898dc1e5ff2d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:29.939Z","sequence":27801,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:29.939Z","sequence":27802,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: terega]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:29.943Z","sequence":27803,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-93553da7-c7df-4bb7-9cd5-a9f4daeb035b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:29.945Z","sequence":27804,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/terega:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:29.945Z","sequence":27805,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: terega, type: hashed-password, auth-id: auth-gateway_terega_network_27]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:29.957Z","sequence":27806,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-e74c0f06-a05c-4fd5-9fbd-f6c49108db73, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:30.092Z","sequence":27807,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/terega:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:30.092Z","sequence":27808,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: terega, device-id: 39383837002F0033] for gateway [gateway_terega_network_27]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:30.101Z","sequence":27809,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_terega\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:30.102Z","sequence":27810,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_terega\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:30.113Z","sequence":27811,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-578e5726-c109-4e0e-ab2c-a5c1bb22dd83, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:31.584Z","sequence":27812,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:31.584Z","sequence":27813,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000169] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:31.589Z","sequence":27814,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:31.589Z","sequence":27815,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:31.592Z","sequence":27816,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4430576e-bf81-41b8-bfc6-61b11a06d0a7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:31.618Z","sequence":27817,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:31.618Z","sequence":27818,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000169] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:31.624Z","sequence":27819,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:31.624Z","sequence":27820,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:31.628Z","sequence":27821,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e9bdcdf4-b6f3-4fdf-b4e9-9340a6976b63, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:49.433Z","sequence":27822,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:49.433Z","sequence":27823,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10007FE] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:49.434Z","sequence":27824,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:49.435Z","sequence":27825,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:49.445Z","sequence":27826,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:49.445Z","sequence":27827,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:49.446Z","sequence":27828,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8b712f6f-2199-43b9-bbb2-6d77eb239afe, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:49.452Z","sequence":27829,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0400a4d7-d4d8-46d4-a9c2-4b72c0aee886, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:52.728Z","sequence":27830,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:52.728Z","sequence":27831,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 0008004B51D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:52.743Z","sequence":27832,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-96db9d40-2487-4bca-b871-9db6000740b6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:52.746Z","sequence":27833,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:52.747Z","sequence":27834,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: dow]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:52.75Z","sequence":27835,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-54860b19-4320-4b33-a8df-2f8a52a91f3b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:59.817Z","sequence":27836,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:59.817Z","sequence":27837,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10007A0] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:59.824Z","sequence":27838,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:59.824Z","sequence":27839,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:44:59.845Z","sequence":27840,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a163759b-3ab1-4981-9c6d-363213adc82b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:01.047Z","sequence":27841,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:01.047Z","sequence":27842,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: lanxess]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:01.051Z","sequence":27843,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-ebc9b950-e80c-422f-a221-fa23b96e1dc8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:01.053Z","sequence":27844,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:01.054Z","sequence":27845,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 70B3D57BB10001AE] for gateway [0008004BB84C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:01.061Z","sequence":27846,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:0.4.0\"\n },\n \"viaGroups\" : [ \"gateways_lanxess\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:01.062Z","sequence":27847,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_lanxess\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:01.065Z","sequence":27848,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3ac3f03b-cda0-4c43-ac69-8a38e0c30abb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:01.429Z","sequence":27849,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:01.429Z","sequence":27850,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001E8] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:01.437Z","sequence":27851,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:01.437Z","sequence":27852,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:01.441Z","sequence":27853,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-30ba13ea-c674-4be5-8164-68a0d45c42b0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:01.645Z","sequence":27854,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:01.645Z","sequence":27855,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001E8] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:01.653Z","sequence":27856,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:01.653Z","sequence":27857,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:01.657Z","sequence":27858,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d482703a-e7cd-4555-b25f-8d5f1f788d0c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:02.106Z","sequence":27859,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:02.106Z","sequence":27860,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006E0] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:02.112Z","sequence":27861,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:02.112Z","sequence":27862,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:02.121Z","sequence":27863,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2849819b-efb5-4c6b-a7b4-4bded79882c6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:04.094Z","sequence":27864,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:04.095Z","sequence":27865,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: flint]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:04.098Z","sequence":27866,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-84625876-7662-4a23-969a-0cc49ba18ba4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:04.1Z","sequence":27867,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/flint:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:04.101Z","sequence":27868,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: flint, type: hashed-password, auth-id: auth-flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:04.191Z","sequence":27869,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-c0a2b641-42af-47ea-a35a-102d38cfad58, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:04.315Z","sequence":27870,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:04.315Z","sequence":27871,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000804] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:04.357Z","sequence":27872,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:04.357Z","sequence":27873,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:04.401Z","sequence":27874,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-57d36f39-0a21-4ba4-aeb3-046352538827, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:04.444Z","sequence":27875,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191221]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d1848258c224824f","parentId":"a696950e59694414","traceId":"00000000000000006c0c7510721fe009","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:04.549Z","sequence":27876,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191221, resource-version: 9f8fe30f-26da-4a5d-8b0e-96a61b8d8984]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d1848258c224824f","parentId":"a696950e59694414","traceId":"00000000000000006c0c7510721fe009","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:04.557Z","sequence":27877,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191221, resource-version: b6ef2c3d-4d2b-4cd0-b413-b4b7a27170d0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d1848258c224824f","parentId":"a696950e59694414","traceId":"00000000000000006c0c7510721fe009","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:04.565Z","sequence":27878,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191221]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"17a42a9a307510c5","parentId":"d53d7587d9e5c7ab","traceId":"00000000000000006c0c7510721fe009","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:04.813Z","sequence":27879,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191221]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"17a42a9a307510c5","parentId":"d53d7587d9e5c7ab","traceId":"00000000000000006c0c7510721fe009","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:06.101Z","sequence":27880,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF0B440DD99DE62]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2020cf64b4841c1b","parentId":"f2303e1765c65b69","traceId":"0000000000000000ee908738f9bb7141","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:06.145Z","sequence":27881,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF0B440DD99DE62, resource-version: 56d52b9a-9f3b-42a9-99b2-3652a15e603b]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2020cf64b4841c1b","parentId":"f2303e1765c65b69","traceId":"0000000000000000ee908738f9bb7141","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:06.155Z","sequence":27882,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF0B440DD99DE62, resource-version: 0b32d468-d3c1-4bca-ae0b-f057ade186b7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2020cf64b4841c1b","parentId":"f2303e1765c65b69","traceId":"0000000000000000ee908738f9bb7141","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:07.397Z","sequence":27883,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:07.397Z","sequence":27884,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191221]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:07.437Z","sequence":27885,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-b51623c4-188d-4b7c-aede-f8baebef7cda, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:07.577Z","sequence":27886,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:07.577Z","sequence":27887,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF0B440DD99DE62] for gateway [gateway_integrationtest_network_191221]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:07.577Z","sequence":27888,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:07.577Z","sequence":27889,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191221]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:07.601Z","sequence":27890,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-267f00ff-5164-401f-93b8-5f4e0ece7ca0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:07.602Z","sequence":27891,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:07.602Z","sequence":27892,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:08.078Z","sequence":27893,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b160c34a-311e-484d-a00c-a1a462d6af82, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:19.582Z","sequence":27894,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:19.582Z","sequence":27895,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019F6] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:19.596Z","sequence":27896,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:19.596Z","sequence":27897,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:19.657Z","sequence":27898,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-42b437a0-a657-4be1-82f6-98340f581684, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:20.512Z","sequence":27899,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF0B440DD99DE62]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"32349f078ee5f338","parentId":"eb638e5b83dce076","traceId":"00000000000000001a307bfff5af04b9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:20.548Z","sequence":27900,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF0B440DD99DE62]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"32349f078ee5f338","parentId":"eb638e5b83dce076","traceId":"00000000000000001a307bfff5af04b9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:21.086Z","sequence":27901,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191221]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"611159a106df5fc8","parentId":"94d735d06d002c2b","traceId":"0000000000000000206fca1a1ecfdcc6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:21.148Z","sequence":27902,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191221]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"611159a106df5fc8","parentId":"94d735d06d002c2b","traceId":"0000000000000000206fca1a1ecfdcc6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:21.956Z","sequence":27903,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 174FCDEB458A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"81996f5e59d1ab76","parentId":"55deda28351a1444","traceId":"00000000000000008633f586945354b4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:22.005Z","sequence":27904,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 174FCDEB458A, resource-version: 8581e8ad-58c8-4be1-b2ef-7f8124b0e8b3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"81996f5e59d1ab76","parentId":"55deda28351a1444","traceId":"00000000000000008633f586945354b4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:22.044Z","sequence":27905,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 174FCDEB458A, resource-version: bd1a90e6-76c1-419e-aaab-d276904d77cd]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"81996f5e59d1ab76","parentId":"55deda28351a1444","traceId":"00000000000000008633f586945354b4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:22.049Z","sequence":27906,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 174FCDEB458A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3831bc2f7938ec55","parentId":"a41d94ed2cb4c01b","traceId":"00000000000000008633f586945354b4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:22.244Z","sequence":27907,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 174FCDEB458A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3831bc2f7938ec55","parentId":"a41d94ed2cb4c01b","traceId":"00000000000000008633f586945354b4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:23.184Z","sequence":27908,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFB34787D84EE4B]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bae52da29c2fa425","parentId":"296195bc3af5b5da","traceId":"0000000000000000645fb0b18152842c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:23.255Z","sequence":27909,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFB34787D84EE4B, resource-version: 83f85367-b622-49a6-af08-c4de5f6845f7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bae52da29c2fa425","parentId":"296195bc3af5b5da","traceId":"0000000000000000645fb0b18152842c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:23.301Z","sequence":27910,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFB34787D84EE4B, resource-version: bae2de36-a5b0-4cc6-a698-21fe640a4a65]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bae52da29c2fa425","parentId":"296195bc3af5b5da","traceId":"0000000000000000645fb0b18152842c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:24.347Z","sequence":27911,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:24.347Z","sequence":27912,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-174FCDEB458A]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:24.358Z","sequence":27913,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-e7e1a0ba-738f-4703-8582-ea0939bdf5ff, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:24.478Z","sequence":27914,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:24.478Z","sequence":27915,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 174FCDEB458A]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:24.484Z","sequence":27916,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-66271ae5-1af9-4a18-b50e-30dec82c3b7d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:24.49Z","sequence":27917,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:24.49Z","sequence":27918,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFB34787D84EE4B] for gateway [174FCDEB458A]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:24.505Z","sequence":27919,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:24.505Z","sequence":27920,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:24.943Z","sequence":27921,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b2db4bf9-31c3-4343-8937-6b1556de3840, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:25.336Z","sequence":27922,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:25.336Z","sequence":27923,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000579] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:25.353Z","sequence":27924,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:25.353Z","sequence":27925,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:25.409Z","sequence":27926,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-93439d55-e4d3-4676-8bce-ad345079267d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:26.722Z","sequence":27927,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/conditionall:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:26.722Z","sequence":27928,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: conditionall, device-id: 0008004B512D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:26.73Z","sequence":27929,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7dbf6d56-21c4-487c-8c68-dd4460d5dd5b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:26.735Z","sequence":27930,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:26.735Z","sequence":27931,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: conditionall]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:26.74Z","sequence":27932,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-3884f96a-199d-47c8-8676-3730c3a2b34e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:27.429Z","sequence":27933,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:27.429Z","sequence":27934,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019F9] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:27.434Z","sequence":27935,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:27.434Z","sequence":27936,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:27.442Z","sequence":27937,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f2a4d074-68d5-4bcd-92c5-d0f8adfe8591, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:29.708Z","sequence":27938,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:29.708Z","sequence":27939,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B95] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:29.725Z","sequence":27940,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:29.725Z","sequence":27941,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:29.735Z","sequence":27942,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-592568a1-454c-4e1b-b9a1-0e2563910b4a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:32.718Z","sequence":27943,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:32.718Z","sequence":27944,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB1000A71] for gateway [0008004B5135]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:32.726Z","sequence":27945,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:32.726Z","sequence":27946,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:32.729Z","sequence":27947,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e37a3d53-395a-4d9b-8f86-0a3c70832256, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:33.925Z","sequence":27948,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:33.925Z","sequence":27949,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B97] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:33.93Z","sequence":27950,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:33.93Z","sequence":27951,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:33.936Z","sequence":27952,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-10af132d-3e0f-4a71-a350-4cbe2fcbe9b9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:35.163Z","sequence":27953,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFB34787D84EE4B]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a388f4264eb7b181","parentId":"7e909da48da87861","traceId":"0000000000000000ca4dbcbe9e86b412","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:35.194Z","sequence":27954,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFB34787D84EE4B]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a388f4264eb7b181","parentId":"7e909da48da87861","traceId":"0000000000000000ca4dbcbe9e86b412","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:35.468Z","sequence":27955,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 174FCDEB458A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"839c1e5d53b9e3b5","parentId":"f47d5ea67fcd3a76","traceId":"0000000000000000249ea61854cdb509","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:35.496Z","sequence":27956,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 174FCDEB458A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"839c1e5d53b9e3b5","parentId":"f47d5ea67fcd3a76","traceId":"0000000000000000249ea61854cdb509","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:36.338Z","sequence":27957,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:36.338Z","sequence":27958,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:36.344Z","sequence":27959,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ac8ebb8a-a91a-4d2b-b39f-fec4eecd8e6b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:39.006Z","sequence":27960,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:39.006Z","sequence":27961,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000827] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:39.012Z","sequence":27962,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:39.012Z","sequence":27963,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:39.017Z","sequence":27964,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4f2c0c2e-3591-471e-a3db-7cc625711c8b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:39.299Z","sequence":27965,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:39.299Z","sequence":27966,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001F2] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:39.306Z","sequence":27967,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:39.306Z","sequence":27968,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:39.317Z","sequence":27969,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d931b4dc-1f8f-427b-a530-c86e15a769b9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:39.349Z","sequence":27970,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:39.349Z","sequence":27971,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001F2] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:39.369Z","sequence":27972,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:39.369Z","sequence":27973,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:39.377Z","sequence":27974,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-431cad76-a6ea-4b97-a961-ad2fe36e4f64, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:46.23Z","sequence":27975,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:46.23Z","sequence":27976,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019DB] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:46.246Z","sequence":27977,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:46.247Z","sequence":27978,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:46.296Z","sequence":27979,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9261c27c-d734-4125-8b26-deb269a9a454, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:49.867Z","sequence":27980,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:49.867Z","sequence":27981,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: shelldev]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:49.875Z","sequence":27982,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-c18fffd8-30e9-4f8e-a198-30398080c5b4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:49.878Z","sequence":27983,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Source{address='credentials/shelldev/b66da9d6-4c57-4b32-b78c-66122733cfa4', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:49.879Z","sequence":27984,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-16]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:49.879Z","sequence":27985,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@31b66e70] for replies to [credentials/shelldev/b66da9d6-4c57-4b32-b78c-66122733cfa4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:49.881Z","sequence":27986,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Target{address='credentials/shelldev', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:49.881Z","sequence":27987,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-17]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:49.883Z","sequence":27988,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:49.885Z","sequence":27989,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/shelldev:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:49.885Z","sequence":27990,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: shelldev, type: hashed-password, auth-id: auth-AZUREFUNCTION-DEV]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:49.905Z","sequence":27991,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-a2dcb597-69ef-4890-9505-e187f9c6c5ee, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:50.027Z","sequence":27992,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shelldev:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:50.027Z","sequence":27993,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shelldev, device-id: 70B3D57BB10014BB] for gateway [AZUREFUNCTION-DEV]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:50.028Z","sequence":27994,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shelldev:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:50.029Z","sequence":27995,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shelldev, device-id: AZUREFUNCTION-DEV]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:50.032Z","sequence":27996,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDao","level":"DEBUG","message":"error retrieving device [tenantId: shelldev, deviceId: 70B3D57BB10014BB]: org.eclipse.hono.client.ClientErrorException: device not found","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:50.033Z","sequence":27997,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"no such device","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:50.033Z","sequence":27998,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ababfec7-f251-4f0e-abb8-370a5a3b4232, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:50.034Z","sequence":27999,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-025ff728-135b-4288-be46-2c52546fdb31, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:50.493Z","sequence":28000,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:50.493Z","sequence":28001,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10013DB] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:50.548Z","sequence":28002,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:50.548Z","sequence":28003,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:50.557Z","sequence":28004,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-42ce9817-5b9a-4810-946d-f14682e836b3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:51.555Z","sequence":28005,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:51.556Z","sequence":28006,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A15] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:51.563Z","sequence":28007,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:51.563Z","sequence":28008,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:51.57Z","sequence":28009,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-037aab76-867e-427c-8e51-d0816d23470a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:53.786Z","sequence":28010,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:53.786Z","sequence":28011,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000F94] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:53.793Z","sequence":28012,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:53.793Z","sequence":28013,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:53.8Z","sequence":28014,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-666ca9cf-5b42-4b95-9e21-edb0936fe81e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:54.141Z","sequence":28015,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:54.141Z","sequence":28016,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001927] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:54.169Z","sequence":28017,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:54.169Z","sequence":28018,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:54.179Z","sequence":28019,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b047b213-82f0-4d49-96f7-c0f2dfa59410, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:59.162Z","sequence":28020,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:59.162Z","sequence":28021,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000ABD] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:59.209Z","sequence":28022,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:59.209Z","sequence":28023,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:59.216Z","sequence":28024,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-906ae830-ce72-4bef-bf2d-8d293d72c5fa, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:59.944Z","sequence":28025,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:59.944Z","sequence":28026,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019EE] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:59.954Z","sequence":28027,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:59.955Z","sequence":28028,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:45:59.963Z","sequence":28029,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-55897fdc-2b1f-41e1-8576-dd289d5d2ea4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:00.284Z","sequence":28030,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shelldev:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:00.286Z","sequence":28031,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shelldev, device-id: 70B3D57BB10014BB] for gateway [AZUREFUNCTION-DEV]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:00.295Z","sequence":28032,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDao","level":"DEBUG","message":"error retrieving device [tenantId: shelldev, deviceId: 70B3D57BB10014BB]: org.eclipse.hono.client.ClientErrorException: device not found","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:00.296Z","sequence":28033,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"no such device","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:00.296Z","sequence":28034,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-94c07727-e843-4986-83d7-79fcea09bca1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:03.733Z","sequence":28035,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:03.734Z","sequence":28036,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BB84C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:03.74Z","sequence":28037,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-15de4deb-54a3-4767-b69d-a976788a7c49, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:05.314Z","sequence":28038,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:05.314Z","sequence":28039,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 0008004B5135]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:05.342Z","sequence":28040,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-60951c21-97ac-4afc-a92e-fbaf428012df, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:08.375Z","sequence":28041,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:08.376Z","sequence":28042,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: shell]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:08.385Z","sequence":28043,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-0516ef5c-bf01-4988-8430-ae7bf7b8baaa, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:08.387Z","sequence":28044,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/shell:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:08.387Z","sequence":28045,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: shell, type: hashed-password, auth-id: auth-gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:08.397Z","sequence":28046,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-df916137-ca0d-4352-9664-57b9d61f8b21, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:08.526Z","sequence":28047,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:08.526Z","sequence":28048,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10008D8] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:08.532Z","sequence":28049,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:08.532Z","sequence":28050,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:08.541Z","sequence":28051,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4ae2a765-afa0-4853-8123-c664eae23b8d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:09.101Z","sequence":28052,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:09.101Z","sequence":28053,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BBD1B]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:09.129Z","sequence":28054,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ef9e528c-22ab-4f92-bc3c-15df5dae9105, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:10.457Z","sequence":28055,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shelldev:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:10.458Z","sequence":28056,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shelldev, device-id: 70B3D57BB10014BB] for gateway [AZUREFUNCTION-DEV]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:10.464Z","sequence":28057,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDao","level":"DEBUG","message":"error retrieving device [tenantId: shelldev, deviceId: 70B3D57BB10014BB]: org.eclipse.hono.client.ClientErrorException: device not found","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:10.464Z","sequence":28058,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"no such device","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:10.464Z","sequence":28059,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-82629bcd-7d12-4d6c-8527-5fafe481f341, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:10.691Z","sequence":28060,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:10.691Z","sequence":28061,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019F7] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:10.697Z","sequence":28062,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:10.697Z","sequence":28063,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:10.705Z","sequence":28064,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2ab52479-3981-4761-8500-bd96aa93da8d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:16.432Z","sequence":28065,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/arkema:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:16.432Z","sequence":28066,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: arkema, device-id: 0008004AE119]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:16.439Z","sequence":28067,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f60b0929-55eb-4769-8c21-e00f450888fc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:16.442Z","sequence":28068,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:16.442Z","sequence":28069,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: arkema]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:16.445Z","sequence":28070,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-4c28cec1-5dfa-465d-add4-4a741577e8b5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:17.462Z","sequence":28071,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:17.464Z","sequence":28072,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000514] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:17.496Z","sequence":28073,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:17.496Z","sequence":28074,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:17.517Z","sequence":28075,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-76645c89-5acc-447a-97b5-2e01db843177, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:20.668Z","sequence":28076,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shelldev:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:20.668Z","sequence":28077,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shelldev, device-id: 70B3D57BB10014BB] for gateway [AZUREFUNCTION-DEV]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:20.674Z","sequence":28078,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDao","level":"DEBUG","message":"error retrieving device [tenantId: shelldev, deviceId: 70B3D57BB10014BB]: org.eclipse.hono.client.ClientErrorException: device not found","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:20.674Z","sequence":28079,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"no such device","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:20.674Z","sequence":28080,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4fabad0f-3c30-4b79-acba-8e3a2c5717b4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:20.765Z","sequence":28081,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:20.765Z","sequence":28082,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019F4] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:20.771Z","sequence":28083,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:20.772Z","sequence":28084,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:20.78Z","sequence":28085,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-605ea684-0eab-49ba-8fc9-c8874b32afc0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:21.669Z","sequence":28086,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:21.669Z","sequence":28087,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019F8] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:21.682Z","sequence":28088,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:21.682Z","sequence":28089,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:21.688Z","sequence":28090,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-60968fa5-ee0e-461b-bbce-ab68397c3f99, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:22.636Z","sequence":28091,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:22.636Z","sequence":28092,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006A1] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:22.642Z","sequence":28093,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:22.642Z","sequence":28094,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:22.649Z","sequence":28095,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-00eeb88d-cbff-40e1-b90e-4aedbee0ad95, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:25.994Z","sequence":28096,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:25.994Z","sequence":28097,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006D6] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:26.002Z","sequence":28098,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.8.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:26.002Z","sequence":28099,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:26.009Z","sequence":28100,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-46d10e95-1e26-4560-b394-d066c7ff5dd3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:33.764Z","sequence":28101,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:33.764Z","sequence":28102,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:33.769Z","sequence":28103,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e2fca63a-bf56-403e-ad0e-52f56c6c2217, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:34.782Z","sequence":28104,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:34.782Z","sequence":28105,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AAA] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:34.789Z","sequence":28106,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:34.789Z","sequence":28107,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:34.796Z","sequence":28108,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c25df1fa-b39d-42b0-8b63-2455838fd418, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:35.577Z","sequence":28109,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:35.577Z","sequence":28110,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000A9F] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:35.583Z","sequence":28111,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:35.583Z","sequence":28112,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:35.589Z","sequence":28113,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d7813bc0-eec9-4303-a858-a06717bfd4a6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:38.06Z","sequence":28114,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:38.06Z","sequence":28115,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10013E8] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:38.066Z","sequence":28116,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:38.066Z","sequence":28117,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:38.072Z","sequence":28118,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d0a47433-ff75-4169-87aa-f0b0941fd547, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:45.095Z","sequence":28119,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:45.096Z","sequence":28120,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB100082A] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:45.103Z","sequence":28121,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:45.103Z","sequence":28122,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:45.108Z","sequence":28123,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-336bc45d-b5cf-41aa-9285-86e55e40b278, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:45.493Z","sequence":28124,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:45.493Z","sequence":28125,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000203] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:45.501Z","sequence":28126,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:45.501Z","sequence":28127,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:45.505Z","sequence":28128,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4c03b7cb-c882-4526-ab90-be9de1edcfc1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:45.617Z","sequence":28129,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:45.62Z","sequence":28130,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000203] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:45.641Z","sequence":28131,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:45.644Z","sequence":28132,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:45.662Z","sequence":28133,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-87517b3f-ed8b-4bc3-807b-bffe8f152c1a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:45.992Z","sequence":28134,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:45.993Z","sequence":28135,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019FD] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:46.025Z","sequence":28136,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:46.025Z","sequence":28137,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:46.045Z","sequence":28138,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-30d27bcf-b0f5-4d2b-a7a7-0ed04bbebd32, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:53.085Z","sequence":28139,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:53.085Z","sequence":28140,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10007F4] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:53.096Z","sequence":28141,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:53.096Z","sequence":28142,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:53.1Z","sequence":28143,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0407f1a1-e9a9-448b-89f4-366b92c3c31d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:58.638Z","sequence":28144,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:58.638Z","sequence":28145,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:46:58.644Z","sequence":28146,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2777025a-d5fa-4581-890f-58547b1c1e9f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:01.137Z","sequence":28147,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/acta:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:01.137Z","sequence":28148,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: acta, device-id: 35343834001F0046] for gateway [0008004AAAA3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:01.143Z","sequence":28149,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.3.0\"\n },\n \"viaGroups\" : [ \"gateways_acta\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:01.143Z","sequence":28150,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_acta\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:01.146Z","sequence":28151,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-38a97c6f-266b-467f-9946-0fdd8c3f27f2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:04.249Z","sequence":28152,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191223]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f753f56852cdc123","parentId":"fab4aca56281bbe9","traceId":"00000000000000006e8780a73084589f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:04.271Z","sequence":28153,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191223, resource-version: c77bc5ba-645d-4c0b-adc1-e61efeba0ccc]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f753f56852cdc123","parentId":"fab4aca56281bbe9","traceId":"00000000000000006e8780a73084589f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:04.278Z","sequence":28154,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191223, resource-version: 0ff949a5-d1c0-42e4-9b6c-e7273251941d]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f753f56852cdc123","parentId":"fab4aca56281bbe9","traceId":"00000000000000006e8780a73084589f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:04.281Z","sequence":28155,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191223]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ac6c7bc63785c4c8","parentId":"5ab95a308a823c77","traceId":"00000000000000006e8780a73084589f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:04.448Z","sequence":28156,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191223]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ac6c7bc63785c4c8","parentId":"5ab95a308a823c77","traceId":"00000000000000006e8780a73084589f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:05.227Z","sequence":28157,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFCFE914D8FF2D2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d4ddb72ca7611d64","parentId":"a66ad123b6b5e1d1","traceId":"00000000000000007e523c2f333dc91a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:05.244Z","sequence":28158,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFCFE914D8FF2D2, resource-version: f8524292-0d82-42d5-ac1e-32f642939fd9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d4ddb72ca7611d64","parentId":"a66ad123b6b5e1d1","traceId":"00000000000000007e523c2f333dc91a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:05.251Z","sequence":28159,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFCFE914D8FF2D2, resource-version: 92f33397-08f6-4c07-af8f-6f1a99fa53fe]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d4ddb72ca7611d64","parentId":"a66ad123b6b5e1d1","traceId":"00000000000000007e523c2f333dc91a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:06.315Z","sequence":28160,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:06.316Z","sequence":28161,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:06.32Z","sequence":28162,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-3e392cea-a773-4422-8bcc-13872851113a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:06.322Z","sequence":28163,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:06.323Z","sequence":28164,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191223]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:06.341Z","sequence":28165,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-5377d043-7c9c-4964-bd11-b4fd14532e25, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:06.463Z","sequence":28166,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:06.464Z","sequence":28167,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCFE914D8FF2D2] for gateway [gateway_integrationtest_network_191223]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:06.465Z","sequence":28168,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:06.465Z","sequence":28169,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191223]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:06.469Z","sequence":28170,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:06.469Z","sequence":28171,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:06.471Z","sequence":28172,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-47468e65-a53d-42f3-8d2b-b1f1c828287d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:06.801Z","sequence":28173,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-69c27a46-e526-425e-984b-4aee6c4d4540, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:07.316Z","sequence":28174,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:07.316Z","sequence":28175,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019F2] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:07.336Z","sequence":28176,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:07.336Z","sequence":28177,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:07.349Z","sequence":28178,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-91001b24-e83e-41c8-8026-0c621614a2fb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:07.765Z","sequence":28179,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:07.765Z","sequence":28180,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: dow]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:07.784Z","sequence":28181,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-f10834df-d0f9-4312-8ef5-9d4fe14bb2ee, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:07.789Z","sequence":28182,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/dow:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:07.789Z","sequence":28183,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: dow, type: hashed-password, auth-id: auth-gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:07.825Z","sequence":28184,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-6645637e-d4ff-41f2-a33a-633fc025c144, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:08.188Z","sequence":28185,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:08.188Z","sequence":28186,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 70B3D57BB100127A] for gateway [gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:08.189Z","sequence":28187,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:08.193Z","sequence":28188,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:08.201Z","sequence":28189,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:08.202Z","sequence":28190,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:08.205Z","sequence":28191,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6fd50792-ee74-44ca-b331-1204dbbc66a4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:08.206Z","sequence":28192,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e7d7d015-acdd-4e13-9414-c7fe0028e770, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:12.032Z","sequence":28193,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:12.032Z","sequence":28194,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BBD1C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:12.038Z","sequence":28195,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7523bd74-68b8-48d7-9603-970b9f228bfe, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:12.425Z","sequence":28196,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:12.425Z","sequence":28197,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000A98] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:12.45Z","sequence":28198,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:12.451Z","sequence":28199,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:12.457Z","sequence":28200,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c0899aa1-3de6-4190-9fd2-9c89979ddc27, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:12.91Z","sequence":28201,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:12.91Z","sequence":28202,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10018B8] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:12.935Z","sequence":28203,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:12.935Z","sequence":28204,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:12.949Z","sequence":28205,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a05441f3-18ce-4638-87f4-216d2a9a50a3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:13.906Z","sequence":28206,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:13.907Z","sequence":28207,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oci]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:13.917Z","sequence":28208,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-b5ac26e3-abf6-4873-8261-8d2872dcfed9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:13.921Z","sequence":28209,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:13.921Z","sequence":28210,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000159] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:13.927Z","sequence":28211,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:13.927Z","sequence":28212,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:13.929Z","sequence":28213,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-80ca9afb-fa32-4016-88ad-0e98818b1273, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:13.95Z","sequence":28214,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:13.95Z","sequence":28215,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000159] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:13.955Z","sequence":28216,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:13.955Z","sequence":28217,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:13.959Z","sequence":28218,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-60f7a839-2419-4303-8407-af69779987c8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:17.447Z","sequence":28219,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFCFE914D8FF2D2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8c94eebaff4217c7","parentId":"757007ab9b9973b1","traceId":"0000000000000000d93a804472c8ba9a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:17.472Z","sequence":28220,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFCFE914D8FF2D2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8c94eebaff4217c7","parentId":"757007ab9b9973b1","traceId":"0000000000000000d93a804472c8ba9a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:17.753Z","sequence":28221,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191223]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d38a1cc08b6cfaff","parentId":"63de462c3e97c3bf","traceId":"000000000000000096b2ffcfc8584e0b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:17.772Z","sequence":28222,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191223]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d38a1cc08b6cfaff","parentId":"63de462c3e97c3bf","traceId":"000000000000000096b2ffcfc8584e0b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:18.347Z","sequence":28223,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 40A4C85ACC4A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"27ca52eb1ebbd0a0","parentId":"a334bca33d7da0f8","traceId":"000000000000000091bbe650f380ef41","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:18.364Z","sequence":28224,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 40A4C85ACC4A, resource-version: 261a847c-78b2-4ca8-a452-bb2dedb4ca6b]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"27ca52eb1ebbd0a0","parentId":"a334bca33d7da0f8","traceId":"000000000000000091bbe650f380ef41","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:18.377Z","sequence":28225,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 40A4C85ACC4A, resource-version: e6bc1802-b67e-4c16-8bbe-c75b71b8294f]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"27ca52eb1ebbd0a0","parentId":"a334bca33d7da0f8","traceId":"000000000000000091bbe650f380ef41","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:18.384Z","sequence":28226,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 40A4C85ACC4A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ced17e84e762b06c","parentId":"cbca253f3d99df51","traceId":"000000000000000091bbe650f380ef41","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:18.536Z","sequence":28227,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 40A4C85ACC4A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ced17e84e762b06c","parentId":"cbca253f3d99df51","traceId":"000000000000000091bbe650f380ef41","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:19.057Z","sequence":28228,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFD26B05D3243BD]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fae9e70f677dc7c6","parentId":"a0c41a57dccd1f91","traceId":"0000000000000000d42988f29671be3c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:19.08Z","sequence":28229,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFD26B05D3243BD, resource-version: 52aff5cb-c978-4adc-81c7-e279ee8f6d81]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fae9e70f677dc7c6","parentId":"a0c41a57dccd1f91","traceId":"0000000000000000d42988f29671be3c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:19.092Z","sequence":28230,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFD26B05D3243BD, resource-version: 1e40df0d-633d-40fd-9dad-1f8afb5f84e8]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fae9e70f677dc7c6","parentId":"a0c41a57dccd1f91","traceId":"0000000000000000d42988f29671be3c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:20.146Z","sequence":28231,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:20.146Z","sequence":28232,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:20.153Z","sequence":28233,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-58341f75-210f-49ce-b76e-580ad3d9e555, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:20.155Z","sequence":28234,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:20.155Z","sequence":28235,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-40A4C85ACC4A]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:20.165Z","sequence":28236,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-2c2a2b05-2e43-4639-9573-d95cdc2157b7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:20.299Z","sequence":28237,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:20.299Z","sequence":28238,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 40A4C85ACC4A]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:20.313Z","sequence":28239,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2c7e83a4-26e5-4a12-a7dd-6eba2425517b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:20.317Z","sequence":28240,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:20.318Z","sequence":28241,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD26B05D3243BD] for gateway [40A4C85ACC4A]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:20.323Z","sequence":28242,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:20.323Z","sequence":28243,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:20.723Z","sequence":28244,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-521b0bac-a7a3-4025-9d7d-4622d85d2fd3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:27.859Z","sequence":28245,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:27.859Z","sequence":28246,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000A9E] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:27.866Z","sequence":28247,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:27.866Z","sequence":28248,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:27.873Z","sequence":28249,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8396911b-827e-4cd4-970f-bacef1ad5ccc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:29.009Z","sequence":28250,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:29.009Z","sequence":28251,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001405] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:29.015Z","sequence":28252,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:29.015Z","sequence":28253,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:29.02Z","sequence":28254,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-68d3fa3e-29b5-417e-ba2e-7f999a84b835, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:29.186Z","sequence":28255,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:29.186Z","sequence":28256,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 0008004C80F4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:29.193Z","sequence":28257,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4603047d-ce10-420c-8310-180ce1991cc0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:30.717Z","sequence":28258,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:30.717Z","sequence":28259,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 70B3D57BB1001272] for gateway [gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:30.727Z","sequence":28260,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:30.727Z","sequence":28261,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:30.731Z","sequence":28262,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ac8f1c53-3d4e-4e16-ab0a-3c5f0ee19fe4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:34.385Z","sequence":28263,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFD26B05D3243BD]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"75256434a5fc44fd","parentId":"0f2cf5ab07318c3f","traceId":"0000000000000000f0faad05ca7e5aae","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:34.403Z","sequence":28264,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFD26B05D3243BD]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"75256434a5fc44fd","parentId":"0f2cf5ab07318c3f","traceId":"0000000000000000f0faad05ca7e5aae","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:34.734Z","sequence":28265,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 40A4C85ACC4A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"14322e10b0873d2b","parentId":"4cf50230926d6de6","traceId":"00000000000000004b8d3811187287ac","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:34.754Z","sequence":28266,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 40A4C85ACC4A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"14322e10b0873d2b","parentId":"4cf50230926d6de6","traceId":"00000000000000004b8d3811187287ac","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:35.752Z","sequence":28267,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:35.752Z","sequence":28268,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001406] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:35.759Z","sequence":28269,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:35.759Z","sequence":28270,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:35.764Z","sequence":28271,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5d52a99b-95a3-45a3-84ef-6903bfac848c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:45.074Z","sequence":28272,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oiltanking:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:45.074Z","sequence":28273,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oiltanking, device-id: 0008004BB60F]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:45.08Z","sequence":28274,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-06793a17-c8d9-4419-9028-ed80f2d75e54, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:45.083Z","sequence":28275,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:45.083Z","sequence":28276,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oiltanking]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:45.086Z","sequence":28277,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-186fd82e-8274-4c39-a565-67bf38701881, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:50.582Z","sequence":28278,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:50.582Z","sequence":28279,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 70B3D57BB1001257] for gateway [gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:50.588Z","sequence":28280,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:50.588Z","sequence":28281,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:50.592Z","sequence":28282,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-422e049c-ce7b-4be4-9608-4d040a0977d2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:50.69Z","sequence":28283,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:50.69Z","sequence":28284,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10018B9] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:50.695Z","sequence":28285,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:50.695Z","sequence":28286,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:50.702Z","sequence":28287,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-019f1f15-34b1-4e7d-a2a4-0ee69f10efeb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:55.333Z","sequence":28288,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:55.333Z","sequence":28289,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 70B3D57BB1001286] for gateway [gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:55.35Z","sequence":28290,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:55.35Z","sequence":28291,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:55.365Z","sequence":28292,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0e26d4cb-87c1-4fab-b0cb-65d750c7cbec, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:57.712Z","sequence":28293,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:57.712Z","sequence":28294,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10018A8] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:57.718Z","sequence":28295,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:57.718Z","sequence":28296,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:47:57.725Z","sequence":28297,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5840372b-2485-4b8b-9217-a6e2004c7e91, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:48:05.157Z","sequence":28298,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:48:05.157Z","sequence":28299,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10018BA] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:48:05.162Z","sequence":28300,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:48:05.162Z","sequence":28301,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:48:05.169Z","sequence":28302,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d36507b7-de09-40b6-a827-20bda7add87a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:48:06.035Z","sequence":28303,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:48:06.035Z","sequence":28304,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AA9] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:48:06.042Z","sequence":28305,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:48:06.042Z","sequence":28306,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:48:06.048Z","sequence":28307,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c99ecf1f-4804-4082-94b5-988b1e5190ef, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:48:11.535Z","sequence":28308,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:48:11.535Z","sequence":28309,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001407] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:48:11.541Z","sequence":28310,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:48:11.541Z","sequence":28311,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:48:11.549Z","sequence":28312,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-20362e76-02c4-4321-a23e-2605ee10abb8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:48:13.197Z","sequence":28313,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:48:13.197Z","sequence":28314,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100136C] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:48:13.203Z","sequence":28315,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:48:13.203Z","sequence":28316,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:48:13.206Z","sequence":28317,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b3aaa317-a1bd-43b2-a4e9-04bb3c33c2da, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:48:13.366Z","sequence":28318,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:48:13.366Z","sequence":28319,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100136C] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:48:13.371Z","sequence":28320,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:48:13.372Z","sequence":28321,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:48:13.374Z","sequence":28322,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9b91283a-07fb-4318-bbdb-09c6251a69fa, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:48:16.585Z","sequence":28323,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:48:16.585Z","sequence":28324,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100021F] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:48:16.592Z","sequence":28325,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:0.4.1\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:48:16.592Z","sequence":28326,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:48:16.599Z","sequence":28327,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-957b27f7-8564-41d6-8d75-0d9dc6b23a77, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:48:19.51Z","sequence":28328,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:48:19.511Z","sequence":28329,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: flint]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:48:19.514Z","sequence":28330,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-3a55c766-eabc-41d3-8b98-7ab4dec5866e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:48:19.516Z","sequence":28331,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/flint:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:48:19.517Z","sequence":28332,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: flint, type: hashed-password, auth-id: auth-flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:48:19.524Z","sequence":28333,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/flint:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:48:19.525Z","sequence":28334,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: flint, type: hashed-password, auth-id: auth-flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:48:19.528Z","sequence":28335,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-521724fe-010e-4638-a99e-fd74c2ab1964, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:48:19.535Z","sequence":28336,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-36eeb782-2af5-4781-9a7c-57f1c5dbcd28, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:48:19.701Z","sequence":28337,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:48:19.702Z","sequence":28338,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10009BE] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:48:19.707Z","sequence":28339,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:48:19.708Z","sequence":28340,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:48:19.712Z","sequence":28341,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e9aaeb7d-4af2-4a55-9b05-c8090c082132, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:48:21.005Z","sequence":28342,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/aloxy:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:48:21.005Z","sequence":28343,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: aloxy, device-id: 0008004A8F68]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:48:21.012Z","sequence":28344,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3325569a-3628-48e9-8fee-30fb104789ce, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:48:21.016Z","sequence":28345,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:48:21.017Z","sequence":28346,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: aloxy]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:48:21.021Z","sequence":28347,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-8a89add8-ea48-4762-a166-04fedfe4ca69, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:48:22.42Z","sequence":28348,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:48:22.42Z","sequence":28349,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10018AB] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:48:22.426Z","sequence":28350,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:48:22.426Z","sequence":28351,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:48:22.433Z","sequence":28352,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-55ad0c20-464b-4574-8489-76ed3af66b62, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:48:29.795Z","sequence":28353,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:48:29.795Z","sequence":28354,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AA3] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:48:29.801Z","sequence":28355,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:48:29.801Z","sequence":28356,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:48:29.808Z","sequence":28357,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-af2eecdf-baf0-4925-a01e-62bf4b84616b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:48:38.132Z","sequence":28358,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:48:38.132Z","sequence":28359,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BB613]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:48:38.138Z","sequence":28360,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7371049d-965f-488c-a086-920eeeed8f7f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:48:38.141Z","sequence":28361,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:48:38.141Z","sequence":28362,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: lanxess]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:48:38.143Z","sequence":28363,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-2ec70c5a-946d-42d3-ba91-bd6be2c85345, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:48:45.033Z","sequence":28364,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:48:45.033Z","sequence":28365,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 70B3D57BB100128B] for gateway [gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:48:45.039Z","sequence":28366,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:48:45.04Z","sequence":28367,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:48:45.045Z","sequence":28368,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6ab5f253-18da-4f8e-8baf-4f8b7096a89a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:48:45.273Z","sequence":28369,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:48:45.273Z","sequence":28370,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 70B3D57BB1000196] for gateway [0008004BBD1B]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:48:45.285Z","sequence":28371,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:0.4.1\"\n },\n \"viaGroups\" : [ \"gateways_lanxess\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:48:45.285Z","sequence":28372,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_lanxess\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:48:45.288Z","sequence":28373,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-58017e00-b461-47c7-8180-e3325b90d9f4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:48:53.367Z","sequence":28374,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:48:53.368Z","sequence":28375,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001905] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:48:53.374Z","sequence":28376,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:48:53.374Z","sequence":28377,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:48:53.382Z","sequence":28378,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-18bb8fee-8082-430d-8a88-e16136f40113, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:48:56.64Z","sequence":28379,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:48:56.641Z","sequence":28380,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10008B8] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:48:56.65Z","sequence":28381,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:48:56.65Z","sequence":28382,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:48:56.657Z","sequence":28383,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4c3e0a3d-fdd0-4645-908e-24ab7ca92cf1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:01.048Z","sequence":28384,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:01.048Z","sequence":28385,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10018EA] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:01.054Z","sequence":28386,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:01.055Z","sequence":28387,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:01.063Z","sequence":28388,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-821ce01b-9be9-4839-a04a-1a08627c8110, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:04.566Z","sequence":28389,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF96DCE9E7F6A2A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8f983bd4446bfba9","parentId":"3951fd18af2c55c3","traceId":"0000000000000000336dc4815adaa187","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:04.566Z","sequence":28390,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF893B7871A3F71]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"28cb38ac664b9ce5","parentId":"84e0cc5e36e2d900","traceId":"0000000000000000a5ccdbf3664be9f3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:04.589Z","sequence":28391,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF96DCE9E7F6A2A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8f983bd4446bfba9","parentId":"3951fd18af2c55c3","traceId":"0000000000000000336dc4815adaa187","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:04.592Z","sequence":28392,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF893B7871A3F71]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"28cb38ac664b9ce5","parentId":"84e0cc5e36e2d900","traceId":"0000000000000000a5ccdbf3664be9f3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:04.631Z","sequence":28393,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFA52FFA9FF0785]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b7836f64d5fddee5","parentId":"9c66c34c93fff094","traceId":"000000000000000087f8c072dc516942","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:04.652Z","sequence":28394,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFA52FFA9FF0785]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b7836f64d5fddee5","parentId":"9c66c34c93fff094","traceId":"000000000000000087f8c072dc516942","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:04.93Z","sequence":28395,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFEADD18DF8E89C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"453e8dca8b624c01","parentId":"07593b5c0372016f","traceId":"00000000000000003bada6795853830f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:04.951Z","sequence":28396,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFEADD18DF8E89C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"453e8dca8b624c01","parentId":"07593b5c0372016f","traceId":"00000000000000003bada6795853830f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:04.981Z","sequence":28397,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF800A30D6A82D8]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e5e0db01e8334344","parentId":"b47e799bab2b8e17","traceId":"0000000000000000927d793202615ee1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:04.996Z","sequence":28398,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF800A30D6A82D8]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e5e0db01e8334344","parentId":"b47e799bab2b8e17","traceId":"0000000000000000927d793202615ee1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:05.867Z","sequence":28399,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191165]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"121021359a7f6c12","parentId":"4ec77b241e0e93e5","traceId":"00000000000000000bf95d8f68814054","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:05.893Z","sequence":28400,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191165]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"121021359a7f6c12","parentId":"4ec77b241e0e93e5","traceId":"00000000000000000bf95d8f68814054","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:05.973Z","sequence":28401,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191111]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"79d6ea179ee0a788","parentId":"f15ed52fe0bfee06","traceId":"000000000000000036ece1242462dd28","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:05.997Z","sequence":28402,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191111]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"79d6ea179ee0a788","parentId":"f15ed52fe0bfee06","traceId":"000000000000000036ece1242462dd28","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:09.74Z","sequence":28403,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191225]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"27d089590ac6e536","parentId":"2d81d13da896d735","traceId":"000000000000000054e6be85e82b8fdc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:09.758Z","sequence":28404,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191225, resource-version: 6bf14357-71ff-412d-ba8c-ddaf4ccba06c]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"27d089590ac6e536","parentId":"2d81d13da896d735","traceId":"000000000000000054e6be85e82b8fdc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:09.765Z","sequence":28405,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191225, resource-version: 87f608a4-8205-4665-8cdd-07567ed1827e]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"27d089590ac6e536","parentId":"2d81d13da896d735","traceId":"000000000000000054e6be85e82b8fdc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:09.77Z","sequence":28406,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191225]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"21eca99d57a08636","parentId":"dd13a2e1bb6afccc","traceId":"000000000000000054e6be85e82b8fdc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:09.9Z","sequence":28407,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191225]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"21eca99d57a08636","parentId":"dd13a2e1bb6afccc","traceId":"000000000000000054e6be85e82b8fdc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:10.84Z","sequence":28408,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFF84C8FACE1D64]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bd0dc0c3e179bc0a","parentId":"7978a3c2668eaa79","traceId":"0000000000000000537c843f75bbb05b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:10.858Z","sequence":28409,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFF84C8FACE1D64, resource-version: ff068075-3d21-4763-994e-61823ef61cfa]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bd0dc0c3e179bc0a","parentId":"7978a3c2668eaa79","traceId":"0000000000000000537c843f75bbb05b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:10.864Z","sequence":28410,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFF84C8FACE1D64, resource-version: e216eb95-0d38-4864-9c85-402e68f33ab1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bd0dc0c3e179bc0a","parentId":"7978a3c2668eaa79","traceId":"0000000000000000537c843f75bbb05b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:11.334Z","sequence":28411,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFF84C8FACE1D64]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6ed63de2242f82ba","parentId":"e2216f6af1d21707","traceId":"0000000000000000baa1f699314fc2fc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:11.351Z","sequence":28412,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFF84C8FACE1D64]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6ed63de2242f82ba","parentId":"e2216f6af1d21707","traceId":"0000000000000000baa1f699314fc2fc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:11.477Z","sequence":28413,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191225]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"73e35289aea42827","parentId":"b00fa87f72bd6969","traceId":"0000000000000000dde5f91c4ff9470e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:11.495Z","sequence":28414,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191225]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"73e35289aea42827","parentId":"b00fa87f72bd6969","traceId":"0000000000000000dde5f91c4ff9470e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:15.698Z","sequence":28415,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/acta:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:15.698Z","sequence":28416,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: acta, device-id: 0008004AAAA3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:15.704Z","sequence":28417,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1dc5ed01-51a9-4e40-89d7-99ddc7418071, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:15.707Z","sequence":28418,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:15.707Z","sequence":28419,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: acta]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:15.71Z","sequence":28420,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-28b5d16a-9e19-4351-a543-655bedccc146, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:16.572Z","sequence":28421,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191226]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"df8fda53c3ec1b0a","parentId":"786fcda8f48624c1","traceId":"000000000000000066ffe0eaf9954e79","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:16.601Z","sequence":28422,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191226, resource-version: 464b35b6-df4a-4553-88c4-6970106bf95d]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"df8fda53c3ec1b0a","parentId":"786fcda8f48624c1","traceId":"000000000000000066ffe0eaf9954e79","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:16.607Z","sequence":28423,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191226, resource-version: 6da276cd-8292-46de-9415-20fdcc573cec]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"df8fda53c3ec1b0a","parentId":"786fcda8f48624c1","traceId":"000000000000000066ffe0eaf9954e79","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:16.61Z","sequence":28424,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191226]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"debcdc63be012d5f","parentId":"20420de330232490","traceId":"000000000000000066ffe0eaf9954e79","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:16.808Z","sequence":28425,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191226]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"debcdc63be012d5f","parentId":"20420de330232490","traceId":"000000000000000066ffe0eaf9954e79","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:17.347Z","sequence":28426,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF52682E137F660]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"acf7f6d5e471668a","parentId":"888b8054776d0cd8","traceId":"0000000000000000df2ffc67d3fb1872","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:17.385Z","sequence":28427,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF52682E137F660, resource-version: 6d74fce4-76b4-4f25-9760-7a3587772c47]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"acf7f6d5e471668a","parentId":"888b8054776d0cd8","traceId":"0000000000000000df2ffc67d3fb1872","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:17.391Z","sequence":28428,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF52682E137F660, resource-version: 33a5ad30-0154-4578-ad05-93ce6f70586c]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"acf7f6d5e471668a","parentId":"888b8054776d0cd8","traceId":"0000000000000000df2ffc67d3fb1872","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:18.491Z","sequence":28429,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:18.491Z","sequence":28430,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191226]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:18.525Z","sequence":28431,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-c04ace3e-0234-489d-a008-73e5c6078b6f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:18.648Z","sequence":28432,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:18.649Z","sequence":28433,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF52682E137F660] for gateway [gateway_integrationtest_network_191226]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:18.65Z","sequence":28434,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:18.65Z","sequence":28435,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191226]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:18.659Z","sequence":28436,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-eacfddab-b988-4a56-bb6e-e7dfc94030f3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:18.659Z","sequence":28437,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:18.66Z","sequence":28438,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:19.007Z","sequence":28439,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a73b0919-8d72-4503-95a6-507943535a22, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:19.117Z","sequence":28440,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"retrieving device [tenant: integrationtest, device-id: 0EF52682E137F660]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4b0fee6fd42d2913","parentId":"c862974e61fce715","traceId":"9d7a131bcd7b5aa982d3bb729135bc3f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:21.635Z","sequence":28441,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:21.635Z","sequence":28442,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:21.649Z","sequence":28443,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-44ecc83f-7e82-47d8-831b-03e7a9ae2583, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:22.949Z","sequence":28444,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:22.949Z","sequence":28445,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: ineos]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:22.953Z","sequence":28446,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-5c00eb38-889a-4147-9681-e93901dee9b0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:22.955Z","sequence":28447,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:22.955Z","sequence":28448,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB1000A90] for gateway [0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:22.96Z","sequence":28449,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:22.96Z","sequence":28450,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:22.964Z","sequence":28451,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7926fe88-7a48-4888-883b-2705b9a34ff1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:26.813Z","sequence":28452,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:26.813Z","sequence":28453,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: shell]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:26.816Z","sequence":28454,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-e241a68d-a814-4c35-93fa-0e11ccba148c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:26.819Z","sequence":28455,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/shell:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:26.819Z","sequence":28456,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: shell, type: hashed-password, auth-id: auth-gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:26.832Z","sequence":28457,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-e345d7b1-ca07-4d75-8a45-ec71512d2722, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:26.965Z","sequence":28458,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:26.965Z","sequence":28459,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001918] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:26.971Z","sequence":28460,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:26.971Z","sequence":28461,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:26.979Z","sequence":28462,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e3515aa3-0c34-414e-a27b-a713a75e1391, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:28.073Z","sequence":28463,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:28.074Z","sequence":28464,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10018BC] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:28.078Z","sequence":28465,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:28.079Z","sequence":28466,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:28.085Z","sequence":28467,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-34cba653-d749-4099-8086-948227a635f5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:28.532Z","sequence":28468,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF52682E137F660]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"96cadf2f0ae462cb","parentId":"3d9556ab730be6c3","traceId":"00000000000000008473aa6f4c4b31c7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:28.557Z","sequence":28469,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF52682E137F660]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"96cadf2f0ae462cb","parentId":"3d9556ab730be6c3","traceId":"00000000000000008473aa6f4c4b31c7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:28.68Z","sequence":28470,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191226]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c89de746ddf87a77","parentId":"467ae93a1095b66d","traceId":"000000000000000016c50ad0366a73a4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:28.696Z","sequence":28471,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191226]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c89de746ddf87a77","parentId":"467ae93a1095b66d","traceId":"000000000000000016c50ad0366a73a4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:29.151Z","sequence":28472,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0FDDC0B6BFD5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d86007af6affd9d8","parentId":"afa71a639fe9deb5","traceId":"00000000000000003733581456b0487c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:29.167Z","sequence":28473,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0FDDC0B6BFD5, resource-version: 44439ce7-cf80-41ab-9269-ca6a1864ec9e]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d86007af6affd9d8","parentId":"afa71a639fe9deb5","traceId":"00000000000000003733581456b0487c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:29.172Z","sequence":28474,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0FDDC0B6BFD5, resource-version: 4d472b04-bb19-4e93-9717-1796595c905a]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d86007af6affd9d8","parentId":"afa71a639fe9deb5","traceId":"00000000000000003733581456b0487c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:29.176Z","sequence":28475,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 0FDDC0B6BFD5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2135a3caaaf09c8a","parentId":"1a408a5ef4bd94e5","traceId":"00000000000000003733581456b0487c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:29.305Z","sequence":28476,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 0FDDC0B6BFD5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2135a3caaaf09c8a","parentId":"1a408a5ef4bd94e5","traceId":"00000000000000003733581456b0487c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:29.735Z","sequence":28477,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFD80F1156B1FD0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2d66d09a011d8088","parentId":"3f9905ea94af3299","traceId":"0000000000000000669f8d228a9ca64c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:29.753Z","sequence":28478,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFD80F1156B1FD0, resource-version: 405b59ac-c4b8-455a-b3cd-8f546fff32a3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2d66d09a011d8088","parentId":"3f9905ea94af3299","traceId":"0000000000000000669f8d228a9ca64c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:29.763Z","sequence":28479,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFD80F1156B1FD0, resource-version: a7085ce8-2bbb-4804-87b3-717951a7556d]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2d66d09a011d8088","parentId":"3f9905ea94af3299","traceId":"0000000000000000669f8d228a9ca64c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:30.245Z","sequence":28480,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:30.245Z","sequence":28481,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000ABC] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:30.25Z","sequence":28482,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:30.25Z","sequence":28483,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:30.256Z","sequence":28484,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-322dfb11-09f2-4350-9512-cc9fab2c52f0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:30.645Z","sequence":28485,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/repsol:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:30.645Z","sequence":28486,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: repsol, device-id: 0008004A37FF]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:30.661Z","sequence":28487,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-981e92db-7899-48c2-9726-9fb3a62e6e28, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:30.664Z","sequence":28488,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:30.664Z","sequence":28489,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: repsol]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:30.669Z","sequence":28490,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-d42c8bb4-3037-4dae-a947-741e6582442b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:30.806Z","sequence":28491,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:30.806Z","sequence":28492,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-0FDDC0B6BFD5]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:30.819Z","sequence":28493,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-4378b577-9521-40b4-b5c3-e0961545a96d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:30.941Z","sequence":28494,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:30.941Z","sequence":28495,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0FDDC0B6BFD5]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:30.947Z","sequence":28496,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a7a83339-54a3-4f4d-9401-8dd9aefc1a3c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:30.952Z","sequence":28497,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:30.952Z","sequence":28498,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD80F1156B1FD0] for gateway [0FDDC0B6BFD5]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:30.958Z","sequence":28499,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:30.958Z","sequence":28500,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:31.125Z","sequence":28501,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f3a045f9-6349-4674-ba77-ad2eec62a3bb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:31.405Z","sequence":28502,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/acta:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:31.406Z","sequence":28503,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: acta, device-id: 353633350017002B] for gateway [0008004AAAA3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:31.413Z","sequence":28504,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_acta\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:31.413Z","sequence":28505,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_acta\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:31.415Z","sequence":28506,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6c1bc7a5-4760-48ed-a8ac-9746bcc67237, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:39.575Z","sequence":28507,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:39.575Z","sequence":28508,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000508] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:39.582Z","sequence":28509,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:39.582Z","sequence":28510,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:39.589Z","sequence":28511,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-12cace61-e90b-4fe2-9ad3-8816313338cc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:42.323Z","sequence":28512,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:42.323Z","sequence":28513,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B91] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:42.329Z","sequence":28514,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:42.329Z","sequence":28515,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:42.335Z","sequence":28516,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2e6b386b-dbe9-4284-96ee-3c4a85c57135, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:45.273Z","sequence":28517,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFD80F1156B1FD0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d86264f1eb48140a","parentId":"d8568a9c99b0c54f","traceId":"000000000000000050bd7c5ee9fb4fb6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:45.287Z","sequence":28518,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFD80F1156B1FD0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d86264f1eb48140a","parentId":"d8568a9c99b0c54f","traceId":"000000000000000050bd7c5ee9fb4fb6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:45.68Z","sequence":28519,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0FDDC0B6BFD5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7013bbb14509768e","parentId":"446e825488f68e93","traceId":"000000000000000085076d3adaf4aa5c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:45.696Z","sequence":28520,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0FDDC0B6BFD5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7013bbb14509768e","parentId":"446e825488f68e93","traceId":"000000000000000085076d3adaf4aa5c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:49.107Z","sequence":28521,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 36D08F05052D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e349656875b66324","parentId":"58029dc696148757","traceId":"00000000000000006b1e2fa6378f2725","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:49.124Z","sequence":28522,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 36D08F05052D, resource-version: f09691e6-7f34-42a5-ab02-65c1e05ba68a]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e349656875b66324","parentId":"58029dc696148757","traceId":"00000000000000006b1e2fa6378f2725","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:49.13Z","sequence":28523,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 36D08F05052D, resource-version: 19090e5a-ad3c-469c-886c-dcaae891736b]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e349656875b66324","parentId":"58029dc696148757","traceId":"00000000000000006b1e2fa6378f2725","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:49.135Z","sequence":28524,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 36D08F05052D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fad077aae04446c5","parentId":"1c555dce65db8193","traceId":"00000000000000006b1e2fa6378f2725","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:49.347Z","sequence":28525,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 36D08F05052D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fad077aae04446c5","parentId":"1c555dce65db8193","traceId":"00000000000000006b1e2fa6378f2725","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:50.011Z","sequence":28526,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF69DC4081537AF]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5afe865df111e1ff","parentId":"08819edd308d1aba","traceId":"0000000000000000d4bded1248e211f5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:50.032Z","sequence":28527,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF69DC4081537AF, resource-version: d2a5d3f2-25a5-4a8e-9154-3417b4da4b7a]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5afe865df111e1ff","parentId":"08819edd308d1aba","traceId":"0000000000000000d4bded1248e211f5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:50.038Z","sequence":28528,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF69DC4081537AF, resource-version: fae3b672-3a80-4ba3-8f6f-7777dd8cceaf]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5afe865df111e1ff","parentId":"08819edd308d1aba","traceId":"0000000000000000d4bded1248e211f5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:51.079Z","sequence":28529,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF69DC4081537AF]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4fd9a9a83cc1b6de","parentId":"549c7d27fe1dcba8","traceId":"0000000000000000d035b067be9091e2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:51.097Z","sequence":28530,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF69DC4081537AF]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4fd9a9a83cc1b6de","parentId":"549c7d27fe1dcba8","traceId":"0000000000000000d035b067be9091e2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:51.445Z","sequence":28531,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 36D08F05052D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6ffd521631cdd857","parentId":"9cec3adc12fa24e0","traceId":"00000000000000004bb6ae14d537d3e2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:51.461Z","sequence":28532,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 36D08F05052D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6ffd521631cdd857","parentId":"9cec3adc12fa24e0","traceId":"00000000000000004bb6ae14d537d3e2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:51.702Z","sequence":28533,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:51.702Z","sequence":28534,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000524] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:51.731Z","sequence":28535,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:51.732Z","sequence":28536,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:51.741Z","sequence":28537,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ffa5de0c-9629-4bb1-96d8-f64ef7869354, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:51.915Z","sequence":28538,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:51.916Z","sequence":28539,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AE9] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:51.94Z","sequence":28540,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:51.94Z","sequence":28541,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:51.949Z","sequence":28542,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3411cefd-7456-45bb-9056-fafa7270e063, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:54.558Z","sequence":28543,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:54.558Z","sequence":28544,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 0008004B51D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:54.566Z","sequence":28545,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2f650395-bfce-4c76-a08b-62dad1eb010b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:54.57Z","sequence":28546,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:54.57Z","sequence":28547,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: dow]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:54.573Z","sequence":28548,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-4cfff36f-8d2b-47e1-9995-1673cebb12ac, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:58.637Z","sequence":28549,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 16D4ED14FDCB]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f852050f6b0f320b","parentId":"28ad8330c967582c","traceId":"0000000000000000e3755ee2d016632d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:58.653Z","sequence":28550,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 16D4ED14FDCB, resource-version: ae0fee2d-0e59-48e9-8bd9-07dd6c457de1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f852050f6b0f320b","parentId":"28ad8330c967582c","traceId":"0000000000000000e3755ee2d016632d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:58.66Z","sequence":28551,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 16D4ED14FDCB, resource-version: 1e1c5493-166e-4c14-bad3-caddd67b9a84]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f852050f6b0f320b","parentId":"28ad8330c967582c","traceId":"0000000000000000e3755ee2d016632d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:58.665Z","sequence":28552,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 16D4ED14FDCB]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2c1530848fd46191","parentId":"f48773d0b8b74508","traceId":"0000000000000000e3755ee2d016632d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:58.846Z","sequence":28553,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 16D4ED14FDCB]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2c1530848fd46191","parentId":"f48773d0b8b74508","traceId":"0000000000000000e3755ee2d016632d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:59.314Z","sequence":28554,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFD1CCA53F49916]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cf58b1ebae561977","parentId":"d7b1420590baa5b7","traceId":"000000000000000027543ab81073673c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:59.338Z","sequence":28555,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFD1CCA53F49916, resource-version: 213feeec-6abb-4ecd-89c8-98cc044bcc4c]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cf58b1ebae561977","parentId":"d7b1420590baa5b7","traceId":"000000000000000027543ab81073673c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:59.344Z","sequence":28556,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFD1CCA53F49916, resource-version: e9f54513-eff2-4cdc-9bea-63c33f16f028]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cf58b1ebae561977","parentId":"d7b1420590baa5b7","traceId":"000000000000000027543ab81073673c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:59.747Z","sequence":28557,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:59.748Z","sequence":28558,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10018AA] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:59.753Z","sequence":28559,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:59.753Z","sequence":28560,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:49:59.76Z","sequence":28561,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9728d90c-f928-4466-a689-6d4164bd7c21, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:00.401Z","sequence":28562,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:00.401Z","sequence":28563,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-16D4ED14FDCB]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:00.423Z","sequence":28564,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-979f1259-7d39-4dd4-8f7f-50933b04f3ed, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:00.552Z","sequence":28565,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:00.552Z","sequence":28566,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 16D4ED14FDCB]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:00.557Z","sequence":28567,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d649689b-43bc-47ca-830c-c5f6376a8a14, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:00.561Z","sequence":28568,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:00.561Z","sequence":28569,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD1CCA53F49916] for gateway [16D4ED14FDCB]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:00.568Z","sequence":28570,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.5.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:00.568Z","sequence":28571,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:00.764Z","sequence":28572,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-bec4bef7-1a25-4c66-a65d-9560fb522fd9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:07.76Z","sequence":28573,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:07.76Z","sequence":28574,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-16D4ED14FDCB]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:07.778Z","sequence":28575,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-2b44d69b-e33b-4867-8415-58378c7efa37, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:09.213Z","sequence":28576,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:09.213Z","sequence":28577,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100052A] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:09.22Z","sequence":28578,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:09.22Z","sequence":28579,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:09.227Z","sequence":28580,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a64d5cea-d03f-4ae2-9152-f7602abf6be7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:09.906Z","sequence":28581,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:09.911Z","sequence":28582,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-00GWALP120IT]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:09.974Z","sequence":28583,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-e08f6659-3956-4ed2-acde-dc172b98ac6b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:10.137Z","sequence":28584,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:10.137Z","sequence":28585,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 00GWALP120IT]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:10.152Z","sequence":28586,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-173bf2f8-6f26-4432-9650-c1db48fd61da, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:10.179Z","sequence":28587,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:10.18Z","sequence":28588,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 4A38383700300023] for gateway [00GWALP120IT]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:10.185Z","sequence":28589,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:0.3.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:10.185Z","sequence":28590,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7\",\n \"upstream-message-mapper\" : \"upstream_dash7\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:10.325Z","sequence":28591,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFD1CCA53F49916]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1258cb1e8d3dda9a","parentId":"87a5e66f809fe343","traceId":"0000000000000000ce45635cc479edb5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:10.352Z","sequence":28592,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFD1CCA53F49916]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1258cb1e8d3dda9a","parentId":"87a5e66f809fe343","traceId":"0000000000000000ce45635cc479edb5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:10.463Z","sequence":28593,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b3f0a43f-4ce1-416f-865f-e545e730cd47, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:11.091Z","sequence":28594,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 16D4ED14FDCB]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ada897a3afc9e26a","parentId":"8149d22c5f01e737","traceId":"0000000000000000946992c78a919222","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:11.107Z","sequence":28595,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 16D4ED14FDCB]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ada897a3afc9e26a","parentId":"8149d22c5f01e737","traceId":"0000000000000000946992c78a919222","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:14.196Z","sequence":28596,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191230]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5ca7821ffaa95154","parentId":"2e56c484b7fa8570","traceId":"0000000000000000f1ad5a7c40c68c05","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:14.215Z","sequence":28597,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191230, resource-version: 68ee9768-9b0f-411f-b0dc-993861eac66a]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5ca7821ffaa95154","parentId":"2e56c484b7fa8570","traceId":"0000000000000000f1ad5a7c40c68c05","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:14.222Z","sequence":28598,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191230, resource-version: 2cf98a92-825f-4142-8ba3-072bc993bf37]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5ca7821ffaa95154","parentId":"2e56c484b7fa8570","traceId":"0000000000000000f1ad5a7c40c68c05","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:14.226Z","sequence":28599,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191230]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f565cddb4434df00","parentId":"a832b7fdd85a8ee6","traceId":"0000000000000000f1ad5a7c40c68c05","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:14.346Z","sequence":28600,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191230]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f565cddb4434df00","parentId":"a832b7fdd85a8ee6","traceId":"0000000000000000f1ad5a7c40c68c05","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:15.822Z","sequence":28601,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFE7F563C83D6B3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c4e66cada8ece89a","parentId":"296c2674a3a6c339","traceId":"000000000000000079690a7e5c46987e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:15.859Z","sequence":28602,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFE7F563C83D6B3, resource-version: cd593ccc-611f-41fd-8702-2203ee27d225]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c4e66cada8ece89a","parentId":"296c2674a3a6c339","traceId":"000000000000000079690a7e5c46987e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:15.868Z","sequence":28603,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFE7F563C83D6B3, resource-version: 9258bb1f-d561-4ac3-abee-ed4e054aeb3d]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c4e66cada8ece89a","parentId":"296c2674a3a6c339","traceId":"000000000000000079690a7e5c46987e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:17.02Z","sequence":28604,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:17.02Z","sequence":28605,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:17.025Z","sequence":28606,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-92ec7f13-9296-4b9a-af28-0900bf683dee, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:17.029Z","sequence":28607,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:17.029Z","sequence":28608,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191230]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:17.039Z","sequence":28609,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-3825ed58-befc-41a6-b346-40a554542983, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:17.161Z","sequence":28610,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:17.161Z","sequence":28611,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFE7F563C83D6B3] for gateway [gateway_integrationtest_network_191230]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:17.162Z","sequence":28612,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:17.162Z","sequence":28613,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191230]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:17.17Z","sequence":28614,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.7.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:17.17Z","sequence":28615,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:17.171Z","sequence":28616,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-022f3911-70a3-4294-a6a2-f6ba88086efa, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:17.664Z","sequence":28617,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-65764401-2f61-4fc1-9793-0bf9e8435da5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:22.314Z","sequence":28618,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:22.314Z","sequence":28619,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:22.321Z","sequence":28620,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-4872bf0d-00d7-4a3d-a781-e3bc699ee6e1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:25.717Z","sequence":28621,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:25.717Z","sequence":28622,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oci]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:25.72Z","sequence":28623,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-1252d07e-0775-4f11-902a-001cd9b06dbf, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:25.722Z","sequence":28624,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:25.723Z","sequence":28625,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000164] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:25.728Z","sequence":28626,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:25.728Z","sequence":28627,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:25.731Z","sequence":28628,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d3c410e0-9ac7-47e0-b643-9db35fb9a5ec, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:25.777Z","sequence":28629,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:25.777Z","sequence":28630,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000164] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:25.784Z","sequence":28631,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:25.784Z","sequence":28632,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:25.788Z","sequence":28633,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6e442b63-962b-4563-ba62-794bf8445df7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:26.902Z","sequence":28634,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 00B370024964]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5a05aa20d01191ce","parentId":"2e9552d0c218dd5c","traceId":"00000000000000007ab3a7874ae405c7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:26.921Z","sequence":28635,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 00B370024964, resource-version: 1a767043-ae9f-4242-8bc8-61474d6b1b52]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5a05aa20d01191ce","parentId":"2e9552d0c218dd5c","traceId":"00000000000000007ab3a7874ae405c7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:26.93Z","sequence":28636,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 00B370024964, resource-version: 8f3ab527-e79a-4bcc-939c-7bdf57f746f6]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5a05aa20d01191ce","parentId":"2e9552d0c218dd5c","traceId":"00000000000000007ab3a7874ae405c7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:26.933Z","sequence":28637,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 00B370024964]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f89607c28f110c32","parentId":"ea32790bb61edd99","traceId":"00000000000000007ab3a7874ae405c7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:27.052Z","sequence":28638,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 00B370024964]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f89607c28f110c32","parentId":"ea32790bb61edd99","traceId":"00000000000000007ab3a7874ae405c7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:27.826Z","sequence":28639,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFF9840EDF84E72]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9e89e56bed4a0bbb","parentId":"f5dbeaf6542678b4","traceId":"0000000000000000c7bd2dc0f33f710d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:27.843Z","sequence":28640,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFF9840EDF84E72, resource-version: ec12298d-8a5c-490c-b5ee-4becd91fa9e5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9e89e56bed4a0bbb","parentId":"f5dbeaf6542678b4","traceId":"0000000000000000c7bd2dc0f33f710d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:27.85Z","sequence":28641,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFF9840EDF84E72, resource-version: ab648b4b-45e1-406e-b695-bca0f2bec54c]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9e89e56bed4a0bbb","parentId":"f5dbeaf6542678b4","traceId":"0000000000000000c7bd2dc0f33f710d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:28.492Z","sequence":28642,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/conditionall:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:28.494Z","sequence":28643,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: conditionall, device-id: 0008004B512D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:28.5Z","sequence":28644,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f1db3c80-bdf5-40a4-8650-7b261e2bfbdf, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:28.502Z","sequence":28645,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:28.503Z","sequence":28646,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: conditionall]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:28.505Z","sequence":28647,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-8845368c-43b9-4324-8ca8-6887945ee91b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:28.898Z","sequence":28648,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:28.899Z","sequence":28649,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-00B370024964]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:28.908Z","sequence":28650,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-7a723b3a-c9dd-46eb-a34b-eb70fc9a3157, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:29.034Z","sequence":28651,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:29.034Z","sequence":28652,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 00B370024964]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:29.038Z","sequence":28653,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e6fc1af0-b429-4758-b997-a8e290c6a54c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:29.061Z","sequence":28654,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:29.061Z","sequence":28655,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFF9840EDF84E72] for gateway [00B370024964]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:29.066Z","sequence":28656,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.5.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:29.066Z","sequence":28657,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:29.238Z","sequence":28658,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-630db3db-e64b-48e6-a898-e7bda69c9d1f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:31.385Z","sequence":28659,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFE7F563C83D6B3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bf52a4f41e41eca5","parentId":"7ae4da9f6d2216d4","traceId":"000000000000000093a06b709c3887ab","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:31.437Z","sequence":28660,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFE7F563C83D6B3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bf52a4f41e41eca5","parentId":"7ae4da9f6d2216d4","traceId":"000000000000000093a06b709c3887ab","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:31.561Z","sequence":28661,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191230]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"61e8d54e08910ca6","parentId":"cfe6e4fb427d9140","traceId":"0000000000000000512b04cf93576dcf","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:31.601Z","sequence":28662,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191230]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"61e8d54e08910ca6","parentId":"cfe6e4fb427d9140","traceId":"0000000000000000512b04cf93576dcf","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:32.03Z","sequence":28663,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 827EED62AFD4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"629809054d458097","parentId":"c97bbff57cfa4a2e","traceId":"0000000000000000c709b7c8c2b9afa5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:32.048Z","sequence":28664,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 827EED62AFD4, resource-version: a69f925a-5f09-4311-be1d-177da0f9c7c3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"629809054d458097","parentId":"c97bbff57cfa4a2e","traceId":"0000000000000000c709b7c8c2b9afa5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:32.086Z","sequence":28665,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 827EED62AFD4, resource-version: 26a02a65-15ec-49dd-852b-d8b1d2475e2f]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"629809054d458097","parentId":"c97bbff57cfa4a2e","traceId":"0000000000000000c709b7c8c2b9afa5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:32.09Z","sequence":28666,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 827EED62AFD4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ba776cf8fc2a641e","parentId":"83279a92846db5c8","traceId":"0000000000000000c709b7c8c2b9afa5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:32.242Z","sequence":28667,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 827EED62AFD4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ba776cf8fc2a641e","parentId":"83279a92846db5c8","traceId":"0000000000000000c709b7c8c2b9afa5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:32.831Z","sequence":28668,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF097DBA0ACE93C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d5e8978f7166e090","parentId":"c1862f52f101ba31","traceId":"0000000000000000fc846653c8930824","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:32.866Z","sequence":28669,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF097DBA0ACE93C, resource-version: 86ef720b-a3c9-4e64-9497-b220c530047a]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d5e8978f7166e090","parentId":"c1862f52f101ba31","traceId":"0000000000000000fc846653c8930824","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:32.94Z","sequence":28670,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF097DBA0ACE93C, resource-version: d86b19c3-5ef8-45ff-8305-7f8266698ce2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d5e8978f7166e090","parentId":"c1862f52f101ba31","traceId":"0000000000000000fc846653c8930824","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:33.988Z","sequence":28671,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:33.988Z","sequence":28672,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-827EED62AFD4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:34.009Z","sequence":28673,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-769b5248-8cde-4416-bb09-dc8a44c401bd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:34.135Z","sequence":28674,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:34.135Z","sequence":28675,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 827EED62AFD4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:34.141Z","sequence":28676,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a91ad530-7ef2-456c-a063-eca346aee19c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:34.146Z","sequence":28677,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:34.146Z","sequence":28678,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF097DBA0ACE93C] for gateway [827EED62AFD4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:34.152Z","sequence":28679,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:34.152Z","sequence":28680,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:34.349Z","sequence":28681,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-bd01f913-62ec-4e25-a5f9-6109e64ffdbb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:36.581Z","sequence":28682,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/acta:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:36.581Z","sequence":28683,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: acta, device-id: 39383837002B0047] for gateway [0008004AAAA3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:36.592Z","sequence":28684,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.3.0\"\n },\n \"viaGroups\" : [ \"gateways_acta\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:36.593Z","sequence":28685,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_acta\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:36.596Z","sequence":28686,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8e8730c8-8727-4e16-8a1c-537c6545245f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:38.2Z","sequence":28687,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:38.2Z","sequence":28688,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:38.205Z","sequence":28689,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-72a4f523-ffff-4a42-ac63-1d7004ace7d2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:38.684Z","sequence":28690,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFF9840EDF84E72]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f69dbec3467e28fe","parentId":"8e087e5718159926","traceId":"0000000000000000e5e1ec7b206efab7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:38.742Z","sequence":28691,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFF9840EDF84E72]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f69dbec3467e28fe","parentId":"8e087e5718159926","traceId":"0000000000000000e5e1ec7b206efab7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:39.059Z","sequence":28692,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 00B370024964]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"71ec1647e5c550de","parentId":"e47acc7866dbb466","traceId":"00000000000000002c5bfdde4f4e00a4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:39.097Z","sequence":28693,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 00B370024964]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"71ec1647e5c550de","parentId":"e47acc7866dbb466","traceId":"00000000000000002c5bfdde4f4e00a4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:39.36Z","sequence":28694,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191233]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f65047175050bd90","parentId":"502d86a362eb15a2","traceId":"0000000000000000ea12b6097e4ded9b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:39.399Z","sequence":28695,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191233, resource-version: 0df56224-22e7-4038-b6ab-14a70ebce7cc]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f65047175050bd90","parentId":"502d86a362eb15a2","traceId":"0000000000000000ea12b6097e4ded9b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:39.441Z","sequence":28696,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191233, resource-version: 960dbdb9-f1b4-44c5-99cf-b9290d0a5de1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f65047175050bd90","parentId":"502d86a362eb15a2","traceId":"0000000000000000ea12b6097e4ded9b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:39.444Z","sequence":28697,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191233]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"71e145c7001693c8","parentId":"e8e8c3d4496eead3","traceId":"0000000000000000ea12b6097e4ded9b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:39.588Z","sequence":28698,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191233]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"71e145c7001693c8","parentId":"e8e8c3d4496eead3","traceId":"0000000000000000ea12b6097e4ded9b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:40.227Z","sequence":28699,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF7C1F7574F6106]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"51bacbb6889309db","parentId":"409fb6abd328d29e","traceId":"0000000000000000b1d7e5cde039d49e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:40.27Z","sequence":28700,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF7C1F7574F6106, resource-version: c9ffaf99-a724-44a9-ad7e-e75a65991883]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"51bacbb6889309db","parentId":"409fb6abd328d29e","traceId":"0000000000000000b1d7e5cde039d49e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:40.283Z","sequence":28701,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF7C1F7574F6106, resource-version: a289fd2f-195e-4173-9f68-91ba6fc693a1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"51bacbb6889309db","parentId":"409fb6abd328d29e","traceId":"0000000000000000b1d7e5cde039d49e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:41.328Z","sequence":28702,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:41.329Z","sequence":28703,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191233]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:41.357Z","sequence":28704,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-9865366e-fde5-4812-a3f5-3435e36fe855, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:41.485Z","sequence":28705,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:41.485Z","sequence":28706,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF7C1F7574F6106] for gateway [gateway_integrationtest_network_191233]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:41.486Z","sequence":28707,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:41.486Z","sequence":28708,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191233]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:41.496Z","sequence":28709,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f7fb4dbb-38e3-4417-87ca-3d9eecedfb55, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:41.497Z","sequence":28710,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:41.497Z","sequence":28711,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:41.687Z","sequence":28712,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b4fe313b-2ea6-4389-813a-a5bfbe59eb03, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:42.112Z","sequence":28713,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:42.112Z","sequence":28714,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10007F2] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:42.113Z","sequence":28715,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:42.113Z","sequence":28716,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:42.133Z","sequence":28717,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-886ecb17-0a87-42e3-9c19-75872ee430c6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:42.133Z","sequence":28718,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:42.135Z","sequence":28719,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:42.147Z","sequence":28720,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4b67d3e2-0564-4867-b0fc-21b1466f2196, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:42.415Z","sequence":28721,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF097DBA0ACE93C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7408ef6cdeb5eedd","parentId":"cba9c2b873d70059","traceId":"00000000000000006b313f398db31e74","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:42.443Z","sequence":28722,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF097DBA0ACE93C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7408ef6cdeb5eedd","parentId":"cba9c2b873d70059","traceId":"00000000000000006b313f398db31e74","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:42.808Z","sequence":28723,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 827EED62AFD4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cd125b0d5eef42b7","parentId":"6671d05a62fe39ec","traceId":"000000000000000087cd345ab5e43c6e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:42.843Z","sequence":28724,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 827EED62AFD4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cd125b0d5eef42b7","parentId":"6671d05a62fe39ec","traceId":"000000000000000087cd345ab5e43c6e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:43.557Z","sequence":28725,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:43.558Z","sequence":28726,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: chevron]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:43.565Z","sequence":28727,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-0f8e9c98-2597-41ce-a62a-2eab6a19a7ed, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:43.572Z","sequence":28728,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/chevron:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:43.572Z","sequence":28729,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: chevron, type: hashed-password, auth-id: auth-CHEVRON-ORBIWISE-EL-SEGUNDO]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:43.7Z","sequence":28730,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-50eee380-2037-4229-abdf-ccce7c3d8f36, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:43.82Z","sequence":28731,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/chevron:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:43.821Z","sequence":28732,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: chevron, device-id: 70B3D57BB1000662] for gateway [CHEVRON-ORBIWISE-EL-SEGUNDO]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:43.823Z","sequence":28733,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/chevron:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:43.823Z","sequence":28734,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: chevron, device-id: CHEVRON-ORBIWISE-EL-SEGUNDO]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:43.828Z","sequence":28735,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_chevron\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:43.828Z","sequence":28736,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_chevron\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:43.829Z","sequence":28737,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8069e340-754e-4e1d-8d79-bca88465e675, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:43.831Z","sequence":28738,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c3ee0ada-30b1-4985-8ab2-45ac017ebbc5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:47.984Z","sequence":28739,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:47.984Z","sequence":28740,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AC6] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:47.994Z","sequence":28741,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:47.994Z","sequence":28742,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:48.013Z","sequence":28743,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-87d8675f-dfae-4d33-afc2-14bced35d889, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:50.101Z","sequence":28744,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:50.101Z","sequence":28745,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006C5] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:50.11Z","sequence":28746,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:50.11Z","sequence":28747,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:50.125Z","sequence":28748,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-be4bafda-9a01-4b32-9d77-357a6a69ab4e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:52.357Z","sequence":28749,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF7C1F7574F6106]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b77597c260b98530","parentId":"40aa64d149f8a948","traceId":"0000000000000000cf2e34cbe954e825","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:52.386Z","sequence":28750,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF7C1F7574F6106]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b77597c260b98530","parentId":"40aa64d149f8a948","traceId":"0000000000000000cf2e34cbe954e825","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:52.576Z","sequence":28751,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191233]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"154d6f6794859b55","parentId":"60a2c7520b518ee8","traceId":"00000000000000000e4f7f4c5de2115f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:52.629Z","sequence":28752,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191233]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"154d6f6794859b55","parentId":"60a2c7520b518ee8","traceId":"00000000000000000e4f7f4c5de2115f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:55.992Z","sequence":28753,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191234]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b8f8d05a4ad290e1","parentId":"af0a29203ddbf051","traceId":"0000000000000000837a546aceb9c2f3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:56.032Z","sequence":28754,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191234, resource-version: 660972f9-dd31-4d36-9adb-c0f80b2ef409]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b8f8d05a4ad290e1","parentId":"af0a29203ddbf051","traceId":"0000000000000000837a546aceb9c2f3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:56.038Z","sequence":28755,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191234, resource-version: 3d3ed977-fe1a-4822-aa76-34ba86b55706]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b8f8d05a4ad290e1","parentId":"af0a29203ddbf051","traceId":"0000000000000000837a546aceb9c2f3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:56.041Z","sequence":28756,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191234]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a71284eb2b4b3c7b","parentId":"8b55f05032567f7e","traceId":"0000000000000000837a546aceb9c2f3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:56.193Z","sequence":28757,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191234]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a71284eb2b4b3c7b","parentId":"8b55f05032567f7e","traceId":"0000000000000000837a546aceb9c2f3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:56.998Z","sequence":28758,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF624A7535BEB58]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"db636960ff1cd021","parentId":"814de077e3802d00","traceId":"00000000000000005f90738757def833","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:57.02Z","sequence":28759,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF624A7535BEB58, resource-version: b21fd2e9-5c07-4f1a-b18b-3451f09f0b97]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"db636960ff1cd021","parentId":"814de077e3802d00","traceId":"00000000000000005f90738757def833","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:57.037Z","sequence":28760,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF624A7535BEB58, resource-version: 9b273404-bb2d-4805-9e66-ca8b89fbd313]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"db636960ff1cd021","parentId":"814de077e3802d00","traceId":"00000000000000005f90738757def833","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:58.031Z","sequence":28761,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:58.031Z","sequence":28762,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000221] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:58.038Z","sequence":28763,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:58.039Z","sequence":28764,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:58.053Z","sequence":28765,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5ab453ab-638d-452d-a2b3-93c205eae2c6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:58.133Z","sequence":28766,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:58.133Z","sequence":28767,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191234]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:58.134Z","sequence":28768,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:58.134Z","sequence":28769,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191234]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:58.147Z","sequence":28770,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-9d1b0a0a-a26d-49fe-9c61-0445f70314b2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:58.147Z","sequence":28771,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-2a3f0728-4015-4be4-b37d-e9388bd642d9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:58.377Z","sequence":28772,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:58.377Z","sequence":28773,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF624A7535BEB58] for gateway [gateway_integrationtest_network_191234]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:58.378Z","sequence":28774,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:58.379Z","sequence":28775,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191234]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:58.383Z","sequence":28776,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:58.383Z","sequence":28777,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF624A7535BEB58] for gateway [gateway_integrationtest_network_191234]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:58.384Z","sequence":28778,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:58.385Z","sequence":28779,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191234]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:58.401Z","sequence":28780,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:connect:0.1.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:58.401Z","sequence":28781,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:58.402Z","sequence":28782,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-602e8d88-5b36-436c-b683-e93243025532, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:58.41Z","sequence":28783,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-def7a032-6298-4bd0-9613-09d1363356cd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:58.411Z","sequence":28784,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:connect:0.1.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:58.411Z","sequence":28785,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:58.453Z","sequence":28786,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191235]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fd8b4290b93cb7fc","parentId":"5a6e0730045c71b7","traceId":"00000000000000003445b9725f4145ab","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:58.608Z","sequence":28787,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191235, resource-version: 8cae1f16-31a0-426d-a395-d68c96093c23]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fd8b4290b93cb7fc","parentId":"5a6e0730045c71b7","traceId":"00000000000000003445b9725f4145ab","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:58.687Z","sequence":28788,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191235, resource-version: eb6192c7-dc80-4e5c-807f-684f1b9fee68]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fd8b4290b93cb7fc","parentId":"5a6e0730045c71b7","traceId":"00000000000000003445b9725f4145ab","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:58.693Z","sequence":28789,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191235]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fe36a23a4202e879","parentId":"fa4f8f9d128d4962","traceId":"00000000000000003445b9725f4145ab","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:59.141Z","sequence":28790,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191235]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fe36a23a4202e879","parentId":"fa4f8f9d128d4962","traceId":"00000000000000003445b9725f4145ab","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:59.276Z","sequence":28791,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2d134c30-3f8d-4e29-ba03-2985fb6008b6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:59.572Z","sequence":28792,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4a6ce8e1-84e1-4865-a9ff-efb46de8a756, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:59.574Z","sequence":28793,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:59.574Z","sequence":28794,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000795] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:59.575Z","sequence":28795,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:59.576Z","sequence":28796,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF624A7535BEB58] for gateway [gateway_integrationtest_network_191234]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:59.577Z","sequence":28797,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:59.578Z","sequence":28798,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001D4] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:59.579Z","sequence":28799,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:59.582Z","sequence":28800,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001D4] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:59.588Z","sequence":28801,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:59.589Z","sequence":28802,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:59.59Z","sequence":28803,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:connect:0.1.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:59.591Z","sequence":28804,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:59.592Z","sequence":28805,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:59.594Z","sequence":28806,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:59.594Z","sequence":28807,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:59.595Z","sequence":28808,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:59.596Z","sequence":28809,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-94c8e715-21b8-4c6a-8a41-6b8ee7d356f2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:59.603Z","sequence":28810,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-64c95460-d193-4c5c-b4c6-abbb59e7e6d3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:50:59.611Z","sequence":28811,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-18e851bd-e75d-4f7c-88e4-1d948d43563a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:00.025Z","sequence":28812,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4e8b285a-2cd0-4f8d-beb3-d9f99ffca177, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:00.405Z","sequence":28813,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:00.405Z","sequence":28814,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10002AC] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:00.413Z","sequence":28815,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:00.413Z","sequence":28816,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:00.417Z","sequence":28817,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a53dfda6-0360-4f21-b371-7ac4763a3f30, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:00.518Z","sequence":28818,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF03E69D62749CC]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ed4363694b989ec4","parentId":"9f878d14391d0596","traceId":"0000000000000000b9a2ceb3e8411340","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:00.567Z","sequence":28819,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF03E69D62749CC, resource-version: 0c8dfdf8-2beb-425b-a85c-72198a2976b3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ed4363694b989ec4","parentId":"9f878d14391d0596","traceId":"0000000000000000b9a2ceb3e8411340","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:00.599Z","sequence":28820,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF03E69D62749CC, resource-version: 128ed9b8-60b5-40e3-a9bf-04f43cc9ebba]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ed4363694b989ec4","parentId":"9f878d14391d0596","traceId":"0000000000000000b9a2ceb3e8411340","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:01.627Z","sequence":28821,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/conditionall:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:01.627Z","sequence":28822,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: conditionall, device-id: 70B3D57BB10001F0] for gateway [0008004B512D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:01.633Z","sequence":28823,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_conditionall\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:01.633Z","sequence":28824,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_conditionall\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:01.637Z","sequence":28825,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3898c147-aa0f-4549-abfe-dad54e6b4c9d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:01.8Z","sequence":28826,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF03E69D62749CC]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f25d9d63728b82f9","parentId":"fc5d44a984f6ddd0","traceId":"0000000000000000ae2903a4dd526a23","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:01.855Z","sequence":28827,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF03E69D62749CC]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f25d9d63728b82f9","parentId":"fc5d44a984f6ddd0","traceId":"0000000000000000ae2903a4dd526a23","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:02.009Z","sequence":28828,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191235]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"aa43448cb5ac24f8","parentId":"23e3cce00a86adf3","traceId":"00000000000000007b5a4272b5c54cd3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:02.054Z","sequence":28829,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191235]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"aa43448cb5ac24f8","parentId":"23e3cce00a86adf3","traceId":"00000000000000007b5a4272b5c54cd3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:03.149Z","sequence":28830,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 6DAA9D8DE64D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2a83aae892bffa98","parentId":"c0c8db3a8f19e5c4","traceId":"00000000000000001fca97151d9f98c9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:03.2Z","sequence":28831,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 6DAA9D8DE64D, resource-version: 5044dcef-054c-405b-8c30-8186ad0cce91]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2a83aae892bffa98","parentId":"c0c8db3a8f19e5c4","traceId":"00000000000000001fca97151d9f98c9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:03.208Z","sequence":28832,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 6DAA9D8DE64D, resource-version: f176d01a-0e1b-434d-91bd-5ea466c045aa]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2a83aae892bffa98","parentId":"c0c8db3a8f19e5c4","traceId":"00000000000000001fca97151d9f98c9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:03.213Z","sequence":28833,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 6DAA9D8DE64D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4ff1e92c10e2bbaa","parentId":"913684bb8d1060b7","traceId":"00000000000000001fca97151d9f98c9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:03.497Z","sequence":28834,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 6DAA9D8DE64D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4ff1e92c10e2bbaa","parentId":"913684bb8d1060b7","traceId":"00000000000000001fca97151d9f98c9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:04.166Z","sequence":28835,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191237]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"75fa6a0ce4e198c8","parentId":"27e2835a875ab853","traceId":"00000000000000007594baa2d0a2557e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:04.201Z","sequence":28836,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191237, resource-version: e0f4895b-1932-4269-8e53-46a85cb6fe54]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"75fa6a0ce4e198c8","parentId":"27e2835a875ab853","traceId":"00000000000000007594baa2d0a2557e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:04.208Z","sequence":28837,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191237, resource-version: 671362dc-d0ef-4c7a-856d-69d5486a48c4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"75fa6a0ce4e198c8","parentId":"27e2835a875ab853","traceId":"00000000000000007594baa2d0a2557e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:04.211Z","sequence":28838,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191237]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4087a36b12cbefb7","parentId":"2626ce76e2870a8a","traceId":"00000000000000007594baa2d0a2557e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:04.321Z","sequence":28839,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF802A6071AAC47]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"427b1e55400f02f2","parentId":"ba64112294ae01f5","traceId":"0000000000000000bfda620efc07e47e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:04.345Z","sequence":28840,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF802A6071AAC47, resource-version: 33bfd5ba-2c08-44fe-b65d-57dcf4585dfd]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"427b1e55400f02f2","parentId":"ba64112294ae01f5","traceId":"0000000000000000bfda620efc07e47e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:04.353Z","sequence":28841,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF802A6071AAC47, resource-version: abcea8bd-ddc8-455f-b565-38b949a8102a]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"427b1e55400f02f2","parentId":"ba64112294ae01f5","traceId":"0000000000000000bfda620efc07e47e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:04.391Z","sequence":28842,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191237]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4087a36b12cbefb7","parentId":"2626ce76e2870a8a","traceId":"00000000000000007594baa2d0a2557e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:05.529Z","sequence":28843,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:05.529Z","sequence":28844,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-6DAA9D8DE64D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:05.54Z","sequence":28845,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-47bfae08-2139-4020-8cb3-0b3c33549204, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:05.553Z","sequence":28846,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFE960C83D482C1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f879f6b105cccb74","parentId":"fd307eecfac8c361","traceId":"0000000000000000232051caf164f16b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:05.601Z","sequence":28847,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFE960C83D482C1, resource-version: 30701b4e-18f8-4845-875b-9c9cc5fb14f7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f879f6b105cccb74","parentId":"fd307eecfac8c361","traceId":"0000000000000000232051caf164f16b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:05.603Z","sequence":28848,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:05.603Z","sequence":28849,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BB84C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:05.61Z","sequence":28850,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFE960C83D482C1, resource-version: 8f96bbe5-f13d-4949-ae2a-34351cece2ab]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f879f6b105cccb74","parentId":"fd307eecfac8c361","traceId":"0000000000000000232051caf164f16b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:05.612Z","sequence":28851,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8710d1b3-0fd7-4393-b5e3-1b95158a3ead, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:05.669Z","sequence":28852,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:05.669Z","sequence":28853,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 6DAA9D8DE64D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:05.688Z","sequence":28854,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8af53021-ecb5-4f32-a17d-6938fdf34383, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:05.692Z","sequence":28855,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:05.692Z","sequence":28856,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF802A6071AAC47] for gateway [6DAA9D8DE64D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:05.698Z","sequence":28857,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:05.698Z","sequence":28858,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:06.144Z","sequence":28859,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-38fedfc1-fa6f-40d3-9fcb-4f2bfd5108ec, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:06.679Z","sequence":28860,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:06.679Z","sequence":28861,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191237]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:06.697Z","sequence":28862,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-ae6b518f-66de-4851-9d85-e7e68f70a7b1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:06.821Z","sequence":28863,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:06.821Z","sequence":28864,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFE960C83D482C1] for gateway [gateway_integrationtest_network_191237]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:06.822Z","sequence":28865,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:06.822Z","sequence":28866,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191237]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:06.829Z","sequence":28867,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.3.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:06.829Z","sequence":28868,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:06.833Z","sequence":28869,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-13da7a47-adbf-4766-b8b3-08ccba955a2e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:07.608Z","sequence":28870,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ae7cd95b-f027-4348-bd94-b5546c9848ab, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:07.609Z","sequence":28871,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:07.609Z","sequence":28872,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 0008004B5135]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:07.652Z","sequence":28873,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3eb0b51d-2c3c-4515-853b-bc5389c7b861, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:07.868Z","sequence":28874,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:07.868Z","sequence":28875,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000574] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:07.912Z","sequence":28876,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:07.913Z","sequence":28877,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:08.097Z","sequence":28878,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-83887fce-707b-4268-b06d-ffa5620917a9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:09.413Z","sequence":28879,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF802A6071AAC47]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"384502ff7547167f","parentId":"4de13491175fa30a","traceId":"000000000000000021d490776312525a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:09.477Z","sequence":28880,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF802A6071AAC47]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"384502ff7547167f","parentId":"4de13491175fa30a","traceId":"000000000000000021d490776312525a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:10.869Z","sequence":28881,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:10.869Z","sequence":28882,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BBD1B]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:10.875Z","sequence":28883,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-64841726-2dc7-4d1e-ac94-03b0e169fffa, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:11.082Z","sequence":28884,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 6DAA9D8DE64D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4d1d1d4e4dc9ee9c","parentId":"6fce6f76e8c7d94b","traceId":"00000000000000006a06a22cac5e1488","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:11.145Z","sequence":28885,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 6DAA9D8DE64D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4d1d1d4e4dc9ee9c","parentId":"6fce6f76e8c7d94b","traceId":"00000000000000006a06a22cac5e1488","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:12.172Z","sequence":28886,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF624A7535BEB58]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e5ae84fe1ad7a2e3","parentId":"133b7c0fc762966b","traceId":"0000000000000000688a786a3db872dd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:12.209Z","sequence":28887,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF624A7535BEB58]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e5ae84fe1ad7a2e3","parentId":"133b7c0fc762966b","traceId":"0000000000000000688a786a3db872dd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:12.527Z","sequence":28888,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191234]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9439d0d3e498d35e","parentId":"091c080cda6a8ce5","traceId":"00000000000000001813ab2510aa289b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:12.571Z","sequence":28889,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191234]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9439d0d3e498d35e","parentId":"091c080cda6a8ce5","traceId":"00000000000000001813ab2510aa289b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:13.007Z","sequence":28890,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: F60F3CCF37BB]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"51ab98000df4470a","parentId":"c2e649bfb4abdcae","traceId":"000000000000000090a022ca580217ad","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:13.029Z","sequence":28891,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: F60F3CCF37BB, resource-version: 83149df7-a9dd-4703-b036-9c482772dfd0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"51ab98000df4470a","parentId":"c2e649bfb4abdcae","traceId":"000000000000000090a022ca580217ad","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:13.038Z","sequence":28892,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: F60F3CCF37BB, resource-version: 0c1f876e-b7f1-4695-b171-c9c63113067a]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"51ab98000df4470a","parentId":"c2e649bfb4abdcae","traceId":"000000000000000090a022ca580217ad","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:13.043Z","sequence":28893,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: F60F3CCF37BB]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ab3fced888f29ec0","parentId":"66c63370ae134f43","traceId":"000000000000000090a022ca580217ad","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:13.211Z","sequence":28894,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: F60F3CCF37BB]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ab3fced888f29ec0","parentId":"66c63370ae134f43","traceId":"000000000000000090a022ca580217ad","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:13.689Z","sequence":28895,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFE38C71ECA7033]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e55d3624b95ecaf7","parentId":"2e7e5f61df6e3720","traceId":"00000000000000003f956cf61b4812fb","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:13.732Z","sequence":28896,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFE38C71ECA7033, resource-version: a747dda2-7874-4927-a419-74f7666c2a30]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e55d3624b95ecaf7","parentId":"2e7e5f61df6e3720","traceId":"00000000000000003f956cf61b4812fb","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:13.762Z","sequence":28897,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFE38C71ECA7033, resource-version: 89d7f07b-1426-4d7f-b512-4b363571ee0b]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e55d3624b95ecaf7","parentId":"2e7e5f61df6e3720","traceId":"00000000000000003f956cf61b4812fb","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:14.811Z","sequence":28898,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:14.811Z","sequence":28899,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-F60F3CCF37BB]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:14.893Z","sequence":28900,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-36b5362e-ac77-4867-9333-c6191c6d62f3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:15.024Z","sequence":28901,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:15.024Z","sequence":28902,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: F60F3CCF37BB]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:15.047Z","sequence":28903,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a52f8826-09bf-461f-a38e-1c10652cdba2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:15.058Z","sequence":28904,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:15.058Z","sequence":28905,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFE38C71ECA7033] for gateway [F60F3CCF37BB]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:15.074Z","sequence":28906,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:15.074Z","sequence":28907,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:15.544Z","sequence":28908,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7e6f2296-c7c3-4263-be86-1f946c15d4fd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:15.849Z","sequence":28909,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:15.849Z","sequence":28910,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 70B3D57BB100018E] for gateway [0008004BB84C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:15.884Z","sequence":28911,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_lanxess\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:15.885Z","sequence":28912,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_lanxess\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:15.888Z","sequence":28913,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b63eaaff-5b6b-410a-8ed8-5076d076b5d3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:18.107Z","sequence":28914,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:18.108Z","sequence":28915,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A7E] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:18.133Z","sequence":28916,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:18.133Z","sequence":28917,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:18.146Z","sequence":28918,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6bbe3f59-8c88-4d95-b666-3440271769a5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:18.241Z","sequence":28919,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/arkema:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:18.241Z","sequence":28920,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: arkema, device-id: 0008004AE119]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:18.267Z","sequence":28921,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-262d544f-1e20-407d-b583-29752076b23d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:18.273Z","sequence":28922,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:18.273Z","sequence":28923,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: arkema]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:18.284Z","sequence":28924,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-65f9c3dd-2e72-4eed-8975-d102da45c1f4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:18.669Z","sequence":28925,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:18.669Z","sequence":28926,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-00GWALP120IT]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:18.7Z","sequence":28927,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-22472e2f-bdda-4ccc-93ae-124c2cd9260a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:18.826Z","sequence":28928,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:18.826Z","sequence":28929,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: C0FFEE2C0DE00000] for gateway [00GWALP120IT]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:18.86Z","sequence":28930,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:0.3.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:18.86Z","sequence":28931,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7\",\n \"upstream-message-mapper\" : \"upstream_dash7\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:19.445Z","sequence":28932,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e8ecad54-08bc-45b0-a7dc-50b7353e2095, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:19.701Z","sequence":28933,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:19.701Z","sequence":28934,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: flint]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:19.704Z","sequence":28935,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-08efb7d6-04d0-481c-ac15-56419c1013dc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:20.533Z","sequence":28936,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:20.533Z","sequence":28937,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000219] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:20.549Z","sequence":28938,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:20.549Z","sequence":28939,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:20.553Z","sequence":28940,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-acc623d8-adc2-44b7-b251-994d1927991f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:20.589Z","sequence":28941,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:20.589Z","sequence":28942,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000219] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:20.599Z","sequence":28943,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:20.599Z","sequence":28944,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:20.607Z","sequence":28945,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7f84743b-9824-4d34-b20d-551a3c41fe1b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:21.395Z","sequence":28946,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFE960C83D482C1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"19ee3a6af9d951cb","parentId":"03c45e5e9d5dbd22","traceId":"000000000000000023a21e02bbedd7ed","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:21.412Z","sequence":28947,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFE960C83D482C1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"19ee3a6af9d951cb","parentId":"03c45e5e9d5dbd22","traceId":"000000000000000023a21e02bbedd7ed","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:21.801Z","sequence":28948,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191237]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e0251b73471990bf","parentId":"cbb392087bd5cf09","traceId":"000000000000000047d20fad4f769ff4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:21.821Z","sequence":28949,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191237]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e0251b73471990bf","parentId":"cbb392087bd5cf09","traceId":"000000000000000047d20fad4f769ff4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:22.967Z","sequence":28950,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: CE2FCDB6A37A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fbd6b67b2ac56d1c","parentId":"73852b9f33e43d0d","traceId":"00000000000000009ba3eb50f65181c3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:22.983Z","sequence":28951,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: CE2FCDB6A37A, resource-version: 69ea2759-eceb-418c-8844-963e68444870]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fbd6b67b2ac56d1c","parentId":"73852b9f33e43d0d","traceId":"00000000000000009ba3eb50f65181c3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:22.991Z","sequence":28952,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: CE2FCDB6A37A, resource-version: 51943d46-042c-4da9-82b8-feff751a9756]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fbd6b67b2ac56d1c","parentId":"73852b9f33e43d0d","traceId":"00000000000000009ba3eb50f65181c3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:22.996Z","sequence":28953,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: CE2FCDB6A37A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b5397d7c1c2c3c33","parentId":"413604ef0b5c45de","traceId":"00000000000000009ba3eb50f65181c3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:23.122Z","sequence":28954,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: CE2FCDB6A37A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b5397d7c1c2c3c33","parentId":"413604ef0b5c45de","traceId":"00000000000000009ba3eb50f65181c3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:24.19Z","sequence":28955,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFEAA4245168353]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c963f24943307d9f","parentId":"4f07419f7c20883d","traceId":"0000000000000000d62838ccdaabc5be","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:24.207Z","sequence":28956,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFEAA4245168353, resource-version: 00a18722-f8bf-4650-a4ad-6dc198026e2d]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c963f24943307d9f","parentId":"4f07419f7c20883d","traceId":"0000000000000000d62838ccdaabc5be","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:24.213Z","sequence":28957,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFEAA4245168353, resource-version: 21ebd1d8-cf1a-4c92-b8d7-ac3f056654e8]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c963f24943307d9f","parentId":"4f07419f7c20883d","traceId":"0000000000000000d62838ccdaabc5be","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:25.257Z","sequence":28958,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:25.257Z","sequence":28959,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-CE2FCDB6A37A]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:25.269Z","sequence":28960,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-30f41394-940d-4c50-a604-07dd0c01c377, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:25.393Z","sequence":28961,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:25.393Z","sequence":28962,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: CE2FCDB6A37A]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:25.405Z","sequence":28963,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c9fe5323-7141-45a0-9a09-d84c3c0220fc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:25.409Z","sequence":28964,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:25.409Z","sequence":28965,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFEAA4245168353] for gateway [CE2FCDB6A37A]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:25.419Z","sequence":28966,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:25.419Z","sequence":28967,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:25.921Z","sequence":28968,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0a723a56-e7f1-4565-8dee-1c8cf45d7c99, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:27.53Z","sequence":28969,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:27.53Z","sequence":28970,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AAC] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:27.536Z","sequence":28971,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:27.536Z","sequence":28972,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:27.543Z","sequence":28973,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9717f256-6d1a-41d6-ac35-ad54a428d8b0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:28.088Z","sequence":28974,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/flint:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:28.088Z","sequence":28975,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: flint, type: hashed-password, auth-id: auth-flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:28.105Z","sequence":28976,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-d0d7734b-42d9-4f16-aff0-4de9ac4e3abb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:28.233Z","sequence":28977,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:28.233Z","sequence":28978,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000818] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:28.248Z","sequence":28979,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:28.249Z","sequence":28980,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:28.252Z","sequence":28981,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d1d6ee36-ca52-4c67-9786-524d72928507, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:29.267Z","sequence":28982,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFEAA4245168353]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f93b8a5e5956f236","parentId":"eb2998a9b3d502d1","traceId":"0000000000000000db1e1cd26cd4159a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:29.286Z","sequence":28983,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFEAA4245168353]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f93b8a5e5956f236","parentId":"eb2998a9b3d502d1","traceId":"0000000000000000db1e1cd26cd4159a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:29.419Z","sequence":28984,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:29.419Z","sequence":28985,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: dow]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:29.427Z","sequence":28986,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-719c74ff-0418-4625-9e21-b2156e052ec7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:29.433Z","sequence":28987,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/dow:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:29.433Z","sequence":28988,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: dow, type: hashed-password, auth-id: auth-gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:29.448Z","sequence":28989,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-484cd79c-cde9-496a-8cb5-c2691e9bc882, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:29.811Z","sequence":28990,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:29.811Z","sequence":28991,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 70B3D57BB100127C] for gateway [gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:29.823Z","sequence":28992,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:29.826Z","sequence":28993,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:29.833Z","sequence":28994,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-15860c11-241d-4e21-b6c1-8cfc1f4a8de3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:29.932Z","sequence":28995,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:29.932Z","sequence":28996,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100015B] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:29.952Z","sequence":28997,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:0.4.1\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:29.953Z","sequence":28998,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:29.96Z","sequence":28999,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3140e874-3516-43da-8829-e677eac752fa, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:30.197Z","sequence":29000,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:30.197Z","sequence":29001,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000825] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:30.203Z","sequence":29002,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:30.203Z","sequence":29003,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:30.207Z","sequence":29004,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2771b1fc-32e4-4191-96df-a2f3733dcbe4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:30.456Z","sequence":29005,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: CE2FCDB6A37A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d545774be9440b03","parentId":"b3bca26d944d6a7b","traceId":"00000000000000001333214da20b3bfd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:30.483Z","sequence":29006,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: CE2FCDB6A37A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d545774be9440b03","parentId":"b3bca26d944d6a7b","traceId":"00000000000000001333214da20b3bfd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:30.934Z","sequence":29007,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: B2FC5EA4B561]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6f57f5184f173302","parentId":"c134b4d90371470b","traceId":"0000000000000000a20f772db9b44724","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:30.954Z","sequence":29008,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: B2FC5EA4B561, resource-version: 9a98d96d-9e76-4e10-af1e-0d2f5f7a60d1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6f57f5184f173302","parentId":"c134b4d90371470b","traceId":"0000000000000000a20f772db9b44724","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:30.968Z","sequence":29009,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: B2FC5EA4B561, resource-version: 42dd47c2-6efd-4442-aa04-f0422260717d]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6f57f5184f173302","parentId":"c134b4d90371470b","traceId":"0000000000000000a20f772db9b44724","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:30.977Z","sequence":29010,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: B2FC5EA4B561]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3f621fa149c5d95d","parentId":"d941d5e127077a9c","traceId":"0000000000000000a20f772db9b44724","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:31.16Z","sequence":29011,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: B2FC5EA4B561]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3f621fa149c5d95d","parentId":"d941d5e127077a9c","traceId":"0000000000000000a20f772db9b44724","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:31.979Z","sequence":29012,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFE38C71ECA7033]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"74d5bb750cb91e10","parentId":"a5449b7bef4fe145","traceId":"00000000000000008bc63eb89817ab3a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:31.994Z","sequence":29013,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFE38C71ECA7033]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"74d5bb750cb91e10","parentId":"a5449b7bef4fe145","traceId":"00000000000000008bc63eb89817ab3a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:32.108Z","sequence":29014,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF020749983FF12]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"03aa7ead07b9d27f","parentId":"0f52f4bda11328b2","traceId":"000000000000000057665c04aec8492a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:32.125Z","sequence":29015,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF020749983FF12, resource-version: 87b72e13-3b65-499f-8cbd-0b9b556e5d8f]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"03aa7ead07b9d27f","parentId":"0f52f4bda11328b2","traceId":"000000000000000057665c04aec8492a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:32.132Z","sequence":29016,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF020749983FF12, resource-version: 858abdf6-136c-4af0-b876-10469f28485e]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"03aa7ead07b9d27f","parentId":"0f52f4bda11328b2","traceId":"000000000000000057665c04aec8492a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:32.343Z","sequence":29017,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: F60F3CCF37BB]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c9283263173660b9","parentId":"02802a4b45d2dd13","traceId":"0000000000000000d8b5f1d71dd76a95","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:32.359Z","sequence":29018,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: F60F3CCF37BB]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c9283263173660b9","parentId":"02802a4b45d2dd13","traceId":"0000000000000000d8b5f1d71dd76a95","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:32.955Z","sequence":29019,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191241]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8440f1967c3c0b3b","parentId":"f0e8dbdf06c6613e","traceId":"00000000000000002a531b4b264fd88a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:32.975Z","sequence":29020,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191241, resource-version: 22c2d54c-f48e-438a-babb-13fd81dde44c]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8440f1967c3c0b3b","parentId":"f0e8dbdf06c6613e","traceId":"00000000000000002a531b4b264fd88a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:32.983Z","sequence":29021,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191241, resource-version: 80e90e2f-6a34-42ae-bfbf-07a102039dc5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8440f1967c3c0b3b","parentId":"f0e8dbdf06c6613e","traceId":"00000000000000002a531b4b264fd88a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:32.986Z","sequence":29022,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191241]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"da6ee1e557648d91","parentId":"71619a03f795738c","traceId":"00000000000000002a531b4b264fd88a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:33.098Z","sequence":29023,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191241]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"da6ee1e557648d91","parentId":"71619a03f795738c","traceId":"00000000000000002a531b4b264fd88a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:33.183Z","sequence":29024,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:33.183Z","sequence":29025,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-B2FC5EA4B561]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:33.194Z","sequence":29026,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-b013d897-fc44-428e-9af2-b21ebb838b3a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:33.314Z","sequence":29027,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:33.314Z","sequence":29028,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: B2FC5EA4B561]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:33.319Z","sequence":29029,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-01225032-2f2a-4c4d-90cd-c8ee0ec6f955, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:33.323Z","sequence":29030,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:33.323Z","sequence":29031,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF020749983FF12] for gateway [B2FC5EA4B561]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:33.328Z","sequence":29032,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:33.328Z","sequence":29033,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:33.561Z","sequence":29034,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9c64117d-55fc-4d77-bd28-f880669aa7fc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:33.779Z","sequence":29035,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFB67CAC56E995F]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"853b34882ca22324","parentId":"7e7ec3b87cec5c8d","traceId":"00000000000000001e748b85ac233584","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:33.795Z","sequence":29036,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFB67CAC56E995F, resource-version: 98e25eec-af63-4e00-91a1-77ce606fd1f1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"853b34882ca22324","parentId":"7e7ec3b87cec5c8d","traceId":"00000000000000001e748b85ac233584","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:33.801Z","sequence":29037,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFB67CAC56E995F, resource-version: f0681d56-976a-4f38-bfc2-119a61174863]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"853b34882ca22324","parentId":"7e7ec3b87cec5c8d","traceId":"00000000000000001e748b85ac233584","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:34.861Z","sequence":29038,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:34.861Z","sequence":29039,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191241]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:34.871Z","sequence":29040,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-3b731068-6f68-4fb7-93cd-d2916e556038, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:34.996Z","sequence":29041,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:34.996Z","sequence":29042,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFB67CAC56E995F] for gateway [gateway_integrationtest_network_191241]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:34.996Z","sequence":29043,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:34.996Z","sequence":29044,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191241]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:35.005Z","sequence":29045,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7586eb75-84e4-491d-9d23-42bed791e429, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:35.005Z","sequence":29046,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:35.005Z","sequence":29047,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:35.191Z","sequence":29048,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ca7eb451-d6f4-4c11-a798-515921b0e521, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:36.873Z","sequence":29049,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:36.873Z","sequence":29050,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A81] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:36.874Z","sequence":29051,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:36.874Z","sequence":29052,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:36.88Z","sequence":29053,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5c8dcfa9-d7b9-4105-911c-4f859527b049, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:36.88Z","sequence":29054,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:36.88Z","sequence":29055,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:36.887Z","sequence":29056,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ed1d0e2d-1320-4481-924b-b7c32e7f2f75, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:37.875Z","sequence":29057,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0F81F3297DC0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8a57bb7cbb23ba42","parentId":"769fe887c9117c58","traceId":"000000000000000011ac4ba62fda8f9a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:37.893Z","sequence":29058,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0F81F3297DC0, resource-version: d63f2871-9b98-408a-8644-27b507d90d14]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8a57bb7cbb23ba42","parentId":"769fe887c9117c58","traceId":"000000000000000011ac4ba62fda8f9a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:37.901Z","sequence":29059,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0F81F3297DC0, resource-version: 6c003f4d-95af-4bc9-bf70-9ccb7fe539c1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8a57bb7cbb23ba42","parentId":"769fe887c9117c58","traceId":"000000000000000011ac4ba62fda8f9a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:37.904Z","sequence":29060,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 0F81F3297DC0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0f99106a38062fca","parentId":"44c0667bfc4f1cb5","traceId":"000000000000000011ac4ba62fda8f9a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:38.027Z","sequence":29061,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 0F81F3297DC0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0f99106a38062fca","parentId":"44c0667bfc4f1cb5","traceId":"000000000000000011ac4ba62fda8f9a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:38.822Z","sequence":29062,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFC3A57F9A78ED4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b560aedab62f85e9","parentId":"d97a47550163dd98","traceId":"0000000000000000fe1603709f3d80c3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:38.84Z","sequence":29063,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFC3A57F9A78ED4, resource-version: c785ed71-7bc6-4506-995e-ca7f58180719]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b560aedab62f85e9","parentId":"d97a47550163dd98","traceId":"0000000000000000fe1603709f3d80c3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:38.847Z","sequence":29064,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFC3A57F9A78ED4, resource-version: 119f7f62-a7af-487a-8b2e-91099600e5ad]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b560aedab62f85e9","parentId":"d97a47550163dd98","traceId":"0000000000000000fe1603709f3d80c3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:39.9Z","sequence":29065,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:39.9Z","sequence":29066,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-0F81F3297DC0]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:39.91Z","sequence":29067,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-2dea6c05-5c55-4fa1-848b-701af312b435, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:40.039Z","sequence":29068,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:40.04Z","sequence":29069,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0F81F3297DC0]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:40.045Z","sequence":29070,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-eb36252f-d9d3-4a5f-9757-eb5ad4202fa1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:40.051Z","sequence":29071,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:40.051Z","sequence":29072,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFC3A57F9A78ED4] for gateway [0F81F3297DC0]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:40.056Z","sequence":29073,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:40.056Z","sequence":29074,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:40.25Z","sequence":29075,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-696cac5c-5a54-495f-9a05-01769cb3ca01, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:40.332Z","sequence":29076,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:40.332Z","sequence":29077,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 70B3D57BB1001278] for gateway [gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:40.34Z","sequence":29078,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:40.34Z","sequence":29079,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:40.345Z","sequence":29080,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0a23adf1-007b-4db3-bb63-6a2d21d72159, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:46.152Z","sequence":29081,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:46.152Z","sequence":29082,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A90] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:46.16Z","sequence":29083,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:46.16Z","sequence":29084,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:46.167Z","sequence":29085,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d8ad4f76-4385-4b0a-9a8b-8b362e7a0058, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:46.388Z","sequence":29086,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF020749983FF12]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8ff627770d5abaf3","parentId":"81b8e0906eef1907","traceId":"00000000000000001930a63b9baa439d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:46.409Z","sequence":29087,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF020749983FF12]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8ff627770d5abaf3","parentId":"81b8e0906eef1907","traceId":"00000000000000001930a63b9baa439d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:47.461Z","sequence":29088,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: B2FC5EA4B561]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"87a71554678a8ed9","parentId":"9f31a6db2c0a95a3","traceId":"000000000000000052280162c3dd7f56","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:47.493Z","sequence":29089,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: B2FC5EA4B561]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"87a71554678a8ed9","parentId":"9f31a6db2c0a95a3","traceId":"000000000000000052280162c3dd7f56","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:48.307Z","sequence":29090,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFB67CAC56E995F]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b1dc5b506fac5805","parentId":"0e448e8e70f2911d","traceId":"0000000000000000256ebe169bfe415e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:48.327Z","sequence":29091,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFB67CAC56E995F]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b1dc5b506fac5805","parentId":"0e448e8e70f2911d","traceId":"0000000000000000256ebe169bfe415e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:48.713Z","sequence":29092,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:48.713Z","sequence":29093,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10009C2] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:48.719Z","sequence":29094,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:48.719Z","sequence":29095,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:48.723Z","sequence":29096,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c2d6e139-51a8-43ee-a4a8-33c489c36b73, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:48.759Z","sequence":29097,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191241]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fa1bc64ae8ce9556","parentId":"24a8ea3fb933e2eb","traceId":"00000000000000006e2daf1cf29c20a1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:48.78Z","sequence":29098,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191241]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fa1bc64ae8ce9556","parentId":"24a8ea3fb933e2eb","traceId":"00000000000000006e2daf1cf29c20a1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:52.353Z","sequence":29099,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFC3A57F9A78ED4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8b2a7f6cf49724c9","parentId":"f07a6c24e577c63d","traceId":"0000000000000000e83fb92ed66dd7a0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:52.373Z","sequence":29100,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/acta:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:52.373Z","sequence":29101,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: acta, device-id: 3232393200220029] for gateway [0008004AAAA3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:52.382Z","sequence":29102,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFC3A57F9A78ED4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8b2a7f6cf49724c9","parentId":"f07a6c24e577c63d","traceId":"0000000000000000e83fb92ed66dd7a0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:52.382Z","sequence":29103,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_acta\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:52.382Z","sequence":29104,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_acta\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:52.386Z","sequence":29105,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c03a37f7-a224-4bc9-b9a8-5db6e7346ba7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:53.039Z","sequence":29106,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0F81F3297DC0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"342b8dce05536db9","parentId":"0738d9cab60b0c3c","traceId":"0000000000000000e6566400d38f26dc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:53.057Z","sequence":29107,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0F81F3297DC0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"342b8dce05536db9","parentId":"0738d9cab60b0c3c","traceId":"0000000000000000e6566400d38f26dc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:55.816Z","sequence":29108,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:55.816Z","sequence":29109,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A8C] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:55.828Z","sequence":29110,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:55.828Z","sequence":29111,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:55.836Z","sequence":29112,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d167401a-1bc8-4a18-8414-1de80dbf2e19, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:57.436Z","sequence":29113,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:57.436Z","sequence":29114,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019E4] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:57.443Z","sequence":29115,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:57.443Z","sequence":29116,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:51:57.449Z","sequence":29117,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-fa2f4c9c-a033-40c5-930b-2c0f0a2407d1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:00.493Z","sequence":29118,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:00.493Z","sequence":29119,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:00.501Z","sequence":29120,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0fc0886a-c2d1-4248-a2ec-598bc0ae3dbc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:12.326Z","sequence":29121,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:12.327Z","sequence":29122,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000178] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:12.334Z","sequence":29123,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:12.334Z","sequence":29124,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:12.338Z","sequence":29125,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-468cd948-a72a-4935-bcad-6d63eeae3887, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:12.374Z","sequence":29126,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:12.374Z","sequence":29127,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000178] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:12.379Z","sequence":29128,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:12.379Z","sequence":29129,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:12.382Z","sequence":29130,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8d1a4f42-d3aa-447e-94cb-a0bf214a8a74, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:15.377Z","sequence":29131,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:15.378Z","sequence":29132,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BBD1C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:15.384Z","sequence":29133,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a206e263-5ed6-46b6-8a49-999fd781691e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:15.389Z","sequence":29134,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:15.389Z","sequence":29135,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: lanxess]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:15.392Z","sequence":29136,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-fabe5a40-f2a4-442b-966d-0ee100aa2ba8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:16.591Z","sequence":29137,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:16.591Z","sequence":29138,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A7F] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:16.598Z","sequence":29139,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:16.598Z","sequence":29140,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:16.605Z","sequence":29141,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6f374054-4b74-4c89-96b9-e42000891ab2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:21.319Z","sequence":29142,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:21.319Z","sequence":29143,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006B9] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:21.324Z","sequence":29144,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:21.324Z","sequence":29145,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:21.33Z","sequence":29146,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-dbf63f7f-2b01-45a0-8dd2-e0fb3624a8d1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:23.626Z","sequence":29147,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:23.626Z","sequence":29148,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019E3] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:23.632Z","sequence":29149,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:23.632Z","sequence":29150,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:23.638Z","sequence":29151,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-db77a0f4-ff30-4b87-9050-a668dc3fde9e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:26.386Z","sequence":29152,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:26.386Z","sequence":29153,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A8A] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:26.392Z","sequence":29154,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:26.392Z","sequence":29155,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:26.399Z","sequence":29156,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-aa90edac-a3a2-465d-bc83-0dfe7b512b58, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:26.607Z","sequence":29157,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:26.608Z","sequence":29158,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: acta]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:26.615Z","sequence":29159,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-57e0bc58-708e-4319-9f59-5b4e0702848f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:26.624Z","sequence":29160,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/acta:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:26.624Z","sequence":29161,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: acta, device-id: 35343834003C0033] for gateway [0008004AAAA3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:26.638Z","sequence":29162,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.3.0\"\n },\n \"viaGroups\" : [ \"gateways_acta\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:26.639Z","sequence":29163,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_acta\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:26.643Z","sequence":29164,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4d19bc58-5750-49ce-a1cc-91b291fd2935, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:28.688Z","sequence":29165,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:28.688Z","sequence":29166,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: shell]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:28.691Z","sequence":29167,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-5577577c-8434-4622-8531-8fcad26dc984, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:28.693Z","sequence":29168,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/shell:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:28.694Z","sequence":29169,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: shell, type: hashed-password, auth-id: auth-gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:28.703Z","sequence":29170,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-96623e8a-fc37-48f3-b6dd-f9ebe76cd81b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:28.821Z","sequence":29171,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:28.821Z","sequence":29172,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AD9] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:28.827Z","sequence":29173,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:28.827Z","sequence":29174,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:28.833Z","sequence":29175,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6d054de6-336a-4377-9b06-ff834d6e31a5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:29.81Z","sequence":29176,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:29.81Z","sequence":29177,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A83] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:29.816Z","sequence":29178,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:29.816Z","sequence":29179,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:29.822Z","sequence":29180,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-118e5972-d2cf-427d-9700-44ceec4a84c2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:30.144Z","sequence":29181,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:30.145Z","sequence":29182,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10001DE] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:30.151Z","sequence":29183,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:0.4.1\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:30.151Z","sequence":29184,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:30.158Z","sequence":29185,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2f27952c-b477-4a70-bcbb-f4e9731fddb6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:30.937Z","sequence":29186,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:30.937Z","sequence":29187,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 0008004C80F4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:30.942Z","sequence":29188,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9a73c9c7-e43e-4e0a-848b-7c7e03967b4a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:31.556Z","sequence":29189,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:31.556Z","sequence":29190,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 70B3D57BB1001281] for gateway [gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:31.556Z","sequence":29191,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:31.557Z","sequence":29192,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:31.561Z","sequence":29193,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:31.561Z","sequence":29194,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:31.562Z","sequence":29195,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-903cc2a3-015c-4a80-af96-2aba1833b719, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:31.565Z","sequence":29196,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e277cfef-a475-4117-8837-5ae7ddbd46bb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:34.877Z","sequence":29197,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:34.877Z","sequence":29198,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AD8] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:34.883Z","sequence":29199,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:34.883Z","sequence":29200,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:34.89Z","sequence":29201,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1a8b915f-b5c1-4200-ac67-d61d0c3f61f2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:38.241Z","sequence":29202,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:38.241Z","sequence":29203,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10013F0] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:38.247Z","sequence":29204,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:38.247Z","sequence":29205,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:38.254Z","sequence":29206,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1d8f9d56-f9d5-4f8a-b659-8d6d45e83b44, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:38.804Z","sequence":29207,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:38.804Z","sequence":29208,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C0A] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:38.81Z","sequence":29209,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:38.81Z","sequence":29210,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:38.816Z","sequence":29211,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-405b5d62-e113-4ce9-af23-8c6e8f2d7ab7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:39.154Z","sequence":29212,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:39.154Z","sequence":29213,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: ineos]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:39.158Z","sequence":29214,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-0a289346-d705-44c1-bcd2-6a6e7ae3152e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:39.16Z","sequence":29215,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:39.16Z","sequence":29216,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB1000A76] for gateway [0008004B5135]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:39.173Z","sequence":29217,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:39.173Z","sequence":29218,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:39.176Z","sequence":29219,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e9236d3f-c549-482f-9ab0-6244f091b1fb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:46.999Z","sequence":29220,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oiltanking:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:47Z","sequence":29221,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oiltanking, device-id: 0008004BB60F]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:47.006Z","sequence":29222,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3257bdfa-3bea-4ec5-baf5-839bd7fb99b4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:47.008Z","sequence":29223,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:47.009Z","sequence":29224,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oiltanking]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:47.011Z","sequence":29225,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-81f9b69b-2c8f-40f4-86e4-1b15243f399a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:51.802Z","sequence":29226,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:51.802Z","sequence":29227,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 70B3D57BB1001270] for gateway [gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:51.85Z","sequence":29228,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:51.85Z","sequence":29229,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:51.855Z","sequence":29230,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-92801119-0267-4413-b295-7fd03b14eea1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:55.24Z","sequence":29231,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:55.24Z","sequence":29232,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000814] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:55.249Z","sequence":29233,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:55.249Z","sequence":29234,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:55.257Z","sequence":29235,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-320bf4c7-a9b8-4eca-9338-a2197b228cb1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:55.378Z","sequence":29236,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:55.379Z","sequence":29237,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A84] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:55.386Z","sequence":29238,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:55.386Z","sequence":29239,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:55.397Z","sequence":29240,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-724861c9-6db6-43a8-8a5b-40a4c473c518, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:59.531Z","sequence":29241,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:59.532Z","sequence":29242,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 70B3D57BB100127D] for gateway [gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:59.539Z","sequence":29243,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:59.539Z","sequence":29244,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:59.544Z","sequence":29245,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d1ca37c8-e1bf-4139-8d5a-d6ee487a169a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:59.676Z","sequence":29246,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:59.676Z","sequence":29247,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000830] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:59.689Z","sequence":29248,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:59.689Z","sequence":29249,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:52:59.697Z","sequence":29250,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f74f1fbc-af89-46ff-b63f-25d02572ed3f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:01.974Z","sequence":29251,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:01.974Z","sequence":29252,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10008B0] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:01.98Z","sequence":29253,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:01.98Z","sequence":29254,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:01.987Z","sequence":29255,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ad5982d5-d5bb-4631-be26-6a6aa0063a97, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:05.135Z","sequence":29256,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: BA03A76F9A72]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"77ab661a60bd2f67","parentId":"614b3dec94be9e1e","traceId":"0000000000000000cb4ed76387137a92","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:05.154Z","sequence":29257,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: BA03A76F9A72, resource-version: 86977e3a-afc7-413b-a576-c9d1afc5577d]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"77ab661a60bd2f67","parentId":"614b3dec94be9e1e","traceId":"0000000000000000cb4ed76387137a92","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:05.162Z","sequence":29258,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: BA03A76F9A72, resource-version: 0f11c06a-b34b-40df-8c4a-53ae6b016996]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"77ab661a60bd2f67","parentId":"614b3dec94be9e1e","traceId":"0000000000000000cb4ed76387137a92","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:05.17Z","sequence":29259,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: BA03A76F9A72]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fd9f5dfdeaef8f82","parentId":"7f758ccfe9670b30","traceId":"0000000000000000cb4ed76387137a92","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:05.296Z","sequence":29260,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: BA03A76F9A72]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fd9f5dfdeaef8f82","parentId":"7f758ccfe9670b30","traceId":"0000000000000000cb4ed76387137a92","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:06.215Z","sequence":29261,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF46BD40DFE1CA5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e6368d917c1add4b","parentId":"8cdf10720fdf535d","traceId":"0000000000000000bda5b5aad818c503","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:06.236Z","sequence":29262,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF46BD40DFE1CA5, resource-version: f7610a16-f54b-4719-85e0-c40bff9a47b7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e6368d917c1add4b","parentId":"8cdf10720fdf535d","traceId":"0000000000000000bda5b5aad818c503","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:06.245Z","sequence":29263,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF46BD40DFE1CA5, resource-version: 35973877-3263-49b8-9184-384fe216d8ad]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e6368d917c1add4b","parentId":"8cdf10720fdf535d","traceId":"0000000000000000bda5b5aad818c503","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:06.301Z","sequence":29264,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:06.301Z","sequence":29265,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-BA03A76F9A72]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:06.317Z","sequence":29266,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-b9e899a4-3548-4047-b9df-0f47d2fe9942, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:06.438Z","sequence":29267,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:06.439Z","sequence":29268,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: BA03A76F9A72]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:06.444Z","sequence":29269,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2497a3c2-d195-406c-82b8-d50623cd7c61, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:06.45Z","sequence":29270,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [command-router@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:06.45Z","sequence":29271,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:06.453Z","sequence":29272,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-be46ad7f-5134-4325-9982-b5fc69b9700a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:12.455Z","sequence":29273,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono service-command-router-Device Registration-6b43a4ef-0980-4edd-b8fb-ab7a8b085811] wants to open a link [address: Source{address='registration/integrationtest/d3dc00c6-af76-4684-871c-b8a738239dd9', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:12.455Z","sequence":29274,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-0]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:12.455Z","sequence":29275,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@6091e633] for replies to [registration/integrationtest/d3dc00c6-af76-4684-871c-b8a738239dd9]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:12.457Z","sequence":29276,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono service-command-router-Device Registration-6b43a4ef-0980-4edd-b8fb-ab7a8b085811] wants to open a link [address: Target{address='registration/integrationtest', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:12.458Z","sequence":29277,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-1]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:12.458Z","sequence":29278,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:12.461Z","sequence":29279,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [command-router@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:12.461Z","sequence":29280,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF46BD40DFE1CA5]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:12.846Z","sequence":29281,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2f84f04f-fff7-4c52-b3f0-d572ebc71084, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:22.407Z","sequence":29282,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/aloxy:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:22.408Z","sequence":29283,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: aloxy, device-id: 0008004A8F68]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:22.416Z","sequence":29284,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-52aeaee0-144f-4222-8a73-1a36f75c58ad, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:22.419Z","sequence":29285,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:22.42Z","sequence":29286,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: aloxy]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:22.423Z","sequence":29287,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-a6c60470-5c0f-4de1-835f-852afca7ff4a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:22.535Z","sequence":29288,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:22.535Z","sequence":29289,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF46BD40DFE1CA5] for gateway [BA03A76F9A72]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:22.541Z","sequence":29290,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:22.541Z","sequence":29291,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:22.712Z","sequence":29292,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-65e5c51e-f782-4652-a283-5a55ab418c27, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:22.721Z","sequence":29293,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:22.721Z","sequence":29294,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:22.725Z","sequence":29295,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-73c58252-0ae8-4090-931e-04d7192dd529, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:25.222Z","sequence":29296,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF46BD40DFE1CA5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c5a6e4bf636f9f67","parentId":"b6c498d2a5007fc5","traceId":"0000000000000000045ee352190d335b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:25.239Z","sequence":29297,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF46BD40DFE1CA5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c5a6e4bf636f9f67","parentId":"b6c498d2a5007fc5","traceId":"0000000000000000045ee352190d335b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:25.713Z","sequence":29298,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: BA03A76F9A72]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"508977cb3c3c40c7","parentId":"a44cb4ad8859fe2d","traceId":"0000000000000000dddf0c46564ef853","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:25.729Z","sequence":29299,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: BA03A76F9A72]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"508977cb3c3c40c7","parentId":"a44cb4ad8859fe2d","traceId":"0000000000000000dddf0c46564ef853","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:25.996Z","sequence":29300,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191244]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"628b2648048a0259","parentId":"a6b4a69c71c745e1","traceId":"00000000000000009c21cc322c463edc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:26.013Z","sequence":29301,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191244, resource-version: 57919f58-2e9a-4101-ba02-8b4f0fea780c]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"628b2648048a0259","parentId":"a6b4a69c71c745e1","traceId":"00000000000000009c21cc322c463edc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:26.02Z","sequence":29302,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191244, resource-version: 4f2262c4-7069-4490-bad1-89b67bfaf51f]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"628b2648048a0259","parentId":"a6b4a69c71c745e1","traceId":"00000000000000009c21cc322c463edc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:26.023Z","sequence":29303,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191244]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3a79939387c62e19","parentId":"b5cceb1596a1a098","traceId":"00000000000000009c21cc322c463edc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:26.134Z","sequence":29304,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191244]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3a79939387c62e19","parentId":"b5cceb1596a1a098","traceId":"00000000000000009c21cc322c463edc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:26.804Z","sequence":29305,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF95341F4DCB82F]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"89762bf160f43c94","parentId":"c9c908c62c312137","traceId":"0000000000000000576c0fb36926cc67","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:26.822Z","sequence":29306,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF95341F4DCB82F, resource-version: 3af35d88-8da7-4f47-b551-38c37d0959ec]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"89762bf160f43c94","parentId":"c9c908c62c312137","traceId":"0000000000000000576c0fb36926cc67","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:26.828Z","sequence":29307,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF95341F4DCB82F, resource-version: d3be2603-8a5d-403a-aa50-7a9096399296]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"89762bf160f43c94","parentId":"c9c908c62c312137","traceId":"0000000000000000576c0fb36926cc67","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:27.009Z","sequence":29308,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:27.009Z","sequence":29309,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oci]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:27.013Z","sequence":29310,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-983c0d4d-413b-48c2-9eac-4041702e837a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:27.015Z","sequence":29311,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:27.015Z","sequence":29312,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100016A] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:27.021Z","sequence":29313,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:27.021Z","sequence":29314,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:27.024Z","sequence":29315,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9e09345a-62c2-4bd5-ad6d-960d82eb1625, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:27.093Z","sequence":29316,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:27.094Z","sequence":29317,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100016A] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:27.098Z","sequence":29318,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:27.098Z","sequence":29319,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:27.101Z","sequence":29320,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-06b01076-98e8-4369-a17c-61167dd98312, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:28.293Z","sequence":29321,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:28.293Z","sequence":29322,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:28.296Z","sequence":29323,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-33ef3866-cc45-43e8-8b7d-80fbc03cf858, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:28.298Z","sequence":29324,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:28.298Z","sequence":29325,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191244]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:28.308Z","sequence":29326,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-1fd2108c-c77c-4435-9783-8711aacf824a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:28.436Z","sequence":29327,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:28.437Z","sequence":29328,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF95341F4DCB82F] for gateway [gateway_integrationtest_network_191244]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:28.437Z","sequence":29329,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:28.437Z","sequence":29330,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191244]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:28.442Z","sequence":29331,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-504c0c72-b0a4-4be9-92ef-b690e762753a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:28.443Z","sequence":29332,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:28.443Z","sequence":29333,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:28.644Z","sequence":29334,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-61ef7604-7a5d-4047-9ed4-479836f26a98, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:29.333Z","sequence":29335,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:29.333Z","sequence":29336,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A8B] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:29.34Z","sequence":29337,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:29.341Z","sequence":29338,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:29.348Z","sequence":29339,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-16ff50f3-a042-48bb-9e35-eb14616bae54, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:33.969Z","sequence":29340,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:33.969Z","sequence":29341,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000170] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:33.974Z","sequence":29342,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:33.974Z","sequence":29343,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:33.976Z","sequence":29344,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-93fe3466-0fea-4639-9c9c-528075f517f5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:33.99Z","sequence":29345,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:33.99Z","sequence":29346,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000170] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:34.005Z","sequence":29347,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:34.006Z","sequence":29348,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:34.009Z","sequence":29349,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3f6a750a-4a39-491f-a7b2-870a72f64c52, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:34.261Z","sequence":29350,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oiltanking:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:34.261Z","sequence":29351,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oiltanking, device-id: 30333336001B0034] for gateway [0008004BB60F]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:34.283Z","sequence":29352,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_oiltanking\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:34.283Z","sequence":29353,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oiltanking\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:34.287Z","sequence":29354,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-375570c2-ac8b-47c5-8685-06671154fd8a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:34.505Z","sequence":29355,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:34.506Z","sequence":29356,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000F93] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:34.512Z","sequence":29357,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:34.512Z","sequence":29358,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:34.521Z","sequence":29359,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5ce7b710-6af3-432d-a8d0-15186fe7881b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:35.578Z","sequence":29360,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:35.578Z","sequence":29361,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019C7] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:35.584Z","sequence":29362,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:35.584Z","sequence":29363,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:35.591Z","sequence":29364,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ee6a3a3c-385e-4d0d-98d4-1231d0daeaa8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:39.72Z","sequence":29365,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:39.72Z","sequence":29366,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100018D] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:39.727Z","sequence":29367,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:39.727Z","sequence":29368,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:39.73Z","sequence":29369,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-82c42fd1-3d6a-4586-afac-6c31d611d91b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:39.75Z","sequence":29370,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:39.75Z","sequence":29371,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100018D] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:39.76Z","sequence":29372,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:39.76Z","sequence":29373,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:39.763Z","sequence":29374,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-655134a7-d3c8-4ef9-9cd0-cff28d1939b8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:39.867Z","sequence":29375,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:39.867Z","sequence":29376,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BB613]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:39.876Z","sequence":29377,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-050cb470-d040-4a0f-b67b-f61849d398d2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:41.44Z","sequence":29378,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF95341F4DCB82F]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0bcd9c6a576b5343","parentId":"c48165d865b4ae56","traceId":"0000000000000000ff85a04717f9f8b8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:41.46Z","sequence":29379,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF95341F4DCB82F]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0bcd9c6a576b5343","parentId":"c48165d865b4ae56","traceId":"0000000000000000ff85a04717f9f8b8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:41.629Z","sequence":29380,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191244]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c0df8f14b7b19105","parentId":"88a3a63bd8dc5149","traceId":"0000000000000000a10efd951e28a365","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:41.644Z","sequence":29381,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191244]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c0df8f14b7b19105","parentId":"88a3a63bd8dc5149","traceId":"0000000000000000a10efd951e28a365","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:41.772Z","sequence":29382,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191245]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3009a8b61ee86302","parentId":"c007182cbfaec9b4","traceId":"00000000000000006c9e87066423b985","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:41.788Z","sequence":29383,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191245, resource-version: ebcd7710-1c6a-4a67-b00d-9b09fc00d581]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3009a8b61ee86302","parentId":"c007182cbfaec9b4","traceId":"00000000000000006c9e87066423b985","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:41.795Z","sequence":29384,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191245, resource-version: 5bb8d1e3-e40e-4782-8afe-5db87f3f35ae]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3009a8b61ee86302","parentId":"c007182cbfaec9b4","traceId":"00000000000000006c9e87066423b985","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:41.799Z","sequence":29385,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191245]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9cbb834e1766945f","parentId":"05b693a685fd787e","traceId":"00000000000000006c9e87066423b985","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:41.905Z","sequence":29386,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191245]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9cbb834e1766945f","parentId":"05b693a685fd787e","traceId":"00000000000000006c9e87066423b985","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:42.451Z","sequence":29387,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF2D9B112ED28F1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f396d0c37843942d","parentId":"7e00f2da3dc05319","traceId":"0000000000000000f0359da85d2dae48","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:42.467Z","sequence":29388,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF2D9B112ED28F1, resource-version: f314a168-2b35-4f01-b2f9-74a612e01dcd]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f396d0c37843942d","parentId":"7e00f2da3dc05319","traceId":"0000000000000000f0359da85d2dae48","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:42.473Z","sequence":29389,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF2D9B112ED28F1, resource-version: da85121d-e0ed-410f-a48c-f0ceea113218]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f396d0c37843942d","parentId":"7e00f2da3dc05319","traceId":"0000000000000000f0359da85d2dae48","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:43.521Z","sequence":29390,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:43.522Z","sequence":29391,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191245]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:43.573Z","sequence":29392,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-9057204c-444a-4fba-8be1-449b7132ffd6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:43.722Z","sequence":29393,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:43.723Z","sequence":29394,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF2D9B112ED28F1] for gateway [gateway_integrationtest_network_191245]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:43.723Z","sequence":29395,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:43.724Z","sequence":29396,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191245]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:43.731Z","sequence":29397,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:43.731Z","sequence":29398,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:43.733Z","sequence":29399,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-70535bee-0372-4031-b2bb-9b074b4b8a15, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:44.144Z","sequence":29400,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-95d24251-b54c-419a-86e5-76abdb2336ec, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:46.955Z","sequence":29401,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:46.955Z","sequence":29402,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000816] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:46.96Z","sequence":29403,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:46.961Z","sequence":29404,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:46.964Z","sequence":29405,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a1d5c48b-c226-4ccd-a397-7ff3cb78af4d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:56.206Z","sequence":29406,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF2D9B112ED28F1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ee8812f8ca692e0d","parentId":"6b30f1a521980636","traceId":"0000000000000000730c9152657425ad","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:56.229Z","sequence":29407,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF2D9B112ED28F1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ee8812f8ca692e0d","parentId":"6b30f1a521980636","traceId":"0000000000000000730c9152657425ad","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:56.46Z","sequence":29408,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191245]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8370f378ef8182d2","parentId":"62e3e051f39f5feb","traceId":"0000000000000000b4b39b5dd989bc2a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:56.503Z","sequence":29409,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191245]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8370f378ef8182d2","parentId":"62e3e051f39f5feb","traceId":"0000000000000000b4b39b5dd989bc2a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:56.689Z","sequence":29410,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191246]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d1eaced65890a6dc","parentId":"448c32782f91144c","traceId":"0000000000000000f5bf41ebc4778e90","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:56.715Z","sequence":29411,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191246, resource-version: 448d25c0-4e60-41d8-8bb0-81bec7d4961a]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d1eaced65890a6dc","parentId":"448c32782f91144c","traceId":"0000000000000000f5bf41ebc4778e90","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:56.723Z","sequence":29412,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191246, resource-version: e37048dd-fce1-4b8a-8926-cd3104271689]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d1eaced65890a6dc","parentId":"448c32782f91144c","traceId":"0000000000000000f5bf41ebc4778e90","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:56.728Z","sequence":29413,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191246]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cfee171b0f614a3b","parentId":"49dc05c7d4ea6c1a","traceId":"0000000000000000f5bf41ebc4778e90","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:56.884Z","sequence":29414,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191246]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cfee171b0f614a3b","parentId":"49dc05c7d4ea6c1a","traceId":"0000000000000000f5bf41ebc4778e90","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:57.631Z","sequence":29415,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFE9807DD059CBC]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3210217b6cc72eae","parentId":"9b3799d6435ad81f","traceId":"0000000000000000d1893c52f30de4a4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:57.657Z","sequence":29416,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFE9807DD059CBC, resource-version: b03e33ae-4b3e-46de-bce9-072fb8952ca7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3210217b6cc72eae","parentId":"9b3799d6435ad81f","traceId":"0000000000000000d1893c52f30de4a4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:57.663Z","sequence":29417,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFE9807DD059CBC, resource-version: 9c561ee5-3861-42d4-adb3-586d717f666d]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3210217b6cc72eae","parentId":"9b3799d6435ad81f","traceId":"0000000000000000d1893c52f30de4a4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:58.725Z","sequence":29418,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:58.725Z","sequence":29419,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191246]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:58.737Z","sequence":29420,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-7c7d45b3-ada5-46d1-b9cc-21bae0635b9f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:58.856Z","sequence":29421,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:58.856Z","sequence":29422,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFE9807DD059CBC] for gateway [gateway_integrationtest_network_191246]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:58.857Z","sequence":29423,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:58.857Z","sequence":29424,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191246]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:58.881Z","sequence":29425,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:58.881Z","sequence":29426,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:58.881Z","sequence":29427,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-99be7933-6cf6-46bb-ac19-a42040993e91, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:53:59.213Z","sequence":29428,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4537c6f1-3cad-4f19-abd9-daa947a485f4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:03.386Z","sequence":29429,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:03.386Z","sequence":29430,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006CE] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:03.392Z","sequence":29431,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.8.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:03.392Z","sequence":29432,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:03.399Z","sequence":29433,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4ff2ac73-f197-43a3-a74a-094d731d1681, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:03.583Z","sequence":29434,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:03.583Z","sequence":29435,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000575] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:03.609Z","sequence":29436,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:03.609Z","sequence":29437,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:03.628Z","sequence":29438,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b3419fd0-d0b5-4385-8f03-66a233fc91e6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:04.456Z","sequence":29439,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191247]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e60f8f4397e82be4","parentId":"1834421732be00f1","traceId":"00000000000000000bc9c229c22594f9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:04.484Z","sequence":29440,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191247, resource-version: 72d543c8-a345-4c9f-bc69-d3ec85ee9ce5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e60f8f4397e82be4","parentId":"1834421732be00f1","traceId":"00000000000000000bc9c229c22594f9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:04.5Z","sequence":29441,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191247, resource-version: a66566d1-475d-42ce-9adf-1133cb576323]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e60f8f4397e82be4","parentId":"1834421732be00f1","traceId":"00000000000000000bc9c229c22594f9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:04.521Z","sequence":29442,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191247]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4e5e64ee82dde420","parentId":"2f315b17e22ae027","traceId":"00000000000000000bc9c229c22594f9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:04.769Z","sequence":29443,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191247]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4e5e64ee82dde420","parentId":"2f315b17e22ae027","traceId":"00000000000000000bc9c229c22594f9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:05.407Z","sequence":29444,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:05.407Z","sequence":29445,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100015F] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:05.413Z","sequence":29446,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:05.413Z","sequence":29447,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:05.416Z","sequence":29448,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-678473b9-574e-4b0e-ab3d-85d92405e132, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:05.482Z","sequence":29449,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:05.482Z","sequence":29450,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100015F] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:05.488Z","sequence":29451,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:05.488Z","sequence":29452,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:05.491Z","sequence":29453,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ea09923b-e0d7-4fe9-be20-33e0557613b1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:05.552Z","sequence":29454,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF6B80479518925]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"eef7861666458ef4","parentId":"2d4ad19965749aeb","traceId":"00000000000000004ff890121967bb42","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:05.576Z","sequence":29455,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF6B80479518925, resource-version: caf16972-7493-4fa7-9bd3-630b6d013ff1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"eef7861666458ef4","parentId":"2d4ad19965749aeb","traceId":"00000000000000004ff890121967bb42","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:05.585Z","sequence":29456,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF6B80479518925, resource-version: 3a6babb3-4512-4787-98dc-acc3da29b23b]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"eef7861666458ef4","parentId":"2d4ad19965749aeb","traceId":"00000000000000004ff890121967bb42","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:06.726Z","sequence":29457,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:06.727Z","sequence":29458,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191247]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:06.749Z","sequence":29459,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-47053bbb-e715-4e81-806a-9f302e0fdf5b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:06.868Z","sequence":29460,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:06.869Z","sequence":29461,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF6B80479518925] for gateway [gateway_integrationtest_network_191247]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:06.869Z","sequence":29462,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:06.87Z","sequence":29463,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191247]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:06.878Z","sequence":29464,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d77b273c-c8cd-48fe-b64c-4119c3ba4cf8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:06.879Z","sequence":29465,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.3.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:06.879Z","sequence":29466,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:07.271Z","sequence":29467,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-18468e21-b98f-4942-9431-9932c114c674, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:10.004Z","sequence":29468,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFE9807DD059CBC]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"50cc1a6467342144","parentId":"e7f8414f7cb8daf1","traceId":"0000000000000000e532a442728c2746","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:10.062Z","sequence":29469,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFE9807DD059CBC]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"50cc1a6467342144","parentId":"e7f8414f7cb8daf1","traceId":"0000000000000000e532a442728c2746","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:10.901Z","sequence":29470,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191246]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"616a2d231ab6bf19","parentId":"0fcf8201204cf17c","traceId":"0000000000000000213a90058a785471","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:10.917Z","sequence":29471,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191246]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"616a2d231ab6bf19","parentId":"0fcf8201204cf17c","traceId":"0000000000000000213a90058a785471","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:10.931Z","sequence":29472,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:10.932Z","sequence":29473,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BDF] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:10.937Z","sequence":29474,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:10.937Z","sequence":29475,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:10.944Z","sequence":29476,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-94c133fb-130f-40d0-8df2-3ca2f22aafbe, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:11.351Z","sequence":29477,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:11.352Z","sequence":29478,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001B09] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:11.365Z","sequence":29479,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:11.365Z","sequence":29480,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:11.373Z","sequence":29481,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c02799b5-cfc3-4db5-a5aa-828f37e1e5b8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:16.012Z","sequence":29482,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191248]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"34dc90edd7a42707","parentId":"8908fce9bb191f41","traceId":"00000000000000000b5247cc1de8545b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:16.065Z","sequence":29483,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191248, resource-version: 4b30c6f7-bce5-47b7-b3ed-1569cfdd8ebd]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"34dc90edd7a42707","parentId":"8908fce9bb191f41","traceId":"00000000000000000b5247cc1de8545b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:16.072Z","sequence":29484,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191248, resource-version: a4423db0-32a7-40ec-92c8-c4efbb31ccd9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"34dc90edd7a42707","parentId":"8908fce9bb191f41","traceId":"00000000000000000b5247cc1de8545b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:16.076Z","sequence":29485,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191248]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ae94a7c453f60ec7","parentId":"6d14cd4ed7f52a8c","traceId":"00000000000000000b5247cc1de8545b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:16.25Z","sequence":29486,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191248]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ae94a7c453f60ec7","parentId":"6d14cd4ed7f52a8c","traceId":"00000000000000000b5247cc1de8545b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:16.369Z","sequence":29487,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF6B80479518925]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"acc68c958e467181","parentId":"7c482bccb1fd0c76","traceId":"0000000000000000f8b795d963577b09","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:16.385Z","sequence":29488,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF6B80479518925]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"acc68c958e467181","parentId":"7c482bccb1fd0c76","traceId":"0000000000000000f8b795d963577b09","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:16.64Z","sequence":29489,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191247]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"09881fe4c741594d","parentId":"c5934ac72d3e9dc6","traceId":"000000000000000092f1baa20e36b109","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:16.677Z","sequence":29490,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191247]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"09881fe4c741594d","parentId":"c5934ac72d3e9dc6","traceId":"000000000000000092f1baa20e36b109","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:16.857Z","sequence":29491,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191249]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a5fe81bbe2f64b70","parentId":"7d376093d6a51c02","traceId":"00000000000000009254ed57b4c6432d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:16.873Z","sequence":29492,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191249, resource-version: d3e06372-a100-4f81-a9ee-70881d80cf4e]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a5fe81bbe2f64b70","parentId":"7d376093d6a51c02","traceId":"00000000000000009254ed57b4c6432d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:16.881Z","sequence":29493,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191249, resource-version: 1dcd2874-0592-41e2-9cee-17bff60acfc0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a5fe81bbe2f64b70","parentId":"7d376093d6a51c02","traceId":"00000000000000009254ed57b4c6432d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:16.884Z","sequence":29494,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191249]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"07c6dddd6e080aa9","parentId":"aa4049e5c428ea4c","traceId":"00000000000000009254ed57b4c6432d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:17.042Z","sequence":29495,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191249]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"07c6dddd6e080aa9","parentId":"aa4049e5c428ea4c","traceId":"00000000000000009254ed57b4c6432d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:17.055Z","sequence":29496,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF5601CF88BC5D2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"206a4c48ca634860","parentId":"63007bb74f4914de","traceId":"000000000000000098604cdf0d3e6f94","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:17.076Z","sequence":29497,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF5601CF88BC5D2, resource-version: 35a05102-b4ea-4734-a44b-eb3a507b58fc]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"206a4c48ca634860","parentId":"63007bb74f4914de","traceId":"000000000000000098604cdf0d3e6f94","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:17.096Z","sequence":29498,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF5601CF88BC5D2, resource-version: 922ab1c0-8697-4686-8cfc-506767b1dad9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"206a4c48ca634860","parentId":"63007bb74f4914de","traceId":"000000000000000098604cdf0d3e6f94","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:18.063Z","sequence":29499,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFECF2622214E30]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a335d10254c2a514","parentId":"0c429377eb876490","traceId":"00000000000000002257d104a25ce87f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:18.081Z","sequence":29500,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFECF2622214E30, resource-version: 4e42f2d8-8ebf-47ec-aecf-c0747b18fd1b]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a335d10254c2a514","parentId":"0c429377eb876490","traceId":"00000000000000002257d104a25ce87f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:18.086Z","sequence":29501,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFECF2622214E30, resource-version: e2b9d71c-c6ee-4b38-b0ac-72351c99ee2b]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a335d10254c2a514","parentId":"0c429377eb876490","traceId":"00000000000000002257d104a25ce87f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:18.188Z","sequence":29502,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:18.188Z","sequence":29503,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191248]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:18.198Z","sequence":29504,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-8327a66d-ce6d-41b7-831d-f3769ecaf90a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:18.32Z","sequence":29505,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:18.321Z","sequence":29506,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF5601CF88BC5D2] for gateway [gateway_integrationtest_network_191248]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:18.321Z","sequence":29507,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:18.322Z","sequence":29508,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191248]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:18.329Z","sequence":29509,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5c1302cf-37ab-4fff-b1de-15c4b9c50752, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:18.33Z","sequence":29510,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:18.33Z","sequence":29511,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:18.372Z","sequence":29512,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/acta:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:18.373Z","sequence":29513,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: acta, device-id: 0008004AAAA3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:18.704Z","sequence":29514,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a695bddd-6f61-45f7-8cc9-0f1d00038551, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:18.711Z","sequence":29515,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d6919b8f-cd32-45b4-958b-f238a8d81cb4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:18.777Z","sequence":29516,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFECF2622214E30]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6caec6d019a87554","parentId":"0ec2fe3b3f5b03b0","traceId":"0000000000000000ae870787ca779740","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:18.812Z","sequence":29517,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFECF2622214E30]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6caec6d019a87554","parentId":"0ec2fe3b3f5b03b0","traceId":"0000000000000000ae870787ca779740","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:19.003Z","sequence":29518,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191249]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a028c23059f0d449","parentId":"c0831e8005e5f0ba","traceId":"000000000000000095ea5222893e68da","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:19.018Z","sequence":29519,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191249]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a028c23059f0d449","parentId":"c0831e8005e5f0ba","traceId":"000000000000000095ea5222893e68da","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:19.753Z","sequence":29520,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 5B50F5B7EB5A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"332fbcfe1f14749a","parentId":"862f1bcf34d07230","traceId":"0000000000000000b45c505b58aac8e9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:19.773Z","sequence":29521,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 5B50F5B7EB5A, resource-version: 10ba797a-8095-4b4a-bf4d-348e7b1d3204]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"332fbcfe1f14749a","parentId":"862f1bcf34d07230","traceId":"0000000000000000b45c505b58aac8e9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:19.784Z","sequence":29522,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 5B50F5B7EB5A, resource-version: d560598e-7a1d-43a2-b6d3-ff689bd7d90e]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"332fbcfe1f14749a","parentId":"862f1bcf34d07230","traceId":"0000000000000000b45c505b58aac8e9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:19.789Z","sequence":29523,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 5B50F5B7EB5A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3693a87600173dc7","parentId":"f75abc990c77a93f","traceId":"0000000000000000b45c505b58aac8e9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:19.982Z","sequence":29524,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 5B50F5B7EB5A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3693a87600173dc7","parentId":"f75abc990c77a93f","traceId":"0000000000000000b45c505b58aac8e9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:21.174Z","sequence":29525,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFD5E5234AE0F00]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"463a62b04be582e1","parentId":"103ba9c830834db0","traceId":"000000000000000018940c292d32c41a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:21.193Z","sequence":29526,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFD5E5234AE0F00, resource-version: 310705e7-20ed-459b-baf4-07282cd444eb]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"463a62b04be582e1","parentId":"103ba9c830834db0","traceId":"000000000000000018940c292d32c41a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:21.2Z","sequence":29527,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFD5E5234AE0F00, resource-version: f14f707d-b7cc-41a0-b62b-0ea9eca73c7a]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"463a62b04be582e1","parentId":"103ba9c830834db0","traceId":"000000000000000018940c292d32c41a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:21.305Z","sequence":29528,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:21.305Z","sequence":29529,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-5B50F5B7EB5A]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:21.315Z","sequence":29530,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-a7070199-723b-433e-8815-ee2e88d28151, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:21.441Z","sequence":29531,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:21.441Z","sequence":29532,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 5B50F5B7EB5A]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:21.449Z","sequence":29533,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7d09247d-82ec-4081-ae2d-51fbb081b278, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:23.949Z","sequence":29534,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:23.95Z","sequence":29535,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:23.965Z","sequence":29536,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5787965f-58e5-497f-b408-ac55e9660466, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:32.353Z","sequence":29537,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/repsol:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:32.353Z","sequence":29538,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: repsol, device-id: 0008004A37FF]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:32.36Z","sequence":29539,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8ca19ab3-3e24-4d49-ab2c-8118717da8ca, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:32.363Z","sequence":29540,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:32.363Z","sequence":29541,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: repsol]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:32.366Z","sequence":29542,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-84bd888d-c94a-4c72-809d-bf6e8df54a84, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:33.704Z","sequence":29543,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:33.704Z","sequence":29544,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AC4] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:33.719Z","sequence":29545,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:33.719Z","sequence":29546,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:33.727Z","sequence":29547,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7b6afbf5-5abf-4662-b3b4-8dcd27455215, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:34.156Z","sequence":29548,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF5601CF88BC5D2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8c44715a8437a53b","parentId":"299062661c16a8b4","traceId":"0000000000000000a41b948d2e7e91f5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:34.179Z","sequence":29549,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF5601CF88BC5D2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8c44715a8437a53b","parentId":"299062661c16a8b4","traceId":"0000000000000000a41b948d2e7e91f5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:38.961Z","sequence":29550,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:38.961Z","sequence":29551,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C22] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:38.967Z","sequence":29552,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:38.967Z","sequence":29553,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:38.973Z","sequence":29554,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5a539f6a-52d6-40e3-a742-02cfc682466e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:48.501Z","sequence":29555,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:48.501Z","sequence":29556,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB1000A67] for gateway [0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:48.509Z","sequence":29557,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:48.509Z","sequence":29558,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:48.513Z","sequence":29559,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7bbb92d3-c303-49c0-8a1a-77370550fcd7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:52.549Z","sequence":29560,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:52.549Z","sequence":29561,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001B01] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:52.555Z","sequence":29562,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:52.555Z","sequence":29563,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:52.562Z","sequence":29564,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4e387a12-cb0a-4efa-86b4-a98d04a6230f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:55.49Z","sequence":29565,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:55.49Z","sequence":29566,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006B7] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:55.496Z","sequence":29567,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:55.496Z","sequence":29568,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:55.503Z","sequence":29569,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8702ef34-e75f-45c8-bef6-ade8c8c97265, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:56.388Z","sequence":29570,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191251]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c0a2a8ce73c26437","parentId":"936505b71307fd39","traceId":"0000000000000000dd2a8b7df36b68bb","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:56.407Z","sequence":29571,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191251, resource-version: aa696e50-8128-4978-8387-b22991684daf]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c0a2a8ce73c26437","parentId":"936505b71307fd39","traceId":"0000000000000000dd2a8b7df36b68bb","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:56.416Z","sequence":29573,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191251, resource-version: fc91a042-2da9-4005-9f91-b784f1f7a9b5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c0a2a8ce73c26437","parentId":"936505b71307fd39","traceId":"0000000000000000dd2a8b7df36b68bb","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:56.416Z","sequence":29572,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:56.417Z","sequence":29574,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 0008004B51D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:56.42Z","sequence":29575,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191251]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d682b3aa4458cd6f","parentId":"536107e32cb2a9fc","traceId":"0000000000000000dd2a8b7df36b68bb","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:56.432Z","sequence":29576,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-05a911cb-7fd3-4dce-9c64-8b54c511cc5d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:56.435Z","sequence":29577,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:56.435Z","sequence":29578,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: dow]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:56.441Z","sequence":29579,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-078ba468-5ee7-472b-8443-a66ac7d61387, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:54:56.653Z","sequence":29580,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191251]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d682b3aa4458cd6f","parentId":"536107e32cb2a9fc","traceId":"0000000000000000dd2a8b7df36b68bb","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:01.184Z","sequence":29581,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:01.184Z","sequence":29582,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019CE] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:01.19Z","sequence":29583,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:01.19Z","sequence":29584,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:01.198Z","sequence":29585,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-db177835-32d5-4305-ad89-6ec67b64503a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:02.181Z","sequence":29586,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:02.181Z","sequence":29587,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BD0] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:02.192Z","sequence":29588,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:02.192Z","sequence":29589,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:02.199Z","sequence":29590,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6958e45c-8176-4f21-a24f-4d659255b862, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:04.157Z","sequence":29591,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191252]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4d9d87bb0dfcac55","parentId":"b33d6900c9d70051","traceId":"000000000000000047f72eb29bc8bae1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:04.204Z","sequence":29592,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191252, resource-version: 9a394962-2b90-445a-9c2d-14cc5d5b81a7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4d9d87bb0dfcac55","parentId":"b33d6900c9d70051","traceId":"000000000000000047f72eb29bc8bae1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:04.212Z","sequence":29593,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191252, resource-version: a8a45fdd-eba7-4cc3-a5cc-c38fba8f23af]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4d9d87bb0dfcac55","parentId":"b33d6900c9d70051","traceId":"000000000000000047f72eb29bc8bae1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:04.216Z","sequence":29594,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191252]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7cf022c577107856","parentId":"ef331ec4232b2834","traceId":"000000000000000047f72eb29bc8bae1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:04.381Z","sequence":29595,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191252]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7cf022c577107856","parentId":"ef331ec4232b2834","traceId":"000000000000000047f72eb29bc8bae1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:05.527Z","sequence":29596,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:05.527Z","sequence":29597,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB1000215] for gateway [0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:05.532Z","sequence":29598,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:05.532Z","sequence":29599,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:05.536Z","sequence":29600,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4c743006-f1af-46ee-acf7-be88b8dd244a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:05.775Z","sequence":29601,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:05.776Z","sequence":29602,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BDE] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:05.784Z","sequence":29603,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:05.784Z","sequence":29604,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:05.797Z","sequence":29605,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3462b0e3-3cab-41dd-aab1-23dbd6bcbf93, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:13.381Z","sequence":29606,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:13.381Z","sequence":29607,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006D0] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:13.387Z","sequence":29608,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:13.387Z","sequence":29609,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:13.394Z","sequence":29610,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ec02d125-e209-4139-9e98-6369d9ec4ba6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:14.813Z","sequence":29611,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:14.813Z","sequence":29612,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100016D] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:14.819Z","sequence":29613,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:14.819Z","sequence":29614,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:14.822Z","sequence":29615,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-bf00775d-b9ca-403f-9332-fcb001c9a478, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:14.968Z","sequence":29616,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:14.969Z","sequence":29617,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100016D] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:14.984Z","sequence":29618,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:14.984Z","sequence":29619,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:14.992Z","sequence":29620,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f66b4606-0a4f-4978-80eb-5992e385066a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:17.004Z","sequence":29621,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:17.004Z","sequence":29622,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001EB] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:17.01Z","sequence":29623,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:17.01Z","sequence":29624,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:17.013Z","sequence":29625,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3b1a2d00-c6b7-4ddd-a57b-c26202741b25, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:17.02Z","sequence":29626,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:17.02Z","sequence":29627,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001EB] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:17.03Z","sequence":29628,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:17.03Z","sequence":29629,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:17.032Z","sequence":29630,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b020b27a-615c-4f90-a7d0-59df35782a63, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:21.064Z","sequence":29631,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:21.064Z","sequence":29632,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B55] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:21.075Z","sequence":29633,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:21.076Z","sequence":29634,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:21.082Z","sequence":29635,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f37f30a8-22ce-485e-8cfc-924078e8a70e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:24.698Z","sequence":29636,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:24.698Z","sequence":29637,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10013F9] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:24.704Z","sequence":29638,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:24.704Z","sequence":29639,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:24.711Z","sequence":29640,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-18f77aff-9988-4ea8-8c42-549113fdf801, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:27.336Z","sequence":29641,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191248]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"990407f51dbacbac","parentId":"6f048dc77004aba1","traceId":"0000000000000000333d235068e159d9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:27.353Z","sequence":29642,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191248]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"990407f51dbacbac","parentId":"6f048dc77004aba1","traceId":"0000000000000000333d235068e159d9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:27.85Z","sequence":29643,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 5A61D8E0AB75]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"32594d684a37d13d","parentId":"0e52ccb2383322a0","traceId":"000000000000000054bbc23768d8e562","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:27.857Z","sequence":29644,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF43C2076237ABE]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"902ff229844f8c6f","parentId":"e6283f7b269f882a","traceId":"00000000000000006c6dbdefead5ea8f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:27.901Z","sequence":29645,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 5A61D8E0AB75, resource-version: 28d37f94-3ceb-4d5d-9358-52a334e10b3e]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"32594d684a37d13d","parentId":"0e52ccb2383322a0","traceId":"000000000000000054bbc23768d8e562","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:27.902Z","sequence":29646,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF43C2076237ABE, resource-version: cc804680-71b8-451b-aba4-ada6938fc65a]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"902ff229844f8c6f","parentId":"e6283f7b269f882a","traceId":"00000000000000006c6dbdefead5ea8f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:27.907Z","sequence":29647,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 5A61D8E0AB75, resource-version: c2bafef1-fd2d-4bdc-85b2-87c388bc62df]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"32594d684a37d13d","parentId":"0e52ccb2383322a0","traceId":"000000000000000054bbc23768d8e562","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:27.91Z","sequence":29648,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 5A61D8E0AB75]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1a3671b5565f3781","parentId":"e9b02e8c45e05aab","traceId":"000000000000000054bbc23768d8e562","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:27.952Z","sequence":29649,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF43C2076237ABE, resource-version: 490b5347-e648-448b-91d6-630df2a6787c]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"902ff229844f8c6f","parentId":"e6283f7b269f882a","traceId":"00000000000000006c6dbdefead5ea8f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:28.094Z","sequence":29650,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 5A61D8E0AB75]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1a3671b5565f3781","parentId":"e9b02e8c45e05aab","traceId":"000000000000000054bbc23768d8e562","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:28.238Z","sequence":29651,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFB9ED3AB3A3A61]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"30892b019e3a6dcd","parentId":"ba27d82be964ad1a","traceId":"000000000000000017764acdf2b8edac","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:28.253Z","sequence":29652,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFB9ED3AB3A3A61, resource-version: 7644dc0d-97e0-44b9-b86e-9f4425a5550e]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"30892b019e3a6dcd","parentId":"ba27d82be964ad1a","traceId":"000000000000000017764acdf2b8edac","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:28.297Z","sequence":29653,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFB9ED3AB3A3A61, resource-version: 10a203a8-5f80-4ad5-ad5f-2e7992ad81eb]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"30892b019e3a6dcd","parentId":"ba27d82be964ad1a","traceId":"000000000000000017764acdf2b8edac","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:28.511Z","sequence":29654,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF43C2076237ABE]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"523d5922c98b77bc","parentId":"f2d5083961f60703","traceId":"00000000000000002a618026e047daef","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:28.599Z","sequence":29655,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF43C2076237ABE]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"523d5922c98b77bc","parentId":"f2d5083961f60703","traceId":"00000000000000002a618026e047daef","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:28.69Z","sequence":29656,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191252]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bbaa7144a6120a7d","parentId":"ad87af489c43f2e7","traceId":"0000000000000000242dfa02b259d3a1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:28.741Z","sequence":29657,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191252]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bbaa7144a6120a7d","parentId":"ad87af489c43f2e7","traceId":"0000000000000000242dfa02b259d3a1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:29.355Z","sequence":29658,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:29.355Z","sequence":29659,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-5A61D8E0AB75]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:29.366Z","sequence":29660,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-5e67b1f9-25a4-4fcb-99f0-cfc8c65c231a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:29.497Z","sequence":29661,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:29.497Z","sequence":29662,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 5A61D8E0AB75]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:29.505Z","sequence":29663,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4aebe305-87f8-4121-8bc6-5470a985db5d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:29.505Z","sequence":29664,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 5E705B74D592]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"714ea08419979302","parentId":"0692c86fbbacac98","traceId":"0000000000000000f84c3742eef4ecdf","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:29.509Z","sequence":29665,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:29.509Z","sequence":29666,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFB9ED3AB3A3A61] for gateway [5A61D8E0AB75]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:29.517Z","sequence":29667,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:29.518Z","sequence":29668,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:29.528Z","sequence":29669,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 5E705B74D592, resource-version: 2ed244e9-6f19-4097-874f-bc2dbfcb0179]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"714ea08419979302","parentId":"0692c86fbbacac98","traceId":"0000000000000000f84c3742eef4ecdf","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:29.559Z","sequence":29670,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 5E705B74D592, resource-version: a661dda5-5126-4ff4-a3f8-69d5923e33ce]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"714ea08419979302","parentId":"0692c86fbbacac98","traceId":"0000000000000000f84c3742eef4ecdf","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:29.562Z","sequence":29671,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 5E705B74D592]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"583e84275b1a3e6e","parentId":"9a3ed33241c2d9c5","traceId":"0000000000000000f84c3742eef4ecdf","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:29.865Z","sequence":29672,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 5E705B74D592]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"583e84275b1a3e6e","parentId":"9a3ed33241c2d9c5","traceId":"0000000000000000f84c3742eef4ecdf","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:30.026Z","sequence":29673,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f5afe522-bbbd-4a92-be31-3de0e3208ff7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:30.223Z","sequence":29674,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/conditionall:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:30.223Z","sequence":29675,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: conditionall, device-id: 0008004B512D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:30.249Z","sequence":29676,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-21db1642-1a72-4898-8ee7-80d829bf2c7f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:30.264Z","sequence":29677,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:30.265Z","sequence":29678,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: conditionall]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:30.277Z","sequence":29679,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-88d38904-c9da-40a3-b906-314853a19084, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:30.455Z","sequence":29680,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:30.456Z","sequence":29681,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: shell]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:30.465Z","sequence":29682,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-3ea319d2-b234-4ac6-9327-f130f8aa92b4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:30.469Z","sequence":29683,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/shell:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:30.469Z","sequence":29684,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: shell, type: hashed-password, auth-id: auth-gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:30.512Z","sequence":29685,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-3840ffd3-0987-41ab-9ffd-a0cb17c07595, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:30.523Z","sequence":29686,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFA5E160092A346]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c48d40b5ae88f034","parentId":"eea7ad5dc6b43d11","traceId":"000000000000000086a14757e7fbeb41","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:30.589Z","sequence":29687,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFA5E160092A346, resource-version: 8f991ee7-9051-4406-983d-e19639e9f80f]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c48d40b5ae88f034","parentId":"eea7ad5dc6b43d11","traceId":"000000000000000086a14757e7fbeb41","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:30.643Z","sequence":29688,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:30.643Z","sequence":29689,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AA1] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:30.648Z","sequence":29690,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFA5E160092A346, resource-version: 08ed12fe-5398-4349-9f47-f256cfa58dba]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c48d40b5ae88f034","parentId":"eea7ad5dc6b43d11","traceId":"000000000000000086a14757e7fbeb41","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:30.655Z","sequence":29691,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:30.655Z","sequence":29692,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:30.669Z","sequence":29693,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-840d9a10-efe5-4441-8816-f451bb33ca2e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:31.769Z","sequence":29694,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:31.769Z","sequence":29695,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-5E705B74D592]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:31.789Z","sequence":29696,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-2f086d89-b83e-42d6-ae71-de1d351051d3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:31.943Z","sequence":29697,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:31.943Z","sequence":29698,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 5E705B74D592]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:31.963Z","sequence":29699,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e51f081e-9c4d-4c3e-9e67-0ed8b7e17376, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:31.968Z","sequence":29700,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:31.968Z","sequence":29701,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFA5E160092A346] for gateway [5E705B74D592]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:32.001Z","sequence":29702,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.7.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:32.001Z","sequence":29703,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:32.297Z","sequence":29704,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1e48dac8-69ee-4782-afa7-29b66d076b24, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:34.85Z","sequence":29705,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:34.851Z","sequence":29706,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100087C] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:34.873Z","sequence":29707,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:34.873Z","sequence":29708,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:34.885Z","sequence":29709,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9afbdb36-df89-43f7-9cf9-d730570bcc68, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:36.743Z","sequence":29710,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFA5E160092A346]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"701dae6b035ea883","parentId":"8bf82f6f35687c66","traceId":"000000000000000065446ae078f9b291","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:36.776Z","sequence":29711,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFA5E160092A346]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"701dae6b035ea883","parentId":"8bf82f6f35687c66","traceId":"000000000000000065446ae078f9b291","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:36.868Z","sequence":29712,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 5E705B74D592]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f6887417f9e5ebd2","parentId":"02e4f73581a62244","traceId":"0000000000000000feb553637abf9ffa","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:36.888Z","sequence":29713,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 5E705B74D592]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f6887417f9e5ebd2","parentId":"02e4f73581a62244","traceId":"0000000000000000feb553637abf9ffa","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:37.174Z","sequence":29714,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191255]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ef24f106be5faa9e","parentId":"885a9259c2d14241","traceId":"0000000000000000f38bd6bdfd9da4e7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:37.224Z","sequence":29715,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191255, resource-version: d690fa32-f6c9-4b59-95b4-a262df155c96]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ef24f106be5faa9e","parentId":"885a9259c2d14241","traceId":"0000000000000000f38bd6bdfd9da4e7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:37.235Z","sequence":29716,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191255, resource-version: 5fd94fc0-6c5d-47b7-9aca-df7d718c78ae]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ef24f106be5faa9e","parentId":"885a9259c2d14241","traceId":"0000000000000000f38bd6bdfd9da4e7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:37.238Z","sequence":29717,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191255]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b92ef69651b45d95","parentId":"e52c40636dcf16e5","traceId":"0000000000000000f38bd6bdfd9da4e7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:37.404Z","sequence":29718,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191255]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b92ef69651b45d95","parentId":"e52c40636dcf16e5","traceId":"0000000000000000f38bd6bdfd9da4e7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:37.532Z","sequence":29719,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191256]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"51122164d9b97b80","parentId":"5323a920c4365354","traceId":"000000000000000070f0673e9a9b51c5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:37.568Z","sequence":29720,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191256, resource-version: c3f843e1-8291-4ccf-a38b-7e3bf5941dbd]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"51122164d9b97b80","parentId":"5323a920c4365354","traceId":"000000000000000070f0673e9a9b51c5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:37.575Z","sequence":29721,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191256, resource-version: 1b6b54c5-85fc-4891-b30c-a892fc570e2a]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"51122164d9b97b80","parentId":"5323a920c4365354","traceId":"000000000000000070f0673e9a9b51c5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:37.581Z","sequence":29722,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191256]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6cad28945fd3233d","parentId":"9c92ffd854c03843","traceId":"000000000000000070f0673e9a9b51c5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:37.726Z","sequence":29723,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191256]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6cad28945fd3233d","parentId":"9c92ffd854c03843","traceId":"000000000000000070f0673e9a9b51c5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:38.173Z","sequence":29724,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFAB0EC6572D07F]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"582beb93a7546f15","parentId":"eb17f3ef3b63c7dc","traceId":"00000000000000001e6030c54594a047","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:38.191Z","sequence":29725,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFAB0EC6572D07F, resource-version: 6e963f5c-8eb1-4274-9ce8-f67c3f171e5e]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"582beb93a7546f15","parentId":"eb17f3ef3b63c7dc","traceId":"00000000000000001e6030c54594a047","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:38.201Z","sequence":29726,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFAB0EC6572D07F, resource-version: 329cbfaa-9598-4794-ab55-59af30b93368]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"582beb93a7546f15","parentId":"eb17f3ef3b63c7dc","traceId":"00000000000000001e6030c54594a047","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:38.325Z","sequence":29727,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFAC43A28488DAF]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2f00eebb5864236a","parentId":"2c108475c3632f1a","traceId":"00000000000000005502c499f972bb16","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:38.349Z","sequence":29728,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFAC43A28488DAF, resource-version: 1aa3295a-159f-453b-8f1a-fcb245375b19]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2f00eebb5864236a","parentId":"2c108475c3632f1a","traceId":"00000000000000005502c499f972bb16","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:38.357Z","sequence":29729,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFAC43A28488DAF, resource-version: fa7cbe41-1271-4b60-aaad-fd334997da0f]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2f00eebb5864236a","parentId":"2c108475c3632f1a","traceId":"00000000000000005502c499f972bb16","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:38.616Z","sequence":29730,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFAB0EC6572D07F]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ac2e0020b334d994","parentId":"8e61fb5a66f0d673","traceId":"00000000000000006bfc697014aa75b7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:38.63Z","sequence":29731,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFAB0EC6572D07F]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ac2e0020b334d994","parentId":"8e61fb5a66f0d673","traceId":"00000000000000006bfc697014aa75b7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:38.806Z","sequence":29732,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191256]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8e064ad02104a5a9","parentId":"371d86e9fba45598","traceId":"0000000000000000a1eb1d5c61b41481","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:38.825Z","sequence":29733,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191256]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8e064ad02104a5a9","parentId":"371d86e9fba45598","traceId":"0000000000000000a1eb1d5c61b41481","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:39.505Z","sequence":29734,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:39.506Z","sequence":29735,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191255]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:39.545Z","sequence":29736,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-2f850145-16b1-4032-8ba7-28b625147c83, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:39.695Z","sequence":29737,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:39.696Z","sequence":29738,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFAC43A28488DAF] for gateway [gateway_integrationtest_network_191255]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:39.696Z","sequence":29739,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:39.697Z","sequence":29740,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191255]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:39.721Z","sequence":29741,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:39.721Z","sequence":29742,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:39.721Z","sequence":29743,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-fffad886-d9c8-49a6-ad9d-679acb02d91b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:39.975Z","sequence":29744,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-01632b9d-8fe7-4c0a-8957-215f1c7bf4c3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:39.976Z","sequence":29745,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:39.976Z","sequence":29746,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:39.981Z","sequence":29747,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ac0827d2-b1da-461b-82ec-2c2148a94615, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:42.102Z","sequence":29748,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFB9ED3AB3A3A61]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8b323eb09bbc4729","parentId":"2e14bfb74a4a8726","traceId":"0000000000000000dbd2b03a19e102f5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:42.13Z","sequence":29749,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFB9ED3AB3A3A61]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8b323eb09bbc4729","parentId":"2e14bfb74a4a8726","traceId":"0000000000000000dbd2b03a19e102f5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:42.661Z","sequence":29750,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 5A61D8E0AB75]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a02f4062ac5e780e","parentId":"4e030da2d7ebf73e","traceId":"000000000000000038c370aa451a852c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:42.681Z","sequence":29751,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 5A61D8E0AB75]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a02f4062ac5e780e","parentId":"4e030da2d7ebf73e","traceId":"000000000000000038c370aa451a852c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:43.825Z","sequence":29752,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 1142F5F47448]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"886d375a028b59a8","parentId":"ee5bc48f3ea463f8","traceId":"00000000000000009fcf3546c0351876","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:43.873Z","sequence":29753,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 1142F5F47448, resource-version: e122e874-f3b0-4750-9b4a-2c4032e460db]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"886d375a028b59a8","parentId":"ee5bc48f3ea463f8","traceId":"00000000000000009fcf3546c0351876","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:43.884Z","sequence":29754,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 1142F5F47448, resource-version: af911fd0-f9d3-4ca9-bffa-2d483db594eb]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"886d375a028b59a8","parentId":"ee5bc48f3ea463f8","traceId":"00000000000000009fcf3546c0351876","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:43.889Z","sequence":29755,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 1142F5F47448]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d74436de197251d7","parentId":"caf7df0644c74485","traceId":"00000000000000009fcf3546c0351876","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:44.186Z","sequence":29756,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 1142F5F47448]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d74436de197251d7","parentId":"caf7df0644c74485","traceId":"00000000000000009fcf3546c0351876","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:45.348Z","sequence":29757,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF6F6A8795BA335]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1236b912fdc85992","parentId":"979bdc14751476b6","traceId":"0000000000000000e12ec5f7eed357ac","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:45.374Z","sequence":29758,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF6F6A8795BA335, resource-version: ba996dfb-aab6-47ae-8520-e7bfe8845b34]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1236b912fdc85992","parentId":"979bdc14751476b6","traceId":"0000000000000000e12ec5f7eed357ac","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:45.385Z","sequence":29759,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF6F6A8795BA335, resource-version: 5e7954ab-8add-4cf5-86e4-b177d1f9f7bb]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1236b912fdc85992","parentId":"979bdc14751476b6","traceId":"0000000000000000e12ec5f7eed357ac","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:45.976Z","sequence":29760,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF6F6A8795BA335]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"43cb2d20a5bc3843","parentId":"f13b742933a1eadc","traceId":"00000000000000008fcff30fec4c27e0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:46.017Z","sequence":29761,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF6F6A8795BA335]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"43cb2d20a5bc3843","parentId":"f13b742933a1eadc","traceId":"00000000000000008fcff30fec4c27e0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:46.178Z","sequence":29762,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 1142F5F47448]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"db62a9d21b3561d4","parentId":"546004292f477161","traceId":"0000000000000000af86b7860d2565a9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:46.197Z","sequence":29763,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 1142F5F47448]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"db62a9d21b3561d4","parentId":"546004292f477161","traceId":"0000000000000000af86b7860d2565a9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:50.153Z","sequence":29764,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 1B049ABC68DB]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"91e8e869d01343f9","parentId":"922b32d1715fb65c","traceId":"00000000000000007e49b785cadf0b94","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:50.175Z","sequence":29765,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 1B049ABC68DB, resource-version: 12d88f00-eb75-4743-885d-b8150f897ad9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"91e8e869d01343f9","parentId":"922b32d1715fb65c","traceId":"00000000000000007e49b785cadf0b94","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:50.181Z","sequence":29766,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 1B049ABC68DB, resource-version: ea385452-4fae-4580-8079-487db19fead1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"91e8e869d01343f9","parentId":"922b32d1715fb65c","traceId":"00000000000000007e49b785cadf0b94","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:50.184Z","sequence":29767,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 1B049ABC68DB]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3e39e6009ef166f8","parentId":"cc8cda11f4b41bff","traceId":"00000000000000007e49b785cadf0b94","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:50.347Z","sequence":29768,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 1B049ABC68DB]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3e39e6009ef166f8","parentId":"cc8cda11f4b41bff","traceId":"00000000000000007e49b785cadf0b94","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:50.741Z","sequence":29769,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:50.741Z","sequence":29770,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: dow]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:50.745Z","sequence":29771,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-96dddffb-9cc6-4fe2-8859-86b6e511d2fc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:50.749Z","sequence":29772,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/dow:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:50.749Z","sequence":29773,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: dow, type: hashed-password, auth-id: auth-gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:50.792Z","sequence":29774,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-b14c99c3-b14b-421e-af33-2eb1aebb094e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:50.961Z","sequence":29775,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: D947EE17F8760D05]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5ea46b3ca0e45858","parentId":"ff4343376fa0e99a","traceId":"00000000000000000092df5052720457","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:51.066Z","sequence":29776,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:51.066Z","sequence":29777,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 70B3D57BB100127F] for gateway [gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:51.09Z","sequence":29778,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:51.09Z","sequence":29779,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:51.09Z","sequence":29780,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: D947EE17F8760D05, resource-version: 0382db63-f47b-4ea3-949b-9bb847323f48]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5ea46b3ca0e45858","parentId":"ff4343376fa0e99a","traceId":"00000000000000000092df5052720457","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:51.137Z","sequence":29781,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-aba3dfdd-560c-4431-99f3-75406d10ad81, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:51.138Z","sequence":29782,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: D947EE17F8760D05, resource-version: 60288747-4c2e-463a-8cff-63072b1f3ddf]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5ea46b3ca0e45858","parentId":"ff4343376fa0e99a","traceId":"00000000000000000092df5052720457","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:51.659Z","sequence":29783,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:51.659Z","sequence":29784,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-00GWALP120IT]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:51.808Z","sequence":29785,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-0cc83727-9baa-43e3-a8e1-5bd22d628894, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:51.849Z","sequence":29786,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFAC43A28488DAF]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"740e97764998ea87","parentId":"e33bdcea198666ab","traceId":"0000000000000000201ae9c56b92ecdd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:51.927Z","sequence":29787,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:51.927Z","sequence":29788,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 00GWALP120IT]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:51.937Z","sequence":29789,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-370d8f89-6802-4bff-b59b-f0cb5c54214e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:51.945Z","sequence":29790,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFAC43A28488DAF]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"740e97764998ea87","parentId":"e33bdcea198666ab","traceId":"0000000000000000201ae9c56b92ecdd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:52.396Z","sequence":29791,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191255]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c6171e0f560452ff","parentId":"7229845683919070","traceId":"000000000000000024ae087b4212eda2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:52.473Z","sequence":29792,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191255]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c6171e0f560452ff","parentId":"7229845683919070","traceId":"000000000000000024ae087b4212eda2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:56.113Z","sequence":29793,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:56.113Z","sequence":29794,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-1B049ABC68DB]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:56.114Z","sequence":29795,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:56.114Z","sequence":29796,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-1B049ABC68DB]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:56.126Z","sequence":29797,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-31c32f41-fb95-45af-a27b-ce33a9a29f14, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:56.129Z","sequence":29798,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-997b9606-c8f3-4937-ac55-d713c10a0648, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:56.315Z","sequence":29799,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:56.316Z","sequence":29800,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 1B049ABC68DB]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:56.325Z","sequence":29801,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e54a5668-e326-4bd6-8390-8ec8ec795042, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:56.332Z","sequence":29802,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:56.332Z","sequence":29803,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: D947EE17F8760D05] for gateway [1B049ABC68DB]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:56.341Z","sequence":29804,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:connect:0.1.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:56.341Z","sequence":29805,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:56.377Z","sequence":29806,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:56.377Z","sequence":29807,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: D947EE17F8760D05] for gateway [1B049ABC68DB]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:56.398Z","sequence":29808,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:connect:0.1.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:56.4Z","sequence":29809,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:56.903Z","sequence":29810,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-fede8e15-3c33-428a-8eb9-5512e36f492f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:55:57.191Z","sequence":29811,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5b7dbbc1-96da-4ce8-93d2-cfbcae7dd86b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:00.466Z","sequence":29812,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191259]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"99fde0b44f4e8650","parentId":"0d1f6ae9fef889a0","traceId":"0000000000000000806fff239ed44102","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:00.484Z","sequence":29813,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191259, resource-version: 8b4dfcc8-727c-4539-8579-84f31e43190e]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"99fde0b44f4e8650","parentId":"0d1f6ae9fef889a0","traceId":"0000000000000000806fff239ed44102","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:00.49Z","sequence":29814,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191259, resource-version: 7ebe3afc-0bb1-47ab-b3ef-7c6ec16b651e]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"99fde0b44f4e8650","parentId":"0d1f6ae9fef889a0","traceId":"0000000000000000806fff239ed44102","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:00.495Z","sequence":29815,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191259]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b000d4ec09cb9cda","parentId":"16e8ee739e3ffeca","traceId":"0000000000000000806fff239ed44102","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:00.625Z","sequence":29816,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191259]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b000d4ec09cb9cda","parentId":"16e8ee739e3ffeca","traceId":"0000000000000000806fff239ed44102","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:01.539Z","sequence":29817,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF58987B349CC17]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0ef63a2e07e12f24","parentId":"cab0fc984b32e924","traceId":"0000000000000000a31e26eef8e42665","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:01.569Z","sequence":29818,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF58987B349CC17, resource-version: 2574e9c5-61d7-429e-9990-181dbd301a4e]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0ef63a2e07e12f24","parentId":"cab0fc984b32e924","traceId":"0000000000000000a31e26eef8e42665","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:01.576Z","sequence":29819,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF58987B349CC17, resource-version: b3977b43-d4b9-4258-a685-e60289b48b01]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0ef63a2e07e12f24","parentId":"cab0fc984b32e924","traceId":"0000000000000000a31e26eef8e42665","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:02.786Z","sequence":29820,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:02.787Z","sequence":29821,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191259]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:02.799Z","sequence":29822,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-67d31fe6-db2e-49ab-805b-6e1516c071dd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:02.937Z","sequence":29823,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:02.937Z","sequence":29824,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF58987B349CC17] for gateway [gateway_integrationtest_network_191259]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:02.939Z","sequence":29825,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:02.941Z","sequence":29826,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191259]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:02.951Z","sequence":29827,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-14d8458f-fe45-4303-a828-5b84ed470067, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:02.951Z","sequence":29828,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:02.951Z","sequence":29829,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:03.557Z","sequence":29830,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7c1e73dc-c129-4041-820f-54f74dc4aa31, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:04.289Z","sequence":29831,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:04.289Z","sequence":29832,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-00GWALP120IT]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:04.329Z","sequence":29833,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-0e9e5797-2242-46cb-8b44-6621f78e278a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:04.636Z","sequence":29834,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:04.636Z","sequence":29835,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AFC] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:04.66Z","sequence":29836,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:04.662Z","sequence":29837,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:04.673Z","sequence":29838,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-719fc4df-db82-4bb2-a507-b139cf66a4ea, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:05.081Z","sequence":29839,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:05.081Z","sequence":29840,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-1B049ABC68DB]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:05.11Z","sequence":29841,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-32e7ad02-600c-4384-b4cb-d98f1a59146a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:05.491Z","sequence":29842,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 4E847BDED8CC]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"dc39514695ce5d83","parentId":"85187e0597d14c27","traceId":"000000000000000049c9c3c52f2f9a02","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:05.528Z","sequence":29843,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 4E847BDED8CC, resource-version: d86685b6-318e-406e-888f-efdbbbf03443]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"dc39514695ce5d83","parentId":"85187e0597d14c27","traceId":"000000000000000049c9c3c52f2f9a02","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:05.534Z","sequence":29844,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 4E847BDED8CC, resource-version: e896f28b-d2c9-4f7e-af8a-8977c26e6085]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"dc39514695ce5d83","parentId":"85187e0597d14c27","traceId":"000000000000000049c9c3c52f2f9a02","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:05.538Z","sequence":29845,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 4E847BDED8CC]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9b348f68a128ac76","parentId":"378b6742481732a0","traceId":"000000000000000049c9c3c52f2f9a02","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:05.7Z","sequence":29846,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 4E847BDED8CC]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9b348f68a128ac76","parentId":"378b6742481732a0","traceId":"000000000000000049c9c3c52f2f9a02","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:06.897Z","sequence":29847,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:06.897Z","sequence":29848,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AC5] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:06.898Z","sequence":29849,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF983BBDDDBD13E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a753f73a81bc1e1f","parentId":"45196adbb6e47ccf","traceId":"0000000000000000b9b12bd1ab548bef","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:06.913Z","sequence":29850,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:06.913Z","sequence":29851,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:06.929Z","sequence":29852,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e0e90447-018e-47c6-97b2-69e41c06c1fa, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:06.94Z","sequence":29853,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF983BBDDDBD13E, resource-version: 0b3740bb-2993-4ead-8939-22459cb5dde3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a753f73a81bc1e1f","parentId":"45196adbb6e47ccf","traceId":"0000000000000000b9b12bd1ab548bef","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:06.95Z","sequence":29854,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF983BBDDDBD13E, resource-version: b252fbd5-aa8e-4e75-87de-d0e3c420a3b6]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a753f73a81bc1e1f","parentId":"45196adbb6e47ccf","traceId":"0000000000000000b9b12bd1ab548bef","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:07.381Z","sequence":29855,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:07.381Z","sequence":29856,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BB84C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:07.413Z","sequence":29857,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-291767e7-0ed8-4102-9fb2-48d8da60925a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:07.417Z","sequence":29858,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:07.417Z","sequence":29859,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: lanxess]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:07.422Z","sequence":29860,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-fa9493de-ac8a-4814-b469-f38fa32ccee1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:07.509Z","sequence":29861,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:07.509Z","sequence":29862,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: ineos]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:07.516Z","sequence":29863,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-b47d178d-96af-4cc8-8397-ef7c38177c80, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:07.521Z","sequence":29864,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:07.521Z","sequence":29865,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB1000A8E] for gateway [0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:07.529Z","sequence":29866,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:07.529Z","sequence":29867,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:07.537Z","sequence":29868,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-262b4c71-2338-4cda-b405-8687af1a5faf, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:08.057Z","sequence":29869,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:08.057Z","sequence":29870,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-4E847BDED8CC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:08.105Z","sequence":29871,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-e50b271b-ecfa-4772-907f-36ca8c7d0def, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:08.251Z","sequence":29872,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:08.252Z","sequence":29873,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 4E847BDED8CC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:08.258Z","sequence":29874,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-cf11ad06-2a73-4b1a-ba31-c77cb529de97, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:08.264Z","sequence":29875,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:08.264Z","sequence":29876,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF983BBDDDBD13E] for gateway [4E847BDED8CC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:08.275Z","sequence":29877,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:08.276Z","sequence":29878,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:08.777Z","sequence":29879,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3af39fe9-f05d-40b7-923a-94242dc9682c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:08.965Z","sequence":29880,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:08.965Z","sequence":29881,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 0008004B5135]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:09.009Z","sequence":29882,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-92f5f85f-0e90-4ba9-905b-8081aa6a6a5c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:09.425Z","sequence":29883,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:09.425Z","sequence":29884,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: flint]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:09.465Z","sequence":29885,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-2ddd721b-a253-4b18-81e6-55a651b7afd6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:09.475Z","sequence":29886,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/flint:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:09.475Z","sequence":29887,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: flint, type: hashed-password, auth-id: auth-flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:09.553Z","sequence":29888,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-4f72434e-1e9f-4188-9898-38bea22b6ccb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:09.693Z","sequence":29889,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:09.693Z","sequence":29890,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10009B9] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:09.694Z","sequence":29891,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:09.694Z","sequence":29892,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:09.717Z","sequence":29893,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c59a25f9-bf62-4a1c-9a9f-aeec16b45b14, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:09.717Z","sequence":29894,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:09.717Z","sequence":29895,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:09.727Z","sequence":29896,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-edfed312-c347-456d-a6fd-d10b8d2a0b9c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:11.484Z","sequence":29897,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:11.485Z","sequence":29898,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019DD] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:11.516Z","sequence":29899,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:11.517Z","sequence":29900,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:11.54Z","sequence":29901,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6898cde2-924c-4152-9417-c39852362cd7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:12.641Z","sequence":29902,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:12.641Z","sequence":29903,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BBD1B]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:12.677Z","sequence":29904,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ef1cdde8-5622-487b-a2a8-f3514a0e20a2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:13.445Z","sequence":29905,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF58987B349CC17]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"201eb2fa8c0eac67","parentId":"de72b2b4355298c1","traceId":"00000000000000008040de0389548170","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:13.484Z","sequence":29906,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF58987B349CC17]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"201eb2fa8c0eac67","parentId":"de72b2b4355298c1","traceId":"00000000000000008040de0389548170","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:14.051Z","sequence":29907,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191259]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"665bb9bdfbc1f517","parentId":"57d8f4d553dd829d","traceId":"0000000000000000096667a1fba7df67","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:14.071Z","sequence":29908,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191259]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"665bb9bdfbc1f517","parentId":"57d8f4d553dd829d","traceId":"0000000000000000096667a1fba7df67","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:16.273Z","sequence":29909,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: D947EE17F8760D05]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d88fcd83be1715f4","parentId":"51e18f9cb75d2ea6","traceId":"000000000000000010223f42380495ea","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:16.29Z","sequence":29910,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: D947EE17F8760D05]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d88fcd83be1715f4","parentId":"51e18f9cb75d2ea6","traceId":"000000000000000010223f42380495ea","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:16.86Z","sequence":29911,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 1B049ABC68DB]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"39daa14694ce8220","parentId":"58d44fe7182b46f4","traceId":"000000000000000027cca116ce25c539","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:16.88Z","sequence":29912,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 1B049ABC68DB]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"39daa14694ce8220","parentId":"58d44fe7182b46f4","traceId":"000000000000000027cca116ce25c539","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:18.016Z","sequence":29913,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0B6FB6CF0014]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"645a416c4039bd5a","parentId":"7c3d9919782a8f4d","traceId":"00000000000000008c769bbcc31a476b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:18.037Z","sequence":29914,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0B6FB6CF0014, resource-version: f02c6d0d-8335-46a3-be4b-26bf9cc395c6]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"645a416c4039bd5a","parentId":"7c3d9919782a8f4d","traceId":"00000000000000008c769bbcc31a476b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:18.044Z","sequence":29915,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0B6FB6CF0014, resource-version: 98d2d728-e6b3-41e2-bfa3-834e8d025945]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"645a416c4039bd5a","parentId":"7c3d9919782a8f4d","traceId":"00000000000000008c769bbcc31a476b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:18.048Z","sequence":29916,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 0B6FB6CF0014]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ce615e1ccd3917e6","parentId":"3841dcd9af8352b8","traceId":"00000000000000008c769bbcc31a476b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:18.257Z","sequence":29917,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 0B6FB6CF0014]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ce615e1ccd3917e6","parentId":"3841dcd9af8352b8","traceId":"00000000000000008c769bbcc31a476b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:18.573Z","sequence":29918,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191262]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e468f6627a07ae4f","parentId":"af4981242f1d1341","traceId":"0000000000000000a1a5122cad089269","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:18.593Z","sequence":29919,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191262, resource-version: c27c9554-4d6a-48df-8e0e-b27b05510361]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e468f6627a07ae4f","parentId":"af4981242f1d1341","traceId":"0000000000000000a1a5122cad089269","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:18.599Z","sequence":29920,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191262, resource-version: 9a8299d7-0f99-473c-b11e-1939eca5e382]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e468f6627a07ae4f","parentId":"af4981242f1d1341","traceId":"0000000000000000a1a5122cad089269","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:18.602Z","sequence":29921,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191262]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a7d18d24967ad1b9","parentId":"a72680072f932c72","traceId":"0000000000000000a1a5122cad089269","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:18.654Z","sequence":29922,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF49A73E07E366C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3eeb54a7e1aea12f","parentId":"ca57ee3d3a5758af","traceId":"000000000000000049a6679ce3fab791","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:18.671Z","sequence":29923,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF49A73E07E366C, resource-version: 36f7e081-0fa3-440d-afb2-9db10cdc8dca]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3eeb54a7e1aea12f","parentId":"ca57ee3d3a5758af","traceId":"000000000000000049a6679ce3fab791","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:18.678Z","sequence":29924,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF49A73E07E366C, resource-version: 2da38c12-20e3-47dc-a31d-7e49454fb199]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3eeb54a7e1aea12f","parentId":"ca57ee3d3a5758af","traceId":"000000000000000049a6679ce3fab791","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:18.851Z","sequence":29925,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191262]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a7d18d24967ad1b9","parentId":"a72680072f932c72","traceId":"0000000000000000a1a5122cad089269","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:19.839Z","sequence":29926,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF45D0BAC39E3B7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"17a79301d558a053","parentId":"8ef2e9b8ad5137be","traceId":"0000000000000000e73505ee8e03f168","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:19.857Z","sequence":29927,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF45D0BAC39E3B7, resource-version: dfa46318-6f22-4521-9c20-dfd5561ea406]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"17a79301d558a053","parentId":"8ef2e9b8ad5137be","traceId":"0000000000000000e73505ee8e03f168","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:19.864Z","sequence":29928,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF45D0BAC39E3B7, resource-version: 608af6d2-c9c6-4399-9f23-c20b80727351]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"17a79301d558a053","parentId":"8ef2e9b8ad5137be","traceId":"0000000000000000e73505ee8e03f168","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:19.867Z","sequence":29929,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:19.867Z","sequence":29930,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-0B6FB6CF0014]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:19.887Z","sequence":29931,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-a47d9d7a-0197-418c-a76a-96d7d99ff93d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:20.009Z","sequence":29932,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:20.009Z","sequence":29933,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0B6FB6CF0014]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:20.025Z","sequence":29934,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-77fc844d-18a3-447e-b362-6ef716201707, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:20.029Z","sequence":29935,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:20.03Z","sequence":29936,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF49A73E07E366C] for gateway [0B6FB6CF0014]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:20.038Z","sequence":29937,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:20.038Z","sequence":29938,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:20.047Z","sequence":29939,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/arkema:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:20.047Z","sequence":29940,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: arkema, device-id: 0008004AE119]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:20.057Z","sequence":29941,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3bf5098e-6161-4835-8d3b-227147124b63, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:20.061Z","sequence":29942,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:20.061Z","sequence":29943,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: arkema]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:20.066Z","sequence":29944,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-17edaaae-9a46-468f-8087-cdf2b0c290fb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:20.424Z","sequence":29945,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-26b8bbee-2993-4e1b-ae2c-2c2a2cd2c90d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:20.929Z","sequence":29946,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:20.929Z","sequence":29947,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191262]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:20.968Z","sequence":29948,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-01887600-656f-4a8a-94ff-72b74e3f9c74, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:21.098Z","sequence":29949,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:21.098Z","sequence":29950,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF45D0BAC39E3B7] for gateway [gateway_integrationtest_network_191262]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:21.099Z","sequence":29951,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:21.099Z","sequence":29952,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191262]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:21.111Z","sequence":29953,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.3.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:21.111Z","sequence":29954,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:21.112Z","sequence":29955,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a0b78664-b0a2-4a43-92eb-a0bc20200729, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:21.66Z","sequence":29956,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-62d7539e-6263-44f6-ade7-62477f67d56b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:22.497Z","sequence":29957,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF983BBDDDBD13E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f3e814360653918a","parentId":"951e599e653185ab","traceId":"00000000000000002aa6a5ee7330ef60","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:22.547Z","sequence":29958,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF983BBDDDBD13E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f3e814360653918a","parentId":"951e599e653185ab","traceId":"00000000000000002aa6a5ee7330ef60","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:22.855Z","sequence":29959,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:22.856Z","sequence":29960,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:22.86Z","sequence":29961,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-a56457f3-d1a8-4421-a3cd-7ae33d466db3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:23.181Z","sequence":29962,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 4E847BDED8CC]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b5767e961b115eae","parentId":"02ef9042e3808928","traceId":"0000000000000000fff192ab6109467d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:23.205Z","sequence":29963,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 4E847BDED8CC]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b5767e961b115eae","parentId":"02ef9042e3808928","traceId":"0000000000000000fff192ab6109467d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:25.236Z","sequence":29964,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF49A73E07E366C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9eab040e19ab18c5","parentId":"ac37bd7bbfb5e8cc","traceId":"00000000000000003c372b7794b5db11","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:25.252Z","sequence":29965,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF49A73E07E366C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9eab040e19ab18c5","parentId":"ac37bd7bbfb5e8cc","traceId":"00000000000000003c372b7794b5db11","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:26.78Z","sequence":29966,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF45D0BAC39E3B7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9473261e96ad9672","parentId":"12a02c33c4f9923e","traceId":"0000000000000000c07e2554514a8069","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:26.78Z","sequence":29967,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0B6FB6CF0014]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"efa5c0b80ced0cf8","parentId":"d20d519032d21c4e","traceId":"0000000000000000b9201055dcec9743","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:26.81Z","sequence":29968,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF45D0BAC39E3B7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9473261e96ad9672","parentId":"12a02c33c4f9923e","traceId":"0000000000000000c07e2554514a8069","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:26.81Z","sequence":29969,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0B6FB6CF0014]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"efa5c0b80ced0cf8","parentId":"d20d519032d21c4e","traceId":"0000000000000000b9201055dcec9743","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:27.305Z","sequence":29970,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: E8F01A6381D3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"905e9286929d0b5f","parentId":"7dc8c47cbb894da0","traceId":"0000000000000000573b943bb208852f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:27.333Z","sequence":29971,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: E8F01A6381D3, resource-version: f2787681-3341-4c91-8e6f-4cc6a9642695]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"905e9286929d0b5f","parentId":"7dc8c47cbb894da0","traceId":"0000000000000000573b943bb208852f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:27.34Z","sequence":29972,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: E8F01A6381D3, resource-version: 6f6f0ea4-58a9-4267-bcde-c58ec94618b1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"905e9286929d0b5f","parentId":"7dc8c47cbb894da0","traceId":"0000000000000000573b943bb208852f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:27.343Z","sequence":29973,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: E8F01A6381D3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8f490c0747a78820","parentId":"8f7bb1fad7e6494d","traceId":"0000000000000000573b943bb208852f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:27.478Z","sequence":29974,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191262]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"90d551494f2e1bd1","parentId":"6decc199c242e76e","traceId":"00000000000000009ab302a2490cb3c2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:27.503Z","sequence":29975,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191262]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"90d551494f2e1bd1","parentId":"6decc199c242e76e","traceId":"00000000000000009ab302a2490cb3c2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:27.724Z","sequence":29976,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: E8F01A6381D3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8f490c0747a78820","parentId":"8f7bb1fad7e6494d","traceId":"0000000000000000573b943bb208852f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:28.358Z","sequence":29977,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF17A3A560CB353]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8a08ed6025ec86a9","parentId":"5bacc6e6ee6f2b0f","traceId":"0000000000000000fd3495225e233a8a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:28.376Z","sequence":29978,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF17A3A560CB353, resource-version: 5bec7265-24ac-41a6-9b5f-8af778680adf]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8a08ed6025ec86a9","parentId":"5bacc6e6ee6f2b0f","traceId":"0000000000000000fd3495225e233a8a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:28.383Z","sequence":29979,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF17A3A560CB353, resource-version: 02222e27-4c6c-481b-a052-ebe1b26cbcd5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8a08ed6025ec86a9","parentId":"5bacc6e6ee6f2b0f","traceId":"0000000000000000fd3495225e233a8a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:28.477Z","sequence":29980,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191264]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b649df782fa73fc6","parentId":"cbbd19558a4101ef","traceId":"0000000000000000026d962a0e420366","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:28.501Z","sequence":29981,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191264, resource-version: 8fa02491-5eb5-4968-95df-4361158f89cd]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b649df782fa73fc6","parentId":"cbbd19558a4101ef","traceId":"0000000000000000026d962a0e420366","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:28.507Z","sequence":29982,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191264, resource-version: ead257ae-a44e-4772-a3a9-fe4b76741518]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b649df782fa73fc6","parentId":"cbbd19558a4101ef","traceId":"0000000000000000026d962a0e420366","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:28.511Z","sequence":29983,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191264]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"232d7e33ec7dbed9","parentId":"310d847eead0accc","traceId":"0000000000000000026d962a0e420366","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:28.735Z","sequence":29984,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191264]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"232d7e33ec7dbed9","parentId":"310d847eead0accc","traceId":"0000000000000000026d962a0e420366","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:28.861Z","sequence":29985,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: DBF3E6FDD96C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"17be98bae6dc44f6","parentId":"30634f374d650f48","traceId":"00000000000000004cb2eea39b96593f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:28.878Z","sequence":29986,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: DBF3E6FDD96C, resource-version: 18e96a07-0e8f-4761-b3d7-ccb0c2971d45]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"17be98bae6dc44f6","parentId":"30634f374d650f48","traceId":"00000000000000004cb2eea39b96593f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:28.884Z","sequence":29987,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: DBF3E6FDD96C, resource-version: 088bbb53-22f4-45b8-8fc7-a2943ab29b23]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"17be98bae6dc44f6","parentId":"30634f374d650f48","traceId":"00000000000000004cb2eea39b96593f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:28.887Z","sequence":29988,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: DBF3E6FDD96C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a1f2df3b6c160be2","parentId":"d4402fe41b5f2130","traceId":"00000000000000004cb2eea39b96593f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:29.009Z","sequence":29989,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: DBF3E6FDD96C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a1f2df3b6c160be2","parentId":"d4402fe41b5f2130","traceId":"00000000000000004cb2eea39b96593f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:29.311Z","sequence":29990,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFFA4B6862C9254]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"308de54e57f230de","parentId":"953b178f32d5faaa","traceId":"00000000000000004466e1d39c5508fd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:29.326Z","sequence":29991,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFFA4B6862C9254, resource-version: 1bb64576-b4cb-4eb9-a145-9a6a7bf19bf0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"308de54e57f230de","parentId":"953b178f32d5faaa","traceId":"00000000000000004466e1d39c5508fd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:29.336Z","sequence":29992,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFFA4B6862C9254, resource-version: 0989a1e9-8381-4c71-8e23-7f14da08b74b]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"308de54e57f230de","parentId":"953b178f32d5faaa","traceId":"00000000000000004466e1d39c5508fd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:29.441Z","sequence":29993,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:29.441Z","sequence":29994,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-E8F01A6381D3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:29.469Z","sequence":29995,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-bb5917b6-8898-4e69-b72b-d19e006aa760, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:29.593Z","sequence":29996,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:29.594Z","sequence":29997,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: E8F01A6381D3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:29.6Z","sequence":29998,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c8df4999-a326-4e88-9f96-607c90f01a3e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:29.603Z","sequence":29999,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:29.604Z","sequence":30000,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF17A3A560CB353] for gateway [E8F01A6381D3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:29.613Z","sequence":30001,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:29.613Z","sequence":30002,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:29.993Z","sequence":30003,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c05d902c-9750-45cc-aa85-26ebecdff68e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:30.175Z","sequence":30004,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF331D877D83AF6]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"25117708b3cc1077","parentId":"11a415021c191561","traceId":"0000000000000000422e0ba5010df776","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:30.196Z","sequence":30005,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF331D877D83AF6, resource-version: 840bd011-3124-40d9-92f3-0f8d21c90cfb]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"25117708b3cc1077","parentId":"11a415021c191561","traceId":"0000000000000000422e0ba5010df776","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:30.202Z","sequence":30006,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF331D877D83AF6, resource-version: 35052a9d-5acd-4658-89c4-e1dd02b5db1f]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"25117708b3cc1077","parentId":"11a415021c191561","traceId":"0000000000000000422e0ba5010df776","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:30.354Z","sequence":30007,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:30.355Z","sequence":30008,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-DBF3E6FDD96C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:30.373Z","sequence":30009,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-c71c5256-8f3d-4a14-a0e0-0f8f678fabcc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:30.417Z","sequence":30010,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:30.417Z","sequence":30011,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:30.421Z","sequence":30012,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-ca097fb8-b7c9-4189-a42b-55643df10ed4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:30.424Z","sequence":30013,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:30.425Z","sequence":30014,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191264]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:30.457Z","sequence":30015,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-84bc8e68-6408-4d69-a4a8-dcf81af7979b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:30.553Z","sequence":30016,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:30.553Z","sequence":30017,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: DBF3E6FDD96C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:30.56Z","sequence":30018,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4ce6c9cf-cda6-4c59-b1ae-300e07b55e9b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:30.567Z","sequence":30019,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [command-router@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:30.568Z","sequence":30020,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:30.571Z","sequence":30021,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-ad16ba61-3d09-4408-ad32-9773f6bf4b75, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:30.649Z","sequence":30022,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:30.65Z","sequence":30023,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFFA4B6862C9254] for gateway [gateway_integrationtest_network_191264]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:30.651Z","sequence":30024,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:30.653Z","sequence":30025,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191264]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:30.657Z","sequence":30026,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:30.659Z","sequence":30027,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:30.66Z","sequence":30028,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1611f06d-0571-49ac-a1eb-ad67c8a20c00, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:31.067Z","sequence":30029,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ebc9115e-3f61-42fa-a969-c76bd46a0dff, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:36.137Z","sequence":30030,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:36.137Z","sequence":30031,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 70B3D57BB1001283] for gateway [gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:36.143Z","sequence":30032,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:36.143Z","sequence":30033,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:36.147Z","sequence":30034,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-af0b9872-9c7d-48a1-a852-e27655a1a100, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:36.378Z","sequence":30035,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [command-router@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:36.378Z","sequence":30036,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF331D877D83AF6]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:36.715Z","sequence":30037,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-70488332-aaba-4fa3-a43c-0b34c01697dc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:40.923Z","sequence":30038,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/repsol:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:40.923Z","sequence":30039,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: repsol, device-id: 70B3D57BB1000207] for gateway [0008004A37FF]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:40.93Z","sequence":30040,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:0.4.1\"\n },\n \"viaGroups\" : [ \"gateways_repsol\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:40.93Z","sequence":30041,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_repsol\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:40.933Z","sequence":30042,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3b164fad-9663-4835-8396-6a84e90f6e43, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:42.144Z","sequence":30043,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:42.144Z","sequence":30044,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 70B3D57BB100127B] for gateway [gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:42.151Z","sequence":30045,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:42.151Z","sequence":30046,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:42.156Z","sequence":30047,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8e2818ac-0894-4dbf-8788-2d15b38faad8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:42.646Z","sequence":30048,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF17A3A560CB353]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"519d2ed99c08d3d7","parentId":"416211131c48fd6e","traceId":"00000000000000004dbc1c177e824a9a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:42.666Z","sequence":30049,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF17A3A560CB353]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"519d2ed99c08d3d7","parentId":"416211131c48fd6e","traceId":"00000000000000004dbc1c177e824a9a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:43.001Z","sequence":30050,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: E8F01A6381D3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b365e67ac6d5bdad","parentId":"aa08a155b0a8054c","traceId":"0000000000000000fa97bf0b6b335619","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:43.025Z","sequence":30051,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: E8F01A6381D3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b365e67ac6d5bdad","parentId":"aa08a155b0a8054c","traceId":"0000000000000000fa97bf0b6b335619","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:44.806Z","sequence":30052,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFFA4B6862C9254]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a8b6ffb6a6311272","parentId":"0e45a75f096ed73f","traceId":"000000000000000008494e0bb640a9a3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:44.846Z","sequence":30053,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFFA4B6862C9254]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a8b6ffb6a6311272","parentId":"0e45a75f096ed73f","traceId":"000000000000000008494e0bb640a9a3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:45.321Z","sequence":30054,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191264]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1a0b5c90719e98b4","parentId":"2c278b477e3455c8","traceId":"0000000000000000867293bd53268be4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:45.337Z","sequence":30055,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191264]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1a0b5c90719e98b4","parentId":"2c278b477e3455c8","traceId":"0000000000000000867293bd53268be4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:46.376Z","sequence":30056,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191267]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0a5a978b7fc7356c","parentId":"8d37962c02b1f277","traceId":"0000000000000000220453cd37c3d8e7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:46.392Z","sequence":30057,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191267, resource-version: 02fda250-cdc8-4bb2-ac9a-79bea0077508]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0a5a978b7fc7356c","parentId":"8d37962c02b1f277","traceId":"0000000000000000220453cd37c3d8e7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:46.404Z","sequence":30058,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191267, resource-version: 4912efe3-d50e-4c96-ad5d-dc09bbf339eb]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0a5a978b7fc7356c","parentId":"8d37962c02b1f277","traceId":"0000000000000000220453cd37c3d8e7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:46.408Z","sequence":30059,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191267]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"57af449471112bee","parentId":"d1598a9e162d5003","traceId":"0000000000000000220453cd37c3d8e7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:46.545Z","sequence":30060,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:46.545Z","sequence":30061,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF331D877D83AF6] for gateway [DBF3E6FDD96C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:46.557Z","sequence":30062,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:46.557Z","sequence":30063,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:46.688Z","sequence":30064,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191267]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"57af449471112bee","parentId":"d1598a9e162d5003","traceId":"0000000000000000220453cd37c3d8e7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:46.728Z","sequence":30065,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 27DC186645F8]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a20528a4fbc454d1","parentId":"60518d6b2d7341cd","traceId":"00000000000000002ff1921c31c92357","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:46.78Z","sequence":30066,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 27DC186645F8, resource-version: 32914363-5ca8-4306-8c6b-c8eb578eaf24]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a20528a4fbc454d1","parentId":"60518d6b2d7341cd","traceId":"00000000000000002ff1921c31c92357","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:46.796Z","sequence":30067,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 27DC186645F8, resource-version: a9240fcb-0b49-4eec-828e-9feca2910c61]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a20528a4fbc454d1","parentId":"60518d6b2d7341cd","traceId":"00000000000000002ff1921c31c92357","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:46.8Z","sequence":30068,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 27DC186645F8]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5b7976dbccf4fe84","parentId":"72b90e7ea19ecf1e","traceId":"00000000000000002ff1921c31c92357","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:47.186Z","sequence":30069,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4ddb4087-077b-405c-aea7-0ba050b22fec, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:47.187Z","sequence":30070,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:47.188Z","sequence":30071,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10018E9] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:47.188Z","sequence":30072,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:47.189Z","sequence":30073,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:47.206Z","sequence":30074,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:47.206Z","sequence":30075,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:47.206Z","sequence":30076,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-59903ec8-a27f-489a-8226-cc77433411e5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:47.217Z","sequence":30077,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 27DC186645F8]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5b7976dbccf4fe84","parentId":"72b90e7ea19ecf1e","traceId":"00000000000000002ff1921c31c92357","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:47.223Z","sequence":30078,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-23935319-5636-4b4a-8f74-8fb430cc4de8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:47.699Z","sequence":30079,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:47.699Z","sequence":30080,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000500] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:47.713Z","sequence":30081,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:47.713Z","sequence":30082,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:47.725Z","sequence":30083,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-58b0ed17-9466-4456-b7bc-61d3c5758de1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:47.844Z","sequence":30084,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF41EBD7ADC05D8]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ec9df50990d9ad04","parentId":"44356b2e9e5c17fe","traceId":"00000000000000006e2c31831b0132dd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:47.88Z","sequence":30085,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF41EBD7ADC05D8, resource-version: 54f11cca-e9fd-4979-9e2e-ea935ce45a48]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ec9df50990d9ad04","parentId":"44356b2e9e5c17fe","traceId":"00000000000000006e2c31831b0132dd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:47.889Z","sequence":30086,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF93B432E9843DD]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"50a53f8851ac4379","parentId":"9df46b07ae3af0a2","traceId":"00000000000000008af62ad4b05e9257","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:47.889Z","sequence":30087,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF41EBD7ADC05D8, resource-version: 53a2fbcd-79ab-446e-a19a-4581821eab3b]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ec9df50990d9ad04","parentId":"44356b2e9e5c17fe","traceId":"00000000000000006e2c31831b0132dd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:47.919Z","sequence":30088,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF93B432E9843DD, resource-version: 2bfef75c-4183-42eb-bb8f-54fa956f83df]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"50a53f8851ac4379","parentId":"9df46b07ae3af0a2","traceId":"00000000000000008af62ad4b05e9257","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:47.925Z","sequence":30089,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF93B432E9843DD, resource-version: 5f6aee8c-185d-4095-b228-4c64bd9fff57]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"50a53f8851ac4379","parentId":"9df46b07ae3af0a2","traceId":"00000000000000008af62ad4b05e9257","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:48.02Z","sequence":30090,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:48.021Z","sequence":30091,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-27DC186645F8]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:48.055Z","sequence":30092,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-f42d1eb8-3dfd-43eb-a3f3-7b597c60523d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:48.185Z","sequence":30093,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:48.186Z","sequence":30094,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 27DC186645F8]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:48.189Z","sequence":30095,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:48.189Z","sequence":30096,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10018D9] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:48.21Z","sequence":30097,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4acdf325-c305-4aaa-99d6-b55403f92840, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:48.211Z","sequence":30098,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:48.211Z","sequence":30099,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:48.227Z","sequence":30100,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4b3685cf-d192-446a-887a-3822ef87de49, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:48.321Z","sequence":30101,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:48.321Z","sequence":30102,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AC0] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:48.333Z","sequence":30103,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:48.333Z","sequence":30104,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:48.34Z","sequence":30105,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-eb7803f0-a0e5-4aa1-b004-fcfdd779bac0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:49.057Z","sequence":30106,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:49.057Z","sequence":30107,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191267]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:49.068Z","sequence":30108,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-8156d9c6-a7a1-49a9-9381-d86a8a28d67c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:49.284Z","sequence":30109,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:49.284Z","sequence":30110,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF93B432E9843DD] for gateway [gateway_integrationtest_network_191267]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:49.285Z","sequence":30111,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:49.286Z","sequence":30112,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191267]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:49.289Z","sequence":30113,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:49.29Z","sequence":30114,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:49.291Z","sequence":30115,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-94a2e71a-ea11-47ec-a06a-f0ade46f6e2d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:49.501Z","sequence":30116,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF331D877D83AF6]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2570efe7a019c9ff","parentId":"aa6cf0af0d032bc3","traceId":"0000000000000000b9d2925f9f47512d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:49.525Z","sequence":30117,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF331D877D83AF6]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2570efe7a019c9ff","parentId":"aa6cf0af0d032bc3","traceId":"0000000000000000b9d2925f9f47512d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:49.886Z","sequence":30118,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-59b382ed-a281-4615-a614-012b4521ece4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:49.889Z","sequence":30119,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:49.889Z","sequence":30120,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF93B432E9843DD] for gateway [gateway_integrationtest_network_191267]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:49.889Z","sequence":30121,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:49.889Z","sequence":30122,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF93B432E9843DD] for gateway [gateway_integrationtest_network_191267]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:49.889Z","sequence":30123,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:49.889Z","sequence":30124,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF93B432E9843DD] for gateway [gateway_integrationtest_network_191267]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:49.906Z","sequence":30125,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:49.906Z","sequence":30126,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:49.906Z","sequence":30127,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:49.906Z","sequence":30128,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:49.907Z","sequence":30129,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:49.907Z","sequence":30130,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:50.528Z","sequence":30131,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5bff20f5-797e-42a3-9c94-025f593f589c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:51.032Z","sequence":30132,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-81ec5ecd-31a1-4038-92f4-0bb2bc0a1355, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:51.164Z","sequence":30133,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: DBF3E6FDD96C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"74c845f99491fd29","parentId":"5d41e4734c8811fb","traceId":"0000000000000000aea2710255339c5c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:51.244Z","sequence":30134,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: DBF3E6FDD96C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"74c845f99491fd29","parentId":"5d41e4734c8811fb","traceId":"0000000000000000aea2710255339c5c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:51.571Z","sequence":30135,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9ca8a595-d853-48a9-a3ab-5a0d9246390a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:51.577Z","sequence":30136,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:51.577Z","sequence":30137,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB100080A] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:51.578Z","sequence":30138,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:51.578Z","sequence":30139,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oci]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:51.588Z","sequence":30140,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-5993b976-1601-4f88-a587-f6a5a53a874f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:51.593Z","sequence":30141,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:51.593Z","sequence":30142,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001C1] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:51.593Z","sequence":30143,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:51.593Z","sequence":30144,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001C1] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:51.601Z","sequence":30145,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:51.601Z","sequence":30146,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:51.609Z","sequence":30147,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6466da92-a3f4-449e-a36f-585315fd0eb3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:51.617Z","sequence":30148,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:51.617Z","sequence":30149,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:51.619Z","sequence":30150,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:51.619Z","sequence":30151,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:51.628Z","sequence":30152,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c77cb8ec-13eb-40bf-ab49-4f10224e2dcf, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:51.63Z","sequence":30153,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8feb56f0-4e7b-4344-ad51-7ea2411d880d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:54.685Z","sequence":30154,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [command-router@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:54.685Z","sequence":30155,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF41EBD7ADC05D8]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:55.401Z","sequence":30156,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7bd1066d-38e1-4a6f-8202-7c33e77422ee, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:55.402Z","sequence":30157,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:55.402Z","sequence":30158,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100056E] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:55.413Z","sequence":30159,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:55.413Z","sequence":30160,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:56:55.437Z","sequence":30161,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d16a0e0e-8cc2-47a0-87bf-e318a6d3e488, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:01.093Z","sequence":30162,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:01.093Z","sequence":30163,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BCE] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:01.111Z","sequence":30164,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:01.111Z","sequence":30165,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:01.125Z","sequence":30166,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f42bcf5d-f3de-4acc-9397-ce2bec64fce4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:01.592Z","sequence":30167,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:01.592Z","sequence":30168,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10018DB] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:01.599Z","sequence":30169,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:01.599Z","sequence":30170,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:01.607Z","sequence":30171,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-48c5f4f0-2286-4b67-8316-f93763ffb8f2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:02.418Z","sequence":30172,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:02.419Z","sequence":30173,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:02.428Z","sequence":30174,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5726da96-18ea-4a22-b114-98a54c98c725, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:03.951Z","sequence":30175,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 8009EA97DF00]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3524da59ae58a703","parentId":"de9d995324ce614f","traceId":"0000000000000000ca74e33c9e8e9a13","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:03.976Z","sequence":30176,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 8009EA97DF00, resource-version: 22043739-3ac9-4137-8639-4372c7c04d1f]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3524da59ae58a703","parentId":"de9d995324ce614f","traceId":"0000000000000000ca74e33c9e8e9a13","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:03.986Z","sequence":30177,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 8009EA97DF00, resource-version: c3798e69-4cf4-41c0-80f6-61fd8d8c5503]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3524da59ae58a703","parentId":"de9d995324ce614f","traceId":"0000000000000000ca74e33c9e8e9a13","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:03.986Z","sequence":30178,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:03.986Z","sequence":30179,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10018E8] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:03.989Z","sequence":30180,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 8009EA97DF00]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"211fb74c062cdbf0","parentId":"14054d0a34d68f38","traceId":"0000000000000000ca74e33c9e8e9a13","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:04.008Z","sequence":30181,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:04.008Z","sequence":30182,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:04.017Z","sequence":30183,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8decbaae-b2a4-42bd-ba0c-0e11af91ce21, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:04.317Z","sequence":30184,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 8009EA97DF00]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"211fb74c062cdbf0","parentId":"14054d0a34d68f38","traceId":"0000000000000000ca74e33c9e8e9a13","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:07.295Z","sequence":30185,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:07.295Z","sequence":30186,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 70B3D57BB1001288] for gateway [gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:07.309Z","sequence":30187,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:07.309Z","sequence":30188,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:07.313Z","sequence":30189,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4b3c336a-46b2-41a3-a975-f0567c0a939d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:07.861Z","sequence":30190,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF4EBD40E1696C3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b19ba5f2872dd694","parentId":"ae76010404370553","traceId":"00000000000000003d2d39a240d372eb","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:07.913Z","sequence":30191,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF4EBD40E1696C3, resource-version: cd6b3ce0-99ec-42a8-93c5-c671d5b4b50c]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b19ba5f2872dd694","parentId":"ae76010404370553","traceId":"00000000000000003d2d39a240d372eb","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:07.921Z","sequence":30192,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF4EBD40E1696C3, resource-version: 5b3ad8c0-24b8-48ed-919f-bada79aabcc0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b19ba5f2872dd694","parentId":"ae76010404370553","traceId":"00000000000000003d2d39a240d372eb","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:09.081Z","sequence":30193,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:09.081Z","sequence":30194,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-8009EA97DF00]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:09.082Z","sequence":30195,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:09.082Z","sequence":30196,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-27DC186645F8]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:09.105Z","sequence":30197,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-9f0d3ef1-1f0f-4789-b3ea-42209e50f8a8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:09.106Z","sequence":30198,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-1daaed43-3cd2-43fd-9e2a-16316936632a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:09.418Z","sequence":30199,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:09.418Z","sequence":30200,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 8009EA97DF00]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:09.42Z","sequence":30201,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:09.422Z","sequence":30202,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF41EBD7ADC05D8] for gateway [27DC186645F8]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:09.432Z","sequence":30203,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6a0f54fd-7411-4b49-93ee-5e3ddb0f9c02, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:09.44Z","sequence":30204,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:09.44Z","sequence":30205,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF4EBD40E1696C3] for gateway [8009EA97DF00]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:09.441Z","sequence":30206,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:09.441Z","sequence":30207,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:09.469Z","sequence":30208,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:09.469Z","sequence":30209,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:10.243Z","sequence":30210,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-30607fe8-d9a7-41a8-9c7c-160370926288, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:10.594Z","sequence":30211,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-60e6a012-e49d-44ba-a6cf-909e7d19c46f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:10.597Z","sequence":30212,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:10.597Z","sequence":30213,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF4EBD40E1696C3] for gateway [8009EA97DF00]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:10.616Z","sequence":30214,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:10.624Z","sequence":30215,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:11.351Z","sequence":30216,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2f30c1da-038b-469c-a9a2-7f8a0e13ed87, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:11.357Z","sequence":30217,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:11.357Z","sequence":30218,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-8009EA97DF00]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:11.389Z","sequence":30219,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-87a219ca-18f2-4714-97f4-287403eddb12, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:11.529Z","sequence":30220,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:11.529Z","sequence":30221,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF4EBD40E1696C3] for gateway [8009EA97DF00]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:11.537Z","sequence":30222,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:11.537Z","sequence":30223,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:12.141Z","sequence":30224,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-19d725e8-7aa9-4fa6-a479-4d4d9ff86031, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:12.142Z","sequence":30225,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:12.142Z","sequence":30226,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10002D2] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:12.162Z","sequence":30227,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:12.162Z","sequence":30228,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:12.173Z","sequence":30229,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0d398fab-229d-4e3c-9dfd-cbd61e7b2acc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:19.137Z","sequence":30230,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:19.137Z","sequence":30231,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BBD1C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:19.159Z","sequence":30232,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3736e2af-c0b1-4a01-b134-60e4577da886, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:20.098Z","sequence":30233,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191269]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"104d31af9877fbd4","parentId":"079ac293537e6cee","traceId":"000000000000000066f1af098a24e3a3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:20.117Z","sequence":30234,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191269, resource-version: 4b93bd4a-9048-4a16-9db9-8f6a4599665a]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"104d31af9877fbd4","parentId":"079ac293537e6cee","traceId":"000000000000000066f1af098a24e3a3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:20.123Z","sequence":30235,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191269, resource-version: 9d507a51-26ed-438e-9d33-49e50f0bf533]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"104d31af9877fbd4","parentId":"079ac293537e6cee","traceId":"000000000000000066f1af098a24e3a3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:20.127Z","sequence":30236,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191269]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f77c41b09b69a8d5","parentId":"070dbe289820cd54","traceId":"000000000000000066f1af098a24e3a3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:20.301Z","sequence":30237,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191269]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f77c41b09b69a8d5","parentId":"070dbe289820cd54","traceId":"000000000000000066f1af098a24e3a3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:20.757Z","sequence":30238,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:20.757Z","sequence":30239,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006C7] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:20.776Z","sequence":30240,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:20.776Z","sequence":30241,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:20.793Z","sequence":30242,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c962def6-f453-4ea3-ac1a-503746c90377, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:24.465Z","sequence":30243,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF93B432E9843DD]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"feaceb964a494713","parentId":"dc5fa8598650bf55","traceId":"00000000000000007d33a82f18ff2686","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:24.485Z","sequence":30244,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF93B432E9843DD]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"feaceb964a494713","parentId":"dc5fa8598650bf55","traceId":"00000000000000007d33a82f18ff2686","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:25.229Z","sequence":30245,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191267]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8f07b3e52d2ff560","parentId":"3f41f4c0c6cc960e","traceId":"000000000000000036c74ac201cf67d1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:25.248Z","sequence":30246,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191267]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8f07b3e52d2ff560","parentId":"3f41f4c0c6cc960e","traceId":"000000000000000036c74ac201cf67d1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:26.285Z","sequence":30247,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF8C5158CF0F696]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ddf030e18301db6d","parentId":"7dfb57b863ec90fc","traceId":"000000000000000049b2bbb9c49625d1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:26.305Z","sequence":30248,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF8C5158CF0F696, resource-version: 2ac2dd7c-3dfe-4444-bb9f-1c26269f7c0e]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ddf030e18301db6d","parentId":"7dfb57b863ec90fc","traceId":"000000000000000049b2bbb9c49625d1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:26.317Z","sequence":30249,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF8C5158CF0F696, resource-version: d650c694-484a-4ca6-aa37-2d77419f811f]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ddf030e18301db6d","parentId":"7dfb57b863ec90fc","traceId":"000000000000000049b2bbb9c49625d1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:26.513Z","sequence":30250,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191270]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6e382fdbc6203587","parentId":"4879413b02a8aed6","traceId":"0000000000000000b61d40d8563e210e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:26.537Z","sequence":30251,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191270, resource-version: 58941e70-a199-4bfd-91de-7fae89c6cba9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6e382fdbc6203587","parentId":"4879413b02a8aed6","traceId":"0000000000000000b61d40d8563e210e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:26.549Z","sequence":30252,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191270, resource-version: 043e3abe-2303-4bc4-b16a-72047c4016f7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6e382fdbc6203587","parentId":"4879413b02a8aed6","traceId":"0000000000000000b61d40d8563e210e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:26.553Z","sequence":30253,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191270]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3d5c1c4c8d9cc4a3","parentId":"5bc2fb4ec2ff1f08","traceId":"0000000000000000b61d40d8563e210e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:26.924Z","sequence":30254,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191270]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3d5c1c4c8d9cc4a3","parentId":"5bc2fb4ec2ff1f08","traceId":"0000000000000000b61d40d8563e210e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:27.086Z","sequence":30255,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:27.086Z","sequence":30256,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10018D5] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:27.115Z","sequence":30257,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:27.115Z","sequence":30258,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:27.135Z","sequence":30259,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3dcdbe6b-566b-4a3c-9375-1bade70a77a6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:27.727Z","sequence":30260,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:27.727Z","sequence":30261,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191269]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:27.753Z","sequence":30262,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-6e48314e-72df-49ed-82a8-c10e3c03c6b6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:27.875Z","sequence":30263,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:27.876Z","sequence":30264,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF8C5158CF0F696] for gateway [gateway_integrationtest_network_191269]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:27.877Z","sequence":30265,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:27.877Z","sequence":30266,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191269]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:27.892Z","sequence":30267,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:27.892Z","sequence":30268,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:27.892Z","sequence":30269,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f0acea64-5d1a-41c8-ad54-91e0c6625391, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:28.571Z","sequence":30270,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFA276B6EA1E6DE]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d2ed85b0a89510d3","parentId":"261615098f81407a","traceId":"000000000000000054e1e4a068dce183","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:28.572Z","sequence":30271,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-798032b4-595c-493c-a360-b968be43c7dd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:28.616Z","sequence":30272,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFA276B6EA1E6DE, resource-version: dcd56e69-f1d9-4342-90d8-b19f77d81ce1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d2ed85b0a89510d3","parentId":"261615098f81407a","traceId":"000000000000000054e1e4a068dce183","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:28.648Z","sequence":30273,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFA276B6EA1E6DE, resource-version: 5a113e05-93cb-430f-a240-0a0ee12f3942]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d2ed85b0a89510d3","parentId":"261615098f81407a","traceId":"000000000000000054e1e4a068dce183","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:28.973Z","sequence":30274,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:28.973Z","sequence":30275,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BF0] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:29.009Z","sequence":30276,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:29.009Z","sequence":30277,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:29.029Z","sequence":30278,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8ee13474-394a-4d1c-b72d-2b1cbb4defde, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:29.953Z","sequence":30279,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:29.953Z","sequence":30280,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000155] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:29.977Z","sequence":30281,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:29.979Z","sequence":30282,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:29.988Z","sequence":30283,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2ded8d7c-4c50-418e-b62d-475f7a047ea1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:30.229Z","sequence":30284,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFA276B6EA1E6DE]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fa72b86a16a95b59","parentId":"59f2b3b1bd77ac0f","traceId":"0000000000000000bb3a05c9a4ecb42c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:30.258Z","sequence":30285,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFA276B6EA1E6DE]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fa72b86a16a95b59","parentId":"59f2b3b1bd77ac0f","traceId":"0000000000000000bb3a05c9a4ecb42c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:30.493Z","sequence":30286,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191270]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"77e0880354eae8f8","parentId":"a74f1c4a3044d781","traceId":"00000000000000003e296c2d51400181","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:30.519Z","sequence":30287,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191270]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"77e0880354eae8f8","parentId":"a74f1c4a3044d781","traceId":"00000000000000003e296c2d51400181","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:32.685Z","sequence":30288,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:32.685Z","sequence":30289,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 0008004C80F4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:32.693Z","sequence":30290,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-76c6ff7c-76e9-4c99-951b-1dc107b02779, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:33.268Z","sequence":30291,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: B3096264C1DF]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ad93c32ca65a33f3","parentId":"21e7df41eedee3e5","traceId":"00000000000000005bc686d549ee2225","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:33.294Z","sequence":30292,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: B3096264C1DF, resource-version: 9e43a45d-abca-447b-b41e-bf46536506ac]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ad93c32ca65a33f3","parentId":"21e7df41eedee3e5","traceId":"00000000000000005bc686d549ee2225","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:33.303Z","sequence":30293,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: B3096264C1DF, resource-version: ddc2e2e9-180b-4a34-be45-f1126fb6af78]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ad93c32ca65a33f3","parentId":"21e7df41eedee3e5","traceId":"00000000000000005bc686d549ee2225","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:33.306Z","sequence":30294,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: B3096264C1DF]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b7fe2e5df84e88a1","parentId":"68b8cffaf07a444e","traceId":"00000000000000005bc686d549ee2225","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:33.54Z","sequence":30295,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: B3096264C1DF]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b7fe2e5df84e88a1","parentId":"68b8cffaf07a444e","traceId":"00000000000000005bc686d549ee2225","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:34.274Z","sequence":30296,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF4DB3813BE251E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9d2c94d9055765b3","parentId":"19a9f5190c22f539","traceId":"0000000000000000a175182752957049","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:34.309Z","sequence":30297,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF4DB3813BE251E, resource-version: 3ee669c8-8f53-42dd-aedf-a163e4f5e1f5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9d2c94d9055765b3","parentId":"19a9f5190c22f539","traceId":"0000000000000000a175182752957049","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:34.315Z","sequence":30298,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF4DB3813BE251E, resource-version: dc774fe1-4a88-4f2e-908a-5fcdde90af7f]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9d2c94d9055765b3","parentId":"19a9f5190c22f539","traceId":"0000000000000000a175182752957049","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:34.461Z","sequence":30299,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:34.461Z","sequence":30300,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-B3096264C1DF]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:34.473Z","sequence":30301,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-4feae6b9-c22c-43e3-9160-4eae243ff505, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:34.605Z","sequence":30302,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:34.605Z","sequence":30303,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: B3096264C1DF]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:34.613Z","sequence":30304,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-eeea8ae3-6c62-455f-a92c-2e4cc3a22a36, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:36.761Z","sequence":30305,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191272]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"077c84a5e21f1bda","parentId":"0e67d8aae0f37646","traceId":"0000000000000000390d8856c7ad247a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:36.788Z","sequence":30306,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191272, resource-version: f356dcaa-8f7e-49be-b1f5-28dec15cebaf]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"077c84a5e21f1bda","parentId":"0e67d8aae0f37646","traceId":"0000000000000000390d8856c7ad247a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:36.797Z","sequence":30307,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191272, resource-version: ab9e35dd-42d2-4812-833f-ba336c985cd8]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"077c84a5e21f1bda","parentId":"0e67d8aae0f37646","traceId":"0000000000000000390d8856c7ad247a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:36.801Z","sequence":30308,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191272]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b27e846534bf4141","parentId":"8249fe3a90dc1e6c","traceId":"0000000000000000390d8856c7ad247a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:36.82Z","sequence":30309,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:36.82Z","sequence":30310,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 70B3D57BB1001289] for gateway [gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:36.821Z","sequence":30311,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:36.821Z","sequence":30312,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:36.833Z","sequence":30313,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:36.833Z","sequence":30314,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:36.836Z","sequence":30315,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9f93c092-03cb-4230-8f21-36e80854affb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:36.84Z","sequence":30316,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-264e5dc1-d95d-4660-8768-bad465a185d0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:37.129Z","sequence":30317,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191272]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b27e846534bf4141","parentId":"8249fe3a90dc1e6c","traceId":"0000000000000000390d8856c7ad247a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:37.905Z","sequence":30318,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:37.905Z","sequence":30319,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100015E] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:37.916Z","sequence":30320,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:37.917Z","sequence":30321,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:37.921Z","sequence":30322,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7c1e8411-8114-4769-b7ec-2b61f1933af2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:37.934Z","sequence":30323,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:37.934Z","sequence":30324,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100015E] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:37.94Z","sequence":30325,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:37.942Z","sequence":30326,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:37.945Z","sequence":30327,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-523fce7e-78a1-48d4-a80c-63dec3e75d6d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:38.368Z","sequence":30328,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF1E0F8C7F6A390]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9eeb2e09a60f28b9","parentId":"06e02aef13b8cc5b","traceId":"0000000000000000414d10404f48aeb6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:38.393Z","sequence":30329,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF1E0F8C7F6A390, resource-version: 83ec4ef2-4a7c-48a1-8ff3-c631f4ed7b38]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9eeb2e09a60f28b9","parentId":"06e02aef13b8cc5b","traceId":"0000000000000000414d10404f48aeb6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:38.401Z","sequence":30330,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF1E0F8C7F6A390, resource-version: 9a78212b-f6b0-4756-8cca-4e6c6b03a6a2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9eeb2e09a60f28b9","parentId":"06e02aef13b8cc5b","traceId":"0000000000000000414d10404f48aeb6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:39.482Z","sequence":30331,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:39.483Z","sequence":30332,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191272]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:39.494Z","sequence":30333,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-ef5f9acf-3538-4d97-aab1-4f82a008bf57, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:39.614Z","sequence":30334,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:39.614Z","sequence":30335,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF1E0F8C7F6A390] for gateway [gateway_integrationtest_network_191272]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:39.615Z","sequence":30336,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:39.615Z","sequence":30337,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191272]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:39.622Z","sequence":30338,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.8.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:39.622Z","sequence":30339,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:39.623Z","sequence":30340,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-461777e8-4041-4ba1-bdef-d339cbfef04b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:39.912Z","sequence":30341,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF8C5158CF0F696]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f4ea260d63956376","parentId":"73b11f9c503021ac","traceId":"00000000000000003ab52e55f4f8722e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:39.934Z","sequence":30342,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF8C5158CF0F696]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f4ea260d63956376","parentId":"73b11f9c503021ac","traceId":"00000000000000003ab52e55f4f8722e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:39.954Z","sequence":30343,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c7a2c838-e5c9-464c-ab51-f35e1ea37ffe, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:40.192Z","sequence":30344,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191269]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"074a07668e1e8b36","parentId":"63bccfa7ee832a56","traceId":"00000000000000003c0c103b4adcd3cc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:40.211Z","sequence":30345,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191269]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"074a07668e1e8b36","parentId":"63bccfa7ee832a56","traceId":"00000000000000003c0c103b4adcd3cc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:40.818Z","sequence":30346,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [command-router@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:40.818Z","sequence":30347,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF4DB3813BE251E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:40.819Z","sequence":30348,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191273]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"79df370c7d259e45","parentId":"a0aabeb04fe07288","traceId":"0000000000000000c2ff10f5a3af4b53","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:40.855Z","sequence":30349,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191273, resource-version: 9cf5c57d-b52d-45b7-b804-0246a8d54a21]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"79df370c7d259e45","parentId":"a0aabeb04fe07288","traceId":"0000000000000000c2ff10f5a3af4b53","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:40.867Z","sequence":30350,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191273, resource-version: 5b7329ba-d13f-4f4c-94e2-ad1c404142f4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"79df370c7d259e45","parentId":"a0aabeb04fe07288","traceId":"0000000000000000c2ff10f5a3af4b53","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:40.87Z","sequence":30351,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191273]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f10de83f66ee08c4","parentId":"e3a2a53b7793ea9b","traceId":"0000000000000000c2ff10f5a3af4b53","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:41.186Z","sequence":30352,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191273]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f10de83f66ee08c4","parentId":"e3a2a53b7793ea9b","traceId":"0000000000000000c2ff10f5a3af4b53","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:41.265Z","sequence":30353,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a6990fef-d58b-4128-986b-aa8dfa012fc2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:41.266Z","sequence":30354,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:41.267Z","sequence":30355,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019E2] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:41.274Z","sequence":30356,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:41.274Z","sequence":30357,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:41.287Z","sequence":30358,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b27e542a-f846-43cd-a488-5eef2e91dd4e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:41.909Z","sequence":30359,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFB6B1E88CAE5E2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ca9145c81bddb367","parentId":"ee6ef11c5be682aa","traceId":"0000000000000000358c1252bce10909","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:41.952Z","sequence":30360,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFB6B1E88CAE5E2, resource-version: 32fb220e-71a2-4e86-937c-f1f0d4ed1d41]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ca9145c81bddb367","parentId":"ee6ef11c5be682aa","traceId":"0000000000000000358c1252bce10909","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:41.965Z","sequence":30361,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFB6B1E88CAE5E2, resource-version: 6e9f5180-abda-488d-8330-aa087fdfb161]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ca9145c81bddb367","parentId":"ee6ef11c5be682aa","traceId":"0000000000000000358c1252bce10909","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:43.052Z","sequence":30362,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:43.053Z","sequence":30363,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191273]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:43.064Z","sequence":30364,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-dfec61e4-dce6-4c74-bca4-8bac900f67d3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:43.184Z","sequence":30365,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:43.184Z","sequence":30366,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFB6B1E88CAE5E2] for gateway [gateway_integrationtest_network_191273]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:43.185Z","sequence":30367,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:43.185Z","sequence":30368,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191273]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:43.198Z","sequence":30369,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-16af13fb-1b38-4cfe-9beb-5e435742891f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:43.198Z","sequence":30370,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:43.199Z","sequence":30371,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:43.742Z","sequence":30372,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b9a95de6-f532-4414-aa5a-76db0a475db4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:43.905Z","sequence":30373,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:43.905Z","sequence":30374,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB1000A5E] for gateway [0008004B5135]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:43.929Z","sequence":30375,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:43.929Z","sequence":30376,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:43.941Z","sequence":30377,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-92b0eb9a-848b-4196-b1ed-befaba5f0dd1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:44.794Z","sequence":30378,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF1E0F8C7F6A390]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"89b2eb11cbc36181","parentId":"9b68afa634dfce44","traceId":"0000000000000000545ea5dda0fbaf02","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:44.843Z","sequence":30379,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF1E0F8C7F6A390]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"89b2eb11cbc36181","parentId":"9b68afa634dfce44","traceId":"0000000000000000545ea5dda0fbaf02","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:45.173Z","sequence":30380,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191272]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"70289eed08845e9a","parentId":"2dc5276fdb28f49d","traceId":"000000000000000013efaa1f0f5ce3a1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:45.212Z","sequence":30381,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191272]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"70289eed08845e9a","parentId":"2dc5276fdb28f49d","traceId":"000000000000000013efaa1f0f5ce3a1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:49.076Z","sequence":30382,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oiltanking:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:49.076Z","sequence":30383,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oiltanking, device-id: 0008004BB60F]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:49.097Z","sequence":30384,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-902f0574-99e4-4dd3-9a6c-cbd1362958ef, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:49.1Z","sequence":30385,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:49.101Z","sequence":30386,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oiltanking]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:49.113Z","sequence":30387,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-cd38c7fe-c55d-4e79-ac2f-4441c9d4c25a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:50.895Z","sequence":30388,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:50.896Z","sequence":30389,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF4DB3813BE251E] for gateway [B3096264C1DF]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:50.903Z","sequence":30390,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:50.903Z","sequence":30391,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:51.44Z","sequence":30392,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a82caeff-4ed5-4d17-9fac-5f1a50b41222, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:54.261Z","sequence":30393,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: A22C6E7D316D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"11948d88da8a8f21","parentId":"cd6c124ff54216e9","traceId":"0000000000000000ac4329afdd067559","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:54.293Z","sequence":30394,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: A22C6E7D316D, resource-version: e86d560e-b86c-4560-87f1-bfebfcddc472]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"11948d88da8a8f21","parentId":"cd6c124ff54216e9","traceId":"0000000000000000ac4329afdd067559","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:54.343Z","sequence":30395,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: A22C6E7D316D, resource-version: 84f1da3a-110e-42de-909b-304b942146b5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"11948d88da8a8f21","parentId":"cd6c124ff54216e9","traceId":"0000000000000000ac4329afdd067559","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:54.349Z","sequence":30396,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: A22C6E7D316D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"46513f3bdcf96d93","parentId":"3e49d29924d2698f","traceId":"0000000000000000ac4329afdd067559","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:55.141Z","sequence":30397,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: A22C6E7D316D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"46513f3bdcf96d93","parentId":"3e49d29924d2698f","traceId":"0000000000000000ac4329afdd067559","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:55.693Z","sequence":30398,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: E4D24D3CF5B7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0420a9c67b54150c","parentId":"47a3c9c36d3fd07f","traceId":"0000000000000000d759d938ae488a97","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:55.717Z","sequence":30399,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: E4D24D3CF5B7, resource-version: c5c28fa7-41b5-4372-810e-9efcf5e738e1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0420a9c67b54150c","parentId":"47a3c9c36d3fd07f","traceId":"0000000000000000d759d938ae488a97","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:55.729Z","sequence":30400,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: E4D24D3CF5B7, resource-version: 83ae75a8-5aba-4097-88ac-48ea04c5ca02]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0420a9c67b54150c","parentId":"47a3c9c36d3fd07f","traceId":"0000000000000000d759d938ae488a97","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:55.733Z","sequence":30401,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: E4D24D3CF5B7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"825200a31d69f59e","parentId":"11bad86f65f0adc1","traceId":"0000000000000000d759d938ae488a97","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:56.101Z","sequence":30402,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: E4D24D3CF5B7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"825200a31d69f59e","parentId":"11bad86f65f0adc1","traceId":"0000000000000000d759d938ae488a97","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:56.335Z","sequence":30403,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:56.335Z","sequence":30404,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10009CB] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:56.359Z","sequence":30405,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:56.36Z","sequence":30406,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:56.382Z","sequence":30407,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e17fad77-b2ad-40b4-9dd7-e9acc2bbf7bc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:57.407Z","sequence":30408,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF4546D11417666]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9cd80e47e9f529c7","parentId":"ad8e26d2a57dbcc3","traceId":"0000000000000000392998209a37c5b6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:57.445Z","sequence":30409,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF4546D11417666, resource-version: f99b5d13-c8c5-4028-8271-0d0a1130f41b]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9cd80e47e9f529c7","parentId":"ad8e26d2a57dbcc3","traceId":"0000000000000000392998209a37c5b6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:57.456Z","sequence":30410,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF4546D11417666, resource-version: 5de2c422-b49b-41a8-a764-6a113eca52fe]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9cd80e47e9f529c7","parentId":"ad8e26d2a57dbcc3","traceId":"0000000000000000392998209a37c5b6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:57.755Z","sequence":30411,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFADBC9A3CB5AEE]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fe76f3cb1b40b5e1","parentId":"05e7e89e92be19dc","traceId":"0000000000000000ee80755cdda826bb","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:57.78Z","sequence":30412,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFADBC9A3CB5AEE, resource-version: 0465daeb-95c9-4704-839c-ed72eafb67c1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fe76f3cb1b40b5e1","parentId":"05e7e89e92be19dc","traceId":"0000000000000000ee80755cdda826bb","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:57.789Z","sequence":30413,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFADBC9A3CB5AEE, resource-version: 88cbc58d-60e7-45b0-a3aa-63ae64fe5dca]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fe76f3cb1b40b5e1","parentId":"05e7e89e92be19dc","traceId":"0000000000000000ee80755cdda826bb","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:58.243Z","sequence":30414,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFADBC9A3CB5AEE]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"dcd099db4b49488d","parentId":"aff177893f3f90d5","traceId":"0000000000000000f8ecb489a9695f02","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:58.265Z","sequence":30415,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFADBC9A3CB5AEE]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"dcd099db4b49488d","parentId":"aff177893f3f90d5","traceId":"0000000000000000f8ecb489a9695f02","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:58.549Z","sequence":30416,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:58.549Z","sequence":30417,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-A22C6E7D316D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:58.617Z","sequence":30418,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-e771b669-0529-41af-a43c-0ee05d16ce39, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:58.741Z","sequence":30419,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:58.741Z","sequence":30420,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: A22C6E7D316D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:58.761Z","sequence":30421,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-87eddadf-9b6a-438a-bab0-c72f417a5dc2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:58.761Z","sequence":30422,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: E4D24D3CF5B7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"dca92e36e484a08d","parentId":"c4aece58a939cb60","traceId":"0000000000000000b8f01c0af7e00ab0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:58.768Z","sequence":30423,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:58.77Z","sequence":30424,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF4546D11417666] for gateway [A22C6E7D316D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:58.785Z","sequence":30425,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:58.785Z","sequence":30426,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:58.805Z","sequence":30427,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: E4D24D3CF5B7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"dca92e36e484a08d","parentId":"c4aece58a939cb60","traceId":"0000000000000000b8f01c0af7e00ab0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:57:59.406Z","sequence":30428,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-064989f3-41c8-4921-b8f1-6d9d7df72a9e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:01.054Z","sequence":30429,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 552990AB17C6]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"99ceab4081b9b3e9","parentId":"f12ec938afa61297","traceId":"00000000000000009a94421cd63be8e2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:01.074Z","sequence":30430,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 552990AB17C6, resource-version: bb72a3b5-5b2b-4688-8906-647f003c831e]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"99ceab4081b9b3e9","parentId":"f12ec938afa61297","traceId":"00000000000000009a94421cd63be8e2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:01.088Z","sequence":30431,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 552990AB17C6, resource-version: 694d6d94-029d-43b0-97e0-7229aebbe0b9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"99ceab4081b9b3e9","parentId":"f12ec938afa61297","traceId":"00000000000000009a94421cd63be8e2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:01.096Z","sequence":30432,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 552990AB17C6]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"269b897d53f5b293","parentId":"167bbc5cf749f661","traceId":"00000000000000009a94421cd63be8e2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:01.26Z","sequence":30433,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 552990AB17C6]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"269b897d53f5b293","parentId":"167bbc5cf749f661","traceId":"00000000000000009a94421cd63be8e2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:02.357Z","sequence":30434,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFC1934B1052BEC]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fd2b32e8ed7d2494","parentId":"cfd01d901803cf8e","traceId":"000000000000000005c07070169d6a01","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:02.419Z","sequence":30435,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFC1934B1052BEC, resource-version: 928a51e4-6fc6-4c04-b768-43032db1b96d]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fd2b32e8ed7d2494","parentId":"cfd01d901803cf8e","traceId":"000000000000000005c07070169d6a01","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:02.427Z","sequence":30436,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFC1934B1052BEC, resource-version: 14fdf069-3e29-46e6-8637-b2d747134d79]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fd2b32e8ed7d2494","parentId":"cfd01d901803cf8e","traceId":"000000000000000005c07070169d6a01","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:03.337Z","sequence":30437,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFC1934B1052BEC]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cf6e556d9d971225","parentId":"425306026565891c","traceId":"0000000000000000e0a45800a28ef275","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:03.357Z","sequence":30438,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFC1934B1052BEC]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cf6e556d9d971225","parentId":"425306026565891c","traceId":"0000000000000000e0a45800a28ef275","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:04.509Z","sequence":30439,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: C3714D256C2A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d8226fa199ffa89e","parentId":"4ae91149c193ce23","traceId":"000000000000000028d0e6a5081638c5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:04.527Z","sequence":30440,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: C3714D256C2A, resource-version: aca7c655-43a8-4a64-9488-daca1e1cf569]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d8226fa199ffa89e","parentId":"4ae91149c193ce23","traceId":"000000000000000028d0e6a5081638c5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:04.541Z","sequence":30441,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: C3714D256C2A, resource-version: 5feb0c92-ac91-4b05-a75c-54c4e9da92cd]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d8226fa199ffa89e","parentId":"4ae91149c193ce23","traceId":"000000000000000028d0e6a5081638c5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:04.544Z","sequence":30442,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: C3714D256C2A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a0d5d46193ac8ebe","parentId":"9c441e92af48c066","traceId":"000000000000000028d0e6a5081638c5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:04.771Z","sequence":30443,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: C3714D256C2A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a0d5d46193ac8ebe","parentId":"9c441e92af48c066","traceId":"000000000000000028d0e6a5081638c5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:04.821Z","sequence":30444,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 552990AB17C6]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"250d41be1833ede8","parentId":"5d2d4e02c1ea1070","traceId":"00000000000000006abe3e0f363d4301","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:04.869Z","sequence":30445,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 552990AB17C6]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"250d41be1833ede8","parentId":"5d2d4e02c1ea1070","traceId":"00000000000000006abe3e0f363d4301","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:06.101Z","sequence":30446,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFD559C32ABA3DB]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"51d017486a253043","parentId":"bdeb1ee5d1fdc5e2","traceId":"0000000000000000d3ce4ddabec7d713","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:06.169Z","sequence":30447,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFD559C32ABA3DB, resource-version: 2e704680-1b1c-493e-8848-0b0d0698ed8c]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"51d017486a253043","parentId":"bdeb1ee5d1fdc5e2","traceId":"0000000000000000d3ce4ddabec7d713","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:06.189Z","sequence":30448,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFD559C32ABA3DB, resource-version: 3495cc51-ae8d-42a6-a4d3-acea91c48e37]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"51d017486a253043","parentId":"bdeb1ee5d1fdc5e2","traceId":"0000000000000000d3ce4ddabec7d713","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:06.211Z","sequence":30449,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFB6B1E88CAE5E2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7a9e48ce583bc4db","parentId":"5a4f19f8d6a7e674","traceId":"0000000000000000d7ccf7db6024c640","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:06.231Z","sequence":30450,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFB6B1E88CAE5E2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7a9e48ce583bc4db","parentId":"5a4f19f8d6a7e674","traceId":"0000000000000000d7ccf7db6024c640","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:07.204Z","sequence":30451,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191273]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"03f8c1dec9344ab5","parentId":"f5bd4a3c8b88217a","traceId":"0000000000000000c5055ca6f8af90d7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:07.235Z","sequence":30452,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191273]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"03f8c1dec9344ab5","parentId":"f5bd4a3c8b88217a","traceId":"0000000000000000c5055ca6f8af90d7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:07.302Z","sequence":30453,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:07.302Z","sequence":30454,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-C3714D256C2A]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:07.313Z","sequence":30455,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-aac8da3e-0359-4136-803e-b6982ddcb871, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:07.44Z","sequence":30456,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:07.44Z","sequence":30457,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: C3714D256C2A]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:07.447Z","sequence":30458,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b71d9b48-e145-4c15-9a4a-1724ff934041, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:07.452Z","sequence":30459,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:07.453Z","sequence":30460,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD559C32ABA3DB] for gateway [C3714D256C2A]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:07.461Z","sequence":30461,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.3.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:07.469Z","sequence":30462,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:08.064Z","sequence":30463,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-154b8aec-f8da-46e3-a9b7-ea984e90af06, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:08.209Z","sequence":30464,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:08.209Z","sequence":30465,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB100081F] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:08.226Z","sequence":30466,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:08.232Z","sequence":30467,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:08.241Z","sequence":30468,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-608e700d-a01b-4c69-abda-3d6d72a23a2b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:09.643Z","sequence":30469,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191278]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"18bef088635ee2d2","parentId":"68a912a209ad209a","traceId":"0000000000000000cf61743b43d0ea52","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:09.669Z","sequence":30470,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191278, resource-version: fb79c3bb-9f4f-44a1-85c1-9e13948ab627]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"18bef088635ee2d2","parentId":"68a912a209ad209a","traceId":"0000000000000000cf61743b43d0ea52","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:09.676Z","sequence":30471,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191278, resource-version: 85bcedae-0dde-45c3-b16b-c637a5b03bdb]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"18bef088635ee2d2","parentId":"68a912a209ad209a","traceId":"0000000000000000cf61743b43d0ea52","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:09.681Z","sequence":30472,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191278]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d3b0bf1a7cfc53aa","parentId":"8d2e80a089b907de","traceId":"0000000000000000cf61743b43d0ea52","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:09.947Z","sequence":30473,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191278]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d3b0bf1a7cfc53aa","parentId":"8d2e80a089b907de","traceId":"0000000000000000cf61743b43d0ea52","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:10.352Z","sequence":30474,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191279]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"42f5fa15a395f830","parentId":"c26b95ee3fb1779a","traceId":"000000000000000028f4a63ca40da46c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:10.382Z","sequence":30475,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191279, resource-version: 2c7322fc-f228-43e4-b182-9e68e7a6397f]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"42f5fa15a395f830","parentId":"c26b95ee3fb1779a","traceId":"000000000000000028f4a63ca40da46c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:10.39Z","sequence":30476,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191279, resource-version: db1881af-7563-4166-a63f-26e5785b3371]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"42f5fa15a395f830","parentId":"c26b95ee3fb1779a","traceId":"000000000000000028f4a63ca40da46c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:10.393Z","sequence":30477,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191279]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"858484e55c90232d","parentId":"9144b08f04bbb4f2","traceId":"000000000000000028f4a63ca40da46c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:10.575Z","sequence":30478,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFD144428BE060D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f998576a6baf53a5","parentId":"11e763f5ba44a7c4","traceId":"00000000000000006aada1a715951f6a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:10.64Z","sequence":30479,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFD144428BE060D, resource-version: f6701d7d-979b-4e5b-95ac-30e16f93c760]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f998576a6baf53a5","parentId":"11e763f5ba44a7c4","traceId":"00000000000000006aada1a715951f6a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:10.656Z","sequence":30480,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFD144428BE060D, resource-version: 4da61e30-1b05-4fb4-96af-8465bc8e3b94]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f998576a6baf53a5","parentId":"11e763f5ba44a7c4","traceId":"00000000000000006aada1a715951f6a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:10.671Z","sequence":30481,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191279]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"858484e55c90232d","parentId":"9144b08f04bbb4f2","traceId":"000000000000000028f4a63ca40da46c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:10.784Z","sequence":30482,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:10.784Z","sequence":30483,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10018D7] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:10.813Z","sequence":30484,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:10.813Z","sequence":30485,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:10.829Z","sequence":30486,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-07556d61-312b-4d16-bcaf-cb0c105202fc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:10.875Z","sequence":30487,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:10.875Z","sequence":30488,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-00GWALP120IT]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:10.923Z","sequence":30489,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-c2caea30-41cd-489e-9af8-4f3a68bef179, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:11.101Z","sequence":30490,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:11.101Z","sequence":30491,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 4A38383700300023] for gateway [00GWALP120IT]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:11.126Z","sequence":30492,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:0.3.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:11.127Z","sequence":30493,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7\",\n \"upstream-message-mapper\" : \"upstream_dash7\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:11.588Z","sequence":30494,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5a396349-6658-45db-8974-3e42da13e2a0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:11.779Z","sequence":30495,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFD559C32ABA3DB]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"972ab7161aa3586b","parentId":"4dd477e9c5270c77","traceId":"00000000000000003bcf4d05bb427f56","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:11.806Z","sequence":30496,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFD559C32ABA3DB]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"972ab7161aa3586b","parentId":"4dd477e9c5270c77","traceId":"00000000000000003bcf4d05bb427f56","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:11.828Z","sequence":30497,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFA9E9C8A81C214]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"551425ed403d81b9","parentId":"2f8c7c27a24d56c4","traceId":"0000000000000000ef2bf388ad0ae801","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:11.861Z","sequence":30498,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFA9E9C8A81C214, resource-version: 7da97108-e3b2-4baa-a3d2-0a2290444493]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"551425ed403d81b9","parentId":"2f8c7c27a24d56c4","traceId":"0000000000000000ef2bf388ad0ae801","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:11.877Z","sequence":30499,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFA9E9C8A81C214, resource-version: 0db3950d-dd46-42aa-8915-8e0dcc27910d]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"551425ed403d81b9","parentId":"2f8c7c27a24d56c4","traceId":"0000000000000000ef2bf388ad0ae801","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:12.677Z","sequence":30500,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFD144428BE060D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a79e71c9dd0932b7","parentId":"1b95debba2c2dad9","traceId":"000000000000000028091c0dcad6081f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:12.699Z","sequence":30501,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: C3714D256C2A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"93692c4258cf998c","parentId":"977ca6cc32ea3a34","traceId":"000000000000000059491b5e6f01bc84","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:12.702Z","sequence":30502,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFD144428BE060D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a79e71c9dd0932b7","parentId":"1b95debba2c2dad9","traceId":"000000000000000028091c0dcad6081f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:12.729Z","sequence":30503,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: C3714D256C2A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"93692c4258cf998c","parentId":"977ca6cc32ea3a34","traceId":"000000000000000059491b5e6f01bc84","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:13.027Z","sequence":30504,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:13.027Z","sequence":30505,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191279]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:13.04Z","sequence":30506,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-b6dc3722-db7f-4b2f-8256-528946436715, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:13.163Z","sequence":30507,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:13.163Z","sequence":30508,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFA9E9C8A81C214] for gateway [gateway_integrationtest_network_191279]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:13.163Z","sequence":30509,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:13.164Z","sequence":30510,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191279]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:13.169Z","sequence":30511,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-54f7dd6a-d862-4a47-b36e-211326a0fa94, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:13.174Z","sequence":30512,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.7.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:13.175Z","sequence":30513,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:13.303Z","sequence":30514,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191278]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5f0870c413b12f5c","parentId":"2cd24afa6145671b","traceId":"0000000000000000746f15bdc29000cd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:13.339Z","sequence":30515,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191278]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5f0870c413b12f5c","parentId":"2cd24afa6145671b","traceId":"0000000000000000746f15bdc29000cd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:13.532Z","sequence":30516,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3404edff-e099-4843-ac69-2be7e7d15aa5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:13.617Z","sequence":30517,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191280]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"232e0d3c37c4dce2","parentId":"cbbe8aa5c100a922","traceId":"0000000000000000ed4d7dd4e9b5f767","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:13.636Z","sequence":30518,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191280, resource-version: 45afdfdd-7e11-4f34-9e98-6c2f8ecbe2a3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"232e0d3c37c4dce2","parentId":"cbbe8aa5c100a922","traceId":"0000000000000000ed4d7dd4e9b5f767","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:13.644Z","sequence":30519,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191280, resource-version: 83e11c51-189f-4035-a5bc-e4fddcf13773]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"232e0d3c37c4dce2","parentId":"cbbe8aa5c100a922","traceId":"0000000000000000ed4d7dd4e9b5f767","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:13.65Z","sequence":30520,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191280]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3f319c16f03601bd","parentId":"79a3b5c158fd125e","traceId":"0000000000000000ed4d7dd4e9b5f767","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:13.842Z","sequence":30521,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191280]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3f319c16f03601bd","parentId":"79a3b5c158fd125e","traceId":"0000000000000000ed4d7dd4e9b5f767","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:14.991Z","sequence":30522,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFAFD77BBC10A62]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9acce166ffb44eff","parentId":"41a8b7efe309d00d","traceId":"0000000000000000e43668dd04d7a317","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:15.022Z","sequence":30523,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFAFD77BBC10A62, resource-version: e721127d-609f-4104-8543-39348128cf61]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9acce166ffb44eff","parentId":"41a8b7efe309d00d","traceId":"0000000000000000e43668dd04d7a317","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:15.029Z","sequence":30524,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFAFD77BBC10A62, resource-version: d237f558-96e4-44ac-8d0e-004a28886cf4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9acce166ffb44eff","parentId":"41a8b7efe309d00d","traceId":"0000000000000000e43668dd04d7a317","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:16.264Z","sequence":30525,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:16.265Z","sequence":30526,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191280]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:16.281Z","sequence":30527,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-b4bc3758-284c-4366-8349-0dfe2ebc9349, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:16.411Z","sequence":30528,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:16.411Z","sequence":30529,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFAFD77BBC10A62] for gateway [gateway_integrationtest_network_191280]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:16.412Z","sequence":30530,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:16.412Z","sequence":30531,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191280]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:16.416Z","sequence":30532,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.5.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:16.416Z","sequence":30533,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:16.417Z","sequence":30534,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4c09e0c2-8078-4370-ae36-a6c2b7b7af06, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:17.162Z","sequence":30535,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b8477d6f-aa5b-4df1-8699-9263b53d6fed, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:18.105Z","sequence":30536,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFA9E9C8A81C214]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"eb533e138a341e4d","parentId":"32f8e16cca36dd2f","traceId":"000000000000000092be836283d4a82e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:18.141Z","sequence":30537,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFA9E9C8A81C214]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"eb533e138a341e4d","parentId":"32f8e16cca36dd2f","traceId":"000000000000000092be836283d4a82e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:18.729Z","sequence":30538,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191279]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e29b259f811c2b58","parentId":"18037b8ee37c7f26","traceId":"0000000000000000007003841e03d863","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:18.786Z","sequence":30539,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191279]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e29b259f811c2b58","parentId":"18037b8ee37c7f26","traceId":"0000000000000000007003841e03d863","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:18.856Z","sequence":30540,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:18.856Z","sequence":30541,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB100088A] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:18.889Z","sequence":30542,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:18.89Z","sequence":30543,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:18.905Z","sequence":30544,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-499c56f0-fa72-497f-9cee-f7e1aeedcd84, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:19.777Z","sequence":30545,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191281]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"69cbc7418761751c","parentId":"1faa812172b48b8f","traceId":"0000000000000000ae92935504fe0898","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:19.845Z","sequence":30546,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191281, resource-version: 699ee232-e068-48ea-9141-0553eeb969f0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"69cbc7418761751c","parentId":"1faa812172b48b8f","traceId":"0000000000000000ae92935504fe0898","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:19.86Z","sequence":30547,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191281, resource-version: 6bf1257a-ebc7-44b1-84eb-90c8fef8b08a]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"69cbc7418761751c","parentId":"1faa812172b48b8f","traceId":"0000000000000000ae92935504fe0898","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:19.865Z","sequence":30548,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191281]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9c8c3f092c6443ee","parentId":"08904a66bbe09b89","traceId":"0000000000000000ae92935504fe0898","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:20.239Z","sequence":30549,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191281]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9c8c3f092c6443ee","parentId":"08904a66bbe09b89","traceId":"0000000000000000ae92935504fe0898","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:20.885Z","sequence":30550,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:20.886Z","sequence":30551,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B82] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:20.914Z","sequence":30552,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:20.915Z","sequence":30553,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:20.933Z","sequence":30554,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-71039922-29dc-493e-aa1d-970ec23b790c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:22.407Z","sequence":30555,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF36B3C703087A7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"222a2f3736703470","parentId":"836f9080293848e5","traceId":"00000000000000009b79a53a2fb9523b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:22.425Z","sequence":30556,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF36B3C703087A7, resource-version: 0b145b03-bea5-4899-b3fd-a806c997aca5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"222a2f3736703470","parentId":"836f9080293848e5","traceId":"00000000000000009b79a53a2fb9523b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:22.444Z","sequence":30557,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF36B3C703087A7, resource-version: 1bb25619-bdc6-41b3-8b07-66163ff61822]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"222a2f3736703470","parentId":"836f9080293848e5","traceId":"00000000000000009b79a53a2fb9523b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:23.518Z","sequence":30558,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:23.518Z","sequence":30559,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191281]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:23.531Z","sequence":30560,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-6f1d8c96-3b13-4d8d-ad05-38d88c62ac79, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:23.656Z","sequence":30561,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:23.658Z","sequence":30562,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF36B3C703087A7] for gateway [gateway_integrationtest_network_191281]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:23.659Z","sequence":30563,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:23.659Z","sequence":30564,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191281]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:23.672Z","sequence":30565,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f354feaa-6a1e-40ac-8503-bf0230f13428, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:23.672Z","sequence":30566,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:23.673Z","sequence":30567,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:24.317Z","sequence":30568,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1bbc888c-e8f0-4b05-9176-2f7b0ed0be26, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:24.368Z","sequence":30569,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/aloxy:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:24.369Z","sequence":30570,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: aloxy, device-id: 0008004A8F68]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:24.375Z","sequence":30571,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-16984aa5-220a-49c4-a8c1-15f3ee82e0d4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:24.378Z","sequence":30572,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:24.378Z","sequence":30573,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: aloxy]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:24.381Z","sequence":30574,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-ffe9be77-deea-4ec6-9db7-560f161915f8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:25.179Z","sequence":30575,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:25.179Z","sequence":30576,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001D3] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:25.187Z","sequence":30577,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:25.187Z","sequence":30578,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:25.191Z","sequence":30579,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-30e2ff9b-4a3d-4e19-961b-00dd231031a6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:25.216Z","sequence":30580,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:25.218Z","sequence":30581,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001D3] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:25.229Z","sequence":30582,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:25.229Z","sequence":30583,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:25.235Z","sequence":30584,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6774fb19-1d03-4af6-9e83-d4ddbc02f624, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:26.6Z","sequence":30585,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:26.601Z","sequence":30586,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BCD] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:26.606Z","sequence":30587,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:26.606Z","sequence":30588,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:26.612Z","sequence":30589,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a0bdd483-3341-48fe-9c84-d788788e662d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:27.988Z","sequence":30590,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFAFD77BBC10A62]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6cadb4e063cc4a2c","parentId":"110e53a33e0f797d","traceId":"000000000000000085e49e8110fe1fad","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:28.006Z","sequence":30591,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFAFD77BBC10A62]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6cadb4e063cc4a2c","parentId":"110e53a33e0f797d","traceId":"000000000000000085e49e8110fe1fad","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:28.243Z","sequence":30592,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191280]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4545c1d6042b534a","parentId":"97f01f10530600c2","traceId":"000000000000000012147e9bc0898e82","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:28.261Z","sequence":30593,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191280]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4545c1d6042b534a","parentId":"97f01f10530600c2","traceId":"000000000000000012147e9bc0898e82","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:28.676Z","sequence":30594,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191282]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c41189d1348beadf","parentId":"8a2e70c166df742c","traceId":"000000000000000065f1d50800f8629c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:28.693Z","sequence":30595,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191282, resource-version: 82c72b7a-9df4-4c9b-90d2-6663f4e717a2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c41189d1348beadf","parentId":"8a2e70c166df742c","traceId":"000000000000000065f1d50800f8629c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:28.7Z","sequence":30596,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191282, resource-version: a6eb26b8-706d-4366-bf9c-13b393a9ae76]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c41189d1348beadf","parentId":"8a2e70c166df742c","traceId":"000000000000000065f1d50800f8629c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:28.704Z","sequence":30597,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191282]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8442e307f7bbb71d","parentId":"a38e0b8477b3cddb","traceId":"000000000000000065f1d50800f8629c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:28.83Z","sequence":30598,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191282]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8442e307f7bbb71d","parentId":"a38e0b8477b3cddb","traceId":"000000000000000065f1d50800f8629c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:28.986Z","sequence":30599,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:28.987Z","sequence":30600,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: acta]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:28.991Z","sequence":30601,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-1b9a9fcd-e253-4824-bd3a-0136a6aaaeb0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:28.995Z","sequence":30602,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/acta:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:28.995Z","sequence":30603,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: acta, device-id: 39383837002D004A] for gateway [0008004AAAA3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:29.002Z","sequence":30604,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_acta\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:29.003Z","sequence":30605,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_acta\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:29.006Z","sequence":30606,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ea6a2c80-3614-4812-99b8-d1cec3533510, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:29.637Z","sequence":30607,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF8E0F261CB300E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"aec08ac8425ea2e4","parentId":"74bfeb8c9f3b1f2d","traceId":"0000000000000000054249f0c42bb066","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:29.664Z","sequence":30608,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF8E0F261CB300E, resource-version: ca883f54-6ba2-4f4e-b7c6-122529ac1224]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"aec08ac8425ea2e4","parentId":"74bfeb8c9f3b1f2d","traceId":"0000000000000000054249f0c42bb066","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:29.672Z","sequence":30609,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF8E0F261CB300E, resource-version: 2d0a8d59-f390-47b0-9304-c41b939e70d5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"aec08ac8425ea2e4","parentId":"74bfeb8c9f3b1f2d","traceId":"0000000000000000054249f0c42bb066","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:30.865Z","sequence":30610,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:30.865Z","sequence":30611,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191282]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:30.877Z","sequence":30612,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-679216d5-c554-446e-9aeb-71534c4f332e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:30.878Z","sequence":30613,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:30.878Z","sequence":30614,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: shell]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:30.881Z","sequence":30615,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-4459601d-7ab7-46cd-a9a2-a04fed5ac64b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:30.883Z","sequence":30616,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/shell:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:30.883Z","sequence":30617,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: shell, type: hashed-password, auth-id: auth-gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:30.894Z","sequence":30618,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-cc22a023-5066-43f5-a48b-4fec0b8f0f59, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:31.089Z","sequence":30619,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:31.089Z","sequence":30620,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF8E0F261CB300E] for gateway [gateway_integrationtest_network_191282]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:31.089Z","sequence":30621,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:31.091Z","sequence":30622,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191282]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:31.094Z","sequence":30623,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.3.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:31.094Z","sequence":30624,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:31.097Z","sequence":30625,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-bb0a37cc-ceb2-48fb-b187-a83d82004887, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:31.097Z","sequence":30626,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:31.097Z","sequence":30627,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BD2] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:31.116Z","sequence":30628,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:31.116Z","sequence":30629,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:31.123Z","sequence":30630,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4250a518-46fa-4f05-8414-7827707b5b98, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:31.396Z","sequence":30631,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-710c35aa-9955-4bbb-a629-3c37a3a69889, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:33.492Z","sequence":30632,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF36B3C703087A7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"22668cf7ff1a17bd","parentId":"c9a76885e870b7db","traceId":"00000000000000008dd3270f7144943f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:33.517Z","sequence":30633,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF36B3C703087A7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"22668cf7ff1a17bd","parentId":"c9a76885e870b7db","traceId":"00000000000000008dd3270f7144943f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:33.985Z","sequence":30634,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191281]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"dffb88f6697ef87e","parentId":"a21a34484bfc6cca","traceId":"0000000000000000d91458a7a0909680","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:34.014Z","sequence":30635,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191281]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"dffb88f6697ef87e","parentId":"a21a34484bfc6cca","traceId":"0000000000000000d91458a7a0909680","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:34.232Z","sequence":30636,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF8E0F261CB300E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1739eafeeeefadfb","parentId":"1bff990fe0e5a575","traceId":"0000000000000000debfeab25a1efad9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:34.272Z","sequence":30637,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF8E0F261CB300E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1739eafeeeefadfb","parentId":"1bff990fe0e5a575","traceId":"0000000000000000debfeab25a1efad9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:35.045Z","sequence":30638,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191282]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d9d6308b7a72d16f","parentId":"447396adfb5fecf0","traceId":"0000000000000000f5b7d7bf25e56cfa","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:35.075Z","sequence":30639,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191282]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d9d6308b7a72d16f","parentId":"447396adfb5fecf0","traceId":"0000000000000000f5b7d7bf25e56cfa","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:35.557Z","sequence":30640,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 88866B5133E0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c086f4080d8adb70","parentId":"ed6cb7198639a4ef","traceId":"0000000000000000d04901bf2fd77f52","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:35.597Z","sequence":30641,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 88866B5133E0, resource-version: c65f2b35-14f8-4564-a0ad-b72f8fcad836]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c086f4080d8adb70","parentId":"ed6cb7198639a4ef","traceId":"0000000000000000d04901bf2fd77f52","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:35.617Z","sequence":30642,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 88866B5133E0, resource-version: 5d36cce1-023c-4f14-a176-0f436d07a0c0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c086f4080d8adb70","parentId":"ed6cb7198639a4ef","traceId":"0000000000000000d04901bf2fd77f52","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:35.621Z","sequence":30643,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 88866B5133E0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4e3b13fde106ddac","parentId":"bc7137479012739c","traceId":"0000000000000000d04901bf2fd77f52","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:35.841Z","sequence":30644,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 88866B5133E0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4e3b13fde106ddac","parentId":"bc7137479012739c","traceId":"0000000000000000d04901bf2fd77f52","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:36.462Z","sequence":30645,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: D2FEB50A29A9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8188368c9ad6d0db","parentId":"a3aceb49065d1333","traceId":"0000000000000000a4256caa8a872496","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:36.466Z","sequence":30646,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191285]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d728eaa465d9f1e1","parentId":"1cb4cbf33f46e731","traceId":"00000000000000008e9c03ecf81f6712","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:36.481Z","sequence":30647,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: D2FEB50A29A9, resource-version: 02d9c07f-0d67-482e-afdf-96e89b52e7dc]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8188368c9ad6d0db","parentId":"a3aceb49065d1333","traceId":"0000000000000000a4256caa8a872496","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:36.486Z","sequence":30648,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191285, resource-version: e677d10a-3e99-4807-9fa7-059547ea0715]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d728eaa465d9f1e1","parentId":"1cb4cbf33f46e731","traceId":"00000000000000008e9c03ecf81f6712","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:36.491Z","sequence":30649,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: D2FEB50A29A9, resource-version: 38673246-a1c0-4dde-8242-18b65f2c732c]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8188368c9ad6d0db","parentId":"a3aceb49065d1333","traceId":"0000000000000000a4256caa8a872496","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:36.498Z","sequence":30650,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191285, resource-version: db5f47a8-b37c-4e77-bce1-7e5b50ea028a]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d728eaa465d9f1e1","parentId":"1cb4cbf33f46e731","traceId":"00000000000000008e9c03ecf81f6712","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:36.513Z","sequence":30651,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191285]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b1294f6b1cac9d44","parentId":"47452a47634a6ccb","traceId":"00000000000000008e9c03ecf81f6712","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:36.514Z","sequence":30652,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: D2FEB50A29A9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1b2a08dee8a95fea","parentId":"7008e1e707deeac2","traceId":"0000000000000000a4256caa8a872496","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:36.775Z","sequence":30653,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:36.776Z","sequence":30654,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: chevronsgp]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:36.779Z","sequence":30655,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-4c6087ee-f9a3-461c-9eb3-5b25dc3e31cb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:36.781Z","sequence":30656,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/chevronsgp:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:36.782Z","sequence":30657,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: chevronsgp, type: hashed-password, auth-id: auth-chevronsgp_42]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:36.792Z","sequence":30658,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-489744ec-1322-42c9-b0dc-7f9b531aa636, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:36.804Z","sequence":30659,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: D2FEB50A29A9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1b2a08dee8a95fea","parentId":"7008e1e707deeac2","traceId":"0000000000000000a4256caa8a872496","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:36.919Z","sequence":30660,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF8864B2617E788]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5d228993249030ac","parentId":"1982820a3ece3992","traceId":"00000000000000004e7fb5b71ce77ed8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:36.923Z","sequence":30661,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/chevronsgp:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:36.924Z","sequence":30662,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: chevronsgp, device-id: 70B3D57BB10008BE] for gateway [gateway_chevronsgp_network_42]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:36.924Z","sequence":30663,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/chevronsgp:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:36.925Z","sequence":30664,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: chevronsgp, device-id: gateway_chevronsgp_network_42]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:36.931Z","sequence":30665,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_chevronsgp\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:36.931Z","sequence":30666,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_chevronsgp\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:36.935Z","sequence":30667,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-98e47651-f74a-4cfc-94d4-efcf0e3c9080, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:36.936Z","sequence":30668,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f4b98dd0-e72e-460d-91bc-5da367603cc2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:36.939Z","sequence":30669,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF8864B2617E788, resource-version: 2373092a-6431-43ae-b693-d835c7e3ddca]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5d228993249030ac","parentId":"1982820a3ece3992","traceId":"00000000000000004e7fb5b71ce77ed8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:36.946Z","sequence":30670,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF8864B2617E788, resource-version: bcde28a0-fcb4-4ada-bd2a-816d233df7fe]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5d228993249030ac","parentId":"1982820a3ece3992","traceId":"00000000000000004e7fb5b71ce77ed8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:36.961Z","sequence":30671,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191285]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b1294f6b1cac9d44","parentId":"47452a47634a6ccb","traceId":"00000000000000008e9c03ecf81f6712","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:37.253Z","sequence":30672,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF208DA7B76B4F8]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"18419caf870e0c66","parentId":"38fdbbfc78274de9","traceId":"000000000000000002b574790241ebd3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:37.277Z","sequence":30673,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF208DA7B76B4F8, resource-version: c381101d-fd56-4e15-af3c-7a7bbbe69007]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"18419caf870e0c66","parentId":"38fdbbfc78274de9","traceId":"000000000000000002b574790241ebd3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:37.285Z","sequence":30674,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF208DA7B76B4F8, resource-version: ee312a87-f46d-480d-8b22-c556a71bac2d]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"18419caf870e0c66","parentId":"38fdbbfc78274de9","traceId":"000000000000000002b574790241ebd3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:37.597Z","sequence":30675,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF8864B2617E788]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0c1df8e11907ca69","parentId":"2b4838885ca2d88b","traceId":"0000000000000000ba3c8116dd6f7927","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:37.617Z","sequence":30676,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF8864B2617E788]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0c1df8e11907ca69","parentId":"2b4838885ca2d88b","traceId":"0000000000000000ba3c8116dd6f7927","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:37.775Z","sequence":30677,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 88866B5133E0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bbcec37a38dad81a","parentId":"3ad9b91486dd3eb5","traceId":"00000000000000007255b1f1846f84da","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:37.791Z","sequence":30678,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 88866B5133E0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bbcec37a38dad81a","parentId":"3ad9b91486dd3eb5","traceId":"00000000000000007255b1f1846f84da","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:37.796Z","sequence":30679,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF8E5B14B1A3538]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ea019eadf24b9122","parentId":"52b69667810f3f12","traceId":"0000000000000000a19c2f97e810d9e9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:37.799Z","sequence":30680,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:37.8Z","sequence":30681,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10018E0] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:37.806Z","sequence":30682,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:37.806Z","sequence":30683,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:37.815Z","sequence":30684,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-95d9c219-2f97-475c-91aa-dd84f84d8c13, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:37.82Z","sequence":30685,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF8E5B14B1A3538, resource-version: 4ccd13f7-f617-4f92-bc7c-17559d66d462]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ea019eadf24b9122","parentId":"52b69667810f3f12","traceId":"0000000000000000a19c2f97e810d9e9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:37.827Z","sequence":30686,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF8E5B14B1A3538, resource-version: dcab82bb-108c-4469-81ef-c4ba7d739e5a]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ea019eadf24b9122","parentId":"52b69667810f3f12","traceId":"0000000000000000a19c2f97e810d9e9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:38.101Z","sequence":30687,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191286]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cf550aed6ede6626","parentId":"269c562c0680fab1","traceId":"000000000000000060c40b66efc04bed","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:38.125Z","sequence":30688,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191286, resource-version: 9ff0502c-8c85-4777-b231-6195df120df6]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cf550aed6ede6626","parentId":"269c562c0680fab1","traceId":"000000000000000060c40b66efc04bed","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:38.131Z","sequence":30689,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191286, resource-version: c4ebfe0b-0770-4f82-a12b-8959f66811ef]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cf550aed6ede6626","parentId":"269c562c0680fab1","traceId":"000000000000000060c40b66efc04bed","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:38.134Z","sequence":30690,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191286]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2a54840cff6fee24","parentId":"5a9e6530da49b4d0","traceId":"000000000000000060c40b66efc04bed","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:38.285Z","sequence":30691,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191286]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2a54840cff6fee24","parentId":"5a9e6530da49b4d0","traceId":"000000000000000060c40b66efc04bed","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:38.46Z","sequence":30692,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:38.46Z","sequence":30693,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-D2FEB50A29A9]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:38.471Z","sequence":30694,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-10799278-6ff8-4bf6-aefa-48b869d31ca3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:38.599Z","sequence":30695,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:38.599Z","sequence":30696,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: D2FEB50A29A9]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:38.605Z","sequence":30697,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4dd2c272-94a5-483b-a061-6f8eabae5e8c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:38.61Z","sequence":30698,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:38.61Z","sequence":30699,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF208DA7B76B4F8] for gateway [D2FEB50A29A9]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:38.616Z","sequence":30700,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:38.616Z","sequence":30701,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:38.811Z","sequence":30702,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b1c1cb39-bd6b-47d1-8bf4-97165f502f34, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:38.943Z","sequence":30703,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:38.943Z","sequence":30704,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191285]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:38.957Z","sequence":30705,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-6a0b766d-ce97-4b9f-8670-e2ef913af415, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:39.094Z","sequence":30706,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:39.094Z","sequence":30707,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF8E5B14B1A3538] for gateway [gateway_integrationtest_network_191285]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:39.095Z","sequence":30708,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:39.095Z","sequence":30709,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191285]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:39.101Z","sequence":30710,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:39.101Z","sequence":30711,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:39.102Z","sequence":30712,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-39c66004-79b1-4889-b456-2ea1f5303770, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:39.18Z","sequence":30713,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFE4CBB7BE3BB31]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1504a87d97e93b6a","parentId":"b7388d80328f7ec0","traceId":"000000000000000014924b636ca81b8a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:39.233Z","sequence":30714,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFE4CBB7BE3BB31, resource-version: 6ad6144b-3cc2-4fba-9c5c-c5d37cc9d278]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1504a87d97e93b6a","parentId":"b7388d80328f7ec0","traceId":"000000000000000014924b636ca81b8a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:39.247Z","sequence":30715,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFE4CBB7BE3BB31, resource-version: 3c830219-0ecb-486e-af80-789a087e9780]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1504a87d97e93b6a","parentId":"b7388d80328f7ec0","traceId":"000000000000000014924b636ca81b8a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:39.579Z","sequence":30716,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3e0ec3d2-d37d-48ae-a385-29401e3a306d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:40.388Z","sequence":30717,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:40.389Z","sequence":30718,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191286]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:40.398Z","sequence":30719,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-1bd81152-7c35-4fa3-b2cd-686576b9b2d1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:40.516Z","sequence":30720,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:40.516Z","sequence":30721,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFE4CBB7BE3BB31] for gateway [gateway_integrationtest_network_191286]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:40.517Z","sequence":30722,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:40.517Z","sequence":30723,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191286]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:40.522Z","sequence":30724,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:40.522Z","sequence":30725,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:40.523Z","sequence":30726,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e48e4fa7-d313-4d49-9673-7c52cbef7712, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:40.691Z","sequence":30727,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6b5c76a7-cbd3-47b6-98b2-3cd974eb22bc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:41.651Z","sequence":30728,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:41.651Z","sequence":30729,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BB613]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:41.659Z","sequence":30730,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b3cafe77-f08d-42a6-9e28-0b1610a5b881, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:48.733Z","sequence":30731,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF208DA7B76B4F8]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"56a63a39c52521ad","parentId":"9681a2ae8dfbafa6","traceId":"00000000000000009b257b0ba4475646","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:48.751Z","sequence":30732,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF208DA7B76B4F8]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"56a63a39c52521ad","parentId":"9681a2ae8dfbafa6","traceId":"00000000000000009b257b0ba4475646","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:48.873Z","sequence":30733,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF8E5B14B1A3538]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4bef871667dbdcbf","parentId":"b84ddcea99fceeac","traceId":"00000000000000007811b5a57ba27778","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:48.891Z","sequence":30734,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF8E5B14B1A3538]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4bef871667dbdcbf","parentId":"b84ddcea99fceeac","traceId":"00000000000000007811b5a57ba27778","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:49.155Z","sequence":30735,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFE4CBB7BE3BB31]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"24cc7123a9713a91","parentId":"d27f0879356d7f1b","traceId":"0000000000000000cb37a6d0c822cb81","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:49.173Z","sequence":30736,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFE4CBB7BE3BB31]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"24cc7123a9713a91","parentId":"d27f0879356d7f1b","traceId":"0000000000000000cb37a6d0c822cb81","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:49.245Z","sequence":30737,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191285]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"27672752af66a6c0","parentId":"59d0a39105bb6e80","traceId":"0000000000000000ca2acd8f374fb226","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:49.268Z","sequence":30738,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191285]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"27672752af66a6c0","parentId":"59d0a39105bb6e80","traceId":"0000000000000000ca2acd8f374fb226","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:49.465Z","sequence":30739,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191286]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a6dc4b6f9b89fecc","parentId":"77a046cf84f7a814","traceId":"000000000000000081d2abc86958944e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:49.48Z","sequence":30740,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191286]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a6dc4b6f9b89fecc","parentId":"77a046cf84f7a814","traceId":"000000000000000081d2abc86958944e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:49.617Z","sequence":30741,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191287]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"28f5a30a394da901","parentId":"2f3b3ddf60e108aa","traceId":"0000000000000000cffd50b7d645b592","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:49.646Z","sequence":30742,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191287, resource-version: 440a02a3-42d2-41e5-9dd6-384290bdf8fc]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"28f5a30a394da901","parentId":"2f3b3ddf60e108aa","traceId":"0000000000000000cffd50b7d645b592","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:49.653Z","sequence":30743,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191287, resource-version: b38fa326-9d13-43c1-88ec-650fc2c2dc5b]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"28f5a30a394da901","parentId":"2f3b3ddf60e108aa","traceId":"0000000000000000cffd50b7d645b592","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:49.656Z","sequence":30744,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191287]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8ae6b0df85b854f0","parentId":"7c9b6cbb65d44873","traceId":"0000000000000000cffd50b7d645b592","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:49.713Z","sequence":30745,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: D2FEB50A29A9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f5a395b236b4602e","parentId":"b2d90c1fcc866b8a","traceId":"000000000000000068491c4f0b22e5bb","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:49.73Z","sequence":30746,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: D2FEB50A29A9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f5a395b236b4602e","parentId":"b2d90c1fcc866b8a","traceId":"000000000000000068491c4f0b22e5bb","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:49.792Z","sequence":30747,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191287]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8ae6b0df85b854f0","parentId":"7c9b6cbb65d44873","traceId":"0000000000000000cffd50b7d645b592","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:49.986Z","sequence":30748,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: DAB7A6527FE6]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"45a953ebee24b8f5","parentId":"ded373126a33f0d5","traceId":"0000000000000000384490d5d4182da6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:50.005Z","sequence":30749,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: DAB7A6527FE6, resource-version: 266945a9-3456-40ab-ae1b-19e0ae67116e]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"45a953ebee24b8f5","parentId":"ded373126a33f0d5","traceId":"0000000000000000384490d5d4182da6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:50.015Z","sequence":30750,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: DAB7A6527FE6, resource-version: 80a13e2e-aca9-4aa5-a7fe-e27d487e1238]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"45a953ebee24b8f5","parentId":"ded373126a33f0d5","traceId":"0000000000000000384490d5d4182da6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:50.025Z","sequence":30751,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: DAB7A6527FE6]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d2617ff1ae11166d","parentId":"daa500c09231e09f","traceId":"0000000000000000384490d5d4182da6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:50.179Z","sequence":30752,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: DAB7A6527FE6]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d2617ff1ae11166d","parentId":"daa500c09231e09f","traceId":"0000000000000000384490d5d4182da6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:50.685Z","sequence":30753,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFD62C27E21B5F0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5f0628b1eb0efada","parentId":"93f58be9e19a8e7f","traceId":"00000000000000005b8b25f22de4cf87","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:50.704Z","sequence":30754,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFD62C27E21B5F0, resource-version: 2255c2c8-dbcf-4834-b159-60459fe5921b]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5f0628b1eb0efada","parentId":"93f58be9e19a8e7f","traceId":"00000000000000005b8b25f22de4cf87","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:50.71Z","sequence":30755,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFD62C27E21B5F0, resource-version: e1d068f2-d45a-404e-be15-7d275e6b8724]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5f0628b1eb0efada","parentId":"93f58be9e19a8e7f","traceId":"00000000000000005b8b25f22de4cf87","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:50.746Z","sequence":30756,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF314476A7B1D51]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8c113ca17d8b1523","parentId":"ccfac2fc91fde572","traceId":"00000000000000005f5c3212d6fd6491","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:50.772Z","sequence":30757,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF314476A7B1D51, resource-version: 909b78dd-9a9a-408a-b01c-264464dfb795]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8c113ca17d8b1523","parentId":"ccfac2fc91fde572","traceId":"00000000000000005f5c3212d6fd6491","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:50.782Z","sequence":30758,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF314476A7B1D51, resource-version: bf8d704c-ff71-4604-905e-8442e076e12c]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8c113ca17d8b1523","parentId":"ccfac2fc91fde572","traceId":"00000000000000005f5c3212d6fd6491","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:50.85Z","sequence":30759,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:50.85Z","sequence":30760,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-DAB7A6527FE6]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:50.869Z","sequence":30761,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-ab9b2a2d-3771-4dd3-9792-01d967723362, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:51.002Z","sequence":30762,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:51.002Z","sequence":30763,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: DAB7A6527FE6]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:51.016Z","sequence":30764,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a4cd9735-3b55-4ed0-84d2-46fac64fa2ea, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:51.154Z","sequence":30765,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191289]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"87c3e20b26caac4a","parentId":"884527d61ede9782","traceId":"000000000000000032a18c5dfa33248b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:51.173Z","sequence":30766,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191289, resource-version: 79fd4dc9-6ef7-4eb8-b9d0-f2dd2cfc680d]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"87c3e20b26caac4a","parentId":"884527d61ede9782","traceId":"000000000000000032a18c5dfa33248b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:51.182Z","sequence":30767,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191289, resource-version: a5e04489-09bd-4c19-a124-583303333a4d]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"87c3e20b26caac4a","parentId":"884527d61ede9782","traceId":"000000000000000032a18c5dfa33248b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:51.186Z","sequence":30768,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191289]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5636fe32c43baead","parentId":"05f6038bb09a843e","traceId":"000000000000000032a18c5dfa33248b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:51.339Z","sequence":30769,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191289]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5636fe32c43baead","parentId":"05f6038bb09a843e","traceId":"000000000000000032a18c5dfa33248b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:51.766Z","sequence":30770,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:51.766Z","sequence":30771,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191287]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:51.779Z","sequence":30772,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-e7d9d283-b757-4340-8084-b3b59f08f7d1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:51.992Z","sequence":30773,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:51.992Z","sequence":30774,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD62C27E21B5F0] for gateway [gateway_integrationtest_network_191287]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:51.993Z","sequence":30775,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:51.993Z","sequence":30776,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191287]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:51.999Z","sequence":30777,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-463ceb16-032c-4a22-a9bd-abcccf9b2cc7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:51.999Z","sequence":30778,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:51.999Z","sequence":30779,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:52.001Z","sequence":30780,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:52.001Z","sequence":30781,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006D9] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:52.014Z","sequence":30782,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:52.014Z","sequence":30783,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:52.026Z","sequence":30784,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-da319923-c454-444c-b225-5f2a67c4b2c8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:52.354Z","sequence":30785,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-970d6ff5-b09f-4074-84c2-69080714fbc0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:52.602Z","sequence":30786,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF5804A124A6FC9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"00a1251fc395b368","parentId":"7b70e70b4dffc377","traceId":"0000000000000000766718c593f9c02d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:52.628Z","sequence":30787,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF5804A124A6FC9, resource-version: a7ff2c45-37e6-4641-b167-41e76d752d91]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"00a1251fc395b368","parentId":"7b70e70b4dffc377","traceId":"0000000000000000766718c593f9c02d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:52.646Z","sequence":30788,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF5804A124A6FC9, resource-version: 8584c5e5-6060-49e6-a6c6-eb98eaba8899]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"00a1251fc395b368","parentId":"7b70e70b4dffc377","traceId":"0000000000000000766718c593f9c02d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:53.676Z","sequence":30789,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:53.676Z","sequence":30790,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000527] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:53.712Z","sequence":30791,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:53.713Z","sequence":30792,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:53.721Z","sequence":30793,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e0a152ae-39f1-40e3-91da-a37707d8d205, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:53.766Z","sequence":30794,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:53.766Z","sequence":30795,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191289]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:53.797Z","sequence":30796,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-e55d1329-67b2-4c28-a5bc-d067343ec1c6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:53.924Z","sequence":30797,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:53.924Z","sequence":30798,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF5804A124A6FC9] for gateway [gateway_integrationtest_network_191289]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:53.925Z","sequence":30799,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:53.925Z","sequence":30800,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191289]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:53.932Z","sequence":30801,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-34084ea0-9506-46ba-ba94-876ba89d7b90, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:53.932Z","sequence":30802,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.5.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:53.932Z","sequence":30803,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:54.382Z","sequence":30804,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ab00886b-c367-4518-9557-2a3faa472deb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:55.236Z","sequence":30805,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:55.236Z","sequence":30806,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100017A] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:55.242Z","sequence":30807,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:55.242Z","sequence":30808,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A7D] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:55.245Z","sequence":30809,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:55.245Z","sequence":30810,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:55.247Z","sequence":30811,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:55.247Z","sequence":30812,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100017A] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:55.251Z","sequence":30813,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8d6555cb-8d89-47e4-b2df-bbf8837f7cc4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:55.255Z","sequence":30814,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:55.255Z","sequence":30815,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:55.265Z","sequence":30816,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6ad86a27-ddfa-4675-a5da-7dc3e2028091, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:55.265Z","sequence":30817,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:55.265Z","sequence":30818,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:58:55.272Z","sequence":30819,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-72cf1289-4483-48cc-8558-afd50d2694e6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:00.775Z","sequence":30820,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:00.775Z","sequence":30821,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10008B1] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:00.781Z","sequence":30822,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:00.781Z","sequence":30823,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:00.789Z","sequence":30824,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a6a93fb0-a316-4ff0-a1fd-5b10048c6872, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:01.377Z","sequence":30825,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:01.377Z","sequence":30826,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100078D] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:01.406Z","sequence":30827,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:01.407Z","sequence":30828,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:01.424Z","sequence":30829,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1e42ba89-c150-49aa-9258-6d9b01385681, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:03.461Z","sequence":30830,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF5804A124A6FC9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"40e175e0ae6220de","parentId":"eed9e37e60fd5b3a","traceId":"0000000000000000302be160cb639876","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:03.481Z","sequence":30831,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF5804A124A6FC9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"40e175e0ae6220de","parentId":"eed9e37e60fd5b3a","traceId":"0000000000000000302be160cb639876","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:03.898Z","sequence":30832,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFD62C27E21B5F0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"afb2dc3c0eeb6169","parentId":"b786efa7e7214323","traceId":"0000000000000000ea1581cad4e4dc92","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:03.917Z","sequence":30833,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFD62C27E21B5F0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"afb2dc3c0eeb6169","parentId":"b786efa7e7214323","traceId":"0000000000000000ea1581cad4e4dc92","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:12.413Z","sequence":30834,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:12.414Z","sequence":30835,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AD3] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:12.423Z","sequence":30836,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:12.423Z","sequence":30837,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:12.431Z","sequence":30838,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5b0704ca-ca32-4c10-b857-5a0d98778bf0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:13.427Z","sequence":30839,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:13.427Z","sequence":30840,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001FA] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:13.433Z","sequence":30841,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:13.434Z","sequence":30842,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:13.437Z","sequence":30843,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c69672aa-da6f-4b7a-ae48-23245f3f119b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:13.497Z","sequence":30844,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:13.497Z","sequence":30845,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001FA] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:13.502Z","sequence":30846,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:13.503Z","sequence":30847,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:13.505Z","sequence":30848,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8db546d3-d3c4-4227-a4f1-a551333e4e16, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:14.266Z","sequence":30849,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:14.267Z","sequence":30850,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AB5] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:14.285Z","sequence":30851,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:14.288Z","sequence":30852,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:14.298Z","sequence":30853,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6dec064a-cc20-4aee-8285-4e3da47f1c04, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:21.177Z","sequence":30854,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/acta:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:21.178Z","sequence":30855,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: acta, device-id: 0008004AAAA3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:21.185Z","sequence":30856,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4a805fb9-f7b1-4df2-ba33-c38cebeb49c4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:21.855Z","sequence":30857,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:21.856Z","sequence":30858,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: flint]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:21.859Z","sequence":30859,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-26cfa88b-3c16-4222-ae1f-44d9d8721aa1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:21.861Z","sequence":30860,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/flint:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:21.861Z","sequence":30861,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: flint, type: hashed-password, auth-id: auth-flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:21.871Z","sequence":30862,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-34245ddb-6eeb-4bdc-b75f-5527d8408830, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:21.992Z","sequence":30863,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:21.992Z","sequence":30864,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000858] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:21.999Z","sequence":30865,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:21.999Z","sequence":30866,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:22.004Z","sequence":30867,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d8f8705e-7adf-4a67-a95e-15a80528cc6c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:25.692Z","sequence":30868,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:25.693Z","sequence":30869,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:25.698Z","sequence":30870,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4569ebc9-a1e7-4297-aa39-0cfff7eb99a3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:26.113Z","sequence":30871,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF314476A7B1D51]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1e8bc62b6f9fa3cd","parentId":"0bc0688513436ad3","traceId":"00000000000000005a86cc6a07b24cdd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:26.13Z","sequence":30872,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF314476A7B1D51]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1e8bc62b6f9fa3cd","parentId":"0bc0688513436ad3","traceId":"00000000000000005a86cc6a07b24cdd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:28.839Z","sequence":30873,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:28.839Z","sequence":30874,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AB7] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:28.845Z","sequence":30875,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:28.845Z","sequence":30876,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:28.853Z","sequence":30877,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a73fd28b-d180-4522-b869-260ab6535d4f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:34.051Z","sequence":30878,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/repsol:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:34.051Z","sequence":30879,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: repsol, device-id: 0008004A37FF]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:34.058Z","sequence":30880,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b55272e8-38eb-4b4e-9b1f-51fa3da9d4f9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:34.061Z","sequence":30881,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:34.061Z","sequence":30882,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: repsol]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:34.065Z","sequence":30883,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-f919caf1-b8f1-4b43-ac78-fc4c20cbd71c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:34.178Z","sequence":30884,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191291]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7399ce46b017c117","parentId":"11eb4d3a848278d4","traceId":"0000000000000000dd5ac51d71987c60","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:34.197Z","sequence":30885,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191291, resource-version: 38b31998-238c-432f-a720-22a5bf3d64da]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7399ce46b017c117","parentId":"11eb4d3a848278d4","traceId":"0000000000000000dd5ac51d71987c60","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:34.204Z","sequence":30886,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191291, resource-version: 681443c8-5a65-4480-8c8b-82e4ba558a72]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7399ce46b017c117","parentId":"11eb4d3a848278d4","traceId":"0000000000000000dd5ac51d71987c60","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:34.208Z","sequence":30887,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191291]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"72b7575693c24e6c","parentId":"e0ada56e1942c5dd","traceId":"0000000000000000dd5ac51d71987c60","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:34.335Z","sequence":30888,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191291]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"72b7575693c24e6c","parentId":"e0ada56e1942c5dd","traceId":"0000000000000000dd5ac51d71987c60","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:35.978Z","sequence":30889,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:35.978Z","sequence":30890,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BD1] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:35.985Z","sequence":30891,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:35.985Z","sequence":30892,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:35.991Z","sequence":30893,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c07ce79b-a3d0-44b8-b851-cc0f4cab8cd4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:38.255Z","sequence":30894,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:38.255Z","sequence":30895,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A10] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:38.261Z","sequence":30896,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:38.261Z","sequence":30897,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:38.267Z","sequence":30898,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5b5ec4b7-64e5-4868-95b9-e957c8f4f11a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:42.566Z","sequence":30899,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF4546D11417666]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"038d2ee83bd4c3b5","parentId":"1e41c5941a77062b","traceId":"0000000000000000485ff1a99c792b08","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:42.585Z","sequence":30900,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF4546D11417666]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"038d2ee83bd4c3b5","parentId":"1e41c5941a77062b","traceId":"0000000000000000485ff1a99c792b08","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:45Z","sequence":30901,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client's [mqtt-adapter@HONO] access token has expired, closing connection","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:45.09Z","sequence":30902,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"initializing SASL authenticator","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:45.09Z","sequence":30903,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client provided an empty list of SASL mechanisms [hostname: null, state: PN_SASL_IDLE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:45.092Z","sequence":30904,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client wants to authenticate using SASL [mechanism: PLAIN, host: null, state: PN_SASL_STEP]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:45.092Z","sequence":30905,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"received authentication request [mechanism: PLAIN]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c14db1134c62b509","traceId":"83df8db3641407aa7f26467a58ccc00f","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:45.093Z","sequence":30906,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"processing PLAIN authentication request [authzid: , authcid: mqtt-adapter@HONO, pwd: *****]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c14db1134c62b509","traceId":"83df8db3641407aa7f26467a58ccc00f","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:45.093Z","sequence":30907,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"OpenSSL [available: false, supports KeyManagerFactory: false]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c14db1134c62b509","traceId":"83df8db3641407aa7f26467a58ccc00f","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:45.093Z","sequence":30908,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"using JVM's default SSL engine","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c14db1134c62b509","traceId":"83df8db3641407aa7f26467a58ccc00f","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:45.093Z","sequence":30909,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c14db1134c62b509","traceId":"83df8db3641407aa7f26467a58ccc00f","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:45.093Z","sequence":30910,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c14db1134c62b509","traceId":"83df8db3641407aa7f26467a58ccc00f","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:45.093Z","sequence":30911,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connecting to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c14db1134c62b509","traceId":"83df8db3641407aa7f26467a58ccc00f","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:45.173Z","sequence":30912,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connected to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server], opening connection ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c14db1134c62b509","traceId":"83df8db3641407aa7f26467a58ccc00f","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:45.175Z","sequence":30913,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connection to container [hono-auth-0.0.0.0:5671] at [amqps://aloxy-hono-service-auth:5671, role: Authentication Server] open","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c14db1134c62b509","traceId":"83df8db3641407aa7f26467a58ccc00f","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:45.179Z","sequence":30914,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"opened receiver link to Authentication service, waiting for token ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c14db1134c62b509","traceId":"83df8db3641407aa7f26467a58ccc00f","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:45.179Z","sequence":30915,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"successfully retrieved token from Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c14db1134c62b509","traceId":"83df8db3641407aa7f26467a58ccc00f","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:45.18Z","sequence":30916,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"closing connection to Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c14db1134c62b509","traceId":"83df8db3641407aa7f26467a58ccc00f","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:45.18Z","sequence":30917,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.EventBusAuthenticationService","level":"DEBUG","message":"received token [length: 969] in response to authentication request","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:45.18Z","sequence":30918,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.JjwtBasedAuthTokenValidator","level":"DEBUG","message":"using key [id: 984e3639028b1e7d0b7d97f8f3de6a82638af0ed7d06ce7d9e038a1c4c634169] to validate signature (alg: RS256]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:45.181Z","sequence":30919,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"authentication of client [authorization ID: mqtt-adapter@HONO] succeeded","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:45.181Z","sequence":30920,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"finishing SASL handshake with outcome PN_SASL_OK","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:45.181Z","sequence":30921,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"received connection request from client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:45.185Z","sequence":30922,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"processing open frame from client container [Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:45.186Z","sequence":30923,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"INFO","message":"client connected [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af, user: mqtt-adapter@HONO, token valid until: 2023-07-25T05:59:45Z]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:45.187Z","sequence":30924,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"opening new session with client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:46.913Z","sequence":30925,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:46.913Z","sequence":30926,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BC8] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:46.92Z","sequence":30927,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:46.92Z","sequence":30928,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:46.927Z","sequence":30929,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d95c5366-185a-4794-8780-51a76c601231, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:48.513Z","sequence":30930,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:48.513Z","sequence":30931,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000ABA] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:48.518Z","sequence":30932,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:48.519Z","sequence":30933,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:48.524Z","sequence":30934,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b8e145c0-7652-470a-b40b-e7fe46371788, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:48.813Z","sequence":30935,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:48.813Z","sequence":30936,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A0A] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:48.822Z","sequence":30937,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:48.822Z","sequence":30938,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:48.833Z","sequence":30939,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2534a235-53ec-49cc-b072-4d5467413055, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:53.303Z","sequence":30940,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:53.303Z","sequence":30941,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A0C] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:53.328Z","sequence":30942,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:53.328Z","sequence":30943,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:53.343Z","sequence":30944,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-556ae41b-6afc-4b88-a1ad-01a727c74f7a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:54.221Z","sequence":30945,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:54.221Z","sequence":30946,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BD3] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:54.233Z","sequence":30947,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:54.233Z","sequence":30948,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:54.249Z","sequence":30949,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9cf2b09e-dbda-44ac-8e25-39a22e4495be, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:56.248Z","sequence":30950,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: DAB7A6527FE6]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ddc5f309757ada3d","parentId":"c43e9b80e5ffddad","traceId":"00000000000000004f6b93a436598d7c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:56.277Z","sequence":30951,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: DAB7A6527FE6]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ddc5f309757ada3d","parentId":"c43e9b80e5ffddad","traceId":"00000000000000004f6b93a436598d7c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:57.027Z","sequence":30952,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191287]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8748ed44b2ce3333","parentId":"c0938ed2eb35dec6","traceId":"00000000000000008869d71e0be37877","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:57.032Z","sequence":30953,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191289]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3dd3a6d5081fec41","parentId":"3ffe7fb1712b39dc","traceId":"0000000000000000ea67d7fb83c6ad61","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:57.065Z","sequence":30954,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191287]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8748ed44b2ce3333","parentId":"c0938ed2eb35dec6","traceId":"00000000000000008869d71e0be37877","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:57.071Z","sequence":30955,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191289]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3dd3a6d5081fec41","parentId":"3ffe7fb1712b39dc","traceId":"0000000000000000ea67d7fb83c6ad61","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:57.31Z","sequence":30956,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: A22C6E7D316D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"48d354a830fb23b5","parentId":"f4c236bb990d188d","traceId":"00000000000000003042ad03bd38ca69","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:57.336Z","sequence":30957,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: A22C6E7D316D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"48d354a830fb23b5","parentId":"f4c236bb990d188d","traceId":"00000000000000003042ad03bd38ca69","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:57.908Z","sequence":30958,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: B948F39DD668]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b2d486f82d6a8fe6","parentId":"d79809bd6203bb0b","traceId":"000000000000000024ae65d79f7da69e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:57.951Z","sequence":30959,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: B948F39DD668, resource-version: ef7ad63d-6efb-4b58-b9c1-f0b5b807aacd]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b2d486f82d6a8fe6","parentId":"d79809bd6203bb0b","traceId":"000000000000000024ae65d79f7da69e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:57.964Z","sequence":30960,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: B948F39DD668, resource-version: 8af13096-b0f9-43dc-9b1a-a575af27869e]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b2d486f82d6a8fe6","parentId":"d79809bd6203bb0b","traceId":"000000000000000024ae65d79f7da69e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:57.968Z","sequence":30961,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: B948F39DD668]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d905bb952222c925","parentId":"a8f9baba4c9587b4","traceId":"000000000000000024ae65d79f7da69e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:58.097Z","sequence":30962,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFCD8284BEA23DA]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d37901bec82d9a70","parentId":"c949b5efcb1d11ca","traceId":"0000000000000000a15e5ea25d09bbbc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:58.155Z","sequence":30963,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFCD8284BEA23DA, resource-version: 003c01d8-4920-458e-9859-3e93dbdd0b7c]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d37901bec82d9a70","parentId":"c949b5efcb1d11ca","traceId":"0000000000000000a15e5ea25d09bbbc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:58.186Z","sequence":30964,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191294]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"241ed94f39211144","parentId":"453baf0ffb7fe93e","traceId":"00000000000000000f7922a975600229","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:58.201Z","sequence":30965,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFCD8284BEA23DA, resource-version: b2baf752-ff89-4cac-8b19-ec340c469ad7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d37901bec82d9a70","parentId":"c949b5efcb1d11ca","traceId":"0000000000000000a15e5ea25d09bbbc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:58.206Z","sequence":30966,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: B948F39DD668]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d905bb952222c925","parentId":"a8f9baba4c9587b4","traceId":"000000000000000024ae65d79f7da69e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:58.208Z","sequence":30967,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191294, resource-version: ad93107c-060a-4ffb-ab9e-ba4baf73728f]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"241ed94f39211144","parentId":"453baf0ffb7fe93e","traceId":"00000000000000000f7922a975600229","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:58.228Z","sequence":30968,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191294, resource-version: d0fb9372-01b9-4019-b32a-f328d5c77a47]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"241ed94f39211144","parentId":"453baf0ffb7fe93e","traceId":"00000000000000000f7922a975600229","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:58.233Z","sequence":30969,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191294]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"35cd02b01ba93031","parentId":"a22f1ba9e9a621da","traceId":"00000000000000000f7922a975600229","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:58.336Z","sequence":30970,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af] wants to open a link [address: Source{address='registration/dow/162afa74-bc75-432f-ab79-81f7e4ffd746', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:58.337Z","sequence":30971,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-0]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:58.337Z","sequence":30972,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@76512f1b] for replies to [registration/dow/162afa74-bc75-432f-ab79-81f7e4ffd746]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:58.34Z","sequence":30973,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af] wants to open a link [address: Target{address='registration/dow', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:58.34Z","sequence":30974,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-1]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:58.341Z","sequence":30975,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:58.345Z","sequence":30976,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:58.345Z","sequence":30977,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 0008004B51D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:58.353Z","sequence":30978,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b1222ae6-1535-47c6-af66-6c35ff3eeb17, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:58.356Z","sequence":30979,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:58.357Z","sequence":30980,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: dow]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:58.361Z","sequence":30981,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-2c771f50-11ec-4d59-9b08-317c110eb638, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:58.395Z","sequence":30982,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191294]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"35cd02b01ba93031","parentId":"a22f1ba9e9a621da","traceId":"00000000000000000f7922a975600229","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:58.88Z","sequence":30983,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: C34F9C7A3D37]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"626bbf14c998b481","parentId":"e8f0ab8d81200c3d","traceId":"0000000000000000f8aee7c77cc7b213","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:58.93Z","sequence":30984,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF33B69F8927358]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"66aeb076ab3a5484","parentId":"eabb45e85846e8fb","traceId":"0000000000000000e2c32d74e070b6d7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:58.936Z","sequence":30985,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 333EC4764865E1BF]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c5e861aa0bf91c22","parentId":"9d54060b2f846636","traceId":"0000000000000000bb7f4171d6c3d8e3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:58.962Z","sequence":30986,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 1DE81336A9A7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"225ecf2b3f6ca6da","parentId":"55d36e27c8e75ae3","traceId":"0000000000000000437eec5d61245e41","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:59.09Z","sequence":30987,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: C34F9C7A3D37, resource-version: 4311bbab-0b17-49a7-b122-b4c25fbf861f]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"626bbf14c998b481","parentId":"e8f0ab8d81200c3d","traceId":"0000000000000000f8aee7c77cc7b213","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:59.284Z","sequence":30988,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:59.284Z","sequence":30989,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:59.289Z","sequence":30990,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-8902f53a-494c-4da3-bd73-2659870b0d91, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:59.292Z","sequence":30991,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:59.292Z","sequence":30992,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191291]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:59.302Z","sequence":30993,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-47aca3c7-a0ed-4d55-b8ca-7d8ffb85725e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:59.399Z","sequence":30994,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF33B69F8927358, resource-version: 1a42d386-2d5f-4662-82da-f6e256d41994]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"66aeb076ab3a5484","parentId":"eabb45e85846e8fb","traceId":"0000000000000000e2c32d74e070b6d7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:59.4Z","sequence":30995,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 333EC4764865E1BF, resource-version: deb50244-4be3-4559-bfe3-ed663dba72dc]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c5e861aa0bf91c22","parentId":"9d54060b2f846636","traceId":"0000000000000000bb7f4171d6c3d8e3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:59.401Z","sequence":30996,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 1DE81336A9A7, resource-version: 692a500e-a63d-4ba2-8e96-aaa84e626798]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"225ecf2b3f6ca6da","parentId":"55d36e27c8e75ae3","traceId":"0000000000000000437eec5d61245e41","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:59.428Z","sequence":30997,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:59.428Z","sequence":30998,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCD8284BEA23DA] for gateway [gateway_integrationtest_network_191291]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:59.429Z","sequence":30999,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:59.429Z","sequence":31000,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191291]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:59.437Z","sequence":31001,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-92347863-4b33-4b41-b4a9-686549e1c1c8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:59.438Z","sequence":31002,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:59.438Z","sequence":31003,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:59.493Z","sequence":31004,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: C34F9C7A3D37, resource-version: c250f817-26f3-4c4d-832b-504fcf30820b]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"626bbf14c998b481","parentId":"e8f0ab8d81200c3d","traceId":"0000000000000000f8aee7c77cc7b213","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:59.497Z","sequence":31005,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: C34F9C7A3D37]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d70fbfea9b5d1a32","parentId":"7d5f45db740fd36e","traceId":"0000000000000000f8aee7c77cc7b213","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:59.544Z","sequence":31006,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF33B69F8927358, resource-version: f6ef2aa4-736a-4c41-9225-9ca3a79cb857]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"66aeb076ab3a5484","parentId":"eabb45e85846e8fb","traceId":"0000000000000000e2c32d74e070b6d7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:59.551Z","sequence":31007,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 1DE81336A9A7, resource-version: 9db13495-f63e-408d-b49a-b0167c1ee52d]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"225ecf2b3f6ca6da","parentId":"55d36e27c8e75ae3","traceId":"0000000000000000437eec5d61245e41","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:59.551Z","sequence":31008,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 333EC4764865E1BF, resource-version: 174e4de9-58b0-4d16-8247-fa80dfaf58e1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c5e861aa0bf91c22","parentId":"9d54060b2f846636","traceId":"0000000000000000bb7f4171d6c3d8e3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:59.555Z","sequence":31009,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 1DE81336A9A7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"72400d972d9a9f47","parentId":"eed6dd7950c72d92","traceId":"0000000000000000437eec5d61245e41","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T04:59:59.769Z","sequence":31010,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: C34F9C7A3D37]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d70fbfea9b5d1a32","parentId":"7d5f45db740fd36e","traceId":"0000000000000000f8aee7c77cc7b213","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:00.096Z","sequence":31011,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 1DE81336A9A7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"72400d972d9a9f47","parentId":"eed6dd7950c72d92","traceId":"0000000000000000437eec5d61245e41","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:00.145Z","sequence":31012,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-cb7e210e-8eae-4888-837a-b0cfac2eef2d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:00.328Z","sequence":31013,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:00.328Z","sequence":31014,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: lanxess]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:00.331Z","sequence":31015,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-341c3f97-e0e3-42b1-80b8-4c3796cf4506, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:00.335Z","sequence":31016,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af] wants to open a link [address: Source{address='registration/lanxess/eaaea027-43b7-4bf9-be5c-cc5ccbd246ce', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:00.335Z","sequence":31017,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-2]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:00.335Z","sequence":31018,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@65041876] for replies to [registration/lanxess/eaaea027-43b7-4bf9-be5c-cc5ccbd246ce]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:00.338Z","sequence":31019,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af] wants to open a link [address: Target{address='registration/lanxess', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:00.338Z","sequence":31020,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:00.338Z","sequence":31021,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:00.341Z","sequence":31022,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:00.341Z","sequence":31023,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 70B3D57BB10001B5] for gateway [0008004BB84C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:00.346Z","sequence":31024,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_lanxess\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:00.346Z","sequence":31025,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_lanxess\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:00.349Z","sequence":31026,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0614872e-adee-4413-91f5-4d5479d0df5c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:00.47Z","sequence":31027,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:00.47Z","sequence":31028,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000567] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:00.475Z","sequence":31029,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:00.475Z","sequence":31030,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:00.483Z","sequence":31031,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-08268540-b0d8-4122-a420-6323268e971f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:00.645Z","sequence":31032,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:00.645Z","sequence":31033,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191294]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:00.657Z","sequence":31034,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-cb2c0764-00aa-46d3-af3b-5b48ae12aee0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:00.833Z","sequence":31035,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:00.833Z","sequence":31036,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 333EC4764865E1BF] for gateway [gateway_integrationtest_network_191294]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:00.834Z","sequence":31037,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:00.834Z","sequence":31038,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191294]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:00.838Z","sequence":31039,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:raw:1.0.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:00.839Z","sequence":31040,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:00.84Z","sequence":31041,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-270bc93b-ec7f-4511-b391-924860a7b4f5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:01.194Z","sequence":31042,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a6d399df-4457-46aa-9de8-2ee17d63c9b1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:01.195Z","sequence":31043,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:01.195Z","sequence":31044,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A0B] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:01.196Z","sequence":31045,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:01.196Z","sequence":31046,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:01.199Z","sequence":31047,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-3222102f-4ffa-4f51-a645-9bdb25febec2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:01.2Z","sequence":31048,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:01.2Z","sequence":31049,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:01.201Z","sequence":31050,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:01.202Z","sequence":31051,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-B948F39DD668]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:01.206Z","sequence":31052,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b9fe2efc-e7cd-47c7-8ce3-4307ba478bb1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:01.213Z","sequence":31053,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-35c95b3b-e679-4c95-ab3c-d7e078d656e6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:01.322Z","sequence":31054,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF418CAC3EE5A9D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8bc6604710b994e1","parentId":"7b7f651db60f688e","traceId":"00000000000000007239f34c468ebcd4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:01.336Z","sequence":31055,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af] wants to open a link [address: Source{address='registration/integrationtest/56e65bcc-c68e-4069-b2c0-e8876d264854', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:01.336Z","sequence":31056,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:01.336Z","sequence":31057,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@1f14b930] for replies to [registration/integrationtest/56e65bcc-c68e-4069-b2c0-e8876d264854]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:01.338Z","sequence":31058,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af] wants to open a link [address: Target{address='registration/integrationtest', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:01.338Z","sequence":31059,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-5]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:01.338Z","sequence":31060,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:01.341Z","sequence":31061,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF418CAC3EE5A9D, resource-version: ad725183-fcd9-41d6-9cd0-8862a62007fc]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8bc6604710b994e1","parentId":"7b7f651db60f688e","traceId":"00000000000000007239f34c468ebcd4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:01.342Z","sequence":31062,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:01.342Z","sequence":31063,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: B948F39DD668]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:01.347Z","sequence":31064,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-af3da790-8a54-4646-b323-0c58cbae84fa, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:01.347Z","sequence":31065,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF418CAC3EE5A9D, resource-version: 827f365a-1534-4f2a-9e45-9b6cb7381055]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8bc6604710b994e1","parentId":"7b7f651db60f688e","traceId":"00000000000000007239f34c468ebcd4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:01.351Z","sequence":31066,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:01.352Z","sequence":31067,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF33B69F8927358] for gateway [B948F39DD668]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:01.357Z","sequence":31068,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.5.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:01.357Z","sequence":31069,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:01.663Z","sequence":31070,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8a104f2b-2f61-4312-a392-5e4988acbe67, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:01.669Z","sequence":31071,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFD3052B27C7BD7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a08dd62979486c0f","parentId":"8f652090d5d21ed6","traceId":"0000000000000000e37f6afb16e32bce","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:01.687Z","sequence":31072,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFD3052B27C7BD7, resource-version: 0a95e6e8-1afa-4f00-a4e4-c0d6161dd340]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a08dd62979486c0f","parentId":"8f652090d5d21ed6","traceId":"0000000000000000e37f6afb16e32bce","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:01.698Z","sequence":31073,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFD3052B27C7BD7, resource-version: 194f4dd9-e7be-41ac-8464-0e8594d62461]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a08dd62979486c0f","parentId":"8f652090d5d21ed6","traceId":"0000000000000000e37f6afb16e32bce","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:02.395Z","sequence":31074,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:02.395Z","sequence":31075,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-C34F9C7A3D37]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:02.437Z","sequence":31076,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-d8be3e4c-2ce0-4302-8a45-4648d7703f84, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:02.565Z","sequence":31077,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:02.565Z","sequence":31078,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: C34F9C7A3D37]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:02.584Z","sequence":31079,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-11866f80-d71d-4dee-a99b-1f0dc2f5a415, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:02.59Z","sequence":31080,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:02.59Z","sequence":31081,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF418CAC3EE5A9D] for gateway [C34F9C7A3D37]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:02.605Z","sequence":31082,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:02.605Z","sequence":31083,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:03.136Z","sequence":31084,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-982df29d-6c56-46bc-a25b-fd50373fa4b9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:03.137Z","sequence":31085,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:03.137Z","sequence":31086,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-1DE81336A9A7]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:03.179Z","sequence":31087,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-02c5c25a-d084-4cbf-a9e5-28f8eb69430c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:03.307Z","sequence":31088,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:03.307Z","sequence":31089,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 1DE81336A9A7]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:03.328Z","sequence":31090,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-28b901c9-6e34-4e24-92af-c6ec52abecee, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:03.331Z","sequence":31091,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:03.332Z","sequence":31092,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD3052B27C7BD7] for gateway [1DE81336A9A7]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:03.338Z","sequence":31093,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.8.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:03.338Z","sequence":31094,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:03.929Z","sequence":31095,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2a1ed12d-15ee-46d7-bdd3-dea213f053cb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:03.929Z","sequence":31096,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:03.93Z","sequence":31097,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD3052B27C7BD7] for gateway [1DE81336A9A7]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:03.949Z","sequence":31098,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.8.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:03.949Z","sequence":31099,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:04.399Z","sequence":31100,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2d7f091b-0d8b-4a28-892b-8a292c690359, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:04.4Z","sequence":31101,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:04.4Z","sequence":31102,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-B948F39DD668]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:04.417Z","sequence":31103,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-5f82f232-4ad0-404e-92aa-ac550bd1352d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:04.76Z","sequence":31104,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:04.761Z","sequence":31105,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-1DE81336A9A7]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:04.774Z","sequence":31106,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-f0f78b87-bc24-4448-8ef5-87792eaf9b79, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:05.577Z","sequence":31107,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: BF4F98F9BA9B]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f7c5d2a46b44087e","parentId":"f62ecfed02be12ae","traceId":"00000000000000003e5b1a3d1130d952","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:05.62Z","sequence":31108,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: BF4F98F9BA9B, resource-version: c9d72d6f-4a6f-4f15-bdf0-99cd17f78a8c]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f7c5d2a46b44087e","parentId":"f62ecfed02be12ae","traceId":"00000000000000003e5b1a3d1130d952","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:05.638Z","sequence":31109,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: BF4F98F9BA9B, resource-version: 4fecacb8-eb73-4f17-9b24-dba96a032822]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f7c5d2a46b44087e","parentId":"f62ecfed02be12ae","traceId":"00000000000000003e5b1a3d1130d952","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:05.644Z","sequence":31110,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: BF4F98F9BA9B]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"accf23716b185b04","parentId":"5dd70474ee46c494","traceId":"00000000000000003e5b1a3d1130d952","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:05.926Z","sequence":31111,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: BF4F98F9BA9B]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"accf23716b185b04","parentId":"5dd70474ee46c494","traceId":"00000000000000003e5b1a3d1130d952","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:07.137Z","sequence":31112,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFC8E96EDBA49F3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9f8fa7e73cc63d74","parentId":"8e925989f52ca9fc","traceId":"0000000000000000e4ffcf0457791c4d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:07.194Z","sequence":31113,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFC8E96EDBA49F3, resource-version: 5da3ace2-1cb6-4676-a6b1-cc2740b8254c]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9f8fa7e73cc63d74","parentId":"8e925989f52ca9fc","traceId":"0000000000000000e4ffcf0457791c4d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:07.213Z","sequence":31114,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFC8E96EDBA49F3, resource-version: 60dad06b-c29b-4761-be3e-d81b5a7b58f3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9f8fa7e73cc63d74","parentId":"8e925989f52ca9fc","traceId":"0000000000000000e4ffcf0457791c4d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:08.293Z","sequence":31115,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:08.293Z","sequence":31116,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-BF4F98F9BA9B]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:08.312Z","sequence":31117,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-b38b15fd-bc6c-41ae-9219-1c9c026a3a33, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:08.485Z","sequence":31118,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:08.485Z","sequence":31119,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: BF4F98F9BA9B]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:08.497Z","sequence":31120,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-20316c1f-2080-4daf-9e8b-79e7caf7fcd7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:08.508Z","sequence":31121,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:08.509Z","sequence":31122,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFC8E96EDBA49F3] for gateway [BF4F98F9BA9B]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:08.52Z","sequence":31123,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:08.52Z","sequence":31124,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:09.014Z","sequence":31125,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-137e06d7-f076-4ecc-8743-5a3232aec8f1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:12.108Z","sequence":31126,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 333EC4764865E1BF]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b69723d28c3c228b","parentId":"fb5eef67c4fd651d","traceId":"000000000000000049dcf6993c4b6995","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:12.112Z","sequence":31127,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFCD8284BEA23DA]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"930fe41688b19697","parentId":"7fa28cc7e0ed8275","traceId":"0000000000000000c20395b02c7c147b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:12.128Z","sequence":31128,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 333EC4764865E1BF]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b69723d28c3c228b","parentId":"fb5eef67c4fd651d","traceId":"000000000000000049dcf6993c4b6995","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:12.129Z","sequence":31129,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFCD8284BEA23DA]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"930fe41688b19697","parentId":"7fa28cc7e0ed8275","traceId":"0000000000000000c20395b02c7c147b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:12.79Z","sequence":31130,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191294]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a7a35479b38505f4","parentId":"c0e096aa37adfb58","traceId":"0000000000000000429adcb78760be1c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:12.806Z","sequence":31131,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191294]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a7a35479b38505f4","parentId":"c0e096aa37adfb58","traceId":"0000000000000000429adcb78760be1c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:13.102Z","sequence":31132,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191291]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d552f05e2c35db99","parentId":"07a884c4f305c7e3","traceId":"000000000000000022a045e6ec413d2a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:13.118Z","sequence":31133,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191291]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d552f05e2c35db99","parentId":"07a884c4f305c7e3","traceId":"000000000000000022a045e6ec413d2a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:13.202Z","sequence":31134,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:13.202Z","sequence":31135,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000ADF] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:13.207Z","sequence":31136,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:13.207Z","sequence":31137,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:13.213Z","sequence":31138,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7fdd9fe7-b04e-4760-93e8-3c1af9f923e5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:14.259Z","sequence":31139,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:14.259Z","sequence":31140,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A05] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:14.265Z","sequence":31141,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:14.265Z","sequence":31142,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:14.277Z","sequence":31143,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9ca9848b-b19c-407d-900a-d5fb6b5de295, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:14.382Z","sequence":31144,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: DBC4E529D6AF]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2a1d97740a7af3ea","parentId":"d67ec8f6ff79c9a2","traceId":"00000000000000006c3a4f19086e5fda","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:14.399Z","sequence":31145,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: DBC4E529D6AF, resource-version: 374be28b-9a12-447f-80ce-e93f70e6253a]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2a1d97740a7af3ea","parentId":"d67ec8f6ff79c9a2","traceId":"00000000000000006c3a4f19086e5fda","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:14.404Z","sequence":31146,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: DBC4E529D6AF, resource-version: 5147c757-5030-4117-9c29-c8b87aaa6208]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2a1d97740a7af3ea","parentId":"d67ec8f6ff79c9a2","traceId":"00000000000000006c3a4f19086e5fda","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:14.409Z","sequence":31147,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: DBC4E529D6AF]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"dd98a3fe9c86acf6","parentId":"06a854c1098ec098","traceId":"00000000000000006c3a4f19086e5fda","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:14.577Z","sequence":31148,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF418CAC3EE5A9D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"22a35228a7e1d1e3","parentId":"ea72b9330db2f3a7","traceId":"0000000000000000d00fde217acde735","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:14.598Z","sequence":31149,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF418CAC3EE5A9D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"22a35228a7e1d1e3","parentId":"ea72b9330db2f3a7","traceId":"0000000000000000d00fde217acde735","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:14.638Z","sequence":31150,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: DBC4E529D6AF]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"dd98a3fe9c86acf6","parentId":"06a854c1098ec098","traceId":"00000000000000006c3a4f19086e5fda","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:15.518Z","sequence":31151,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: C34F9C7A3D37]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0c0a9c2756e48d2b","parentId":"528afc73586a3860","traceId":"0000000000000000311351191dfb4436","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:15.537Z","sequence":31152,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: C34F9C7A3D37]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0c0a9c2756e48d2b","parentId":"528afc73586a3860","traceId":"0000000000000000311351191dfb4436","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:15.858Z","sequence":31153,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF0C8FF014D4BE4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bcd32617e56eaa37","parentId":"e9e27f5a5e220d83","traceId":"000000000000000016939a7af6a670c6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:15.885Z","sequence":31154,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF0C8FF014D4BE4, resource-version: 5ce216dd-362d-4da0-aa81-6f7cea3f0529]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bcd32617e56eaa37","parentId":"e9e27f5a5e220d83","traceId":"000000000000000016939a7af6a670c6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:15.892Z","sequence":31155,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF0C8FF014D4BE4, resource-version: 9ffbed8a-5f0e-46be-bfb4-756aeec13b9d]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bcd32617e56eaa37","parentId":"e9e27f5a5e220d83","traceId":"000000000000000016939a7af6a670c6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:17.132Z","sequence":31156,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:17.132Z","sequence":31157,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-DBC4E529D6AF]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:17.143Z","sequence":31158,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-d889e3c3-1f38-4830-afd4-acd3c36ad462, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:17.265Z","sequence":31159,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:17.266Z","sequence":31160,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: DBC4E529D6AF]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:17.272Z","sequence":31161,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8973373e-28df-47c7-b511-924e26b16638, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:17.277Z","sequence":31162,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:17.277Z","sequence":31163,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF0C8FF014D4BE4] for gateway [DBC4E529D6AF]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:17.283Z","sequence":31164,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:17.283Z","sequence":31165,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:17.751Z","sequence":31166,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c97a2dae-5fc9-4c4b-ba41-dec9eebb0268, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:19.461Z","sequence":31167,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF33B69F8927358]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9d44ce6c17e201ac","parentId":"f89c91689c562d9b","traceId":"0000000000000000a6502d122898f5b3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:19.491Z","sequence":31168,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF33B69F8927358]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9d44ce6c17e201ac","parentId":"f89c91689c562d9b","traceId":"0000000000000000a6502d122898f5b3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:20.447Z","sequence":31169,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: B948F39DD668]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9b605f2d686f5c81","parentId":"9ddbb7ff0a17d87d","traceId":"00000000000000004b614ac64a9a032a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:20.465Z","sequence":31170,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: B948F39DD668]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9b605f2d686f5c81","parentId":"9ddbb7ff0a17d87d","traceId":"00000000000000004b614ac64a9a032a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:21.715Z","sequence":31171,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:21.715Z","sequence":31172,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BBB] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:21.722Z","sequence":31173,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:21.722Z","sequence":31174,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:21.734Z","sequence":31175,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-46e5f778-9a67-4606-b5e8-6cda585ff860, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:21.836Z","sequence":31176,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: C2F116192FCC]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f76154a9ef91a7c5","parentId":"4cbd5f7bff3d8339","traceId":"00000000000000008377af1dbef97f39","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:21.861Z","sequence":31177,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: C2F116192FCC, resource-version: 4208f1d7-2e8f-4ab5-83d5-d3300aee522b]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f76154a9ef91a7c5","parentId":"4cbd5f7bff3d8339","traceId":"00000000000000008377af1dbef97f39","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:21.868Z","sequence":31178,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: C2F116192FCC, resource-version: b1dd069b-783d-4587-834b-9462ffb5ad06]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f76154a9ef91a7c5","parentId":"4cbd5f7bff3d8339","traceId":"00000000000000008377af1dbef97f39","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:21.879Z","sequence":31179,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: C2F116192FCC]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ad2b8488035b82e8","parentId":"58ce416cfdae8dd5","traceId":"00000000000000008377af1dbef97f39","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:22.038Z","sequence":31180,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: C2F116192FCC]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ad2b8488035b82e8","parentId":"58ce416cfdae8dd5","traceId":"00000000000000008377af1dbef97f39","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:22.739Z","sequence":31181,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191299]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6849cf83c6275860","parentId":"85d82c931efbfac2","traceId":"0000000000000000385f03954ed7b613","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:22.757Z","sequence":31182,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191299, resource-version: 53a96a3b-b4f3-4bcd-bf07-42d8b2939dd9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6849cf83c6275860","parentId":"85d82c931efbfac2","traceId":"0000000000000000385f03954ed7b613","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:22.764Z","sequence":31183,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191299, resource-version: e925121f-911c-4775-90c5-020dfa4ecd20]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6849cf83c6275860","parentId":"85d82c931efbfac2","traceId":"0000000000000000385f03954ed7b613","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:22.769Z","sequence":31184,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191299]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6e3e26a567198d90","parentId":"b6b308c9ce16c8b3","traceId":"0000000000000000385f03954ed7b613","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:22.935Z","sequence":31185,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF8FE6C66FF1B75]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"165fcc4e7cc2b0e9","parentId":"0c282313369e9bb9","traceId":"00000000000000007345ba211827a9d8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:22.937Z","sequence":31186,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191299]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6e3e26a567198d90","parentId":"b6b308c9ce16c8b3","traceId":"0000000000000000385f03954ed7b613","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:22.951Z","sequence":31187,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF8FE6C66FF1B75, resource-version: 4df05a91-918e-4ef1-97a1-063ba8f977bd]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"165fcc4e7cc2b0e9","parentId":"0c282313369e9bb9","traceId":"00000000000000007345ba211827a9d8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:22.959Z","sequence":31188,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF8FE6C66FF1B75, resource-version: c0491150-0cd4-443c-83ff-81b5d5e87f1a]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"165fcc4e7cc2b0e9","parentId":"0c282313369e9bb9","traceId":"00000000000000007345ba211827a9d8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:23.898Z","sequence":31189,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:23.898Z","sequence":31190,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 70B3D57BB100017F] for gateway [0008004BB84C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:23.905Z","sequence":31191,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_lanxess\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:23.905Z","sequence":31192,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_lanxess\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:23.909Z","sequence":31193,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-decd3e17-9711-4bde-a280-0275e9f710d3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:24.14Z","sequence":31194,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF8FE6C66FF1B75]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"73c1aa4de5ca2656","parentId":"84fb11464c156d3d","traceId":"0000000000000000aba83b935a2ade6f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:24.155Z","sequence":31195,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF8FE6C66FF1B75]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"73c1aa4de5ca2656","parentId":"84fb11464c156d3d","traceId":"0000000000000000aba83b935a2ade6f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:25.454Z","sequence":31196,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFA87505AA03EBF]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c193e2b16bc2df17","parentId":"ecd787a89d353514","traceId":"000000000000000070bc4696b3a43f15","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:25.471Z","sequence":31197,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFA87505AA03EBF, resource-version: 5337aa18-c956-474c-8603-887d70924192]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c193e2b16bc2df17","parentId":"ecd787a89d353514","traceId":"000000000000000070bc4696b3a43f15","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:25.477Z","sequence":31198,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFA87505AA03EBF, resource-version: 4b39a3af-de10-4414-bc56-d2190f0fab39]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c193e2b16bc2df17","parentId":"ecd787a89d353514","traceId":"000000000000000070bc4696b3a43f15","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:25.494Z","sequence":31199,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: C2F116192FCC]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2aa41f668c62870e","parentId":"11f24ad69069ad64","traceId":"0000000000000000c014269d6a9c6272","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:25.518Z","sequence":31200,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: C2F116192FCC]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2aa41f668c62870e","parentId":"11f24ad69069ad64","traceId":"0000000000000000c014269d6a9c6272","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:26.43Z","sequence":31201,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191300]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0924d9bd5554ad12","parentId":"4edc9c9c28bc8fd7","traceId":"00000000000000009be19e9998c2b742","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:26.459Z","sequence":31202,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191300, resource-version: 735fa857-2c3a-4fa9-91fc-6372dcf96ba9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0924d9bd5554ad12","parentId":"4edc9c9c28bc8fd7","traceId":"00000000000000009be19e9998c2b742","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:26.465Z","sequence":31203,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191300, resource-version: 1e1f17b7-8cb5-4cbc-baac-996a4fba825d]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0924d9bd5554ad12","parentId":"4edc9c9c28bc8fd7","traceId":"00000000000000009be19e9998c2b742","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:26.471Z","sequence":31204,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191300]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4139bcbd30b0e5d5","parentId":"e9a250a1daf0a5cb","traceId":"00000000000000009be19e9998c2b742","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:26.698Z","sequence":31205,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191300]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4139bcbd30b0e5d5","parentId":"e9a250a1daf0a5cb","traceId":"00000000000000009be19e9998c2b742","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:26.856Z","sequence":31206,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:26.856Z","sequence":31207,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191299]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:26.889Z","sequence":31208,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-8bab56a3-67ef-47a5-8add-09785bca091d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:27.009Z","sequence":31209,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:27.01Z","sequence":31210,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFA87505AA03EBF] for gateway [gateway_integrationtest_network_191299]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:27.01Z","sequence":31211,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:27.011Z","sequence":31212,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191299]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:27.017Z","sequence":31213,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:27.017Z","sequence":31214,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:27.018Z","sequence":31215,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-46908cbc-2879-4b35-8263-02f17e011f92, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:27.34Z","sequence":31216,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9c2af5b5-dd36-415d-a112-3839eb7fa1bb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:28.214Z","sequence":31217,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFC28827FA47A23]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e234b45a34ae9e81","parentId":"5a44c8c30b9c0ea4","traceId":"0000000000000000450a13a2a43b4bec","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:28.238Z","sequence":31218,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFC28827FA47A23, resource-version: b9c5c2e9-f220-403e-9a05-b1af05ce7f87]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e234b45a34ae9e81","parentId":"5a44c8c30b9c0ea4","traceId":"0000000000000000450a13a2a43b4bec","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:28.244Z","sequence":31219,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFC28827FA47A23, resource-version: 03bd42eb-bf6e-4719-96a3-41036c0647c3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e234b45a34ae9e81","parentId":"5a44c8c30b9c0ea4","traceId":"0000000000000000450a13a2a43b4bec","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:29.07Z","sequence":31220,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:29.071Z","sequence":31221,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A0F] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:29.076Z","sequence":31222,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:29.076Z","sequence":31223,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:29.087Z","sequence":31224,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-23aab006-7bb4-4ebe-9b12-3aaa1d8ed0cf, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:29.409Z","sequence":31225,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:29.409Z","sequence":31226,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191300]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:29.421Z","sequence":31227,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-d0048453-275f-4c91-9752-f669e7ea5019, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:29.548Z","sequence":31228,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:29.549Z","sequence":31229,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFC28827FA47A23] for gateway [gateway_integrationtest_network_191300]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:29.55Z","sequence":31230,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:29.55Z","sequence":31231,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191300]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:29.556Z","sequence":31232,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-730a12a3-d258-4714-87cf-be4f744bf456, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:29.556Z","sequence":31233,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.8.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:29.557Z","sequence":31234,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:29.877Z","sequence":31235,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1d0f7ef0-df57-4890-ac34-2e433ca13c13, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:30.601Z","sequence":31236,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:30.601Z","sequence":31237,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10001D5] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:30.622Z","sequence":31238,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:0.4.1\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:30.623Z","sequence":31239,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:30.629Z","sequence":31240,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b5d295a0-b0a5-4a32-90c1-edc394ba3922, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:30.829Z","sequence":31241,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF0C8FF014D4BE4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7780cc84ce695505","parentId":"7159a333009207ee","traceId":"0000000000000000b8c5daef012a94f6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:30.836Z","sequence":31242,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFC8E96EDBA49F3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cee9bfa661768576","parentId":"904086c2ffb51bbb","traceId":"00000000000000005be7a70c422e3793","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:30.848Z","sequence":31243,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF0C8FF014D4BE4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7780cc84ce695505","parentId":"7159a333009207ee","traceId":"0000000000000000b8c5daef012a94f6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:30.853Z","sequence":31244,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFC8E96EDBA49F3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cee9bfa661768576","parentId":"904086c2ffb51bbb","traceId":"00000000000000005be7a70c422e3793","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:31.497Z","sequence":31245,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: BF4F98F9BA9B]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f889eea73cf958b4","parentId":"aca54dcbe02f3460","traceId":"00000000000000000cfd08daf9c84aaf","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:31.517Z","sequence":31246,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: BF4F98F9BA9B]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f889eea73cf958b4","parentId":"aca54dcbe02f3460","traceId":"00000000000000000cfd08daf9c84aaf","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:31.977Z","sequence":31247,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af] wants to open a link [address: Source{address='registration/conditionall/a8bef755-aec1-49cf-ae52-de2fb117f726', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:31.978Z","sequence":31248,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-6]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:31.978Z","sequence":31249,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@8db678d] for replies to [registration/conditionall/a8bef755-aec1-49cf-ae52-de2fb117f726]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:31.98Z","sequence":31250,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af] wants to open a link [address: Target{address='registration/conditionall', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:31.981Z","sequence":31251,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-7]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:31.981Z","sequence":31252,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:31.985Z","sequence":31253,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/conditionall:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:31.985Z","sequence":31254,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: conditionall, device-id: 0008004B512D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:31.997Z","sequence":31255,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e75f7af8-ba8e-4dfe-babe-b45d62368ebe, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:32.001Z","sequence":31256,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:32.001Z","sequence":31257,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: conditionall]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:32.005Z","sequence":31258,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-b072c96c-cd0b-4c61-9983-61e5916bdf6d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:32.48Z","sequence":31259,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: DBC4E529D6AF]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fae6fab331f9795b","parentId":"21fa73b560363411","traceId":"000000000000000086f478d5e53ac2c3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:32.507Z","sequence":31260,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: DBC4E529D6AF]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fae6fab331f9795b","parentId":"21fa73b560363411","traceId":"000000000000000086f478d5e53ac2c3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:32.662Z","sequence":31261,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 37E054E808D6]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7e45ba11965a1a2f","parentId":"7e68577bd4e42d2a","traceId":"000000000000000043c7a5b30907504e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:32.685Z","sequence":31262,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 37E054E808D6, resource-version: b12117a2-c936-4fef-9b7d-16b400e21492]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7e45ba11965a1a2f","parentId":"7e68577bd4e42d2a","traceId":"000000000000000043c7a5b30907504e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:32.691Z","sequence":31263,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 37E054E808D6, resource-version: 7ad1e99f-4719-453a-9f54-f400cfec534b]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7e45ba11965a1a2f","parentId":"7e68577bd4e42d2a","traceId":"000000000000000043c7a5b30907504e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:32.694Z","sequence":31264,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 37E054E808D6]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2340e1c594b8d9fd","parentId":"4a2b31737c56129b","traceId":"000000000000000043c7a5b30907504e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:32.705Z","sequence":31265,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:32.705Z","sequence":31266,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A0D] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:32.716Z","sequence":31267,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:32.716Z","sequence":31268,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:32.727Z","sequence":31269,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8582c921-2a4b-49f4-a048-b2eb0e993ac6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:32.844Z","sequence":31270,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 37E054E808D6]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2340e1c594b8d9fd","parentId":"4a2b31737c56129b","traceId":"000000000000000043c7a5b30907504e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:33.145Z","sequence":31271,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191302]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"677f192c480112cd","parentId":"c0f12fc3ba7c76f1","traceId":"00000000000000009a072c589378f842","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:33.173Z","sequence":31272,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191302, resource-version: b32e7ef2-b03b-46e2-8177-66f82a32dfbe]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"677f192c480112cd","parentId":"c0f12fc3ba7c76f1","traceId":"00000000000000009a072c589378f842","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:33.178Z","sequence":31273,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191302, resource-version: b14d5400-ba81-4deb-bb68-a2408349c104]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"677f192c480112cd","parentId":"c0f12fc3ba7c76f1","traceId":"00000000000000009a072c589378f842","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:33.183Z","sequence":31274,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191302]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c2b33de9db5705e6","parentId":"d85f5d9249a37f9f","traceId":"00000000000000009a072c589378f842","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:33.398Z","sequence":31275,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191302]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c2b33de9db5705e6","parentId":"d85f5d9249a37f9f","traceId":"00000000000000009a072c589378f842","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:33.972Z","sequence":31276,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF2DC35465EC281]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7a9d7d15221bad09","parentId":"34aff85f4ed0075a","traceId":"00000000000000005fb12e86ee587b8c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:33.993Z","sequence":31277,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF2DC35465EC281, resource-version: f1c4830b-3748-4000-84e3-3e38d55a520c]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7a9d7d15221bad09","parentId":"34aff85f4ed0075a","traceId":"00000000000000005fb12e86ee587b8c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:34.01Z","sequence":31278,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF2DC35465EC281, resource-version: 133534ac-4e13-491d-b7dd-86cad767e1ba]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7a9d7d15221bad09","parentId":"34aff85f4ed0075a","traceId":"00000000000000005fb12e86ee587b8c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:34.261Z","sequence":31279,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF7D242D13ADDA3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"addfe7f92a13d531","parentId":"97fb1ae5bd22fe17","traceId":"000000000000000088d7cf82a32a17e7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:34.278Z","sequence":31280,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF7D242D13ADDA3, resource-version: 257a8f44-45c2-441a-a8c6-252b75793507]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"addfe7f92a13d531","parentId":"97fb1ae5bd22fe17","traceId":"000000000000000088d7cf82a32a17e7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:34.292Z","sequence":31281,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF7D242D13ADDA3, resource-version: d4acfe5f-a82c-42f2-8c67-75e55b95c88d]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"addfe7f92a13d531","parentId":"97fb1ae5bd22fe17","traceId":"000000000000000088d7cf82a32a17e7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:34.993Z","sequence":31282,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191303]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"47e32d65b8f92905","parentId":"0edb305da79927f5","traceId":"00000000000000001c2a0afa0c031c14","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:35.013Z","sequence":31283,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191303, resource-version: 0803d3e1-b289-4d1b-b04e-a0159e350945]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"47e32d65b8f92905","parentId":"0edb305da79927f5","traceId":"00000000000000001c2a0afa0c031c14","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:35.021Z","sequence":31284,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191303, resource-version: a356d81a-a492-4978-a18d-e8f8e3da7382]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"47e32d65b8f92905","parentId":"0edb305da79927f5","traceId":"00000000000000001c2a0afa0c031c14","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:35.024Z","sequence":31285,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191303]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f5a3a5656ceab0f5","parentId":"35a18859321a8aab","traceId":"00000000000000001c2a0afa0c031c14","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:35.14Z","sequence":31286,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191303]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f5a3a5656ceab0f5","parentId":"35a18859321a8aab","traceId":"00000000000000001c2a0afa0c031c14","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:35.419Z","sequence":31287,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF2DC35465EC281]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3f13790645122460","parentId":"9fda0a83b3114d5c","traceId":"00000000000000003c735d9863c60279","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:35.439Z","sequence":31288,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF2DC35465EC281]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3f13790645122460","parentId":"9fda0a83b3114d5c","traceId":"00000000000000003c735d9863c60279","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:35.972Z","sequence":31289,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFA3ACB93EF930D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"50832091dcf321bd","parentId":"4c303a5708c4c36f","traceId":"0000000000000000b3082d1c92ba364b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:35.99Z","sequence":31290,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFA3ACB93EF930D, resource-version: 3fe874b0-0134-4087-96fc-d36eb5d149b1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"50832091dcf321bd","parentId":"4c303a5708c4c36f","traceId":"0000000000000000b3082d1c92ba364b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:35.997Z","sequence":31291,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFA3ACB93EF930D, resource-version: 8be82367-2b56-4f27-8ad8-43b7e8459ac8]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"50832091dcf321bd","parentId":"4c303a5708c4c36f","traceId":"0000000000000000b3082d1c92ba364b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:35.999Z","sequence":31292,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:35.999Z","sequence":31293,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191302]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:36.012Z","sequence":31294,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-3d6a315e-bdf7-4f72-bf5b-e36108b0f3b9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:36.03Z","sequence":31295,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 37E054E808D6]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c4f238e4ed49ffdc","parentId":"de9dff458c923fe2","traceId":"00000000000000000b1eb1ba97e551f4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:36.045Z","sequence":31296,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 37E054E808D6]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c4f238e4ed49ffdc","parentId":"de9dff458c923fe2","traceId":"00000000000000000b1eb1ba97e551f4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:36.143Z","sequence":31297,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:36.143Z","sequence":31298,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF7D242D13ADDA3] for gateway [gateway_integrationtest_network_191302]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:36.143Z","sequence":31299,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:36.144Z","sequence":31300,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191302]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:36.16Z","sequence":31301,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:36.16Z","sequence":31302,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:36.181Z","sequence":31303,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ac01a47d-2de5-43bc-99a9-ee0688cbe42c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:36.507Z","sequence":31304,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ada1216f-c8d1-444f-8a92-90342075a90a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:37.079Z","sequence":31305,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:37.079Z","sequence":31306,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191303]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:37.115Z","sequence":31307,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-2c779e06-64b4-4bfc-bd15-1c78c77fc5b5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:37.236Z","sequence":31308,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:37.236Z","sequence":31309,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFA3ACB93EF930D] for gateway [gateway_integrationtest_network_191303]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:37.237Z","sequence":31310,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:37.237Z","sequence":31311,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191303]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:37.242Z","sequence":31312,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:37.242Z","sequence":31313,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:37.243Z","sequence":31314,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-50b2b564-9b81-4d11-aa46-a99b00ba18e3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:37.449Z","sequence":31315,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ec8983af-4192-4941-a23a-c793895a9056, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:39.157Z","sequence":31316,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191304]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"75bef7ec5d9b86e2","parentId":"0ad2562f898c0f3a","traceId":"0000000000000000285ff35c2a2bce17","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:39.174Z","sequence":31317,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191304, resource-version: 23957125-8f0f-4675-968f-9fd71a635ba1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"75bef7ec5d9b86e2","parentId":"0ad2562f898c0f3a","traceId":"0000000000000000285ff35c2a2bce17","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:39.179Z","sequence":31318,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191304, resource-version: 521e40f4-c752-4f08-af48-772af833d117]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"75bef7ec5d9b86e2","parentId":"0ad2562f898c0f3a","traceId":"0000000000000000285ff35c2a2bce17","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:39.183Z","sequence":31319,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191304]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8fb3f3eb5a262f14","parentId":"4ff03de10be6b937","traceId":"0000000000000000285ff35c2a2bce17","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:39.293Z","sequence":31320,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191304]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8fb3f3eb5a262f14","parentId":"4ff03de10be6b937","traceId":"0000000000000000285ff35c2a2bce17","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:40.166Z","sequence":31321,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF3379EEDCB9314]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5a4889a895fbdbfc","parentId":"a933b27f67530d00","traceId":"000000000000000085e218c02b299d23","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:40.183Z","sequence":31322,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF3379EEDCB9314, resource-version: db7da3aa-d94a-4af5-bc85-04cd8029337e]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5a4889a895fbdbfc","parentId":"a933b27f67530d00","traceId":"000000000000000085e218c02b299d23","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:40.19Z","sequence":31323,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF3379EEDCB9314, resource-version: 35a31864-f184-4d8e-8986-42b8cf78d445]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5a4889a895fbdbfc","parentId":"a933b27f67530d00","traceId":"000000000000000085e218c02b299d23","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:40.928Z","sequence":31324,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFA87505AA03EBF]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"65b616ba71823df4","parentId":"a4b0e7c7ffdc29b4","traceId":"00000000000000006b187553aafe618d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:40.947Z","sequence":31325,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFA87505AA03EBF]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"65b616ba71823df4","parentId":"a4b0e7c7ffdc29b4","traceId":"00000000000000006b187553aafe618d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:41.09Z","sequence":31326,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191299]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9090a50dd1ff2fa6","parentId":"8dbc40ceb274a518","traceId":"00000000000000005f3a490fbfbbcf51","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:41.11Z","sequence":31327,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191299]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9090a50dd1ff2fa6","parentId":"8dbc40ceb274a518","traceId":"00000000000000005f3a490fbfbbcf51","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:41.276Z","sequence":31328,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:41.276Z","sequence":31329,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191304]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:41.286Z","sequence":31330,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-63b2b02c-4d79-4f0f-a22f-6cdd7871cb63, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:41.409Z","sequence":31331,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:41.409Z","sequence":31332,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF3379EEDCB9314] for gateway [gateway_integrationtest_network_191304]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:41.41Z","sequence":31333,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:41.41Z","sequence":31334,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191304]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:41.418Z","sequence":31335,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a40922ba-8b36-4343-be4a-fee878f2a559, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:41.418Z","sequence":31336,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:41.418Z","sequence":31337,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:41.538Z","sequence":31338,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: E9C058A5E3C9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9ade2dd5e006db6a","parentId":"ca23990c5e915323","traceId":"00000000000000004600d8b9a5706a71","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:41.557Z","sequence":31339,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: E9C058A5E3C9, resource-version: c37eb72f-a7f9-45a7-8399-718bd5f24e7d]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9ade2dd5e006db6a","parentId":"ca23990c5e915323","traceId":"00000000000000004600d8b9a5706a71","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:41.564Z","sequence":31340,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: E9C058A5E3C9, resource-version: 3f27f847-113e-486d-8051-4deb22776a80]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9ade2dd5e006db6a","parentId":"ca23990c5e915323","traceId":"00000000000000004600d8b9a5706a71","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:41.568Z","sequence":31341,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: E9C058A5E3C9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"802f6e961d31638d","parentId":"50c4d18a48a01ba9","traceId":"00000000000000004600d8b9a5706a71","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:41.692Z","sequence":31342,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1fbc098c-c1f2-497b-95e9-0460268d3817, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:41.758Z","sequence":31343,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af] wants to open a link [address: Source{address='registration/oci/7de543cb-59ee-4a96-8b7b-58093c8c9059', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:41.758Z","sequence":31344,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-8]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:41.758Z","sequence":31345,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@7fec1182] for replies to [registration/oci/7de543cb-59ee-4a96-8b7b-58093c8c9059]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:41.764Z","sequence":31346,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af] wants to open a link [address: Target{address='registration/oci', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:41.765Z","sequence":31347,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-9]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:41.765Z","sequence":31348,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:41.768Z","sequence":31349,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:41.769Z","sequence":31350,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:41.775Z","sequence":31351,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-542e25dc-c12e-49df-9634-8882187ebfa7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:41.778Z","sequence":31352,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:41.779Z","sequence":31353,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oci]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:41.782Z","sequence":31354,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-ccf0b4d7-f976-4ac9-b622-ca13cea75e9e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:41.788Z","sequence":31355,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: E9C058A5E3C9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"802f6e961d31638d","parentId":"50c4d18a48a01ba9","traceId":"00000000000000004600d8b9a5706a71","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:42.469Z","sequence":31356,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFB8D3E98C5E297]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4867edfb39602835","parentId":"d552e034bf4f9816","traceId":"0000000000000000ae76f6881488b154","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:42.601Z","sequence":31357,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFB8D3E98C5E297, resource-version: 22421831-a492-4cdf-bad3-e12fcbb562bd]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4867edfb39602835","parentId":"d552e034bf4f9816","traceId":"0000000000000000ae76f6881488b154","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:42.648Z","sequence":31358,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFB8D3E98C5E297, resource-version: b6532efc-f034-4a35-87c3-2cc02f8f0352]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4867edfb39602835","parentId":"d552e034bf4f9816","traceId":"0000000000000000ae76f6881488b154","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:43.311Z","sequence":31359,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFC28827FA47A23]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8ca97b052a2f9f32","parentId":"c056ed7c5a6663e9","traceId":"0000000000000000cfb497e882d64cf0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:43.341Z","sequence":31360,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFC28827FA47A23]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8ca97b052a2f9f32","parentId":"c056ed7c5a6663e9","traceId":"0000000000000000cfb497e882d64cf0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:43.669Z","sequence":31361,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191300]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a0d0c21ab3295314","parentId":"253af8429f319344","traceId":"000000000000000005afa9ac26496cfb","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:43.701Z","sequence":31362,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191300]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a0d0c21ab3295314","parentId":"253af8429f319344","traceId":"000000000000000005afa9ac26496cfb","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:43.745Z","sequence":31363,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:43.745Z","sequence":31364,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-E9C058A5E3C9]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:43.758Z","sequence":31365,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-2763a1d0-d915-4125-9334-23218739fce1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:43.878Z","sequence":31366,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:43.879Z","sequence":31367,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: E9C058A5E3C9]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:43.885Z","sequence":31368,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c1b908f3-9cd6-41ba-b0f0-be4058a5ed57, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:43.889Z","sequence":31369,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:43.889Z","sequence":31370,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFB8D3E98C5E297] for gateway [E9C058A5E3C9]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:43.905Z","sequence":31371,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.5.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:43.905Z","sequence":31372,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:44.287Z","sequence":31373,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f2b3c155-d56b-4ca9-a61d-e40d6889856b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:45.133Z","sequence":31374,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 549BF6BC83E0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8546a4421d08ebf7","parentId":"79022a4a04da65ef","traceId":"000000000000000025e4c6994b1db6ff","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:45.176Z","sequence":31375,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 549BF6BC83E0, resource-version: 6eca9cda-4207-4abe-a3ba-13bc071956af]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8546a4421d08ebf7","parentId":"79022a4a04da65ef","traceId":"000000000000000025e4c6994b1db6ff","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:45.185Z","sequence":31376,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 549BF6BC83E0, resource-version: fff01865-8061-4abb-a714-cbf75d74f307]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8546a4421d08ebf7","parentId":"79022a4a04da65ef","traceId":"000000000000000025e4c6994b1db6ff","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:45.19Z","sequence":31377,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 549BF6BC83E0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2c4e57e2cd96a7d6","parentId":"c755c1520f7d3635","traceId":"000000000000000025e4c6994b1db6ff","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:45.375Z","sequence":31378,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 549BF6BC83E0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2c4e57e2cd96a7d6","parentId":"c755c1520f7d3635","traceId":"000000000000000025e4c6994b1db6ff","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:46.9Z","sequence":31379,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF541DFA667A1DA]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"96ffce357da11fa7","parentId":"2c7516238b1bd39a","traceId":"0000000000000000fc8a29e25462c637","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:46.907Z","sequence":31380,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF3379EEDCB9314]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a9ef4e20ceb71356","parentId":"d5c396a3da28f261","traceId":"0000000000000000ec9592059e2a47d0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:46.96Z","sequence":31381,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF541DFA667A1DA, resource-version: a9737b97-2d96-4cfe-8e77-d8f54978ddc4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"96ffce357da11fa7","parentId":"2c7516238b1bd39a","traceId":"0000000000000000fc8a29e25462c637","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:46.961Z","sequence":31382,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF3379EEDCB9314]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a9ef4e20ceb71356","parentId":"d5c396a3da28f261","traceId":"0000000000000000ec9592059e2a47d0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:46.98Z","sequence":31383,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF541DFA667A1DA, resource-version: 72eca808-8589-49fb-ab23-6ae369e6bf38]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"96ffce357da11fa7","parentId":"2c7516238b1bd39a","traceId":"0000000000000000fc8a29e25462c637","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:47.421Z","sequence":31384,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191304]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d7964c83b3636acb","parentId":"83148b8bf4f58fc2","traceId":"00000000000000008c522522caa6d2fc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:47.461Z","sequence":31385,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191304]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d7964c83b3636acb","parentId":"83148b8bf4f58fc2","traceId":"00000000000000008c522522caa6d2fc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:47.977Z","sequence":31386,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF7D242D13ADDA3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"92984d4e579fbece","parentId":"d604037cc7b62eda","traceId":"00000000000000002832783f68dba7dc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:47.993Z","sequence":31387,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF7D242D13ADDA3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"92984d4e579fbece","parentId":"d604037cc7b62eda","traceId":"00000000000000002832783f68dba7dc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:48.141Z","sequence":31388,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:48.142Z","sequence":31389,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-549BF6BC83E0]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:48.151Z","sequence":31390,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-8cf26395-f8b4-4b02-be00-e32d1c1e2fc9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:48.218Z","sequence":31391,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: A047BFDCF4F4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bfc70e391b2ef61c","parentId":"2c3421fb574a0e57","traceId":"000000000000000044fafef5c1e65273","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:48.226Z","sequence":31392,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFB8D3E98C5E297]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"98ac2ea8f5afdabe","parentId":"5a36d9ce7e47790d","traceId":"0000000000000000960c9b40aa2f53b0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:48.236Z","sequence":31393,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: A047BFDCF4F4, resource-version: f0c07ea0-7a2f-4804-87cf-c67a1cc4322a]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bfc70e391b2ef61c","parentId":"2c3421fb574a0e57","traceId":"000000000000000044fafef5c1e65273","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:48.243Z","sequence":31394,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: A047BFDCF4F4, resource-version: db9bc042-4a8a-4dd1-9a42-d13027b9b3cd]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bfc70e391b2ef61c","parentId":"2c3421fb574a0e57","traceId":"000000000000000044fafef5c1e65273","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:48.246Z","sequence":31395,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFB8D3E98C5E297]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"98ac2ea8f5afdabe","parentId":"5a36d9ce7e47790d","traceId":"0000000000000000960c9b40aa2f53b0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:48.248Z","sequence":31396,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: A047BFDCF4F4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4c15c57b433294e9","parentId":"8f8eb01d1542e381","traceId":"000000000000000044fafef5c1e65273","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:48.273Z","sequence":31397,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:48.273Z","sequence":31398,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 549BF6BC83E0]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:48.278Z","sequence":31399,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ee4720a1-45d6-4600-a58f-8a5550f33fa5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:48.285Z","sequence":31400,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:48.285Z","sequence":31401,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF541DFA667A1DA] for gateway [549BF6BC83E0]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:48.293Z","sequence":31402,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.8.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:48.293Z","sequence":31403,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:48.53Z","sequence":31404,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: A047BFDCF4F4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4c15c57b433294e9","parentId":"8f8eb01d1542e381","traceId":"000000000000000044fafef5c1e65273","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:48.757Z","sequence":31405,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e68ce73e-7824-4306-a074-1d856d70fba5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:48.851Z","sequence":31406,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: E9C058A5E3C9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"46d226814c66ff3e","parentId":"d65cd009eb9cddb6","traceId":"000000000000000079423ae898a6b940","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:48.871Z","sequence":31407,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: E9C058A5E3C9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"46d226814c66ff3e","parentId":"d65cd009eb9cddb6","traceId":"000000000000000079423ae898a6b940","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:48.887Z","sequence":31408,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191302]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"12b92f07a6211934","parentId":"fe7526402fc9f17e","traceId":"00000000000000005ef41723fd5e60fd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:48.912Z","sequence":31409,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191302]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"12b92f07a6211934","parentId":"fe7526402fc9f17e","traceId":"00000000000000005ef41723fd5e60fd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:49.292Z","sequence":31410,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFA2D3A20A1DF95]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c31000bae2dc71bc","parentId":"419e25940efe7383","traceId":"0000000000000000c676ccba18ce29cf","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:49.311Z","sequence":31411,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFA2D3A20A1DF95, resource-version: 8c0bc7ec-668c-45b7-b656-b038dd557968]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c31000bae2dc71bc","parentId":"419e25940efe7383","traceId":"0000000000000000c676ccba18ce29cf","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:49.318Z","sequence":31412,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFA2D3A20A1DF95, resource-version: 4545d72a-49fe-4449-a8e0-9aaa57b66a9d]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c31000bae2dc71bc","parentId":"419e25940efe7383","traceId":"0000000000000000c676ccba18ce29cf","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:49.44Z","sequence":31413,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFA3ACB93EF930D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4259d891f621a03f","parentId":"6e5c3f240adf4223","traceId":"0000000000000000521611322aa7b18c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:49.456Z","sequence":31414,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFA3ACB93EF930D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4259d891f621a03f","parentId":"6e5c3f240adf4223","traceId":"0000000000000000521611322aa7b18c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:49.885Z","sequence":31415,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:49.885Z","sequence":31416,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019F1] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:49.893Z","sequence":31417,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:49.893Z","sequence":31418,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:49.899Z","sequence":31419,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-bd1b33f5-997d-43f9-8219-fdca4ddc58c5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:50.276Z","sequence":31420,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 5E09AA1A7C04]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"87d7694de7614ba2","parentId":"c1d79a8d87ef484e","traceId":"0000000000000000b59820376a2db978","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:50.312Z","sequence":31421,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 5E09AA1A7C04, resource-version: 02c6b515-f755-4ffa-bd8c-2098e6f45716]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"87d7694de7614ba2","parentId":"c1d79a8d87ef484e","traceId":"0000000000000000b59820376a2db978","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:50.328Z","sequence":31422,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 5E09AA1A7C04, resource-version: 70621dd1-a2cb-4865-a4dc-0ab9881dcb9d]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"87d7694de7614ba2","parentId":"c1d79a8d87ef484e","traceId":"0000000000000000b59820376a2db978","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:50.333Z","sequence":31423,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 5E09AA1A7C04]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4682df9f215e8aa7","parentId":"929275cdde804c92","traceId":"0000000000000000b59820376a2db978","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:50.408Z","sequence":31424,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:50.408Z","sequence":31425,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-A047BFDCF4F4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:50.467Z","sequence":31426,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-2b9df55e-9ee3-4645-b36c-302e94edf4aa, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:50.594Z","sequence":31427,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191303]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e6ba2841b8a222e8","parentId":"4504e8d199871bb6","traceId":"00000000000000009d5eeebb99a02736","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:50.595Z","sequence":31428,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:50.595Z","sequence":31429,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: A047BFDCF4F4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:50.61Z","sequence":31430,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-bdf90377-5592-4cfd-ace9-c8eb4f6913f2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:50.616Z","sequence":31431,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:50.619Z","sequence":31432,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFA2D3A20A1DF95] for gateway [A047BFDCF4F4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:50.63Z","sequence":31433,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.3.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:50.63Z","sequence":31434,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:50.631Z","sequence":31435,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191303]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e6ba2841b8a222e8","parentId":"4504e8d199871bb6","traceId":"00000000000000009d5eeebb99a02736","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:50.809Z","sequence":31436,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 5E09AA1A7C04]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4682df9f215e8aa7","parentId":"929275cdde804c92","traceId":"0000000000000000b59820376a2db978","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:51.16Z","sequence":31437,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a6b12c40-4347-4c7e-80f2-8482ff8d5de5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:51.903Z","sequence":31438,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: B4623E92E7AB]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d024b45783b7dc0a","parentId":"6c1cd9af94c33522","traceId":"00000000000000002e70cdc179b1bfc7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:51.941Z","sequence":31439,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: B4623E92E7AB, resource-version: 2b9f4480-9249-4c31-b59e-0ba39e1e08ea]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d024b45783b7dc0a","parentId":"6c1cd9af94c33522","traceId":"00000000000000002e70cdc179b1bfc7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:51.949Z","sequence":31440,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: B4623E92E7AB, resource-version: 606ef4d9-0fa3-462b-bd55-2c666c54dca6]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d024b45783b7dc0a","parentId":"6c1cd9af94c33522","traceId":"00000000000000002e70cdc179b1bfc7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:51.953Z","sequence":31441,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: B4623E92E7AB]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6b3e801c7ee54c4a","parentId":"e6c91fc5ead8cf91","traceId":"00000000000000002e70cdc179b1bfc7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:52.27Z","sequence":31442,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: B4623E92E7AB]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6b3e801c7ee54c4a","parentId":"e6c91fc5ead8cf91","traceId":"00000000000000002e70cdc179b1bfc7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:52.325Z","sequence":31443,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191310]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d36dfe6518059919","parentId":"6ad559c65a8e6b9c","traceId":"0000000000000000a963c8e92425e04e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:52.357Z","sequence":31444,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191310, resource-version: 3431e385-029b-4ec5-9387-36fb076b79ee]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d36dfe6518059919","parentId":"6ad559c65a8e6b9c","traceId":"0000000000000000a963c8e92425e04e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:52.365Z","sequence":31445,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191310, resource-version: f0217e5d-82d0-4d43-a82f-d2476f2e95ca]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d36dfe6518059919","parentId":"6ad559c65a8e6b9c","traceId":"0000000000000000a963c8e92425e04e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:52.368Z","sequence":31446,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191310]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6573e147bbfc8526","parentId":"248359d47ebcb77b","traceId":"0000000000000000a963c8e92425e04e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:52.437Z","sequence":31447,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF8FE1911A47F79]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7a46d1c593804b6e","parentId":"f5bce3fa5448e01a","traceId":"0000000000000000546d27cec456f057","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:52.465Z","sequence":31448,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF8FE1911A47F79, resource-version: be8a37ec-6fb0-47a5-a23b-1bfe7f7c9d14]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7a46d1c593804b6e","parentId":"f5bce3fa5448e01a","traceId":"0000000000000000546d27cec456f057","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:52.472Z","sequence":31449,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF8FE1911A47F79, resource-version: ea4231f6-75c4-4bb2-b627-d70f65130bfd]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7a46d1c593804b6e","parentId":"f5bce3fa5448e01a","traceId":"0000000000000000546d27cec456f057","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:52.78Z","sequence":31450,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191310]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6573e147bbfc8526","parentId":"248359d47ebcb77b","traceId":"0000000000000000a963c8e92425e04e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:53.47Z","sequence":31451,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF207067E6998B0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a4ac5cd4dae67a58","parentId":"78f6d34c45d67fd0","traceId":"000000000000000061127b45982e127d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:53.493Z","sequence":31452,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF207067E6998B0, resource-version: 22153d7e-69cf-478a-ac22-7a32630ae856]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a4ac5cd4dae67a58","parentId":"78f6d34c45d67fd0","traceId":"000000000000000061127b45982e127d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:53.505Z","sequence":31453,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF207067E6998B0, resource-version: c005d130-c828-4b22-b6ae-b39ce9fc354d]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a4ac5cd4dae67a58","parentId":"78f6d34c45d67fd0","traceId":"000000000000000061127b45982e127d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:53.815Z","sequence":31454,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:53.815Z","sequence":31455,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-5E09AA1A7C04]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:53.816Z","sequence":31456,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:53.816Z","sequence":31457,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-5E09AA1A7C04]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:53.826Z","sequence":31458,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-de27e7f5-b26e-4828-807d-71a6e65ed6c2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:53.827Z","sequence":31459,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-5bee7a10-5a88-441f-a42c-fb811f0164cd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:53.977Z","sequence":31460,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:53.977Z","sequence":31461,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AD5] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:53.983Z","sequence":31462,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:53.983Z","sequence":31463,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:53.99Z","sequence":31464,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-46a869a1-9a5d-4884-9da2-51e9c2d77b97, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:54.067Z","sequence":31465,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:54.067Z","sequence":31466,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 5E09AA1A7C04]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:54.073Z","sequence":31467,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2b60905f-99b3-4ce6-b4e9-a040460b4c58, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:54.084Z","sequence":31468,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:54.084Z","sequence":31469,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF8FE1911A47F79] for gateway [5E09AA1A7C04]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:54.085Z","sequence":31470,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:54.085Z","sequence":31471,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF8FE1911A47F79] for gateway [5E09AA1A7C04]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:54.091Z","sequence":31472,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:connect:0.1.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:54.091Z","sequence":31473,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:54.093Z","sequence":31474,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:connect:0.1.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:54.093Z","sequence":31475,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:54.096Z","sequence":31476,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFE3D6D86020A2E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ec59e0416db4ba4e","parentId":"4b69a1e7fb76f891","traceId":"0000000000000000e62dbf1204321f0b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:54.136Z","sequence":31477,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFE3D6D86020A2E, resource-version: 5cc1ead7-a774-4a05-a3fd-b62d5396d243]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ec59e0416db4ba4e","parentId":"4b69a1e7fb76f891","traceId":"0000000000000000e62dbf1204321f0b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:54.15Z","sequence":31478,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFE3D6D86020A2E, resource-version: 78fff0cd-1e53-4fed-9cf5-85e9a8c507a5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ec59e0416db4ba4e","parentId":"4b69a1e7fb76f891","traceId":"0000000000000000e62dbf1204321f0b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:54.414Z","sequence":31479,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-fc8e0f52-c789-496d-97e1-06fc8729cd0b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:54.837Z","sequence":31480,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c9febac3-d543-47f6-b382-2a89ee130175, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:54.838Z","sequence":31481,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:54.838Z","sequence":31482,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191310]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:54.859Z","sequence":31483,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-6d960d14-e653-48e0-bef4-7fe1324939b4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:54.997Z","sequence":31484,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:54.997Z","sequence":31485,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF207067E6998B0] for gateway [gateway_integrationtest_network_191310]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:54.998Z","sequence":31486,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:54.999Z","sequence":31487,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191310]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:55.008Z","sequence":31488,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:55.009Z","sequence":31489,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:55.013Z","sequence":31490,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-041c0719-1abc-462e-8044-60eba7b6689d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:55.743Z","sequence":31491,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9361a2f7-c16b-45e1-9a5a-e44235c3811a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:55.745Z","sequence":31492,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:55.746Z","sequence":31493,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-B4623E92E7AB]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:55.777Z","sequence":31494,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-c3125168-94bb-451b-80e1-a1cff9c834c0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:55.901Z","sequence":31495,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:55.901Z","sequence":31496,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: B4623E92E7AB]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:55.912Z","sequence":31497,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-04f05ddc-7466-49e6-9ab4-99a28351168f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:55.917Z","sequence":31498,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:55.917Z","sequence":31499,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFE3D6D86020A2E] for gateway [B4623E92E7AB]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:55.944Z","sequence":31500,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.3.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:55.944Z","sequence":31501,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:56.609Z","sequence":31502,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-54cc2c35-7377-4904-a53f-0e4935e3c94c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:59.639Z","sequence":31503,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF541DFA667A1DA]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"97dd9d4a49af7137","parentId":"712713da7840b4bb","traceId":"0000000000000000593c44b9bf671f8a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:59.685Z","sequence":31504,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF541DFA667A1DA]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"97dd9d4a49af7137","parentId":"712713da7840b4bb","traceId":"0000000000000000593c44b9bf671f8a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:00:59.959Z","sequence":31505,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 549BF6BC83E0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bf534e39ccd3098e","parentId":"f432c78e24a3124b","traceId":"00000000000000002ed296a1ca811c46","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:00.047Z","sequence":31506,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 549BF6BC83E0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bf534e39ccd3098e","parentId":"f432c78e24a3124b","traceId":"00000000000000002ed296a1ca811c46","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:03.7Z","sequence":31507,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF8FE1911A47F79]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0cc22cd3c943c924","parentId":"fe5575783db670e3","traceId":"000000000000000017d01d688202a631","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:03.718Z","sequence":31508,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF8FE1911A47F79]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0cc22cd3c943c924","parentId":"fe5575783db670e3","traceId":"000000000000000017d01d688202a631","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:04.169Z","sequence":31509,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 5E09AA1A7C04]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d9f4be3dd063e9ce","parentId":"7fe238c5fc8057fc","traceId":"00000000000000001bf096d032feaccd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:04.183Z","sequence":31510,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 5E09AA1A7C04]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d9f4be3dd063e9ce","parentId":"7fe238c5fc8057fc","traceId":"00000000000000001bf096d032feaccd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:05.013Z","sequence":31511,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 178BB4CBC74F]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"72d3e7d300ad56dd","parentId":"8c953d352b946ad4","traceId":"00000000000000002cd4bec94f57f6e3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:05.048Z","sequence":31512,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 178BB4CBC74F, resource-version: 061a2b8d-9b61-4f69-8997-bccca25db7ee]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"72d3e7d300ad56dd","parentId":"8c953d352b946ad4","traceId":"00000000000000002cd4bec94f57f6e3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:05.06Z","sequence":31513,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 178BB4CBC74F, resource-version: 7a39501e-c638-4e64-859c-e4120974af0f]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"72d3e7d300ad56dd","parentId":"8c953d352b946ad4","traceId":"00000000000000002cd4bec94f57f6e3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:05.064Z","sequence":31514,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 178BB4CBC74F]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fc6460bc4dc60ef0","parentId":"8cd8abd0713c246d","traceId":"00000000000000002cd4bec94f57f6e3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:05.23Z","sequence":31515,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 178BB4CBC74F]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fc6460bc4dc60ef0","parentId":"8cd8abd0713c246d","traceId":"00000000000000002cd4bec94f57f6e3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:05.332Z","sequence":31516,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:05.332Z","sequence":31517,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AB1] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:05.345Z","sequence":31518,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:05.345Z","sequence":31519,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:05.356Z","sequence":31520,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ee9087a2-7e7a-4676-bd5b-700366d84952, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:05.432Z","sequence":31521,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191312]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3c3503f51ebf5506","parentId":"e671de9e958369e8","traceId":"0000000000000000b8de2b9808f518cf","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:05.448Z","sequence":31522,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191312, resource-version: 3557197f-48a3-4da2-be89-d34c523c6655]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3c3503f51ebf5506","parentId":"e671de9e958369e8","traceId":"0000000000000000b8de2b9808f518cf","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:05.457Z","sequence":31523,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191312, resource-version: 701321c3-38f8-4d30-ac80-cd69e96f4bea]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3c3503f51ebf5506","parentId":"e671de9e958369e8","traceId":"0000000000000000b8de2b9808f518cf","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:05.46Z","sequence":31524,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191312]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ff38f448534750fb","parentId":"dd8c577b027a6613","traceId":"0000000000000000b8de2b9808f518cf","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:05.631Z","sequence":31525,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191312]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ff38f448534750fb","parentId":"dd8c577b027a6613","traceId":"0000000000000000b8de2b9808f518cf","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:05.96Z","sequence":31526,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF4D79EFFCBBCAE]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a4d18ef1a2fc0404","parentId":"aaf0ac4ee7447d86","traceId":"00000000000000007a91ec53f617ea0a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:05.979Z","sequence":31527,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF4D79EFFCBBCAE, resource-version: f55c61a9-1851-4c54-8fbb-027b7ab8b8f9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a4d18ef1a2fc0404","parentId":"aaf0ac4ee7447d86","traceId":"00000000000000007a91ec53f617ea0a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:05.985Z","sequence":31528,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF4D79EFFCBBCAE, resource-version: d401c864-98ab-4df0-b7b5-79be174d9ee9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a4d18ef1a2fc0404","parentId":"aaf0ac4ee7447d86","traceId":"00000000000000007a91ec53f617ea0a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:06.1Z","sequence":31529,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 71A5FC721068]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1706a96c207d4178","parentId":"a4ce72f3bca37734","traceId":"0000000000000000bdea5acf59442717","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:06.119Z","sequence":31530,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 71A5FC721068, resource-version: 17dd0d41-93e7-4af5-a4cc-9f23012fb00b]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1706a96c207d4178","parentId":"a4ce72f3bca37734","traceId":"0000000000000000bdea5acf59442717","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:06.127Z","sequence":31531,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 71A5FC721068, resource-version: f9a98446-2dc9-43fd-8d3e-f0dceafb23dd]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1706a96c207d4178","parentId":"a4ce72f3bca37734","traceId":"0000000000000000bdea5acf59442717","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:06.128Z","sequence":31532,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF2E4790064DA30]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0c633d0aacad7135","parentId":"0bba0dcdcdb941e9","traceId":"00000000000000003236e067885a8f81","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:06.129Z","sequence":31533,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 71A5FC721068]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0f480275cc50c14e","parentId":"6bf0da8e8066d964","traceId":"0000000000000000bdea5acf59442717","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:06.147Z","sequence":31534,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF2E4790064DA30, resource-version: 721e8cdb-844c-4b79-9b23-2eafd3ecd98d]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0c633d0aacad7135","parentId":"0bba0dcdcdb941e9","traceId":"00000000000000003236e067885a8f81","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:06.157Z","sequence":31535,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF2E4790064DA30, resource-version: 0dec0300-b53e-45a6-bc46-607c509b5a0e]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0c633d0aacad7135","parentId":"0bba0dcdcdb941e9","traceId":"00000000000000003236e067885a8f81","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:06.278Z","sequence":31536,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 71A5FC721068]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0f480275cc50c14e","parentId":"6bf0da8e8066d964","traceId":"0000000000000000bdea5acf59442717","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:06.51Z","sequence":31537,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF207067E6998B0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5ca6a60bdfdce38e","parentId":"8124071d39d1400b","traceId":"00000000000000008b47be4d6bb38ef9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:06.534Z","sequence":31538,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF207067E6998B0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5ca6a60bdfdce38e","parentId":"8124071d39d1400b","traceId":"00000000000000008b47be4d6bb38ef9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:07.285Z","sequence":31539,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFC3A244B6EEA9F]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5daf4a291861e6c7","parentId":"752228e3c943add8","traceId":"00000000000000001045bc055aaa35b5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:07.302Z","sequence":31540,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFC3A244B6EEA9F, resource-version: ce840ba8-9440-4050-8875-ec72e64aa3f3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5daf4a291861e6c7","parentId":"752228e3c943add8","traceId":"00000000000000001045bc055aaa35b5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:07.309Z","sequence":31541,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFC3A244B6EEA9F, resource-version: 7e7ed217-759b-461c-a82c-13b3857fee23]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5daf4a291861e6c7","parentId":"752228e3c943add8","traceId":"00000000000000001045bc055aaa35b5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:07.319Z","sequence":31542,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:07.319Z","sequence":31543,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191312]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:07.326Z","sequence":31544,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:07.327Z","sequence":31545,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-178BB4CBC74F]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:07.327Z","sequence":31546,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:07.328Z","sequence":31547,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-178BB4CBC74F]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:07.334Z","sequence":31548,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-95e1802d-2bd6-42df-a7a5-3bc62aa245e6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:07.343Z","sequence":31549,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-6c6fbd86-2972-474f-8746-b6c2e8191582, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:07.344Z","sequence":31550,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-441180c8-daf9-46fa-aaca-b2e98de59d48, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:07.622Z","sequence":31551,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:07.622Z","sequence":31552,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF2E4790064DA30] for gateway [gateway_integrationtest_network_191312]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:07.623Z","sequence":31553,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:07.623Z","sequence":31554,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191312]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:07.624Z","sequence":31555,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:07.625Z","sequence":31556,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF2E4790064DA30] for gateway [gateway_integrationtest_network_191312]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:07.626Z","sequence":31557,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:07.626Z","sequence":31558,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191312]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:07.63Z","sequence":31559,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:07.631Z","sequence":31560,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 178BB4CBC74F]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:07.635Z","sequence":31561,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:connect:0.1.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:07.636Z","sequence":31562,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:07.637Z","sequence":31563,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-810976ee-d96f-4520-98c7-62632b843703, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:07.637Z","sequence":31564,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:07.638Z","sequence":31565,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 178BB4CBC74F]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:07.64Z","sequence":31566,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-bea55506-6760-4d4f-9e64-77dfd26bd6db, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:07.641Z","sequence":31567,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:connect:0.1.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:07.641Z","sequence":31568,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:07.651Z","sequence":31569,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8bb440a1-6637-4357-8a54-f770defe239d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:07.656Z","sequence":31570,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:07.657Z","sequence":31571,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF4D79EFFCBBCAE] for gateway [178BB4CBC74F]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:07.658Z","sequence":31572,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-bbe4b99f-ce22-4dac-9b87-623205f266f0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:07.663Z","sequence":31573,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:07.663Z","sequence":31574,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF4D79EFFCBBCAE] for gateway [178BB4CBC74F]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:07.678Z","sequence":31575,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:connect:0.1.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:07.678Z","sequence":31576,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:07.685Z","sequence":31577,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:connect:0.1.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:07.685Z","sequence":31578,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:07.71Z","sequence":31579,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191310]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9458fad41832b85d","parentId":"a7fdc972f819f0d1","traceId":"000000000000000052528f16be460a4d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:07.806Z","sequence":31580,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191310]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9458fad41832b85d","parentId":"a7fdc972f819f0d1","traceId":"000000000000000052528f16be460a4d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:08.113Z","sequence":31581,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-142ec261-4142-4809-8de7-e15c8ea2aa88, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:08.389Z","sequence":31582,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-56929032-a2f3-40eb-8baf-954fdfac429b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:08.632Z","sequence":31583,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191314]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"74102bbb1f410ad5","parentId":"570396824d9cd9bb","traceId":"00000000000000003005b8cefc74462e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:08.657Z","sequence":31584,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191314, resource-version: 390e457a-6291-4473-a109-938af256dc6d]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"74102bbb1f410ad5","parentId":"570396824d9cd9bb","traceId":"00000000000000003005b8cefc74462e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:08.663Z","sequence":31585,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191314, resource-version: 08a2ef41-7ea2-4082-bde5-c68aade53d87]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"74102bbb1f410ad5","parentId":"570396824d9cd9bb","traceId":"00000000000000003005b8cefc74462e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:08.666Z","sequence":31586,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191314]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"302c02d8938a932d","parentId":"33c898005269e043","traceId":"00000000000000003005b8cefc74462e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:08.743Z","sequence":31587,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7d892ab2-e86e-4dfd-bdc9-f7ec9af92697, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:08.967Z","sequence":31588,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191314]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"302c02d8938a932d","parentId":"33c898005269e043","traceId":"00000000000000003005b8cefc74462e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:09.085Z","sequence":31589,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b5317aeb-d8b7-408d-8ed9-03a3004e6c3f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:09.086Z","sequence":31590,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:09.086Z","sequence":31591,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B96] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:09.087Z","sequence":31592,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:09.088Z","sequence":31593,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-71A5FC721068]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:09.097Z","sequence":31594,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:09.098Z","sequence":31595,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:09.104Z","sequence":31596,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-77df89c9-df9d-490d-a832-82e49200d651, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:09.105Z","sequence":31597,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-5a3fd2cd-17b4-48bf-9667-1b9b602ea7a1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:09.123Z","sequence":31598,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:09.123Z","sequence":31599,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BB84C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:09.13Z","sequence":31600,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3bab5695-38d8-48aa-aca7-5a9ab80ac3b6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:09.237Z","sequence":31601,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:09.238Z","sequence":31602,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 71A5FC721068]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:09.248Z","sequence":31603,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1fa7a4ff-8103-4602-97f3-3cc09cdca4ca, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:09.258Z","sequence":31604,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:09.258Z","sequence":31605,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFC3A244B6EEA9F] for gateway [71A5FC721068]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:09.27Z","sequence":31606,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:09.27Z","sequence":31607,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:09.862Z","sequence":31608,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1cdf3238-c1f6-4791-aef7-0db85d61a1e6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:09.947Z","sequence":31609,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"retrieving device [tenant: integrationtest, device-id: 0EFC3A244B6EEA9F]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"531c698e18de99ff","parentId":"476de67c0e176b89","traceId":"747ec0af0c52d18648be263f88d2b2d8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:10.147Z","sequence":31610,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF84659C2AC8897]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"95218ce65e8cea18","parentId":"110385325862e4e7","traceId":"0000000000000000902f2f7e589ebf7b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:10.212Z","sequence":31611,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF84659C2AC8897, resource-version: b4e755d5-5c85-408d-812d-2e6cd7ffd671]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"95218ce65e8cea18","parentId":"110385325862e4e7","traceId":"0000000000000000902f2f7e589ebf7b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:10.232Z","sequence":31612,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF84659C2AC8897, resource-version: 0eb7efd0-f4a7-486f-8038-8965715b4162]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"95218ce65e8cea18","parentId":"110385325862e4e7","traceId":"0000000000000000902f2f7e589ebf7b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:10.701Z","sequence":31613,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af] wants to open a link [address: Source{address='registration/ineos/c7f02f60-2bf6-4cf4-8130-7e6d1bb9b873', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:10.701Z","sequence":31614,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:10.701Z","sequence":31615,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@1c11c92e] for replies to [registration/ineos/c7f02f60-2bf6-4cf4-8130-7e6d1bb9b873]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:10.704Z","sequence":31616,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af] wants to open a link [address: Target{address='registration/ineos', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:10.704Z","sequence":31617,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-11]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:10.705Z","sequence":31618,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:10.708Z","sequence":31619,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:10.709Z","sequence":31620,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 0008004B5135]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:10.72Z","sequence":31621,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8e69c89e-8e08-4062-8d90-aa86a9fb6e57, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:10.724Z","sequence":31622,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:10.724Z","sequence":31623,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: ineos]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:10.727Z","sequence":31624,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-e808903e-ce12-4d22-b584-1e438d4f3534, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:11.381Z","sequence":31625,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:11.381Z","sequence":31626,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191314]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:11.396Z","sequence":31627,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-dd63c5f4-60af-44c1-8fd9-d06a81205c45, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:11.521Z","sequence":31628,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:11.521Z","sequence":31629,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF84659C2AC8897] for gateway [gateway_integrationtest_network_191314]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:11.521Z","sequence":31630,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:11.522Z","sequence":31631,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191314]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:11.529Z","sequence":31632,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f03def74-74c7-4a95-8a0a-969591ed481a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:11.53Z","sequence":31633,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:11.53Z","sequence":31634,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:11.853Z","sequence":31635,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-428fcd82-2250-4a57-b12d-ebe402c86233, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:12.204Z","sequence":31636,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:12.205Z","sequence":31637,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AD1] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:12.233Z","sequence":31638,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:12.233Z","sequence":31639,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:12.249Z","sequence":31640,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2862f727-7448-4e49-a1ca-a2bd9819689d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:12.313Z","sequence":31641,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:12.313Z","sequence":31642,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-178BB4CBC74F]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:12.373Z","sequence":31643,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-dcd2d59e-47fe-4735-afe0-3e74e24382de, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:12.503Z","sequence":31644,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:12.503Z","sequence":31645,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF4D79EFFCBBCAE] for gateway [178BB4CBC74F]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:12.54Z","sequence":31646,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:connect:0.1.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:12.541Z","sequence":31647,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:13.156Z","sequence":31648,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-794fec7a-a810-469b-82ec-5b8de25541fd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:13.625Z","sequence":31649,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 5605A170D749]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6cb1887a59ae3883","parentId":"6bdff71ae0d3b4d4","traceId":"00000000000000007154119920c23c10","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:13.659Z","sequence":31650,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 5605A170D749, resource-version: 8d86c1d7-1431-4115-81d9-4246a8ffa849]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6cb1887a59ae3883","parentId":"6bdff71ae0d3b4d4","traceId":"00000000000000007154119920c23c10","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:13.667Z","sequence":31651,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 5605A170D749, resource-version: 2d1bc436-3778-44be-9806-3e77ef6e5b23]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6cb1887a59ae3883","parentId":"6bdff71ae0d3b4d4","traceId":"00000000000000007154119920c23c10","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:13.673Z","sequence":31652,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 5605A170D749]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8c61349450839713","parentId":"eb9857db7bb1434b","traceId":"00000000000000007154119920c23c10","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:13.957Z","sequence":31653,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 5605A170D749]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8c61349450839713","parentId":"eb9857db7bb1434b","traceId":"00000000000000007154119920c23c10","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:14.428Z","sequence":31654,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:14.429Z","sequence":31655,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BBD1B]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:14.435Z","sequence":31656,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a6b3281c-ac26-4b0f-a2e6-3e7804f489be, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:15.128Z","sequence":31657,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:15.128Z","sequence":31658,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB1000A8B] for gateway [0008004B5135]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:15.134Z","sequence":31659,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:15.134Z","sequence":31660,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:15.137Z","sequence":31661,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-27a37850-bdaa-4d0d-bf0b-ac00e8694e89, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:15.339Z","sequence":31662,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF866FA1E6A4C5A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"929c11b871478dff","parentId":"731762bf5186ba81","traceId":"00000000000000006954afb602a2bfa8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:15.357Z","sequence":31663,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF866FA1E6A4C5A, resource-version: a5115044-5505-44a5-a325-bb6fcb524c8c]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"929c11b871478dff","parentId":"731762bf5186ba81","traceId":"00000000000000006954afb602a2bfa8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:15.363Z","sequence":31664,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF866FA1E6A4C5A, resource-version: 99e1a6a8-7a6b-4ee9-ad00-dc7bd1ec26a1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"929c11b871478dff","parentId":"731762bf5186ba81","traceId":"00000000000000006954afb602a2bfa8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:15.461Z","sequence":31665,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:15.461Z","sequence":31666,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB1000A61] for gateway [0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:15.467Z","sequence":31667,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:15.467Z","sequence":31668,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:15.471Z","sequence":31669,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b6a4cb5e-1200-4e5e-8ed9-d48941e823dc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:15.929Z","sequence":31670,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:15.929Z","sequence":31671,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A08] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:15.936Z","sequence":31672,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:15.936Z","sequence":31673,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:15.942Z","sequence":31674,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2fde629d-1ea3-4a5f-9244-1d9ed8b8dc31, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:16.416Z","sequence":31675,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:16.416Z","sequence":31676,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-5605A170D749]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:16.427Z","sequence":31677,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-795b4fee-b107-4ae6-b2f0-30b79713033c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:16.557Z","sequence":31678,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:16.557Z","sequence":31679,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 5605A170D749]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:16.564Z","sequence":31680,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5fb35fe5-a50d-4083-9074-20a00cfe16ee, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:16.568Z","sequence":31681,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:16.569Z","sequence":31682,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF866FA1E6A4C5A] for gateway [5605A170D749]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:16.591Z","sequence":31683,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:16.591Z","sequence":31684,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:17.196Z","sequence":31685,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-70effca7-a4d0-4a49-9499-dcf3fdd6a866, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:17.685Z","sequence":31686,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:17.685Z","sequence":31687,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AED] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:17.713Z","sequence":31688,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:17.713Z","sequence":31689,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:17.725Z","sequence":31690,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3bd67f45-2399-4a3a-a232-c4100f1cc290, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:18.297Z","sequence":31691,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFD3052B27C7BD7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"731f09cf48cdbb46","parentId":"cf087060d304f293","traceId":"0000000000000000bac57cffa735d9b3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:18.318Z","sequence":31692,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFD3052B27C7BD7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"731f09cf48cdbb46","parentId":"cf087060d304f293","traceId":"0000000000000000bac57cffa735d9b3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:19.154Z","sequence":31693,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 1DE81336A9A7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4c3ad0f9908fd198","parentId":"5728fae3edb5462e","traceId":"0000000000000000014125fce5aeccd1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:19.179Z","sequence":31694,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 1DE81336A9A7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4c3ad0f9908fd198","parentId":"5728fae3edb5462e","traceId":"0000000000000000014125fce5aeccd1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:20.264Z","sequence":31695,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFC3A244B6EEA9F]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c15d3161cf7740cb","parentId":"47fde942c0f369fa","traceId":"00000000000000000c9911d90c7c8dac","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:20.281Z","sequence":31696,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFC3A244B6EEA9F]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c15d3161cf7740cb","parentId":"47fde942c0f369fa","traceId":"00000000000000000c9911d90c7c8dac","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:20.445Z","sequence":31697,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 71A5FC721068]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"22a93b79107cdd85","parentId":"67db401b0ac8d822","traceId":"00000000000000000a9beefe864a0796","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:20.465Z","sequence":31698,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 71A5FC721068]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"22a93b79107cdd85","parentId":"67db401b0ac8d822","traceId":"00000000000000000a9beefe864a0796","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:20.962Z","sequence":31699,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 794D3E3A6AA2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5b990ae1a59534f3","parentId":"f5cc252929fca059","traceId":"00000000000000009a597ba1d4481a7f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:20.99Z","sequence":31700,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 794D3E3A6AA2, resource-version: 2b0e8adc-bd65-4ab4-ba08-679b544238ae]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5b990ae1a59534f3","parentId":"f5cc252929fca059","traceId":"00000000000000009a597ba1d4481a7f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:20.997Z","sequence":31701,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 794D3E3A6AA2, resource-version: a72e5553-f722-42d5-8c6e-32bff850c8f1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5b990ae1a59534f3","parentId":"f5cc252929fca059","traceId":"00000000000000009a597ba1d4481a7f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:21.001Z","sequence":31702,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 794D3E3A6AA2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"70a64b47683fe63f","parentId":"6e6e12bb75332ddd","traceId":"00000000000000009a597ba1d4481a7f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:21.067Z","sequence":31703,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF2E4790064DA30]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5d089c3e1524f45d","parentId":"e92c152b5239c79f","traceId":"0000000000000000cb6bb31e1a4e6300","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:21.117Z","sequence":31704,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF2E4790064DA30]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5d089c3e1524f45d","parentId":"e92c152b5239c79f","traceId":"0000000000000000cb6bb31e1a4e6300","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:21.246Z","sequence":31705,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 794D3E3A6AA2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"70a64b47683fe63f","parentId":"6e6e12bb75332ddd","traceId":"00000000000000009a597ba1d4481a7f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:21.649Z","sequence":31706,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191312]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f8cf6f7210d4e7fb","parentId":"056185b295fe96e9","traceId":"0000000000000000f113931bc5660f14","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:21.67Z","sequence":31707,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191312]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f8cf6f7210d4e7fb","parentId":"056185b295fe96e9","traceId":"0000000000000000f113931bc5660f14","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:21.8Z","sequence":31708,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF4E770FBC1BBA9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7425c100b39ab1d4","parentId":"2237388fadb988d8","traceId":"00000000000000009909265dd0e4bb9e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:21.844Z","sequence":31709,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF4E770FBC1BBA9, resource-version: b63e48ce-fe21-42a5-b3d4-255120ffdf3b]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7425c100b39ab1d4","parentId":"2237388fadb988d8","traceId":"00000000000000009909265dd0e4bb9e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:21.851Z","sequence":31710,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF4E770FBC1BBA9, resource-version: 0056545b-456d-4c4e-a4ed-0f1acf69b38a]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7425c100b39ab1d4","parentId":"2237388fadb988d8","traceId":"00000000000000009909265dd0e4bb9e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:21.87Z","sequence":31711,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af] wants to open a link [address: Source{address='registration/arkema/e0895be3-fba0-4aef-ac5d-ef4e37c3a21d', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:21.87Z","sequence":31712,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-12]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:21.87Z","sequence":31713,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@24db0dd3] for replies to [registration/arkema/e0895be3-fba0-4aef-ac5d-ef4e37c3a21d]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:21.872Z","sequence":31714,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af] wants to open a link [address: Target{address='registration/arkema', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:21.873Z","sequence":31715,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-13]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:21.873Z","sequence":31716,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:21.875Z","sequence":31717,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/arkema:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:21.875Z","sequence":31718,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: arkema, device-id: 0008004AE119]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:21.881Z","sequence":31719,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-16824dae-0b38-4770-85d3-0b8b67f6b9f1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:21.887Z","sequence":31720,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:21.887Z","sequence":31721,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: arkema]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:21.889Z","sequence":31722,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191317]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bfe1cda9ca897488","parentId":"99b41d8ac5a7e9f1","traceId":"000000000000000042a62910f189d9d7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:21.89Z","sequence":31723,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-f327c435-a941-4611-a66f-fab8e2c8a5b2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:21.937Z","sequence":31724,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191317, resource-version: 4ffdcc87-c1d7-4d15-8a4f-e9746f690b27]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bfe1cda9ca897488","parentId":"99b41d8ac5a7e9f1","traceId":"000000000000000042a62910f189d9d7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:21.943Z","sequence":31725,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191317, resource-version: f116cf10-5ed8-42b8-9f69-2d740b4d71b8]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bfe1cda9ca897488","parentId":"99b41d8ac5a7e9f1","traceId":"000000000000000042a62910f189d9d7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:21.947Z","sequence":31726,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191317]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d71dce4d2d97527f","parentId":"95c4b45d1e3a9f49","traceId":"000000000000000042a62910f189d9d7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:22.095Z","sequence":31727,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191317]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d71dce4d2d97527f","parentId":"95c4b45d1e3a9f49","traceId":"000000000000000042a62910f189d9d7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:22.637Z","sequence":31728,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFA4AC3FB435E38]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f9e9dd704ea0beb6","parentId":"dd24d64b98d8c888","traceId":"00000000000000004aaab07c5ea82c33","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:22.664Z","sequence":31729,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFA4AC3FB435E38, resource-version: 4cbc30de-1e7f-4f6e-bd92-25faa931e6e5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f9e9dd704ea0beb6","parentId":"dd24d64b98d8c888","traceId":"00000000000000004aaab07c5ea82c33","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:22.687Z","sequence":31730,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFA4AC3FB435E38, resource-version: d365f40b-e0d7-47e7-952b-60e0f6e03e92]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f9e9dd704ea0beb6","parentId":"dd24d64b98d8c888","traceId":"00000000000000004aaab07c5ea82c33","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:23.209Z","sequence":31731,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:23.209Z","sequence":31732,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-794D3E3A6AA2]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:23.209Z","sequence":31733,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:23.209Z","sequence":31734,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-794D3E3A6AA2]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:23.21Z","sequence":31735,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:23.21Z","sequence":31736,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-794D3E3A6AA2]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:23.229Z","sequence":31737,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-0d5c5775-1590-4a02-a32a-40a1048317eb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:23.232Z","sequence":31738,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-9ad0f243-11ad-4561-add8-f5bfdec1026e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:23.232Z","sequence":31739,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-1ae7ea02-67bc-46fa-ae54-199d266e531d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:23.531Z","sequence":31740,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF84659C2AC8897]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2bdac5e8a61357e4","parentId":"1cd832bb7b513557","traceId":"0000000000000000dd6f9dd87cec816b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:23.549Z","sequence":31741,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF84659C2AC8897]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2bdac5e8a61357e4","parentId":"1cd832bb7b513557","traceId":"0000000000000000dd6f9dd87cec816b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:23.607Z","sequence":31742,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:23.608Z","sequence":31743,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 794D3E3A6AA2]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:23.617Z","sequence":31744,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-eee3e186-9fe3-481a-b23b-fd8ef969f22a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:23.665Z","sequence":31745,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:23.666Z","sequence":31746,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF4E770FBC1BBA9] for gateway [794D3E3A6AA2]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:23.674Z","sequence":31747,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:23.674Z","sequence":31748,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:23.675Z","sequence":31749,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:23.675Z","sequence":31750,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF4E770FBC1BBA9] for gateway [794D3E3A6AA2]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:23.68Z","sequence":31751,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:23.68Z","sequence":31752,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF4E770FBC1BBA9] for gateway [794D3E3A6AA2]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:23.699Z","sequence":31753,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:23.699Z","sequence":31754,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:23.703Z","sequence":31755,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:23.703Z","sequence":31756,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:24.099Z","sequence":31757,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-04a02e10-8479-415a-a1d1-cf81af6a32c6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:24.233Z","sequence":31758,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191314]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2a7afe3746215111","parentId":"e303cc61d0abf91f","traceId":"0000000000000000da18e4838e4030b6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:24.256Z","sequence":31759,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191314]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2a7afe3746215111","parentId":"e303cc61d0abf91f","traceId":"0000000000000000da18e4838e4030b6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:24.448Z","sequence":31760,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2ac0fa49-f801-45fd-be3d-d38e21f49983, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:24.597Z","sequence":31761,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"retrieving device [tenant: integrationtest, device-id: 0EF4E770FBC1BBA9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e3d9d4fbe5b27203","parentId":"816d936963a329ec","traceId":"e5ea464b23831314798a3718c1af9def","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:24.799Z","sequence":31762,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-fe6ba0f4-7f66-48c2-94a4-0e5603dba455, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:24.8Z","sequence":31763,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:24.8Z","sequence":31764,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191317]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:24.81Z","sequence":31765,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-6a968e03-95bc-4b87-be86-f2a1403239e5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:24.83Z","sequence":31766,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191318]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b0f8d7e88efdd1ee","parentId":"5076516ed99493da","traceId":"0000000000000000647f063dcf473040","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:24.864Z","sequence":31767,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191318, resource-version: 456fa988-1433-44b2-b1fb-3aedfc5096ac]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b0f8d7e88efdd1ee","parentId":"5076516ed99493da","traceId":"0000000000000000647f063dcf473040","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:24.872Z","sequence":31768,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191318, resource-version: 14f7fd89-51df-4901-9ce4-ebf656b54fd8]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b0f8d7e88efdd1ee","parentId":"5076516ed99493da","traceId":"0000000000000000647f063dcf473040","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:24.875Z","sequence":31769,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191318]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"44af31369973bda0","parentId":"bc41e362f991ea8f","traceId":"0000000000000000647f063dcf473040","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:25.002Z","sequence":31770,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:25.003Z","sequence":31771,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFA4AC3FB435E38] for gateway [gateway_integrationtest_network_191317]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:25.004Z","sequence":31772,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:25.004Z","sequence":31773,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191317]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:25.009Z","sequence":31774,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7e7d96b4-b18e-4705-8a28-b161414afbbe, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:25.01Z","sequence":31775,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.5.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:25.01Z","sequence":31776,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:25.104Z","sequence":31777,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191318]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"44af31369973bda0","parentId":"bc41e362f991ea8f","traceId":"0000000000000000647f063dcf473040","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:25.431Z","sequence":31778,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d1695967-362c-4b5d-a32e-c63adec972f8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:25.437Z","sequence":31779,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:25.437Z","sequence":31780,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFA4AC3FB435E38] for gateway [gateway_integrationtest_network_191317]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:25.461Z","sequence":31781,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.5.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:25.461Z","sequence":31782,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:25.949Z","sequence":31783,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9a0ad9d7-435e-4698-8955-5352e6a00ac2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:26.026Z","sequence":31784,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0945641F4413]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ab2fc3aa40fa8e39","parentId":"58b17b7501c4090d","traceId":"0000000000000000192450fee095e5fb","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:26.055Z","sequence":31785,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0945641F4413, resource-version: 3f5cb6d0-56d6-4480-bc7f-1bb6ae47ba71]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ab2fc3aa40fa8e39","parentId":"58b17b7501c4090d","traceId":"0000000000000000192450fee095e5fb","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:26.067Z","sequence":31786,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0945641F4413, resource-version: 384040dc-4d22-497b-84d1-6ccc7381081f]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ab2fc3aa40fa8e39","parentId":"58b17b7501c4090d","traceId":"0000000000000000192450fee095e5fb","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:26.071Z","sequence":31787,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 0945641F4413]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fc16b543fb639e31","parentId":"2f9b1bf49c29ccf0","traceId":"0000000000000000192450fee095e5fb","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:26.363Z","sequence":31788,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 0945641F4413]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fc16b543fb639e31","parentId":"2f9b1bf49c29ccf0","traceId":"0000000000000000192450fee095e5fb","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:26.573Z","sequence":31789,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:26.574Z","sequence":31790,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A02] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:26.589Z","sequence":31791,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:26.589Z","sequence":31792,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:26.599Z","sequence":31793,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-37cb94c8-d6f3-466d-a880-6560cbdaae8c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:26.702Z","sequence":31794,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF36B130A2BB214]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3450a8ce61644bb8","parentId":"cf5b3eb812bd4e91","traceId":"0000000000000000801f9e29b83b3a09","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:26.75Z","sequence":31795,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF36B130A2BB214, resource-version: 70693111-7962-4ca4-9d5d-27407c4255b3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3450a8ce61644bb8","parentId":"cf5b3eb812bd4e91","traceId":"0000000000000000801f9e29b83b3a09","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:26.793Z","sequence":31796,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF36B130A2BB214, resource-version: 39a45e2d-61ce-41cf-911d-fb8274dee05d]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3450a8ce61644bb8","parentId":"cf5b3eb812bd4e91","traceId":"0000000000000000801f9e29b83b3a09","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:27.248Z","sequence":31797,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF5DB29F00FCD69]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e7a7e6978d0aaf99","parentId":"5e61f720eedb43d6","traceId":"000000000000000056b58b9b5dc76c37","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:27.311Z","sequence":31798,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF5DB29F00FCD69, resource-version: 4bbc0784-3159-46df-9100-97170c7f49e0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e7a7e6978d0aaf99","parentId":"5e61f720eedb43d6","traceId":"000000000000000056b58b9b5dc76c37","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:27.351Z","sequence":31799,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF5DB29F00FCD69, resource-version: c9de2582-8ba2-4ac2-9b6e-9d116b2a9f82]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e7a7e6978d0aaf99","parentId":"5e61f720eedb43d6","traceId":"000000000000000056b58b9b5dc76c37","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:27.788Z","sequence":31800,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF866FA1E6A4C5A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"69ae4de382b38b1c","parentId":"e0227176c66b5afd","traceId":"0000000000000000fda074482cf071ca","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:27.844Z","sequence":31801,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF866FA1E6A4C5A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"69ae4de382b38b1c","parentId":"e0227176c66b5afd","traceId":"0000000000000000fda074482cf071ca","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:27.969Z","sequence":31802,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:27.969Z","sequence":31803,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191318]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:27.997Z","sequence":31804,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-360eecf3-aa6f-4627-9436-7db522c79b5e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:28.133Z","sequence":31805,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:28.133Z","sequence":31806,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF36B130A2BB214] for gateway [gateway_integrationtest_network_191318]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:28.134Z","sequence":31807,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:28.134Z","sequence":31808,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191318]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:28.145Z","sequence":31809,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.5.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:28.145Z","sequence":31810,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:28.146Z","sequence":31811,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-eba7e720-367d-4569-9e02-da23f6672218, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:28.673Z","sequence":31812,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ffb4a252-7caf-4d9b-a64b-5d41864490f8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:28.674Z","sequence":31813,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:28.674Z","sequence":31814,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-0945641F4413]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:28.684Z","sequence":31815,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-4ce052a0-910f-4cae-9b05-040856834aba, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:28.805Z","sequence":31816,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:28.805Z","sequence":31817,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0945641F4413]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:28.81Z","sequence":31818,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c1779467-5041-4e05-bc7f-da04253ff852, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:28.814Z","sequence":31819,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:28.814Z","sequence":31820,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF5DB29F00FCD69] for gateway [0945641F4413]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:28.819Z","sequence":31821,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:28.82Z","sequence":31822,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:28.877Z","sequence":31823,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 5605A170D749]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"eb13408f5152c3ee","parentId":"749800ac8670ee04","traceId":"000000000000000062a0d3935e80dcbf","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:28.964Z","sequence":31824,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 5605A170D749]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"eb13408f5152c3ee","parentId":"749800ac8670ee04","traceId":"000000000000000062a0d3935e80dcbf","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:29.256Z","sequence":31825,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-dcfa5ef8-6294-4f18-afd5-46ad4e0177d8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:30.429Z","sequence":31826,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 60D90A6F7EFD]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bbd0d26cf41f0c9e","parentId":"d163d1ba6c68b664","traceId":"00000000000000009e99fbd4d2a2548c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:30.484Z","sequence":31827,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 60D90A6F7EFD, resource-version: 3aead312-36a5-443a-bc02-cf97150bd943]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bbd0d26cf41f0c9e","parentId":"d163d1ba6c68b664","traceId":"00000000000000009e99fbd4d2a2548c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:30.512Z","sequence":31828,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 60D90A6F7EFD, resource-version: c763b5ef-d8a0-4974-ad49-5f9cafde6508]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bbd0d26cf41f0c9e","parentId":"d163d1ba6c68b664","traceId":"00000000000000009e99fbd4d2a2548c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:30.517Z","sequence":31829,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 60D90A6F7EFD]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7b832e25401c3245","parentId":"1831014de5d735e8","traceId":"00000000000000009e99fbd4d2a2548c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:30.801Z","sequence":31830,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 60D90A6F7EFD]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7b832e25401c3245","parentId":"1831014de5d735e8","traceId":"00000000000000009e99fbd4d2a2548c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:31.868Z","sequence":31831,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF96AA5A885A3E4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6b0c8368dc042674","parentId":"947ea8afe4b1db78","traceId":"000000000000000087990c927f8b55f6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:31.892Z","sequence":31832,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF96AA5A885A3E4, resource-version: 98b46233-d6d9-4d5b-a43b-88bdfecb3887]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6b0c8368dc042674","parentId":"947ea8afe4b1db78","traceId":"000000000000000087990c927f8b55f6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:31.9Z","sequence":31833,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF96AA5A885A3E4, resource-version: f848b9ea-fe08-459f-a60d-400e678913a2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6b0c8368dc042674","parentId":"947ea8afe4b1db78","traceId":"000000000000000087990c927f8b55f6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:32.088Z","sequence":31834,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF36B130A2BB214]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ce3eb41384cd1bf5","parentId":"a6b0fa6c26d0dc26","traceId":"0000000000000000841f321349b3a880","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:32.148Z","sequence":31835,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF36B130A2BB214]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ce3eb41384cd1bf5","parentId":"a6b0fa6c26d0dc26","traceId":"0000000000000000841f321349b3a880","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:32.374Z","sequence":31836,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191318]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3f465d1e0046ba33","parentId":"bea5146503ebd10d","traceId":"000000000000000026ffd56be5584203","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:32.407Z","sequence":31837,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191318]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3f465d1e0046ba33","parentId":"bea5146503ebd10d","traceId":"000000000000000026ffd56be5584203","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:32.645Z","sequence":31838,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191321]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2be8f62d29390f5a","parentId":"97e25975383120d4","traceId":"000000000000000004ac1c503e7e69c4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:32.688Z","sequence":31839,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191321, resource-version: 97ace09a-653b-44a6-86b0-f06d42fd9b1d]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2be8f62d29390f5a","parentId":"97e25975383120d4","traceId":"000000000000000004ac1c503e7e69c4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:32.696Z","sequence":31840,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191321, resource-version: 083956bb-3515-4096-ae52-cab6441dc145]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2be8f62d29390f5a","parentId":"97e25975383120d4","traceId":"000000000000000004ac1c503e7e69c4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:32.701Z","sequence":31841,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191321]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9e37c89021f0ec61","parentId":"6edb871386c4a6aa","traceId":"000000000000000004ac1c503e7e69c4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:32.903Z","sequence":31842,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191321]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9e37c89021f0ec61","parentId":"6edb871386c4a6aa","traceId":"000000000000000004ac1c503e7e69c4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:32.956Z","sequence":31843,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:32.957Z","sequence":31844,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-60D90A6F7EFD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:32.966Z","sequence":31845,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-ad4f309d-fdb2-4245-8703-e02d3c30b30c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:33.087Z","sequence":31846,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:33.087Z","sequence":31847,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 60D90A6F7EFD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:33.093Z","sequence":31848,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0656a1f7-045a-40d9-a3af-17b0318cc8cf, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:33.097Z","sequence":31849,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:33.097Z","sequence":31850,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF96AA5A885A3E4] for gateway [60D90A6F7EFD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:33.103Z","sequence":31851,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.3.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:33.103Z","sequence":31852,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:33.319Z","sequence":31853,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-201a5126-d8fd-4af7-80e3-efe1d98cbffe, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:33.438Z","sequence":31854,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFD641D4E659576]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3c788b518bd33d7f","parentId":"d9efecd09b0e67e3","traceId":"000000000000000012a4a13e3b4d2b2f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:33.457Z","sequence":31855,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFD641D4E659576, resource-version: 5e090eaf-1c9b-4eb9-8ec1-0251444ca0bb]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3c788b518bd33d7f","parentId":"d9efecd09b0e67e3","traceId":"000000000000000012a4a13e3b4d2b2f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:33.465Z","sequence":31856,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFD641D4E659576, resource-version: 465774e4-20c2-4ec2-a3cd-f476347a44bd]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3c788b518bd33d7f","parentId":"d9efecd09b0e67e3","traceId":"000000000000000012a4a13e3b4d2b2f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:34.532Z","sequence":31857,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:34.532Z","sequence":31858,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191321]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:34.575Z","sequence":31859,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-c3b7cef7-a61b-42c6-94df-ea19d6e7b3c5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:34.713Z","sequence":31860,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:34.713Z","sequence":31861,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD641D4E659576] for gateway [gateway_integrationtest_network_191321]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:34.714Z","sequence":31862,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:34.714Z","sequence":31863,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191321]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:34.724Z","sequence":31864,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-da95d7ba-1e8e-4f37-901d-ee98c274cc16, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:34.724Z","sequence":31865,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:34.725Z","sequence":31866,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:35.048Z","sequence":31867,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-fc720aac-950b-4fd0-a0dc-cddea1c62595, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:38.862Z","sequence":31868,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFD641D4E659576]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9ef9c8dddc84b098","parentId":"7974f241af759cd9","traceId":"0000000000000000fecd088bf8a4529a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:38.907Z","sequence":31869,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFD641D4E659576]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9ef9c8dddc84b098","parentId":"7974f241af759cd9","traceId":"0000000000000000fecd088bf8a4529a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:39.037Z","sequence":31870,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191321]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e7775184bdf06953","parentId":"71d56b2763706440","traceId":"0000000000000000ca2003ebe8158ed4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:39.056Z","sequence":31871,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191321]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e7775184bdf06953","parentId":"71d56b2763706440","traceId":"0000000000000000ca2003ebe8158ed4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:39.183Z","sequence":31872,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191322]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"90cdf686c94d170e","parentId":"3d74a2f042a49373","traceId":"0000000000000000ccc346da95aa69be","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:39.201Z","sequence":31873,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191322, resource-version: 91f27c95-8c0c-4ff0-b2e7-19883414c39a]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"90cdf686c94d170e","parentId":"3d74a2f042a49373","traceId":"0000000000000000ccc346da95aa69be","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:39.207Z","sequence":31874,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191322, resource-version: da158589-ec1e-4465-93d9-f53c22dbaded]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"90cdf686c94d170e","parentId":"3d74a2f042a49373","traceId":"0000000000000000ccc346da95aa69be","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:39.21Z","sequence":31875,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191322]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d006c0b824034dbb","parentId":"20aee350127058c3","traceId":"0000000000000000ccc346da95aa69be","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:39.347Z","sequence":31876,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:39.347Z","sequence":31877,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: acta]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:39.348Z","sequence":31878,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191322]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d006c0b824034dbb","parentId":"20aee350127058c3","traceId":"0000000000000000ccc346da95aa69be","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:39.351Z","sequence":31879,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-978dea34-cae6-4cf4-a7df-0ff3d122de39, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:39.353Z","sequence":31880,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af] wants to open a link [address: Source{address='registration/acta/5d9480d3-bd23-43a8-93ff-e948e47b2363', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:39.353Z","sequence":31881,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-14]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:39.353Z","sequence":31882,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@5cee26bc] for replies to [registration/acta/5d9480d3-bd23-43a8-93ff-e948e47b2363]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:39.355Z","sequence":31883,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af] wants to open a link [address: Target{address='registration/acta', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:39.355Z","sequence":31884,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-15]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:39.355Z","sequence":31885,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:39.357Z","sequence":31886,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/acta:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:39.357Z","sequence":31887,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: acta, device-id: 3534383400470039] for gateway [0008004AAAA3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:39.363Z","sequence":31888,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.3.0\"\n },\n \"viaGroups\" : [ \"gateways_acta\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:39.363Z","sequence":31889,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_acta\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:39.366Z","sequence":31890,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ae44f15c-ecfd-4328-816a-69ce667d8f06, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:39.808Z","sequence":31891,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF6F93DB6255AC7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c9bde2f885065534","parentId":"ebc53e1a515e185b","traceId":"0000000000000000013018f26324b026","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:39.845Z","sequence":31892,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF6F93DB6255AC7, resource-version: 41f9efc1-0cc7-4734-9f0d-9af0b2572f87]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c9bde2f885065534","parentId":"ebc53e1a515e185b","traceId":"0000000000000000013018f26324b026","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:39.851Z","sequence":31893,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF6F93DB6255AC7, resource-version: 72e67b82-71a3-4058-9b01-0eb107c6e070]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c9bde2f885065534","parentId":"ebc53e1a515e185b","traceId":"0000000000000000013018f26324b026","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:40.588Z","sequence":31894,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:40.588Z","sequence":31895,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: shell]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:40.592Z","sequence":31896,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-506a6d40-f888-47f1-ba88-3f21e93a9aac, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:40.594Z","sequence":31897,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/shell:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:40.594Z","sequence":31898,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: shell, type: hashed-password, auth-id: auth-gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:40.651Z","sequence":31899,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-02c6feac-1f89-4ced-9242-75a8e9bff491, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:40.773Z","sequence":31900,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:40.773Z","sequence":31901,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000ACF] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:40.779Z","sequence":31902,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:40.779Z","sequence":31903,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:40.792Z","sequence":31904,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5455854c-6cb1-4598-b850-d91696584fd2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:40.917Z","sequence":31905,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:40.918Z","sequence":31906,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191322]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:40.929Z","sequence":31907,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-c2174fe6-605b-4850-bbb6-d76e3e9e662b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:41.052Z","sequence":31908,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:41.052Z","sequence":31909,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF6F93DB6255AC7] for gateway [gateway_integrationtest_network_191322]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:41.053Z","sequence":31910,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:41.053Z","sequence":31911,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191322]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:41.058Z","sequence":31912,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:41.058Z","sequence":31913,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:41.058Z","sequence":31914,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-81c47b70-4fe7-4b8a-8f7b-33eefc43210c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:41.407Z","sequence":31915,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6ed82cff-82a5-488a-be59-e37b4ce4d018, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:42.939Z","sequence":31916,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF5DB29F00FCD69]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7d34257d1d08811d","parentId":"3cb2a433de07128c","traceId":"0000000000000000d3764ed58d60587b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:42.959Z","sequence":31917,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF5DB29F00FCD69]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7d34257d1d08811d","parentId":"3cb2a433de07128c","traceId":"0000000000000000d3764ed58d60587b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:43.422Z","sequence":31918,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0945641F4413]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9e779ae91265b141","parentId":"cb00771c8906efc2","traceId":"00000000000000003e5136a70e87f490","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:43.452Z","sequence":31919,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0945641F4413]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9e779ae91265b141","parentId":"cb00771c8906efc2","traceId":"00000000000000003e5136a70e87f490","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:45.694Z","sequence":31920,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:45.694Z","sequence":31921,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BBC] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:45.701Z","sequence":31922,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:45.701Z","sequence":31923,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:45.709Z","sequence":31924,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e09b307b-30c5-4109-9e9c-ed6902f24b09, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:45.888Z","sequence":31925,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF96AA5A885A3E4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1c032e3c0014ad2d","parentId":"c9ddc27602c30cd7","traceId":"0000000000000000657820b09d1a83c2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:45.955Z","sequence":31926,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF96AA5A885A3E4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1c032e3c0014ad2d","parentId":"c9ddc27602c30cd7","traceId":"0000000000000000657820b09d1a83c2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:46.163Z","sequence":31927,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF6F93DB6255AC7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c307ce8d2c67ee87","parentId":"be9f1ee0b9bd9943","traceId":"0000000000000000cf21e4ddc13ea852","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:46.182Z","sequence":31928,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF6F93DB6255AC7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c307ce8d2c67ee87","parentId":"be9f1ee0b9bd9943","traceId":"0000000000000000cf21e4ddc13ea852","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:46.692Z","sequence":31929,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191322]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0b9bdfd797eaaa7a","parentId":"ce86cf877747c091","traceId":"0000000000000000c758b2fb8dad34f8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:46.766Z","sequence":31930,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191322]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0b9bdfd797eaaa7a","parentId":"ce86cf877747c091","traceId":"0000000000000000c758b2fb8dad34f8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:47.382Z","sequence":31931,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 60D90A6F7EFD]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fe63d6ee314047de","parentId":"a5e1fec2224d09e7","traceId":"0000000000000000830354546bf2f35c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:47.406Z","sequence":31932,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 60D90A6F7EFD]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fe63d6ee314047de","parentId":"a5e1fec2224d09e7","traceId":"0000000000000000830354546bf2f35c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:53.801Z","sequence":31933,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/conditionall:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:53.802Z","sequence":31934,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: conditionall, device-id: 70B3D57BB1000226] for gateway [0008004B512D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:53.848Z","sequence":31935,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_conditionall\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:53.849Z","sequence":31936,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_conditionall\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:53.852Z","sequence":31937,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-eed91aa7-59d9-4736-a7cf-7b0317125cc4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:54.999Z","sequence":31938,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client's [lora-adapter@HONO] access token has expired, closing connection","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:55.118Z","sequence":31939,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"initializing SASL authenticator","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:55.118Z","sequence":31940,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client provided an empty list of SASL mechanisms [hostname: null, state: PN_SASL_IDLE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:55.12Z","sequence":31941,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client wants to authenticate using SASL [mechanism: PLAIN, host: null, state: PN_SASL_STEP]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:55.121Z","sequence":31942,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"received authentication request [mechanism: PLAIN]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f05310173fb464b3","traceId":"a1464ecf12b004e8e3a14b13f1def8eb","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:55.121Z","sequence":31943,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"processing PLAIN authentication request [authzid: , authcid: lora-adapter@HONO, pwd: *****]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f05310173fb464b3","traceId":"a1464ecf12b004e8e3a14b13f1def8eb","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:55.121Z","sequence":31944,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"OpenSSL [available: false, supports KeyManagerFactory: false]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f05310173fb464b3","traceId":"a1464ecf12b004e8e3a14b13f1def8eb","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:55.121Z","sequence":31945,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"using JVM's default SSL engine","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f05310173fb464b3","traceId":"a1464ecf12b004e8e3a14b13f1def8eb","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:55.121Z","sequence":31946,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f05310173fb464b3","traceId":"a1464ecf12b004e8e3a14b13f1def8eb","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:55.121Z","sequence":31947,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f05310173fb464b3","traceId":"a1464ecf12b004e8e3a14b13f1def8eb","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:55.122Z","sequence":31948,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connecting to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f05310173fb464b3","traceId":"a1464ecf12b004e8e3a14b13f1def8eb","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:55.24Z","sequence":31949,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connected to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server], opening connection ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f05310173fb464b3","traceId":"a1464ecf12b004e8e3a14b13f1def8eb","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:55.244Z","sequence":31950,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connection to container [hono-auth-0.0.0.0:5671] at [amqps://aloxy-hono-service-auth:5671, role: Authentication Server] open","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f05310173fb464b3","traceId":"a1464ecf12b004e8e3a14b13f1def8eb","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:55.247Z","sequence":31951,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"opened receiver link to Authentication service, waiting for token ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f05310173fb464b3","traceId":"a1464ecf12b004e8e3a14b13f1def8eb","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:55.247Z","sequence":31952,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"successfully retrieved token from Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f05310173fb464b3","traceId":"a1464ecf12b004e8e3a14b13f1def8eb","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:55.247Z","sequence":31953,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"closing connection to Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f05310173fb464b3","traceId":"a1464ecf12b004e8e3a14b13f1def8eb","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:55.247Z","sequence":31954,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.EventBusAuthenticationService","level":"DEBUG","message":"received token [length: 969] in response to authentication request","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:55.248Z","sequence":31955,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.JjwtBasedAuthTokenValidator","level":"DEBUG","message":"using key [id: 984e3639028b1e7d0b7d97f8f3de6a82638af0ed7d06ce7d9e038a1c4c634169] to validate signature (alg: RS256]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:55.249Z","sequence":31956,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"authentication of client [authorization ID: lora-adapter@HONO] succeeded","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:55.249Z","sequence":31957,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"finishing SASL handshake with outcome PN_SASL_OK","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:55.25Z","sequence":31958,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"received connection request from client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:55.252Z","sequence":31959,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"processing open frame from client container [Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:55.252Z","sequence":31960,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"INFO","message":"client connected [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d, user: lora-adapter@HONO, token valid until: 2023-07-25T06:01:55Z]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:55.254Z","sequence":31961,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"opening new session with client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:58.852Z","sequence":31962,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] wants to open a link [address: Source{address='registration/shell/3c1dc02a-cd07-43be-b9c0-fce2db321e34', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:58.852Z","sequence":31963,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-0]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:58.853Z","sequence":31964,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@400706e2] for replies to [registration/shell/3c1dc02a-cd07-43be-b9c0-fce2db321e34]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:58.855Z","sequence":31965,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] wants to open a link [address: Target{address='registration/shell', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:58.855Z","sequence":31966,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-1]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:58.855Z","sequence":31967,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:58.859Z","sequence":31968,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:58.859Z","sequence":31969,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AB4] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:58.86Z","sequence":31970,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:58.86Z","sequence":31971,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:58.866Z","sequence":31972,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ce671b3c-11aa-43a1-bcae-c7bf78f8f771, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:58.868Z","sequence":31973,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:58.868Z","sequence":31974,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:01:58.876Z","sequence":31975,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-59d00a26-9ece-4314-8784-9319904b85bb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:02.028Z","sequence":31976,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:02.028Z","sequence":31977,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001E1] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:02.042Z","sequence":31978,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:02.042Z","sequence":31979,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:02.046Z","sequence":31980,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ea161e58-2c35-4050-9634-a59049863e89, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:02.161Z","sequence":31981,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:02.161Z","sequence":31982,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001E1] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:02.169Z","sequence":31983,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:02.169Z","sequence":31984,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:02.173Z","sequence":31985,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5bddf6f0-9bf4-4f99-923b-0b2c236a813d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:04.229Z","sequence":31986,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:04.229Z","sequence":31987,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:04.291Z","sequence":31988,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7ef0b006-6baa-4732-80ab-1829a76979d0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:07.315Z","sequence":31989,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:07.315Z","sequence":31990,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-178BB4CBC74F]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:07.329Z","sequence":31991,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-26349b14-81ba-4ae6-8c64-118f45b8aaf6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:10.75Z","sequence":31992,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:10.751Z","sequence":31993,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10008CF] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:10.757Z","sequence":31994,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:10.757Z","sequence":31995,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:10.765Z","sequence":31996,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-12365845-d0e6-40d8-885f-395f4ff15518, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:12.042Z","sequence":31997,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:12.042Z","sequence":31998,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: terega]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:12.045Z","sequence":31999,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-fcceefc8-d53f-4e8b-9e56-f8cd0d1d6145, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:12.049Z","sequence":32000,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/terega:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:12.049Z","sequence":32001,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: terega, type: hashed-password, auth-id: auth-gateway_terega_network_27]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:12.06Z","sequence":32002,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-38b45584-4bf9-427d-87a6-6e04e9ef8948, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:12.195Z","sequence":32003,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] wants to open a link [address: Source{address='registration/terega/e4b7d3c8-3a05-43a1-a293-b3dc5a1356f2', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:12.195Z","sequence":32004,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-2]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:12.195Z","sequence":32005,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@4546c987] for replies to [registration/terega/e4b7d3c8-3a05-43a1-a293-b3dc5a1356f2]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:12.197Z","sequence":32006,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] wants to open a link [address: Target{address='registration/terega', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:12.197Z","sequence":32007,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:12.198Z","sequence":32008,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:12.2Z","sequence":32009,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/terega:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:12.2Z","sequence":32010,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: terega, device-id: 70B3D57BB1000091] for gateway [gateway_terega_network_27]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:12.201Z","sequence":32011,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/terega:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:12.201Z","sequence":32012,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: terega, device-id: gateway_terega_network_27]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:12.205Z","sequence":32013,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_terega\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:12.205Z","sequence":32014,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_terega\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:12.206Z","sequence":32015,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-64a266ed-958a-4134-a5f7-c2c496be0318, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:12.209Z","sequence":32016,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a73a880a-fdcb-4650-b9ff-29748b42fe39, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:17.351Z","sequence":32017,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:17.352Z","sequence":32018,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019E0] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:17.369Z","sequence":32019,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:17.369Z","sequence":32020,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:17.379Z","sequence":32021,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a3075fb8-7af8-4e2a-9f7d-491ec1bd2903, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:17.877Z","sequence":32022,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:17.877Z","sequence":32023,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006A3] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:17.896Z","sequence":32024,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:17.897Z","sequence":32025,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:17.909Z","sequence":32026,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-67de889f-6956-4913-8f40-9dbf59743543, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:19.825Z","sequence":32027,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:19.826Z","sequence":32028,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100016B] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:19.838Z","sequence":32029,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:19.838Z","sequence":32030,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:19.842Z","sequence":32031,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-32247996-4dcb-46b0-93bd-7b8001313fe0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:19.883Z","sequence":32032,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:19.883Z","sequence":32033,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100016B] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:19.888Z","sequence":32034,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:19.89Z","sequence":32035,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:19.893Z","sequence":32036,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-27fdac07-8bc3-4567-82ef-c554f7c234f0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:22.477Z","sequence":32037,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:22.477Z","sequence":32038,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BBD1C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:22.487Z","sequence":32039,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-13daf373-aa94-4b74-86f7-71b93a86fbca, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:23.211Z","sequence":32040,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:23.211Z","sequence":32041,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B86] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:23.217Z","sequence":32042,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:23.217Z","sequence":32043,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:23.224Z","sequence":32044,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1bb79780-51b6-4345-b62a-ca84d832bb95, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:24.71Z","sequence":32045,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:24.71Z","sequence":32046,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: flint]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:24.75Z","sequence":32047,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-9defcee0-5907-4efb-bb7e-4a6b2aafd1f0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:24.752Z","sequence":32048,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/flint:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:24.752Z","sequence":32049,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: flint, type: hashed-password, auth-id: auth-flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:24.797Z","sequence":32050,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-f197b0f8-685a-436d-95a0-a8d9aeed0556, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:24.917Z","sequence":32051,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] wants to open a link [address: Source{address='registration/flint/149a9225-50d6-4dbc-b67f-c307e0d41b03', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:24.917Z","sequence":32052,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:24.917Z","sequence":32053,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@4eb033a] for replies to [registration/flint/149a9225-50d6-4dbc-b67f-c307e0d41b03]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:24.919Z","sequence":32054,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] wants to open a link [address: Target{address='registration/flint', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:24.919Z","sequence":32055,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-5]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:24.92Z","sequence":32056,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:24.922Z","sequence":32057,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:24.922Z","sequence":32058,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB100089A] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:24.923Z","sequence":32059,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:24.923Z","sequence":32060,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:24.935Z","sequence":32061,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b1c8211c-3ddf-4160-ad8f-ff56090cf073, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:24.939Z","sequence":32062,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:24.94Z","sequence":32063,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:24.944Z","sequence":32064,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ab788d9e-cc40-48b4-9e1f-b5e17d9c0ebb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:26.996Z","sequence":32065,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFE3D6D86020A2E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b516906287ffe4b5","parentId":"9f9336c4de82ca35","traceId":"000000000000000012dba9bebabdc9f3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:27.053Z","sequence":32066,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFE3D6D86020A2E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b516906287ffe4b5","parentId":"9f9336c4de82ca35","traceId":"000000000000000012dba9bebabdc9f3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:27.381Z","sequence":32067,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: B4623E92E7AB]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"66b40ecbedbb17d7","parentId":"c4121f1607fed108","traceId":"0000000000000000579bc813b60bf01d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:27.405Z","sequence":32068,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: B4623E92E7AB]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"66b40ecbedbb17d7","parentId":"c4121f1607fed108","traceId":"0000000000000000579bc813b60bf01d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:27.703Z","sequence":32069,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191323]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4e5bee1252de8772","parentId":"53b0c4a170564ba6","traceId":"0000000000000000b63cb1a5034be205","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:27.747Z","sequence":32070,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191323, resource-version: ccc728e7-2659-478a-adeb-4a6f66496657]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4e5bee1252de8772","parentId":"53b0c4a170564ba6","traceId":"0000000000000000b63cb1a5034be205","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:27.754Z","sequence":32071,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191323, resource-version: bb3be7ed-3f4b-453e-ac92-d8796437e40e]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4e5bee1252de8772","parentId":"53b0c4a170564ba6","traceId":"0000000000000000b63cb1a5034be205","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:27.758Z","sequence":32072,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191323]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"11bb1d4fd1a8df40","parentId":"2c7aa130dacdea37","traceId":"0000000000000000b63cb1a5034be205","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:27.892Z","sequence":32073,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191323]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"11bb1d4fd1a8df40","parentId":"2c7aa130dacdea37","traceId":"0000000000000000b63cb1a5034be205","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:28.501Z","sequence":32074,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFED118693CB539]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2a335531879c1b53","parentId":"5ba2726907cb2d97","traceId":"0000000000000000b0c6f2161f6d4f34","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:28.554Z","sequence":32075,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFED118693CB539, resource-version: 5ecf208a-cf77-4600-a954-22cc3af5e3ef]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2a335531879c1b53","parentId":"5ba2726907cb2d97","traceId":"0000000000000000b0c6f2161f6d4f34","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:28.561Z","sequence":32076,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFED118693CB539, resource-version: c9b43edd-cfdd-450a-9fa2-5e4ab816e72a]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2a335531879c1b53","parentId":"5ba2726907cb2d97","traceId":"0000000000000000b0c6f2161f6d4f34","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:28.859Z","sequence":32077,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:28.859Z","sequence":32078,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10008AB] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:28.865Z","sequence":32079,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:28.865Z","sequence":32080,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:28.871Z","sequence":32081,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-464b59e7-132e-46d1-9dc4-2aa976c60533, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:29.561Z","sequence":32082,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:29.561Z","sequence":32083,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100079F] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:29.567Z","sequence":32084,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:29.567Z","sequence":32085,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:29.573Z","sequence":32086,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-68dfe0a8-d1ba-4c71-8276-a95a6a97b7b3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:29.623Z","sequence":32087,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:29.623Z","sequence":32088,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191323]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:29.645Z","sequence":32089,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-88d1e902-1fef-4ddf-8d14-6436fad6efd8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:29.777Z","sequence":32090,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] wants to open a link [address: Source{address='registration/integrationtest/a56c8420-562a-4111-9f53-b2fb78bf2a36', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:29.777Z","sequence":32091,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-6]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:29.777Z","sequence":32092,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@42a49273] for replies to [registration/integrationtest/a56c8420-562a-4111-9f53-b2fb78bf2a36]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:29.78Z","sequence":32093,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] wants to open a link [address: Target{address='registration/integrationtest', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:29.78Z","sequence":32094,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-7]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:29.78Z","sequence":32095,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:29.782Z","sequence":32096,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:29.782Z","sequence":32097,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFED118693CB539] for gateway [gateway_integrationtest_network_191323]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:29.783Z","sequence":32098,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:29.783Z","sequence":32099,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191323]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:29.8Z","sequence":32100,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:29.8Z","sequence":32101,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:29.804Z","sequence":32102,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6ab1febc-5171-4308-b0de-09b55078aa93, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:30.166Z","sequence":32103,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0128d4e3-7751-4dda-b057-dd930c836f98, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:30.565Z","sequence":32104,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF4D79EFFCBBCAE]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7eb3d45caf363db2","parentId":"5d6ef089ffb2aed0","traceId":"0000000000000000a0695c96468eb590","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:30.596Z","sequence":32105,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF4D79EFFCBBCAE]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7eb3d45caf363db2","parentId":"5d6ef089ffb2aed0","traceId":"0000000000000000a0695c96468eb590","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:30.938Z","sequence":32106,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 178BB4CBC74F]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"86726ad887814f4a","parentId":"f8cae653094ccd41","traceId":"0000000000000000e144d95bd41c2a32","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:30.955Z","sequence":32107,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 178BB4CBC74F]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"86726ad887814f4a","parentId":"f8cae653094ccd41","traceId":"0000000000000000e144d95bd41c2a32","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:31.911Z","sequence":32108,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: BF3045DE36BD]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d3e04abc083e28ad","parentId":"71ebad1353b19fde","traceId":"0000000000000000744669553e14b2f3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:31.938Z","sequence":32109,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: BF3045DE36BD, resource-version: 4573267a-8251-45c8-9b2b-bd610e1a193d]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d3e04abc083e28ad","parentId":"71ebad1353b19fde","traceId":"0000000000000000744669553e14b2f3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:31.946Z","sequence":32110,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: BF3045DE36BD, resource-version: a41bf624-a36c-4c9a-913e-f2fdcd80c01f]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d3e04abc083e28ad","parentId":"71ebad1353b19fde","traceId":"0000000000000000744669553e14b2f3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:31.949Z","sequence":32111,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: BF3045DE36BD]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b687464bbf7ca989","parentId":"3e851a9bcb9b915e","traceId":"0000000000000000744669553e14b2f3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:32.077Z","sequence":32112,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: BF3045DE36BD]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b687464bbf7ca989","parentId":"3e851a9bcb9b915e","traceId":"0000000000000000744669553e14b2f3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:32.642Z","sequence":32113,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF0B010C5E90BBD]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ae38f7b080f774ec","parentId":"907bbecb0c27dd90","traceId":"000000000000000058573cc68bc8846e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:32.661Z","sequence":32114,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF0B010C5E90BBD, resource-version: 7409b4dc-81f8-49f7-9f3b-d1039ffbb96c]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ae38f7b080f774ec","parentId":"907bbecb0c27dd90","traceId":"000000000000000058573cc68bc8846e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:32.693Z","sequence":32115,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF0B010C5E90BBD, resource-version: 6fd87dd2-6535-401c-9211-bb5be8171b29]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ae38f7b080f774ec","parentId":"907bbecb0c27dd90","traceId":"000000000000000058573cc68bc8846e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:33.738Z","sequence":32116,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:33.738Z","sequence":32117,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-BF3045DE36BD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:33.75Z","sequence":32118,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-26dd8b2c-f579-454e-8ed1-1bee0352a9fd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:33.873Z","sequence":32119,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:33.873Z","sequence":32120,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: BF3045DE36BD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:33.879Z","sequence":32121,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-fce20a0a-7782-4aa1-9bae-acc0439ad627, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:33.883Z","sequence":32122,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:33.883Z","sequence":32123,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF0B010C5E90BBD] for gateway [BF3045DE36BD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:33.888Z","sequence":32124,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:33.888Z","sequence":32125,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:34.129Z","sequence":32126,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2a8eae2e-c638-406d-bb6a-c45b04f9cd87, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:34.441Z","sequence":32127,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:34.442Z","sequence":32128,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 0008004C80F4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:34.449Z","sequence":32129,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-bf6acd4a-fbfa-4aa8-ab71-448896924278, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:35.071Z","sequence":32130,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF4E770FBC1BBA9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f152aa45a7c6fc7e","parentId":"09848797bfc1de15","traceId":"000000000000000074f2ec8f451234f6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:35.109Z","sequence":32131,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF4E770FBC1BBA9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f152aa45a7c6fc7e","parentId":"09848797bfc1de15","traceId":"000000000000000074f2ec8f451234f6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:35.276Z","sequence":32132,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:35.276Z","sequence":32133,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000ADA] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:35.302Z","sequence":32134,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:35.302Z","sequence":32135,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:35.309Z","sequence":32136,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8c344310-9d39-4167-a2dc-c2f9f7f9c256, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:35.417Z","sequence":32137,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 794D3E3A6AA2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c8f911fe45db159f","parentId":"ea51dab598f1faf0","traceId":"00000000000000005ff6d22842319f75","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:35.487Z","sequence":32138,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 794D3E3A6AA2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c8f911fe45db159f","parentId":"ea51dab598f1faf0","traceId":"00000000000000005ff6d22842319f75","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:35.821Z","sequence":32139,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191325]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"641fd3655884ffd4","parentId":"cee36d5fd7f055f0","traceId":"00000000000000009c32874e33ee1f3c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:35.844Z","sequence":32140,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191325, resource-version: 6c847ce8-bb39-4989-b90e-eb2d3eda0229]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"641fd3655884ffd4","parentId":"cee36d5fd7f055f0","traceId":"00000000000000009c32874e33ee1f3c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:35.855Z","sequence":32141,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191325, resource-version: 8b4f55f9-47c0-4169-ae98-8e7c576429d6]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"641fd3655884ffd4","parentId":"cee36d5fd7f055f0","traceId":"00000000000000009c32874e33ee1f3c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:35.858Z","sequence":32142,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191325]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"755de7ac7a83fb2f","parentId":"b875bd1905514950","traceId":"00000000000000009c32874e33ee1f3c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:35.994Z","sequence":32143,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191325]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"755de7ac7a83fb2f","parentId":"b875bd1905514950","traceId":"00000000000000009c32874e33ee1f3c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:36.51Z","sequence":32144,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFAAF05001260FA]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c15017b7e0f224c6","parentId":"d2aaa65e2c220a56","traceId":"0000000000000000105cb8269fe40256","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:36.548Z","sequence":32145,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFAAF05001260FA, resource-version: 5c3b6b4e-5eb9-4c2a-9ae1-3667ac671724]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c15017b7e0f224c6","parentId":"d2aaa65e2c220a56","traceId":"0000000000000000105cb8269fe40256","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:36.556Z","sequence":32146,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFAAF05001260FA, resource-version: 9b3fc6a8-0272-47ab-b798-83b26b073831]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c15017b7e0f224c6","parentId":"d2aaa65e2c220a56","traceId":"0000000000000000105cb8269fe40256","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:37.622Z","sequence":32147,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:37.622Z","sequence":32148,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191325]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:37.649Z","sequence":32149,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-4ab6b12b-ee64-4320-8a6a-429627dd56d4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:38.061Z","sequence":32150,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:38.061Z","sequence":32151,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFAAF05001260FA] for gateway [gateway_integrationtest_network_191325]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:38.062Z","sequence":32152,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:38.062Z","sequence":32153,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191325]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:38.067Z","sequence":32154,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:38.067Z","sequence":32155,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:38.068Z","sequence":32156,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f4c297e6-6acc-4ce6-bdc7-70cd3bd6c8d8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:38.087Z","sequence":32157,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:38.088Z","sequence":32158,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFAAF05001260FA] for gateway [gateway_integrationtest_network_191325]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:38.096Z","sequence":32159,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:38.096Z","sequence":32160,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:38.25Z","sequence":32161,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ea247b53-b8bf-4baf-89a6-706fa7fd1711, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:38.418Z","sequence":32162,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c30fedab-a5fa-44e6-855d-c88a856c0f96, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:38.419Z","sequence":32163,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:38.419Z","sequence":32164,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFAAF05001260FA] for gateway [gateway_integrationtest_network_191325]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:38.42Z","sequence":32165,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:38.42Z","sequence":32166,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100079E] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:38.427Z","sequence":32167,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:38.427Z","sequence":32168,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:38.427Z","sequence":32169,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:38.427Z","sequence":32170,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:38.434Z","sequence":32171,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-fb359443-6b06-4635-8fce-c20e4b1dde48, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:38.482Z","sequence":32172,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"retrieving device [tenant: integrationtest, device-id: 0EFAAF05001260FA]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0e019216abe11d82","parentId":"dba3a09c5898e5f9","traceId":"0d27637687a9729e60e3b2e7316e22e1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:38.762Z","sequence":32173,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9a0d326e-1531-4e8d-a061-9fa8c5315a50, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:43.271Z","sequence":32174,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFED118693CB539]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"85c5d223859b3bf6","parentId":"a53020448ced03d7","traceId":"00000000000000004fff083ae8e86263","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:43.298Z","sequence":32175,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFED118693CB539]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"85c5d223859b3bf6","parentId":"a53020448ced03d7","traceId":"00000000000000004fff083ae8e86263","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:43.496Z","sequence":32176,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191323]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e9317640da97fb68","parentId":"590234d76263386f","traceId":"0000000000000000dac6dc5e843bc9c0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:43.566Z","sequence":32177,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191323]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e9317640da97fb68","parentId":"590234d76263386f","traceId":"0000000000000000dac6dc5e843bc9c0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:45.998Z","sequence":32178,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF0B010C5E90BBD]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"769c4378ee15f5ce","parentId":"1f308760b6ff703b","traceId":"000000000000000047797e317f98d3b4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:46.065Z","sequence":32179,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF0B010C5E90BBD]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"769c4378ee15f5ce","parentId":"1f308760b6ff703b","traceId":"000000000000000047797e317f98d3b4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:46.371Z","sequence":32180,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: BF3045DE36BD]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"63781c1607401560","parentId":"e111d5e62df52353","traceId":"00000000000000008bb3bcd42e0e44ab","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:46.505Z","sequence":32181,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: BF3045DE36BD]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"63781c1607401560","parentId":"e111d5e62df52353","traceId":"00000000000000008bb3bcd42e0e44ab","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:50.579Z","sequence":32182,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFAAF05001260FA]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9951b1c3094bd840","parentId":"60fb922483709701","traceId":"000000000000000071372c598c3352a9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:50.6Z","sequence":32183,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFAAF05001260FA]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9951b1c3094bd840","parentId":"60fb922483709701","traceId":"000000000000000071372c598c3352a9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:50.951Z","sequence":32184,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af] wants to open a link [address: Source{address='registration/oiltanking/4d326728-db06-4ed8-a3fd-5ccd80db2991', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:50.951Z","sequence":32185,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-16]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:50.952Z","sequence":32186,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@1d9db567] for replies to [registration/oiltanking/4d326728-db06-4ed8-a3fd-5ccd80db2991]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:50.957Z","sequence":32187,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af] wants to open a link [address: Target{address='registration/oiltanking', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:50.959Z","sequence":32188,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-17]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:50.96Z","sequence":32189,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:50.965Z","sequence":32190,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oiltanking:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:50.966Z","sequence":32191,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oiltanking, device-id: 0008004BB60F]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:50.975Z","sequence":32192,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191325]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"421641d6264d63e1","parentId":"45032df2a91fd4ab","traceId":"000000000000000088ed48be6b0b659f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:50.994Z","sequence":32193,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5cbc7122-3f60-4e4e-92ab-f31e45f1b492, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:50.999Z","sequence":32194,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:51Z","sequence":32195,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oiltanking]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:51.005Z","sequence":32196,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-6c7fc919-3764-448b-86aa-767be310eee5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:51.009Z","sequence":32197,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191325]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"421641d6264d63e1","parentId":"45032df2a91fd4ab","traceId":"000000000000000088ed48be6b0b659f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:55.842Z","sequence":32198,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:55.842Z","sequence":32199,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB100088D] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:55.85Z","sequence":32200,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:55.85Z","sequence":32201,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:02:55.855Z","sequence":32202,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c0c293a4-cc69-40cd-a9a0-5c3b2b87715d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:03:00.512Z","sequence":32203,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:03:00.512Z","sequence":32204,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000516] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:03:00.547Z","sequence":32205,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:03:00.547Z","sequence":32206,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:03:00.596Z","sequence":32207,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-12a50e02-0d60-4d9d-ad8a-546779d822d0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:03:04.139Z","sequence":32208,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191326]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b3450f744aeee90e","parentId":"42dfb26de78ffdee","traceId":"00000000000000008a87339e6eaafcb9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:03:04.158Z","sequence":32209,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191326, resource-version: e095207c-d672-4562-86a3-3b0bb4ec80b1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b3450f744aeee90e","parentId":"42dfb26de78ffdee","traceId":"00000000000000008a87339e6eaafcb9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:03:04.165Z","sequence":32210,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191326, resource-version: cfec3d71-2d56-4a9d-ac1f-16d9f81307d3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b3450f744aeee90e","parentId":"42dfb26de78ffdee","traceId":"00000000000000008a87339e6eaafcb9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:03:04.169Z","sequence":32211,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191326]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"aee1d66488b091f7","parentId":"59ad9b4ced8bdfbf","traceId":"00000000000000008a87339e6eaafcb9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:03:04.34Z","sequence":32212,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191326]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"aee1d66488b091f7","parentId":"59ad9b4ced8bdfbf","traceId":"00000000000000008a87339e6eaafcb9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:03:05.305Z","sequence":32213,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF32239BC38A1D0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"885b331a3f219e06","parentId":"ddbdc95736d8e59f","traceId":"000000000000000020bd48bd382c942f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:03:05.342Z","sequence":32214,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF32239BC38A1D0, resource-version: fab0fe6c-3e08-4ce3-bfbe-67dbc465f7e6]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"885b331a3f219e06","parentId":"ddbdc95736d8e59f","traceId":"000000000000000020bd48bd382c942f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:03:05.348Z","sequence":32215,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF32239BC38A1D0, resource-version: a88cadc6-264b-4b8c-9061-ec73f88ee174]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"885b331a3f219e06","parentId":"ddbdc95736d8e59f","traceId":"000000000000000020bd48bd382c942f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:03:13.782Z","sequence":32216,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:03:13.783Z","sequence":32217,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001FD] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:03:13.791Z","sequence":32218,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:03:13.791Z","sequence":32219,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:03:13.803Z","sequence":32220,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-120b77b1-0240-4eca-a5ac-f2b84f16d80e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:03:13.826Z","sequence":32221,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:03:13.826Z","sequence":32222,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001FD] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:03:13.837Z","sequence":32223,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:03:13.837Z","sequence":32224,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:03:13.84Z","sequence":32225,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c6545378-8e75-4098-a6b8-814b70ff293c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:03:16.764Z","sequence":32226,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:03:16.764Z","sequence":32227,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019D0] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:03:16.788Z","sequence":32228,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:03:16.788Z","sequence":32229,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:03:16.844Z","sequence":32230,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9a5ce10b-db11-4c46-8a99-0b3ce4e8f1c3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:03:25.562Z","sequence":32231,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af] wants to open a link [address: Source{address='registration/aloxy/12d9d241-42c3-4222-b6eb-c5f02229cb81', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:03:25.562Z","sequence":32232,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-18]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:03:25.562Z","sequence":32233,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@2480aa6f] for replies to [registration/aloxy/12d9d241-42c3-4222-b6eb-c5f02229cb81]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:03:25.564Z","sequence":32234,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af] wants to open a link [address: Target{address='registration/aloxy', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:03:25.565Z","sequence":32235,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-19]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:03:25.569Z","sequence":32236,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:03:25.571Z","sequence":32237,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/aloxy:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:03:25.571Z","sequence":32238,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: aloxy, device-id: 0008004A8F68]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:03:25.604Z","sequence":32239,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-bbb29d3b-7258-4fd8-90d8-588a64843ae0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:03:25.607Z","sequence":32240,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:03:25.607Z","sequence":32241,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: aloxy]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:03:25.61Z","sequence":32242,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-d2cc421e-95a2-497a-a303-a79880f8f335, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:03:25.875Z","sequence":32243,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:03:25.875Z","sequence":32244,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB1000A7F] for gateway [0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:03:25.899Z","sequence":32245,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:03:25.899Z","sequence":32246,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:03:25.903Z","sequence":32247,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-306ccbba-b7f7-4062-8cd9-cf00c4c0a2ee, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:03:26.279Z","sequence":32248,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:03:26.279Z","sequence":32249,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019EC] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:03:26.295Z","sequence":32250,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:03:26.295Z","sequence":32251,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:03:26.304Z","sequence":32252,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-17ce1d30-9157-476c-9ca6-f147b01d8ff1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:03:35.618Z","sequence":32253,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:03:35.618Z","sequence":32254,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000168] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:03:35.649Z","sequence":32255,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:03:35.649Z","sequence":32256,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:03:35.652Z","sequence":32257,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4cdf5027-44d2-4a2f-af9e-90bafa0bc2b5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:03:35.762Z","sequence":32258,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:03:35.763Z","sequence":32259,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000168] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:03:35.789Z","sequence":32260,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:03:35.789Z","sequence":32261,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:03:35.794Z","sequence":32262,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3645d005-4072-4764-a191-ba6227b31d86, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:03:38.685Z","sequence":32263,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:03:38.685Z","sequence":32264,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006C2] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:03:38.696Z","sequence":32265,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:03:38.696Z","sequence":32266,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:03:38.75Z","sequence":32267,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ac004219-323a-4d14-95e8-d4d1cb575647, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:03:39.464Z","sequence":32268,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:03:39.464Z","sequence":32269,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006C4] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:03:39.469Z","sequence":32270,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:03:39.469Z","sequence":32271,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:03:39.475Z","sequence":32272,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4005b8c3-073d-46e9-9289-15125ae66e1b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:03:40.554Z","sequence":32273,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:03:40.554Z","sequence":32274,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001EA] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:03:40.559Z","sequence":32275,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:03:40.559Z","sequence":32276,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:03:40.562Z","sequence":32277,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-aa7bc226-59d0-44d3-ae0a-960a84f45fed, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:03:40.589Z","sequence":32278,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:03:40.589Z","sequence":32279,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001EA] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:03:40.595Z","sequence":32280,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:03:40.596Z","sequence":32281,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:03:40.601Z","sequence":32282,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a0353b55-2185-46b8-8592-acceee9d0469, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:03:40.774Z","sequence":32283,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF32239BC38A1D0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6f5f9a5cbb090283","parentId":"7121ebb464eee1ac","traceId":"00000000000000005c588554903aff04","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:03:40.842Z","sequence":32284,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF32239BC38A1D0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6f5f9a5cbb090283","parentId":"7121ebb464eee1ac","traceId":"00000000000000005c588554903aff04","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:03:43.362Z","sequence":32285,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:03:43.362Z","sequence":32286,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oci]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:03:43.365Z","sequence":32287,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-b1d5bd40-679f-40ba-ab8e-dc71c5357f12, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:03:43.491Z","sequence":32288,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:03:43.492Z","sequence":32289,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BB613]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:03:43.501Z","sequence":32290,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4b37d035-4779-4dbb-8b5d-9b213bef023a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:03:43.505Z","sequence":32291,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:03:43.505Z","sequence":32292,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: lanxess]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:03:43.509Z","sequence":32293,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-93f03220-38f2-49ec-9743-d282fb2ed74d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:03:47.297Z","sequence":32294,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:03:47.297Z","sequence":32295,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB100052B] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:03:47.304Z","sequence":32296,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:03:47.304Z","sequence":32297,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:03:47.31Z","sequence":32298,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ea82b23e-cf2b-400c-8729-a7835b39dcdb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:03:52.041Z","sequence":32299,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:03:52.041Z","sequence":32300,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019D9] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:03:52.047Z","sequence":32301,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:03:52.047Z","sequence":32302,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:03:52.055Z","sequence":32303,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9199b28e-fb6a-4e3f-9438-5acc3ee8dcad, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:03:52.605Z","sequence":32304,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:03:52.605Z","sequence":32305,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10009CD] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:03:52.613Z","sequence":32306,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:03:52.613Z","sequence":32307,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:03:52.623Z","sequence":32308,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d5959d9f-0a8e-4f15-83da-8388e7bf42e2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:00.591Z","sequence":32309,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:00.591Z","sequence":32310,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BC5] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:00.597Z","sequence":32311,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:00.598Z","sequence":32312,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:00.607Z","sequence":32313,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-bd04dfb1-a8dd-4fe2-8361-db62d9d83664, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:05.062Z","sequence":32314,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:05.062Z","sequence":32315,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001EF] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:05.069Z","sequence":32316,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:05.069Z","sequence":32317,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:05.074Z","sequence":32318,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-415248c7-7ec3-42ce-b064-e82df0dba3fd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:05.193Z","sequence":32319,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:05.193Z","sequence":32320,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001EF] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:05.205Z","sequence":32321,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:05.205Z","sequence":32322,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:05.209Z","sequence":32323,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8d0509a3-f8e8-48e4-a002-a8d475c6dad6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:09.358Z","sequence":32324,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:09.358Z","sequence":32325,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AC3] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:09.393Z","sequence":32326,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:09.393Z","sequence":32327,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:09.448Z","sequence":32328,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7bfd9627-56ae-425e-8e17-903b73885b83, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:10.271Z","sequence":32329,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:10.271Z","sequence":32330,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BBE] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:10.277Z","sequence":32331,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:10.277Z","sequence":32332,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:10.283Z","sequence":32333,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8c3423a8-92d1-49ce-aad2-b7b8b60eebe0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:10.965Z","sequence":32334,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:10.965Z","sequence":32335,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000218] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:10.975Z","sequence":32336,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:10.976Z","sequence":32337,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:10.979Z","sequence":32338,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d772b82c-968d-4092-97a5-425c05808d9d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:11.489Z","sequence":32339,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191326]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9d152d31a7d1866f","parentId":"747f5a8cad3a09a8","traceId":"00000000000000003928e297bc2320a4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:11.557Z","sequence":32340,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191326]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9d152d31a7d1866f","parentId":"747f5a8cad3a09a8","traceId":"00000000000000003928e297bc2320a4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:11.935Z","sequence":32341,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191327]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"851388cca0168e6a","parentId":"6232837efbd96097","traceId":"0000000000000000b629ff2186bcf1d7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:12.014Z","sequence":32342,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191327, resource-version: ee8bdfff-4bf6-4c43-984b-9be2e8386140]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"851388cca0168e6a","parentId":"6232837efbd96097","traceId":"0000000000000000b629ff2186bcf1d7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:12.047Z","sequence":32343,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191327, resource-version: 784a5ba3-1a67-4e4a-81f1-84fdbebee6d4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"851388cca0168e6a","parentId":"6232837efbd96097","traceId":"0000000000000000b629ff2186bcf1d7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:12.05Z","sequence":32344,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191327]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"aca6a1e13dcf11a0","parentId":"7c18a82ccc299fe7","traceId":"0000000000000000b629ff2186bcf1d7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:12.237Z","sequence":32345,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191327]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"aca6a1e13dcf11a0","parentId":"7c18a82ccc299fe7","traceId":"0000000000000000b629ff2186bcf1d7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:12.864Z","sequence":32346,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF6EEA7EB844979]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3dfac6ba4dcff619","parentId":"0b4a747fe5432bb1","traceId":"000000000000000010e74b890deff9cb","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:12.89Z","sequence":32347,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF6EEA7EB844979, resource-version: 5b6cdb26-8daa-4804-8f72-83e37f8918a1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3dfac6ba4dcff619","parentId":"0b4a747fe5432bb1","traceId":"000000000000000010e74b890deff9cb","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:12.947Z","sequence":32348,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF6EEA7EB844979, resource-version: 3ee7cc14-3fb2-43e8-9a39-4e9bed96a484]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3dfac6ba4dcff619","parentId":"0b4a747fe5432bb1","traceId":"000000000000000010e74b890deff9cb","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:12.949Z","sequence":32349,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:12.95Z","sequence":32350,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006C8] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:12.997Z","sequence":32351,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:12.997Z","sequence":32352,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:13.021Z","sequence":32353,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d09ffe9e-36de-4cef-b6b7-5d3570f2b8bb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:14.085Z","sequence":32354,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:14.085Z","sequence":32355,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:14.089Z","sequence":32356,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-aada5971-560d-497e-9354-d6cc36ba4819, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:14.092Z","sequence":32357,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:14.092Z","sequence":32358,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191327]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:14.102Z","sequence":32359,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-7cdbf549-4eb9-4354-813d-eeb1c9fbf9a9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:14.224Z","sequence":32360,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:14.224Z","sequence":32361,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF6EEA7EB844979] for gateway [gateway_integrationtest_network_191327]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:14.225Z","sequence":32362,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:14.225Z","sequence":32363,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191327]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:14.231Z","sequence":32364,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:14.231Z","sequence":32365,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:14.232Z","sequence":32366,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-184e4ba1-0ef9-46d6-9f94-cdc0bd9a118f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:14.646Z","sequence":32367,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-daf2503d-0734-40ca-90a2-1838ab8088a7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:15.12Z","sequence":32368,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:15.12Z","sequence":32369,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: dow]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:15.129Z","sequence":32370,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-171d8b34-e9b7-4c06-a6d9-677fff1c3f13, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:15.133Z","sequence":32371,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/dow:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:15.133Z","sequence":32372,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: dow, type: hashed-password, auth-id: auth-gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:15.177Z","sequence":32373,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-e4ed81bb-ba72-4738-8545-8e9bc68dd007, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:15.55Z","sequence":32374,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] wants to open a link [address: Source{address='registration/dow/2a35e6d0-aeeb-4c48-98a5-0dfc65134be9', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:15.55Z","sequence":32375,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-8]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:15.55Z","sequence":32376,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@3320d6d4] for replies to [registration/dow/2a35e6d0-aeeb-4c48-98a5-0dfc65134be9]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:15.556Z","sequence":32377,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] wants to open a link [address: Target{address='registration/dow', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:15.557Z","sequence":32378,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-9]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:15.557Z","sequence":32379,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:15.561Z","sequence":32380,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:15.561Z","sequence":32381,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 70B3D57BB1001233] for gateway [gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:15.561Z","sequence":32382,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:15.561Z","sequence":32383,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:15.589Z","sequence":32384,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:15.589Z","sequence":32385,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:15.589Z","sequence":32386,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a467edaa-671b-43a2-a30c-0805b4bccdbc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:15.604Z","sequence":32387,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-42d84c3e-4988-431f-a39e-b75ba5519486, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:17.397Z","sequence":32388,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:17.397Z","sequence":32389,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019D1] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:17.404Z","sequence":32390,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:17.404Z","sequence":32391,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:17.41Z","sequence":32392,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5f3e2dd7-2043-41c6-a68c-9e060b30d3ef, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:17.683Z","sequence":32393,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/terega:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:17.683Z","sequence":32394,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: terega, device-id: 3938383700410024] for gateway [gateway_terega_network_27]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:17.689Z","sequence":32395,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_terega\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:17.689Z","sequence":32396,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_terega\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:17.692Z","sequence":32397,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c699ba6a-8011-470a-a8d3-c0dcbbf4436e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:20.081Z","sequence":32398,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:20.082Z","sequence":32399,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AD8] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:20.091Z","sequence":32400,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:20.092Z","sequence":32401,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:20.101Z","sequence":32402,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-89948374-854b-46f6-bf32-cf372ee2baad, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:22.609Z","sequence":32403,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:22.609Z","sequence":32404,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BEC] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:22.615Z","sequence":32405,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:22.615Z","sequence":32406,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:22.621Z","sequence":32407,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c8385732-f609-406a-bff5-9860fda0af15, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:23.622Z","sequence":32408,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:23.623Z","sequence":32409,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006BE] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:23.629Z","sequence":32410,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:23.629Z","sequence":32411,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:23.636Z","sequence":32412,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-bf01a6cf-3bd7-44b0-925c-01c36ff10073, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:24.116Z","sequence":32413,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/acta:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:24.116Z","sequence":32414,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: acta, device-id: 0008004AAAA3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:24.123Z","sequence":32415,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4829ae1a-0f19-4d2e-9950-9c63cb213f5a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:27.379Z","sequence":32416,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:27.38Z","sequence":32417,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:27.385Z","sequence":32418,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-341cecb4-f1c8-4394-a876-a0b269de669f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:27.481Z","sequence":32419,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF6EEA7EB844979]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5c390a18fe9ce204","parentId":"9cbbd31d206dd3ff","traceId":"0000000000000000f8cc0f11bf77b9f9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:27.498Z","sequence":32420,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF6EEA7EB844979]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5c390a18fe9ce204","parentId":"9cbbd31d206dd3ff","traceId":"0000000000000000f8cc0f11bf77b9f9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:27.666Z","sequence":32421,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191327]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a652ba23d92be1d2","parentId":"80962288dd01ad23","traceId":"0000000000000000bf5ff8bc8d730275","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:27.682Z","sequence":32422,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191327]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a652ba23d92be1d2","parentId":"80962288dd01ad23","traceId":"0000000000000000bf5ff8bc8d730275","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:28.125Z","sequence":32423,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 9780AA41F905]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"044f322c70f6d706","parentId":"5fea05b44662430b","traceId":"0000000000000000e33a8f65694292b1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:28.142Z","sequence":32424,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 9780AA41F905, resource-version: f212ee45-28ca-45bc-b079-28c15e7e7fe3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"044f322c70f6d706","parentId":"5fea05b44662430b","traceId":"0000000000000000e33a8f65694292b1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:28.148Z","sequence":32425,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 9780AA41F905, resource-version: 36af22b2-428f-4c61-9714-376dc8c48f46]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"044f322c70f6d706","parentId":"5fea05b44662430b","traceId":"0000000000000000e33a8f65694292b1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:28.151Z","sequence":32426,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 9780AA41F905]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"dfe4953105d32316","parentId":"b6b3cdbbc754eb62","traceId":"0000000000000000e33a8f65694292b1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:28.273Z","sequence":32427,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 9780AA41F905]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"dfe4953105d32316","parentId":"b6b3cdbbc754eb62","traceId":"0000000000000000e33a8f65694292b1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:28.981Z","sequence":32428,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF0F06FF8D9AED9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6c48d3e41ade2dad","parentId":"46f9bd94039fc082","traceId":"00000000000000004184a64833ca3823","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:29.002Z","sequence":32429,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF0F06FF8D9AED9, resource-version: 1b66acb7-0d85-4c09-b355-a96b818aee49]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6c48d3e41ade2dad","parentId":"46f9bd94039fc082","traceId":"00000000000000004184a64833ca3823","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:29.008Z","sequence":32430,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF0F06FF8D9AED9, resource-version: 9410e74f-37e0-465e-a621-c92f82bd04f6]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6c48d3e41ade2dad","parentId":"46f9bd94039fc082","traceId":"00000000000000004184a64833ca3823","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:30.064Z","sequence":32431,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:30.064Z","sequence":32432,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:30.067Z","sequence":32433,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-668e4b6f-7fa8-445f-ab21-7aaa49e6fc5c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:30.072Z","sequence":32434,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:30.072Z","sequence":32435,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-9780AA41F905]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:30.083Z","sequence":32436,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-d434be8d-711c-46d4-807c-5bd81750c345, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:30.212Z","sequence":32437,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:30.213Z","sequence":32438,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 9780AA41F905]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:30.218Z","sequence":32439,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-42e2c25e-0d90-464b-80fc-4593766700f1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:30.223Z","sequence":32440,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:30.223Z","sequence":32441,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF0F06FF8D9AED9] for gateway [9780AA41F905]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:30.229Z","sequence":32442,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:30.229Z","sequence":32443,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:30.398Z","sequence":32444,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-43d44cae-c1f5-4bab-b711-b35702a32e82, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:32.399Z","sequence":32445,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:32.399Z","sequence":32446,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019BE] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:32.405Z","sequence":32447,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:32.406Z","sequence":32448,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:32.412Z","sequence":32449,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9eab1b44-dfa9-40f1-8ec6-af7faeb90669, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:32.539Z","sequence":32450,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:32.539Z","sequence":32451,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000208] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:32.551Z","sequence":32452,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:32.551Z","sequence":32453,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:32.555Z","sequence":32454,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-24034837-3192-4a72-855b-40d33a2a01bf, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:32.702Z","sequence":32455,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:32.702Z","sequence":32456,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000208] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:32.708Z","sequence":32457,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:32.708Z","sequence":32458,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:32.713Z","sequence":32459,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a4eaf75e-7acc-46c0-a41e-f3fca7ef434e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:35.771Z","sequence":32460,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af] wants to open a link [address: Source{address='registration/repsol/26c8df8b-b961-497c-b5e5-1af33243f5f9', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:35.771Z","sequence":32461,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-20]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:35.771Z","sequence":32462,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@4cf46ba0] for replies to [registration/repsol/26c8df8b-b961-497c-b5e5-1af33243f5f9]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:35.773Z","sequence":32463,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af] wants to open a link [address: Target{address='registration/repsol', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:35.774Z","sequence":32464,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-21]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:35.774Z","sequence":32465,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:35.776Z","sequence":32466,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/repsol:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:35.776Z","sequence":32467,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: repsol, device-id: 0008004A37FF]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:35.783Z","sequence":32468,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d3f5b6ab-9d7b-4537-ab78-a50887870f00, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:35.786Z","sequence":32469,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:35.786Z","sequence":32470,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: repsol]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:35.789Z","sequence":32471,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-cd616f93-a88b-43b9-9cf4-d7cd07f79313, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:37.23Z","sequence":32472,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:37.23Z","sequence":32473,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10007BA] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:37.237Z","sequence":32474,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:37.237Z","sequence":32475,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:37.24Z","sequence":32476,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3606969b-5699-4489-b927-21703e08a5aa, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:42.275Z","sequence":32477,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF0F06FF8D9AED9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8be287386e673a8a","parentId":"7938473c9ddacebd","traceId":"0000000000000000731fba2b63127aca","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:42.294Z","sequence":32478,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF0F06FF8D9AED9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8be287386e673a8a","parentId":"7938473c9ddacebd","traceId":"0000000000000000731fba2b63127aca","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:42.571Z","sequence":32479,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 9780AA41F905]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cc584a7207ad078c","parentId":"0571a1444bf83c28","traceId":"00000000000000002f3fe4f92c9f43b9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:42.589Z","sequence":32480,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 9780AA41F905]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cc584a7207ad078c","parentId":"0571a1444bf83c28","traceId":"00000000000000002f3fe4f92c9f43b9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:43.152Z","sequence":32481,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: BEBD330D3141]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cf880e1c4d9da942","parentId":"6cfb173a1f66fdd6","traceId":"0000000000000000b1ebed71cf2027c6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:43.172Z","sequence":32482,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: BEBD330D3141, resource-version: f34b555d-67da-480e-9bbe-630ab027ede5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cf880e1c4d9da942","parentId":"6cfb173a1f66fdd6","traceId":"0000000000000000b1ebed71cf2027c6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:43.178Z","sequence":32483,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: BEBD330D3141, resource-version: 6d7bfefd-bba7-45eb-ae8a-0bee590bebac]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cf880e1c4d9da942","parentId":"6cfb173a1f66fdd6","traceId":"0000000000000000b1ebed71cf2027c6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:43.181Z","sequence":32484,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: BEBD330D3141]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b2803ef5bdf7c382","parentId":"48ac971cba3e93b3","traceId":"0000000000000000b1ebed71cf2027c6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:43.345Z","sequence":32485,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: BEBD330D3141]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b2803ef5bdf7c382","parentId":"48ac971cba3e93b3","traceId":"0000000000000000b1ebed71cf2027c6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:43.978Z","sequence":32486,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF228D1AD637B51]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"25dbddad14ecc74d","parentId":"74f27aeeb8c7d7cf","traceId":"000000000000000007f6e01cbfea12d8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:44.013Z","sequence":32487,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF228D1AD637B51, resource-version: fe60a7ec-d159-4403-89ba-5a0432db290f]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"25dbddad14ecc74d","parentId":"74f27aeeb8c7d7cf","traceId":"000000000000000007f6e01cbfea12d8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:44.02Z","sequence":32488,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF228D1AD637B51, resource-version: 17d014cc-9263-41db-bb77-fb7740215c68]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"25dbddad14ecc74d","parentId":"74f27aeeb8c7d7cf","traceId":"000000000000000007f6e01cbfea12d8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:44.663Z","sequence":32489,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:44.663Z","sequence":32490,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: shell]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:44.668Z","sequence":32491,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-a53a045e-9f8a-47b4-805a-e3b5a2fa5dc2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:44.67Z","sequence":32492,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/shell:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:44.67Z","sequence":32493,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: shell, type: hashed-password, auth-id: auth-gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:44.691Z","sequence":32494,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-a2891d69-e784-43de-8ef3-89b37b455787, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:44.814Z","sequence":32495,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:44.814Z","sequence":32496,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006E2] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:44.821Z","sequence":32497,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.8.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:44.821Z","sequence":32498,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:44.827Z","sequence":32499,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e73c674b-5a9a-4640-af5f-69dd3915a8db, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:45.081Z","sequence":32500,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:45.081Z","sequence":32501,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-BEBD330D3141]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:45.091Z","sequence":32502,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-a7dad84f-7e5d-4c08-8604-155b29ba88e2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:45.14Z","sequence":32503,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:45.14Z","sequence":32504,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019D4] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:45.145Z","sequence":32505,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:45.145Z","sequence":32506,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:45.151Z","sequence":32507,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-37fe45fd-24b4-458f-b05e-813ad72d2e3e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:45.222Z","sequence":32508,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:45.223Z","sequence":32509,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: BEBD330D3141]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:45.238Z","sequence":32510,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8dd558e3-888e-4698-9f0e-cfa565ad6b9b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:45.247Z","sequence":32511,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:45.247Z","sequence":32512,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF228D1AD637B51] for gateway [BEBD330D3141]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:45.271Z","sequence":32513,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:45.271Z","sequence":32514,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:45.7Z","sequence":32515,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-aa3d6e70-6079-4c92-822a-29dca0b16121, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:49.009Z","sequence":32516,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:49.009Z","sequence":32517,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001F3] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:49.029Z","sequence":32518,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:49.029Z","sequence":32519,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:49.037Z","sequence":32520,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ddc2d3a2-b1d0-46f3-9b60-a77916a463ac, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:49.04Z","sequence":32521,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:49.041Z","sequence":32522,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001F3] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:49.056Z","sequence":32523,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:49.056Z","sequence":32524,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:49.065Z","sequence":32525,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1382f797-1ea0-4705-8d9d-8c8483864556, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:50.209Z","sequence":32526,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF228D1AD637B51]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e68c1e88837cfd61","parentId":"7c52f52b59683539","traceId":"00000000000000002337ad9e03d87eb3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:50.235Z","sequence":32527,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF228D1AD637B51]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e68c1e88837cfd61","parentId":"7c52f52b59683539","traceId":"00000000000000002337ad9e03d87eb3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:50.689Z","sequence":32528,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: BEBD330D3141]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3caff7db45978538","parentId":"155ede22be05bef9","traceId":"00000000000000008f4add42680487d8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:50.711Z","sequence":32529,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: BEBD330D3141]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3caff7db45978538","parentId":"155ede22be05bef9","traceId":"00000000000000008f4add42680487d8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:50.96Z","sequence":32530,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:50.961Z","sequence":32531,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019B9] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:50.972Z","sequence":32532,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:50.975Z","sequence":32533,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:50.982Z","sequence":32534,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-834f7b65-696b-4137-8938-eee3217f079e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:52.993Z","sequence":32535,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/repsol:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:52.993Z","sequence":32536,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: repsol, device-id: 70B3D57BB1000187] for gateway [0008004A37FF]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:53.005Z","sequence":32537,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:0.4.1\"\n },\n \"viaGroups\" : [ \"gateways_repsol\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:53.005Z","sequence":32538,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_repsol\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:53.016Z","sequence":32539,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ea53b02c-8e08-4a17-80aa-5488b8866526, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:56.336Z","sequence":32540,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:56.336Z","sequence":32541,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C20] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:56.342Z","sequence":32542,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:56.342Z","sequence":32543,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:56.348Z","sequence":32544,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2c5a981a-a691-463e-99fd-199938f66e36, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:57.779Z","sequence":32545,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:57.779Z","sequence":32546,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C34] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:57.791Z","sequence":32547,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:57.791Z","sequence":32548,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:04:57.797Z","sequence":32549,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-fab0aae1-15fe-4254-ab92-eba0196982e3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:00.135Z","sequence":32550,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:00.135Z","sequence":32551,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 0008004B51D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:00.141Z","sequence":32552,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-94c53c6c-81d7-476a-ac4e-a6a6caad73e3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:00.144Z","sequence":32553,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:00.144Z","sequence":32554,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: dow]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:00.147Z","sequence":32555,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-b3a14535-62f7-4257-a16e-3141ceee3c55, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:07.238Z","sequence":32556,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:07.238Z","sequence":32557,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006DC] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:07.244Z","sequence":32558,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:07.244Z","sequence":32559,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:07.25Z","sequence":32560,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-310c9fa7-2177-4aae-bfcc-951283b67f85, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:17.005Z","sequence":32561,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:17.005Z","sequence":32562,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BC3] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:17.023Z","sequence":32563,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:17.028Z","sequence":32564,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:17.035Z","sequence":32565,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1c96f8be-0c94-4161-b837-b171d6a48a41, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:28.641Z","sequence":32566,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:28.641Z","sequence":32567,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 70B3D57BB100127E] for gateway [gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:28.646Z","sequence":32568,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:28.646Z","sequence":32569,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:28.651Z","sequence":32570,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-497ff042-672b-4c5e-9972-d065990a5b59, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:31.779Z","sequence":32571,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:31.779Z","sequence":32572,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001E9] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:31.785Z","sequence":32573,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:31.785Z","sequence":32574,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:31.789Z","sequence":32575,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2d365adc-1bc1-4bfa-a625-8f289e8dd529, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:31.833Z","sequence":32576,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:31.833Z","sequence":32577,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001E9] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:31.84Z","sequence":32578,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:31.84Z","sequence":32579,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:31.844Z","sequence":32580,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-36871d67-81ed-4fdc-8c7e-8a8af8ddd0ad, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:33.721Z","sequence":32581,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/conditionall:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:33.721Z","sequence":32582,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: conditionall, device-id: 0008004B512D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:33.727Z","sequence":32583,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d8805f35-9635-4b02-8482-02f01d61d155, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:33.73Z","sequence":32584,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:33.73Z","sequence":32585,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: conditionall]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:33.733Z","sequence":32586,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-78881cef-c80d-48e4-a1bb-76fa413e8bf3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:37.421Z","sequence":32587,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:37.421Z","sequence":32588,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BB8] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:37.427Z","sequence":32589,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:37.427Z","sequence":32590,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:37.433Z","sequence":32591,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-48316f6d-aec3-4c48-85ac-1011b87cd6ab, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:40Z","sequence":32592,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client's [lora-adapter@HONO] access token has expired, closing connection","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:40Z","sequence":32593,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client's [command-router@HONO] access token has expired, closing connection","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:40.001Z","sequence":32594,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client's [lora-adapter@HONO] access token has expired, closing connection","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:40.09Z","sequence":32595,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"initializing SASL authenticator","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:40.091Z","sequence":32596,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client provided an empty list of SASL mechanisms [hostname: null, state: PN_SASL_IDLE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:40.093Z","sequence":32597,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client wants to authenticate using SASL [mechanism: PLAIN, host: null, state: PN_SASL_STEP]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:40.093Z","sequence":32598,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"received authentication request [mechanism: PLAIN]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"85655a2e760d1466","traceId":"116f3121c2d2565dae8e78eaeee33a7d","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:40.093Z","sequence":32599,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"processing PLAIN authentication request [authzid: , authcid: command-router@HONO, pwd: *****]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"85655a2e760d1466","traceId":"116f3121c2d2565dae8e78eaeee33a7d","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:40.093Z","sequence":32600,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"OpenSSL [available: false, supports KeyManagerFactory: false]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"85655a2e760d1466","traceId":"116f3121c2d2565dae8e78eaeee33a7d","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:40.093Z","sequence":32601,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"using JVM's default SSL engine","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"85655a2e760d1466","traceId":"116f3121c2d2565dae8e78eaeee33a7d","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:40.093Z","sequence":32602,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"85655a2e760d1466","traceId":"116f3121c2d2565dae8e78eaeee33a7d","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:40.093Z","sequence":32603,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"85655a2e760d1466","traceId":"116f3121c2d2565dae8e78eaeee33a7d","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:40.093Z","sequence":32604,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connecting to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"85655a2e760d1466","traceId":"116f3121c2d2565dae8e78eaeee33a7d","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:40.187Z","sequence":32605,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connected to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server], opening connection ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"85655a2e760d1466","traceId":"116f3121c2d2565dae8e78eaeee33a7d","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:40.189Z","sequence":32606,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connection to container [hono-auth-0.0.0.0:5671] at [amqps://aloxy-hono-service-auth:5671, role: Authentication Server] open","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"85655a2e760d1466","traceId":"116f3121c2d2565dae8e78eaeee33a7d","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:40.191Z","sequence":32607,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"opened receiver link to Authentication service, waiting for token ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"85655a2e760d1466","traceId":"116f3121c2d2565dae8e78eaeee33a7d","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:40.191Z","sequence":32608,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"successfully retrieved token from Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"85655a2e760d1466","traceId":"116f3121c2d2565dae8e78eaeee33a7d","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:40.191Z","sequence":32609,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"closing connection to Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"85655a2e760d1466","traceId":"116f3121c2d2565dae8e78eaeee33a7d","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:40.204Z","sequence":32610,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.EventBusAuthenticationService","level":"DEBUG","message":"received token [length: 696] in response to authentication request","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:40.204Z","sequence":32611,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.JjwtBasedAuthTokenValidator","level":"DEBUG","message":"using key [id: 984e3639028b1e7d0b7d97f8f3de6a82638af0ed7d06ce7d9e038a1c4c634169] to validate signature (alg: RS256]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:40.205Z","sequence":32612,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"authentication of client [authorization ID: command-router@HONO] succeeded","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:40.205Z","sequence":32613,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"finishing SASL handshake with outcome PN_SASL_OK","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:40.205Z","sequence":32614,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"received connection request from client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:40.205Z","sequence":32615,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"initializing SASL authenticator","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:40.206Z","sequence":32616,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client provided an empty list of SASL mechanisms [hostname: null, state: PN_SASL_IDLE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:40.207Z","sequence":32617,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"processing open frame from client container [Hono service-command-router-Device Registration-6b43a4ef-0980-4edd-b8fb-ab7a8b085811]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:40.207Z","sequence":32618,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"INFO","message":"client connected [container: Hono service-command-router-Device Registration-6b43a4ef-0980-4edd-b8fb-ab7a8b085811, user: command-router@HONO, token valid until: 2023-07-25T06:05:40Z]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:40.209Z","sequence":32619,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"opening new session with client [container: Hono service-command-router-Device Registration-6b43a4ef-0980-4edd-b8fb-ab7a8b085811]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:40.212Z","sequence":32620,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"initializing SASL authenticator","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:40.212Z","sequence":32621,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client provided an empty list of SASL mechanisms [hostname: null, state: PN_SASL_IDLE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:40.213Z","sequence":32622,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client wants to authenticate using SASL [mechanism: PLAIN, host: null, state: PN_SASL_STEP]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:40.213Z","sequence":32623,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"received authentication request [mechanism: PLAIN]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1b47d8d5cbbd832e","traceId":"874a556294a99de17673576404946913","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:40.213Z","sequence":32624,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"processing PLAIN authentication request [authzid: , authcid: lora-adapter@HONO, pwd: *****]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1b47d8d5cbbd832e","traceId":"874a556294a99de17673576404946913","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:40.213Z","sequence":32625,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"OpenSSL [available: false, supports KeyManagerFactory: false]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1b47d8d5cbbd832e","traceId":"874a556294a99de17673576404946913","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:40.213Z","sequence":32626,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"using JVM's default SSL engine","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1b47d8d5cbbd832e","traceId":"874a556294a99de17673576404946913","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:40.213Z","sequence":32627,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1b47d8d5cbbd832e","traceId":"874a556294a99de17673576404946913","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:40.213Z","sequence":32628,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1b47d8d5cbbd832e","traceId":"874a556294a99de17673576404946913","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:40.213Z","sequence":32629,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connecting to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1b47d8d5cbbd832e","traceId":"874a556294a99de17673576404946913","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:40.22Z","sequence":32630,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client wants to authenticate using SASL [mechanism: PLAIN, host: null, state: PN_SASL_STEP]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:40.221Z","sequence":32631,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"received authentication request [mechanism: PLAIN]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4a6b31700f8a5941","traceId":"b4e522f4ecf05e40389eaf8a28e92883","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:40.221Z","sequence":32632,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:40.221Z","sequence":32633,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000ADD] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:40.221Z","sequence":32634,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"processing PLAIN authentication request [authzid: , authcid: lora-adapter@HONO, pwd: *****]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4a6b31700f8a5941","traceId":"b4e522f4ecf05e40389eaf8a28e92883","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:40.221Z","sequence":32635,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"OpenSSL [available: false, supports KeyManagerFactory: false]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4a6b31700f8a5941","traceId":"b4e522f4ecf05e40389eaf8a28e92883","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:40.222Z","sequence":32636,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"using JVM's default SSL engine","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4a6b31700f8a5941","traceId":"b4e522f4ecf05e40389eaf8a28e92883","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:40.222Z","sequence":32637,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4a6b31700f8a5941","traceId":"b4e522f4ecf05e40389eaf8a28e92883","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:40.222Z","sequence":32638,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4a6b31700f8a5941","traceId":"b4e522f4ecf05e40389eaf8a28e92883","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:40.222Z","sequence":32639,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connecting to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4a6b31700f8a5941","traceId":"b4e522f4ecf05e40389eaf8a28e92883","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:40.251Z","sequence":32640,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:40.251Z","sequence":32641,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:40.281Z","sequence":32642,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-71c21f9a-0f24-40fb-8b54-b700b331ed6b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:40.315Z","sequence":32643,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connected to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server], opening connection ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4a6b31700f8a5941","traceId":"b4e522f4ecf05e40389eaf8a28e92883","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:40.316Z","sequence":32644,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connection to container [hono-auth-0.0.0.0:5671] at [amqps://aloxy-hono-service-auth:5671, role: Authentication Server] open","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4a6b31700f8a5941","traceId":"b4e522f4ecf05e40389eaf8a28e92883","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:40.319Z","sequence":32645,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"opened receiver link to Authentication service, waiting for token ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4a6b31700f8a5941","traceId":"b4e522f4ecf05e40389eaf8a28e92883","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:40.319Z","sequence":32646,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"successfully retrieved token from Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4a6b31700f8a5941","traceId":"b4e522f4ecf05e40389eaf8a28e92883","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:40.319Z","sequence":32647,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"closing connection to Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4a6b31700f8a5941","traceId":"b4e522f4ecf05e40389eaf8a28e92883","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:40.319Z","sequence":32648,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.EventBusAuthenticationService","level":"DEBUG","message":"received token [length: 969] in response to authentication request","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:40.319Z","sequence":32649,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.JjwtBasedAuthTokenValidator","level":"DEBUG","message":"using key [id: 984e3639028b1e7d0b7d97f8f3de6a82638af0ed7d06ce7d9e038a1c4c634169] to validate signature (alg: RS256]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:40.32Z","sequence":32650,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"authentication of client [authorization ID: lora-adapter@HONO] succeeded","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:40.32Z","sequence":32651,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"finishing SASL handshake with outcome PN_SASL_OK","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:40.32Z","sequence":32652,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"received connection request from client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:40.322Z","sequence":32653,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"processing open frame from client container [Hono adapter-lora-Tenant-995cc45f-23b2-488f-a5d9-0b18c4ae6c62]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:40.322Z","sequence":32654,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"INFO","message":"client connected [container: Hono adapter-lora-Tenant-995cc45f-23b2-488f-a5d9-0b18c4ae6c62, user: lora-adapter@HONO, token valid until: 2023-07-25T06:05:40Z]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:40.324Z","sequence":32655,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"opening new session with client [container: Hono adapter-lora-Tenant-995cc45f-23b2-488f-a5d9-0b18c4ae6c62]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:40.329Z","sequence":32656,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connected to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server], opening connection ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1b47d8d5cbbd832e","traceId":"874a556294a99de17673576404946913","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:40.331Z","sequence":32657,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connection to container [hono-auth-0.0.0.0:5671] at [amqps://aloxy-hono-service-auth:5671, role: Authentication Server] open","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1b47d8d5cbbd832e","traceId":"874a556294a99de17673576404946913","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:40.333Z","sequence":32658,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"opened receiver link to Authentication service, waiting for token ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1b47d8d5cbbd832e","traceId":"874a556294a99de17673576404946913","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:40.334Z","sequence":32659,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"successfully retrieved token from Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1b47d8d5cbbd832e","traceId":"874a556294a99de17673576404946913","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:40.334Z","sequence":32660,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"closing connection to Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1b47d8d5cbbd832e","traceId":"874a556294a99de17673576404946913","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:40.334Z","sequence":32661,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.EventBusAuthenticationService","level":"DEBUG","message":"received token [length: 969] in response to authentication request","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:40.335Z","sequence":32662,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.JjwtBasedAuthTokenValidator","level":"DEBUG","message":"using key [id: 984e3639028b1e7d0b7d97f8f3de6a82638af0ed7d06ce7d9e038a1c4c634169] to validate signature (alg: RS256]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:40.335Z","sequence":32663,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"authentication of client [authorization ID: lora-adapter@HONO] succeeded","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:40.335Z","sequence":32664,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"finishing SASL handshake with outcome PN_SASL_OK","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:40.335Z","sequence":32665,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"received connection request from client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:40.337Z","sequence":32666,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"processing open frame from client container [Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:40.337Z","sequence":32667,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"INFO","message":"client connected [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6, user: lora-adapter@HONO, token valid until: 2023-07-25T06:05:40Z]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:40.339Z","sequence":32668,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"opening new session with client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:41Z","sequence":32669,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client's [mqtt-adapter@HONO] access token has expired, closing connection","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:41.001Z","sequence":32670,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client's [command-router@HONO] access token has expired, closing connection","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:41.002Z","sequence":32671,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client's [mqtt-adapter@HONO] access token has expired, closing connection","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:41.097Z","sequence":32672,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"initializing SASL authenticator","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:41.097Z","sequence":32673,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client provided an empty list of SASL mechanisms [hostname: null, state: PN_SASL_IDLE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:41.097Z","sequence":32674,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"initializing SASL authenticator","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:41.098Z","sequence":32675,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client provided an empty list of SASL mechanisms [hostname: null, state: PN_SASL_IDLE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:41.099Z","sequence":32676,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client wants to authenticate using SASL [mechanism: PLAIN, host: null, state: PN_SASL_STEP]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:41.099Z","sequence":32677,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"received authentication request [mechanism: PLAIN]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"73408c113beeaf53","traceId":"4d6d9b2d1fba096d26dbf52d34e22bff","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:41.099Z","sequence":32678,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"processing PLAIN authentication request [authzid: , authcid: command-router@HONO, pwd: *****]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"73408c113beeaf53","traceId":"4d6d9b2d1fba096d26dbf52d34e22bff","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:41.099Z","sequence":32679,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"OpenSSL [available: false, supports KeyManagerFactory: false]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"73408c113beeaf53","traceId":"4d6d9b2d1fba096d26dbf52d34e22bff","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:41.099Z","sequence":32680,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"using JVM's default SSL engine","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"73408c113beeaf53","traceId":"4d6d9b2d1fba096d26dbf52d34e22bff","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:41.099Z","sequence":32681,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"73408c113beeaf53","traceId":"4d6d9b2d1fba096d26dbf52d34e22bff","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:41.099Z","sequence":32682,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"73408c113beeaf53","traceId":"4d6d9b2d1fba096d26dbf52d34e22bff","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:41.099Z","sequence":32683,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connecting to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"73408c113beeaf53","traceId":"4d6d9b2d1fba096d26dbf52d34e22bff","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:41.103Z","sequence":32684,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"initializing SASL authenticator","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:41.104Z","sequence":32685,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client provided an empty list of SASL mechanisms [hostname: null, state: PN_SASL_IDLE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:41.104Z","sequence":32686,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client wants to authenticate using SASL [mechanism: PLAIN, host: null, state: PN_SASL_STEP]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:41.108Z","sequence":32687,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client wants to authenticate using SASL [mechanism: PLAIN, host: null, state: PN_SASL_STEP]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:41.108Z","sequence":32688,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"received authentication request [mechanism: PLAIN]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"21e5c7af7b05ef54","traceId":"f48564b22b43145dfec12bfaf98e1546","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:41.108Z","sequence":32689,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"processing PLAIN authentication request [authzid: , authcid: mqtt-adapter@HONO, pwd: *****]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"21e5c7af7b05ef54","traceId":"f48564b22b43145dfec12bfaf98e1546","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:41.108Z","sequence":32690,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"OpenSSL [available: false, supports KeyManagerFactory: false]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"21e5c7af7b05ef54","traceId":"f48564b22b43145dfec12bfaf98e1546","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:41.108Z","sequence":32691,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"using JVM's default SSL engine","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"21e5c7af7b05ef54","traceId":"f48564b22b43145dfec12bfaf98e1546","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:41.108Z","sequence":32692,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"21e5c7af7b05ef54","traceId":"f48564b22b43145dfec12bfaf98e1546","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:41.108Z","sequence":32693,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"21e5c7af7b05ef54","traceId":"f48564b22b43145dfec12bfaf98e1546","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:41.108Z","sequence":32694,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connecting to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"21e5c7af7b05ef54","traceId":"f48564b22b43145dfec12bfaf98e1546","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:41.109Z","sequence":32695,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"received authentication request [mechanism: PLAIN]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"17f9a1b9067dccf2","traceId":"a2e8f0096f2913afa465f214d4a5e80c","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:41.109Z","sequence":32696,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"processing PLAIN authentication request [authzid: , authcid: mqtt-adapter@HONO, pwd: *****]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"17f9a1b9067dccf2","traceId":"a2e8f0096f2913afa465f214d4a5e80c","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:41.109Z","sequence":32697,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"OpenSSL [available: false, supports KeyManagerFactory: false]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"17f9a1b9067dccf2","traceId":"a2e8f0096f2913afa465f214d4a5e80c","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:41.109Z","sequence":32698,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"using JVM's default SSL engine","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"17f9a1b9067dccf2","traceId":"a2e8f0096f2913afa465f214d4a5e80c","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:41.109Z","sequence":32699,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"17f9a1b9067dccf2","traceId":"a2e8f0096f2913afa465f214d4a5e80c","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:41.109Z","sequence":32700,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"17f9a1b9067dccf2","traceId":"a2e8f0096f2913afa465f214d4a5e80c","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:41.109Z","sequence":32701,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connecting to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"17f9a1b9067dccf2","traceId":"a2e8f0096f2913afa465f214d4a5e80c","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:41.232Z","sequence":32702,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connected to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server], opening connection ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"73408c113beeaf53","traceId":"4d6d9b2d1fba096d26dbf52d34e22bff","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:41.234Z","sequence":32703,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connection to container [hono-auth-0.0.0.0:5671] at [amqps://aloxy-hono-service-auth:5671, role: Authentication Server] open","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"73408c113beeaf53","traceId":"4d6d9b2d1fba096d26dbf52d34e22bff","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:41.237Z","sequence":32704,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"opened receiver link to Authentication service, waiting for token ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"73408c113beeaf53","traceId":"4d6d9b2d1fba096d26dbf52d34e22bff","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:41.237Z","sequence":32705,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"successfully retrieved token from Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"73408c113beeaf53","traceId":"4d6d9b2d1fba096d26dbf52d34e22bff","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:41.237Z","sequence":32706,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"closing connection to Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"73408c113beeaf53","traceId":"4d6d9b2d1fba096d26dbf52d34e22bff","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:41.237Z","sequence":32707,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.EventBusAuthenticationService","level":"DEBUG","message":"received token [length: 696] in response to authentication request","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:41.237Z","sequence":32708,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.JjwtBasedAuthTokenValidator","level":"DEBUG","message":"using key [id: 984e3639028b1e7d0b7d97f8f3de6a82638af0ed7d06ce7d9e038a1c4c634169] to validate signature (alg: RS256]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:41.238Z","sequence":32709,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"authentication of client [authorization ID: command-router@HONO] succeeded","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:41.238Z","sequence":32710,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"finishing SASL handshake with outcome PN_SASL_OK","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:41.238Z","sequence":32711,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"received connection request from client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:41.24Z","sequence":32712,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"processing open frame from client container [Hono service-command-router-Tenant-8c258f6d-8b57-47cf-8f84-a38d9786fed2]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:41.24Z","sequence":32713,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"INFO","message":"client connected [container: Hono service-command-router-Tenant-8c258f6d-8b57-47cf-8f84-a38d9786fed2, user: command-router@HONO, token valid until: 2023-07-25T06:05:41Z]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:41.244Z","sequence":32714,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"opening new session with client [container: Hono service-command-router-Tenant-8c258f6d-8b57-47cf-8f84-a38d9786fed2]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:41.249Z","sequence":32715,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connected to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server], opening connection ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"17f9a1b9067dccf2","traceId":"a2e8f0096f2913afa465f214d4a5e80c","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:41.251Z","sequence":32716,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connection to container [hono-auth-0.0.0.0:5671] at [amqps://aloxy-hono-service-auth:5671, role: Authentication Server] open","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"17f9a1b9067dccf2","traceId":"a2e8f0096f2913afa465f214d4a5e80c","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:41.254Z","sequence":32717,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"opened receiver link to Authentication service, waiting for token ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"17f9a1b9067dccf2","traceId":"a2e8f0096f2913afa465f214d4a5e80c","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:41.254Z","sequence":32718,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"successfully retrieved token from Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"17f9a1b9067dccf2","traceId":"a2e8f0096f2913afa465f214d4a5e80c","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:41.254Z","sequence":32719,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"closing connection to Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"17f9a1b9067dccf2","traceId":"a2e8f0096f2913afa465f214d4a5e80c","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:41.254Z","sequence":32720,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.EventBusAuthenticationService","level":"DEBUG","message":"received token [length: 969] in response to authentication request","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:41.255Z","sequence":32721,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.JjwtBasedAuthTokenValidator","level":"DEBUG","message":"using key [id: 984e3639028b1e7d0b7d97f8f3de6a82638af0ed7d06ce7d9e038a1c4c634169] to validate signature (alg: RS256]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:41.255Z","sequence":32722,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"authentication of client [authorization ID: mqtt-adapter@HONO] succeeded","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:41.255Z","sequence":32723,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"finishing SASL handshake with outcome PN_SASL_OK","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:41.255Z","sequence":32724,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"received connection request from client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:41.257Z","sequence":32725,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"processing open frame from client container [Hono adapter-mqtt-Credentials-75faa79c-12c0-45f2-bd9c-973655a3937c]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:41.258Z","sequence":32726,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"INFO","message":"client connected [container: Hono adapter-mqtt-Credentials-75faa79c-12c0-45f2-bd9c-973655a3937c, user: mqtt-adapter@HONO, token valid until: 2023-07-25T06:05:41Z]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:41.259Z","sequence":32727,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"opening new session with client [container: Hono adapter-mqtt-Credentials-75faa79c-12c0-45f2-bd9c-973655a3937c]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:41.265Z","sequence":32728,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connected to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server], opening connection ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"21e5c7af7b05ef54","traceId":"f48564b22b43145dfec12bfaf98e1546","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:41.267Z","sequence":32729,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connection to container [hono-auth-0.0.0.0:5671] at [amqps://aloxy-hono-service-auth:5671, role: Authentication Server] open","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"21e5c7af7b05ef54","traceId":"f48564b22b43145dfec12bfaf98e1546","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:41.269Z","sequence":32730,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"opened receiver link to Authentication service, waiting for token ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"21e5c7af7b05ef54","traceId":"f48564b22b43145dfec12bfaf98e1546","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:41.269Z","sequence":32731,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"successfully retrieved token from Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"21e5c7af7b05ef54","traceId":"f48564b22b43145dfec12bfaf98e1546","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:41.269Z","sequence":32732,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"closing connection to Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"21e5c7af7b05ef54","traceId":"f48564b22b43145dfec12bfaf98e1546","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:41.27Z","sequence":32733,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.EventBusAuthenticationService","level":"DEBUG","message":"received token [length: 969] in response to authentication request","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:41.27Z","sequence":32734,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.JjwtBasedAuthTokenValidator","level":"DEBUG","message":"using key [id: 984e3639028b1e7d0b7d97f8f3de6a82638af0ed7d06ce7d9e038a1c4c634169] to validate signature (alg: RS256]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:41.271Z","sequence":32735,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"authentication of client [authorization ID: mqtt-adapter@HONO] succeeded","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:41.271Z","sequence":32736,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"finishing SASL handshake with outcome PN_SASL_OK","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:41.271Z","sequence":32737,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"received connection request from client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:41.273Z","sequence":32738,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"processing open frame from client container [Hono adapter-mqtt-Tenant-ded758d0-b7cf-4d65-a210-6d11fa222d32]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:41.273Z","sequence":32739,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"INFO","message":"client connected [container: Hono adapter-mqtt-Tenant-ded758d0-b7cf-4d65-a210-6d11fa222d32, user: mqtt-adapter@HONO, token valid until: 2023-07-25T06:05:41Z]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:41.275Z","sequence":32740,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"opening new session with client [container: Hono adapter-mqtt-Tenant-ded758d0-b7cf-4d65-a210-6d11fa222d32]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:43.57Z","sequence":32741,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:43.571Z","sequence":32742,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:43.577Z","sequence":32743,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-246c813c-3c17-4742-8cfe-a81463bddf97, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:50.335Z","sequence":32744,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:50.335Z","sequence":32745,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000202] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:50.345Z","sequence":32746,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:50.345Z","sequence":32747,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:50.353Z","sequence":32748,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-bc9f5d65-8fa7-4439-9dc1-8565cc95e924, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:50.376Z","sequence":32749,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:50.376Z","sequence":32750,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000202] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:50.384Z","sequence":32751,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:50.385Z","sequence":32752,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:50.389Z","sequence":32753,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b981719d-a2c0-40d9-b368-9478d6d8d5a9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:51.241Z","sequence":32754,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:51.241Z","sequence":32755,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000760] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:51.258Z","sequence":32756,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:51.258Z","sequence":32757,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:51.29Z","sequence":32758,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-26e2352c-288f-44a0-997c-09ecb9e1cb46, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:54.605Z","sequence":32759,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Tenant-ded758d0-b7cf-4d65-a210-6d11fa222d32] wants to open a link [address: Source{address='tenant/7f7f2443-e1b7-4fac-ace0-067cfec4a088', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:54.605Z","sequence":32760,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-0]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:54.605Z","sequence":32761,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@c770861] for replies to [tenant/7f7f2443-e1b7-4fac-ace0-067cfec4a088]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:54.608Z","sequence":32762,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Tenant-ded758d0-b7cf-4d65-a210-6d11fa222d32] wants to open a link [address: Target{address='tenant', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:54.608Z","sequence":32763,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-1]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:54.609Z","sequence":32764,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:54.612Z","sequence":32765,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:54.613Z","sequence":32766,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: ineos]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:54.625Z","sequence":32767,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-e9f43f7b-eda5-44fb-981d-96884c94de50, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:54.629Z","sequence":32768,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:54.64Z","sequence":32769,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB1000A7E] for gateway [0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:54.653Z","sequence":32770,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:54.653Z","sequence":32771,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:54.663Z","sequence":32772,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3e024610-3f05-407c-ad08-cc572f1d4939, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:55.782Z","sequence":32773,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:55.782Z","sequence":32774,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB1000A66] for gateway [0008004B5135]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:55.793Z","sequence":32775,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:55.793Z","sequence":32776,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:55.797Z","sequence":32777,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f6567040-e23a-4a51-b5d2-70ece7919a69, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:58.497Z","sequence":32778,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:58.497Z","sequence":32779,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100016C] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:58.54Z","sequence":32780,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:58.54Z","sequence":32781,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100016C] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:58.541Z","sequence":32782,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:58.541Z","sequence":32783,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:58.553Z","sequence":32784,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:58.553Z","sequence":32785,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:58.587Z","sequence":32786,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-fca9dfc9-3ab6-429f-a342-beef150aa89d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:05:58.587Z","sequence":32787,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e89a7ff7-0719-4f6e-8ac6-9c54116a7fe3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:03.494Z","sequence":32788,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:03.495Z","sequence":32789,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006D1] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:03.558Z","sequence":32790,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:03.558Z","sequence":32791,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:03.643Z","sequence":32792,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-58fe79e1-0191-4eb2-99ff-71190ae78f69, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:04.328Z","sequence":32793,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191330]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7d23012fdeaf7692","parentId":"155bdfb8a9ef4a45","traceId":"0000000000000000003fd2b88729b98a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:04.46Z","sequence":32794,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191330, resource-version: 150c5e4e-8eac-4358-99bb-1c695dff5d9b]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7d23012fdeaf7692","parentId":"155bdfb8a9ef4a45","traceId":"0000000000000000003fd2b88729b98a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:04.508Z","sequence":32795,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191330, resource-version: ab0c294f-f49a-4f2f-9ec4-5222c0f63db6]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7d23012fdeaf7692","parentId":"155bdfb8a9ef4a45","traceId":"0000000000000000003fd2b88729b98a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:04.511Z","sequence":32796,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191330]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e8f40c99b2941b71","parentId":"d8da888fb5083b21","traceId":"0000000000000000003fd2b88729b98a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:04.804Z","sequence":32797,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191330]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e8f40c99b2941b71","parentId":"d8da888fb5083b21","traceId":"0000000000000000003fd2b88729b98a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:05.521Z","sequence":32798,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF799FA5E9FCA26]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bcf67b8db269def1","parentId":"e6d4b16fd26b2e28","traceId":"0000000000000000fa487b3baacc3c0a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:05.6Z","sequence":32799,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF799FA5E9FCA26, resource-version: 9824e12c-e194-4fa9-ab62-e2636ca27496]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bcf67b8db269def1","parentId":"e6d4b16fd26b2e28","traceId":"0000000000000000fa487b3baacc3c0a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:05.637Z","sequence":32800,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF799FA5E9FCA26, resource-version: 6620dd45-e4d7-486c-a20a-405770c46cf4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bcf67b8db269def1","parentId":"e6d4b16fd26b2e28","traceId":"0000000000000000fa487b3baacc3c0a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:05.961Z","sequence":32801,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:05.961Z","sequence":32802,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10013E1] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:05.98Z","sequence":32803,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:05.98Z","sequence":32804,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:05.997Z","sequence":32805,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e9dcc422-b5da-4efa-8805-537fe6bfbf3b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:06.889Z","sequence":32806,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Source{address='credentials/integrationtest/2ceecdd7-f4f2-4242-be50-c341aa67240d', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:06.889Z","sequence":32807,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-0]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:06.889Z","sequence":32808,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@5cd20618] for replies to [credentials/integrationtest/2ceecdd7-f4f2-4242-be50-c341aa67240d]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:06.892Z","sequence":32809,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Target{address='credentials/integrationtest', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:06.893Z","sequence":32810,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-1]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:06.893Z","sequence":32811,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:06.895Z","sequence":32812,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:06.895Z","sequence":32813,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191330]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:06.961Z","sequence":32814,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-c2e17e98-0c31-4bb8-922f-1e2eecf575fa, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:07.093Z","sequence":32815,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:07.093Z","sequence":32816,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF799FA5E9FCA26] for gateway [gateway_integrationtest_network_191330]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:07.095Z","sequence":32817,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:07.096Z","sequence":32818,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191330]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:07.113Z","sequence":32819,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a74291f6-84d4-4e8a-8078-448a012f109f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:07.113Z","sequence":32820,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:07.113Z","sequence":32821,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:07.755Z","sequence":32822,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-545917d4-517f-446f-bff7-643c599022c5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:10.897Z","sequence":32823,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:10.897Z","sequence":32824,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BB84C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:10.922Z","sequence":32825,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b3a94754-1e62-41a0-a359-ea6fcdfa1ed5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:12.435Z","sequence":32826,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:12.435Z","sequence":32827,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 0008004B5135]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:12.455Z","sequence":32828,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2c872b3b-bffd-4451-8b89-e9b2b2617e7b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:13.827Z","sequence":32829,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:13.827Z","sequence":32830,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006B8] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:13.846Z","sequence":32831,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:13.847Z","sequence":32832,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:13.853Z","sequence":32833,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0ece78f8-00a2-42d2-8ff0-8875b075892d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:15.802Z","sequence":32834,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:15.802Z","sequence":32835,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006B3] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:15.809Z","sequence":32836,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:15.81Z","sequence":32837,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:15.82Z","sequence":32838,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-fe500901-2a50-4310-9ecd-b0a1682c3a90, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:16.184Z","sequence":32839,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:16.185Z","sequence":32840,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BBD1B]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:16.205Z","sequence":32841,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-447e3b88-e1a9-42cd-95c3-85f6508bd77f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:19.226Z","sequence":32842,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF799FA5E9FCA26]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a42cfcd03a7aecbb","parentId":"69d33f0fc3a18ff8","traceId":"00000000000000009de8c1e2c3e8f18d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:19.252Z","sequence":32843,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF799FA5E9FCA26]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a42cfcd03a7aecbb","parentId":"69d33f0fc3a18ff8","traceId":"00000000000000009de8c1e2c3e8f18d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:19.433Z","sequence":32844,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191330]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"830aa9f7cc4fe026","parentId":"89d6bfe7e3ae436e","traceId":"0000000000000000c568fadca1cb9493","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:19.457Z","sequence":32845,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191330]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"830aa9f7cc4fe026","parentId":"89d6bfe7e3ae436e","traceId":"0000000000000000c568fadca1cb9493","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:19.937Z","sequence":32846,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 4456391EE20F]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a84993ca8d00cb1b","parentId":"0df216628dbe1868","traceId":"0000000000000000aa47a6f2f7a983e2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:19.987Z","sequence":32847,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 4456391EE20F, resource-version: 27b08152-2282-4f3b-8330-42ade5731e81]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a84993ca8d00cb1b","parentId":"0df216628dbe1868","traceId":"0000000000000000aa47a6f2f7a983e2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:20.053Z","sequence":32848,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 4456391EE20F, resource-version: 6d509c66-50cd-4c2d-abe6-5f4d04354c41]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a84993ca8d00cb1b","parentId":"0df216628dbe1868","traceId":"0000000000000000aa47a6f2f7a983e2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:20.056Z","sequence":32849,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 4456391EE20F]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ebb32273b10e47f4","parentId":"c242e296949a322d","traceId":"0000000000000000aa47a6f2f7a983e2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:20.243Z","sequence":32850,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 4456391EE20F]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ebb32273b10e47f4","parentId":"c242e296949a322d","traceId":"0000000000000000aa47a6f2f7a983e2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:21.097Z","sequence":32851,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF905D2D2BD5887]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"53d9255c9ba9ca22","parentId":"0612cd8fc813fe07","traceId":"00000000000000002f6949c34bfee4fa","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:21.138Z","sequence":32852,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF905D2D2BD5887, resource-version: 81cfeffd-deaa-4721-834d-8942d46df43b]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"53d9255c9ba9ca22","parentId":"0612cd8fc813fe07","traceId":"00000000000000002f6949c34bfee4fa","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:21.146Z","sequence":32853,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF905D2D2BD5887, resource-version: f7c01c03-3bd0-431d-b9aa-2d01500c7a50]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"53d9255c9ba9ca22","parentId":"0612cd8fc813fe07","traceId":"00000000000000002f6949c34bfee4fa","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:22.235Z","sequence":32854,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Credentials-75faa79c-12c0-45f2-bd9c-973655a3937c] wants to open a link [address: Source{address='credentials/integrationtest/45846c9a-0105-48ee-bc21-d955ae7c3fe1', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:22.235Z","sequence":32855,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-0]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:22.235Z","sequence":32856,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@44cc9e36] for replies to [credentials/integrationtest/45846c9a-0105-48ee-bc21-d955ae7c3fe1]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:22.244Z","sequence":32857,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Credentials-75faa79c-12c0-45f2-bd9c-973655a3937c] wants to open a link [address: Target{address='credentials/integrationtest', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:22.244Z","sequence":32858,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-1]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:22.244Z","sequence":32859,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:22.248Z","sequence":32860,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:22.248Z","sequence":32861,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-4456391EE20F]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:22.261Z","sequence":32862,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-56faa0de-975d-4e1d-8d4d-50f4a79d43af, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:22.272Z","sequence":32863,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:22.272Z","sequence":32864,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001EC] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:22.277Z","sequence":32865,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:22.277Z","sequence":32866,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:22.28Z","sequence":32867,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-07a999a4-3e34-4243-995f-9ff012f9e814, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:22.381Z","sequence":32868,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:22.381Z","sequence":32869,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 4456391EE20F]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:22.387Z","sequence":32870,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8c440128-6a29-4b29-83a4-d6da32731eb4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:22.391Z","sequence":32871,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:22.391Z","sequence":32872,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF905D2D2BD5887] for gateway [4456391EE20F]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:22.396Z","sequence":32873,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:22.397Z","sequence":32874,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:22.902Z","sequence":32875,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8cf198db-6f12-4971-8328-9cf3aac9359f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:22.902Z","sequence":32876,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:22.903Z","sequence":32877,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001EC] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:22.914Z","sequence":32878,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:22.914Z","sequence":32879,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:22.921Z","sequence":32880,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9f7447be-8354-4a8f-a9f8-fae7833d11d1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:23.656Z","sequence":32881,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/arkema:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:23.656Z","sequence":32882,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: arkema, device-id: 0008004AE119]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:23.695Z","sequence":32883,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6b107264-7deb-483e-856f-184fdfec7b22, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:23.701Z","sequence":32884,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:23.701Z","sequence":32885,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: arkema]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:23.708Z","sequence":32886,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-60bd1c2b-2962-4f34-9b72-2df036a2c4ee, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:24.323Z","sequence":32887,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:24.323Z","sequence":32888,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100057A] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:24.349Z","sequence":32889,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:24.349Z","sequence":32890,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:24.498Z","sequence":32891,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b6e9ca41-8132-4584-8b9b-702c69ffff34, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:29.114Z","sequence":32892,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:29.114Z","sequence":32893,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006C3] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:29.124Z","sequence":32894,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:29.124Z","sequence":32895,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:29.137Z","sequence":32896,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f1ca9caa-89b1-4fe3-8a5e-53facb68f5db, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:32.057Z","sequence":32897,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF905D2D2BD5887]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8c05a6c528d3806e","parentId":"657b4a9b00add611","traceId":"00000000000000000c87807ac5bc6fa0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:32.109Z","sequence":32898,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF905D2D2BD5887]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8c05a6c528d3806e","parentId":"657b4a9b00add611","traceId":"00000000000000000c87807ac5bc6fa0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:32.39Z","sequence":32899,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 4456391EE20F]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c47d1358e080aa11","parentId":"2d871d3c5c8c3a32","traceId":"0000000000000000b831dc9c7a86e800","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:32.409Z","sequence":32900,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 4456391EE20F]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c47d1358e080aa11","parentId":"2d871d3c5c8c3a32","traceId":"0000000000000000b831dc9c7a86e800","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:34.512Z","sequence":32901,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Tenant-995cc45f-23b2-488f-a5d9-0b18c4ae6c62] wants to open a link [address: Source{address='tenant/e53fc757-40cf-453c-a557-ff9a8673c5a2', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:34.512Z","sequence":32902,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-0]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:34.512Z","sequence":32903,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@51d3c31b] for replies to [tenant/e53fc757-40cf-453c-a557-ff9a8673c5a2]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:34.514Z","sequence":32904,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Tenant-995cc45f-23b2-488f-a5d9-0b18c4ae6c62] wants to open a link [address: Target{address='tenant', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:34.514Z","sequence":32905,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-1]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:34.514Z","sequence":32906,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:34.516Z","sequence":32907,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:34.516Z","sequence":32908,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: chevronsgp]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:34.519Z","sequence":32909,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-cceb5370-39c9-4360-94af-3da2168319f5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:34.521Z","sequence":32910,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Source{address='credentials/chevronsgp/00a08e60-6635-4f7e-bfd8-e2103c86b4d2', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:34.521Z","sequence":32911,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-2]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:34.521Z","sequence":32912,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@71a3b48b] for replies to [credentials/chevronsgp/00a08e60-6635-4f7e-bfd8-e2103c86b4d2]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:34.523Z","sequence":32913,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Target{address='credentials/chevronsgp', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:34.523Z","sequence":32914,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:34.523Z","sequence":32915,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:34.525Z","sequence":32916,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/chevronsgp:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:34.525Z","sequence":32917,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: chevronsgp, type: hashed-password, auth-id: auth-chevronsgp_42]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:34.554Z","sequence":32918,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-8b8dfdf5-7ece-428c-b70e-4b583ced71b1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:34.671Z","sequence":32919,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] wants to open a link [address: Source{address='registration/chevronsgp/693e2831-3a4f-4f93-97b4-616584d74fdf', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:34.672Z","sequence":32920,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:34.672Z","sequence":32921,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@4fdf8515] for replies to [registration/chevronsgp/693e2831-3a4f-4f93-97b4-616584d74fdf]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:34.676Z","sequence":32922,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] wants to open a link [address: Target{address='registration/chevronsgp', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:34.676Z","sequence":32923,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-11]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:34.676Z","sequence":32924,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:34.678Z","sequence":32925,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/chevronsgp:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:34.678Z","sequence":32926,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: chevronsgp, device-id: 70B3D57BB10008C8] for gateway [gateway_chevronsgp_network_42]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:34.679Z","sequence":32927,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/chevronsgp:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:34.679Z","sequence":32928,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: chevronsgp, device-id: gateway_chevronsgp_network_42]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:34.685Z","sequence":32929,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1d1a47a6-2b9e-4c94-8da6-7c7507b4f15d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:34.686Z","sequence":32930,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_chevronsgp\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:34.686Z","sequence":32931,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_chevronsgp\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:34.69Z","sequence":32932,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8887b5e6-8609-40c5-8151-ae4750995486, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:43.841Z","sequence":32933,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:43.841Z","sequence":32934,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: flint]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:43.847Z","sequence":32935,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-710dca13-12b8-4c3a-90d8-52184c4d244b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:43.849Z","sequence":32936,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Source{address='credentials/flint/fd2c12ba-8473-4db0-bdf7-3f86cfc32540', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:43.849Z","sequence":32937,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:43.849Z","sequence":32938,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@6eb2df9d] for replies to [credentials/flint/fd2c12ba-8473-4db0-bdf7-3f86cfc32540]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:43.851Z","sequence":32939,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Target{address='credentials/flint', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:43.852Z","sequence":32940,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-5]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:43.852Z","sequence":32941,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:43.854Z","sequence":32942,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/flint:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:43.855Z","sequence":32943,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: flint, type: hashed-password, auth-id: auth-flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:43.866Z","sequence":32944,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-dc664e2b-5084-4532-9800-17d906a24a3f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:43.987Z","sequence":32945,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:43.987Z","sequence":32946,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000849] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:43.993Z","sequence":32947,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:43.993Z","sequence":32948,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:44.014Z","sequence":32949,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ebc27463-81b9-491b-9b96-306b372f7405, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:46.934Z","sequence":32950,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:46.934Z","sequence":32951,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006A4] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:46.94Z","sequence":32952,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:46.941Z","sequence":32953,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:46.951Z","sequence":32954,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1edb0fc3-d8e0-487f-8278-8a6eae866c88, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:52.218Z","sequence":32955,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:52.218Z","sequence":32956,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10018F6] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:52.224Z","sequence":32957,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:52.224Z","sequence":32958,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:52.231Z","sequence":32959,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-05a4b2a6-f606-493a-a492-cb172b55d692, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:54.423Z","sequence":32960,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:54.423Z","sequence":32961,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10008B5] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:54.431Z","sequence":32962,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:54.431Z","sequence":32963,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:54.438Z","sequence":32964,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-bbb33811-a4da-49bc-ab2c-dffd2ad6fa2f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:56.335Z","sequence":32965,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:56.336Z","sequence":32966,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10018D4] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:56.341Z","sequence":32967,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:56.341Z","sequence":32968,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:56.347Z","sequence":32969,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3385aeeb-c766-484e-888f-01a93d892284, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:58.112Z","sequence":32970,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:58.113Z","sequence":32971,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000ACB] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:58.119Z","sequence":32972,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:58.119Z","sequence":32973,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:06:58.126Z","sequence":32974,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6bbb14c4-c329-46ba-8640-65794e4536dd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:01.013Z","sequence":32975,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:01.014Z","sequence":32976,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB1000A81] for gateway [0008004B5135]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:01.021Z","sequence":32977,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:01.021Z","sequence":32978,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:01.025Z","sequence":32979,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-dc8ece9a-556e-41c4-8d82-031c08acfa75, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:02.777Z","sequence":32980,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:02.778Z","sequence":32981,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B8E] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:02.779Z","sequence":32982,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:02.779Z","sequence":32983,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:02.787Z","sequence":32984,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:02.787Z","sequence":32985,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:02.797Z","sequence":32986,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2f14b6e2-da79-429d-9c80-ea62221d51a9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:02.797Z","sequence":32987,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b176041c-418c-4aba-b39a-d9fe06c829d3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:06.047Z","sequence":32988,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:06.048Z","sequence":32989,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:06.054Z","sequence":32990,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1822e84e-df87-451b-bfb5-972c6186d038, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:13.466Z","sequence":32991,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/conditionall:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:13.466Z","sequence":32992,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: conditionall, device-id: 70B3D57BB1000228] for gateway [0008004B512D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:13.473Z","sequence":32993,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_conditionall\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:13.473Z","sequence":32994,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_conditionall\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:13.476Z","sequence":32995,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1c873770-53a3-41fd-b97f-e58b29e97090, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:13.697Z","sequence":32996,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:13.697Z","sequence":32997,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A3D] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:13.704Z","sequence":32998,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:13.704Z","sequence":32999,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:13.712Z","sequence":33000,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f9d9b349-0677-428f-8f77-77e6c4acacd2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:17.271Z","sequence":33001,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:17.272Z","sequence":33002,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10018ED] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:17.277Z","sequence":33003,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:17.277Z","sequence":33004,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:17.284Z","sequence":33005,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8bb6cec7-20b3-419d-a3aa-891593b863a5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:17.458Z","sequence":33006,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:17.459Z","sequence":33007,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10018E2] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:17.469Z","sequence":33008,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:17.469Z","sequence":33009,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:17.475Z","sequence":33010,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-967899be-6ea0-4440-9f98-a5c90b1e82ad, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:19.072Z","sequence":33011,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:19.073Z","sequence":33012,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BD5] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:19.078Z","sequence":33013,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:19.078Z","sequence":33014,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:19.084Z","sequence":33015,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-77888288-b68f-4748-ac73-bcde1173383e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:22.768Z","sequence":33016,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:22.768Z","sequence":33017,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: rigstar]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:22.781Z","sequence":33018,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-7b9b2475-3daf-4333-bb6d-034255223594, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:22.805Z","sequence":33019,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Source{address='credentials/rigstar/173ef3fe-e9a4-447f-a272-b199b6002f39', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:22.805Z","sequence":33020,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-6]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:22.805Z","sequence":33021,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@222c08da] for replies to [credentials/rigstar/173ef3fe-e9a4-447f-a272-b199b6002f39]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:22.807Z","sequence":33022,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Target{address='credentials/rigstar', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:22.807Z","sequence":33023,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-7]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:22.807Z","sequence":33024,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:22.809Z","sequence":33025,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/rigstar:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:22.809Z","sequence":33026,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: rigstar, type: hashed-password, auth-id: auth-gateway_rigstar_network_38]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:22.821Z","sequence":33027,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-44025d34-d3c4-4c0a-8daf-e37727b122ec, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:22.967Z","sequence":33028,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] wants to open a link [address: Source{address='registration/rigstar/c1d3a0d6-93e3-49bb-813f-bb01ef2568e3', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:22.968Z","sequence":33029,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-12]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:22.968Z","sequence":33030,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@7f826ed4] for replies to [registration/rigstar/c1d3a0d6-93e3-49bb-813f-bb01ef2568e3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:22.97Z","sequence":33031,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] wants to open a link [address: Target{address='registration/rigstar', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:22.97Z","sequence":33032,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-13]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:22.97Z","sequence":33033,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:22.973Z","sequence":33034,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/rigstar:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:22.973Z","sequence":33035,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: rigstar, device-id: 70B3D57BB1000961] for gateway [gateway_rigstar_network_38]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:22.973Z","sequence":33036,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/rigstar:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:22.973Z","sequence":33037,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: rigstar, device-id: gateway_rigstar_network_38]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:22.98Z","sequence":33038,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-40815d4b-414b-4e55-834d-4103d7d1e12d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:22.981Z","sequence":33039,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_rigstar\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:22.981Z","sequence":33040,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_rigstar\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:22.984Z","sequence":33041,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-404daee8-f48e-4a3c-8b12-2efd033cadc7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:25.973Z","sequence":33042,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:25.974Z","sequence":33043,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BBD1C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:25.981Z","sequence":33044,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-aa76d53b-e655-4dbd-8e5e-5fc2cad78e0e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:25.984Z","sequence":33045,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:25.984Z","sequence":33046,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: lanxess]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:25.987Z","sequence":33047,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-79f6035b-f088-406c-821e-11bcb8fd6d46, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:36.356Z","sequence":33048,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:36.356Z","sequence":33049,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 0008004C80F4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:36.361Z","sequence":33050,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2064ded7-0ead-4ac0-bd20-1966ad296c88, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:40.705Z","sequence":33051,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:40.705Z","sequence":33052,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: dow]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:40.708Z","sequence":33053,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-9a4926ac-9457-4b7d-bec3-9f41a0191b07, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:40.713Z","sequence":33054,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Source{address='credentials/dow/ad89d93e-d4c6-4b96-8acd-b87da4178038', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:40.713Z","sequence":33055,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-8]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:40.713Z","sequence":33056,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@1d8f45ec] for replies to [credentials/dow/ad89d93e-d4c6-4b96-8acd-b87da4178038]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:40.715Z","sequence":33057,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Target{address='credentials/dow', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:40.715Z","sequence":33058,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-9]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:40.715Z","sequence":33059,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:40.717Z","sequence":33060,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/dow:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:40.717Z","sequence":33061,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: dow, type: hashed-password, auth-id: auth-gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:40.727Z","sequence":33062,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-b56cf36f-219f-428a-9a33-0c98740bfedb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:40.997Z","sequence":33063,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:40.997Z","sequence":33064,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 70B3D57BB100122E] for gateway [gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:41.005Z","sequence":33065,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:41.005Z","sequence":33066,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:41.01Z","sequence":33067,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6315a909-e462-4cff-91dd-2489a5bc8abe, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:46.638Z","sequence":33068,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:46.638Z","sequence":33069,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: shell]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:46.643Z","sequence":33070,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-e3fd3906-a5ee-4c61-86dd-f37083c7ef1f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:46.645Z","sequence":33071,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Source{address='credentials/shell/a218bc15-197f-4307-a47f-a0fb32052197', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:46.646Z","sequence":33072,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:46.646Z","sequence":33073,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@44321093] for replies to [credentials/shell/a218bc15-197f-4307-a47f-a0fb32052197]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:46.648Z","sequence":33074,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Target{address='credentials/shell', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:46.648Z","sequence":33075,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-11]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:46.648Z","sequence":33076,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:46.65Z","sequence":33077,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/shell:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:46.651Z","sequence":33078,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: shell, type: hashed-password, auth-id: auth-gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:46.662Z","sequence":33079,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-a334fd30-9536-4573-9151-2f172d694870, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:46.779Z","sequence":33080,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:46.779Z","sequence":33081,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10018F9] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:46.786Z","sequence":33082,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:46.786Z","sequence":33083,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:46.793Z","sequence":33084,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-21949b94-2f0b-45fd-a0ff-1743df73c217, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:52.6Z","sequence":33085,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:52.6Z","sequence":33086,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10018D2] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:52.605Z","sequence":33087,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:52.606Z","sequence":33088,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:52.612Z","sequence":33089,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f768bd8d-b383-4795-86ff-f6e0c6e3f44b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:52.807Z","sequence":33090,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oiltanking:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:52.807Z","sequence":33091,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oiltanking, device-id: 0008004BB60F]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:52.82Z","sequence":33092,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d6ab8a2a-44a2-476d-aaac-295dc1d692cd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:52.824Z","sequence":33093,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:52.824Z","sequence":33094,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oiltanking]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:52.827Z","sequence":33095,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-30c7937e-ef40-4a39-9d63-0656db6b0af8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:54.119Z","sequence":33096,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:54.119Z","sequence":33097,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oci]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:54.142Z","sequence":33098,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-b053b550-8df1-408d-9fbd-079cf152e3b9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:54.149Z","sequence":33099,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:54.149Z","sequence":33100,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100016F] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:54.149Z","sequence":33101,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:54.149Z","sequence":33102,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100016F] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:54.169Z","sequence":33103,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:54.169Z","sequence":33104,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:54.169Z","sequence":33105,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:54.169Z","sequence":33106,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:54.186Z","sequence":33107,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a4fce9b5-904b-44ba-b2ac-4994ad38990c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:54.187Z","sequence":33108,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7f14b291-aa37-4b29-b816-05165c6dee1f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:57.752Z","sequence":33109,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/chevronsgp:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:57.752Z","sequence":33110,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: chevronsgp, device-id: 70B3D57BB10008C9] for gateway [gateway_chevronsgp_network_42]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:57.758Z","sequence":33111,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_chevronsgp\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:57.758Z","sequence":33112,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_chevronsgp\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:57.761Z","sequence":33113,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-25d23571-fb16-4bbe-957c-a04937a0a0a6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:58.576Z","sequence":33114,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:58.576Z","sequence":33115,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000809] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:58.577Z","sequence":33116,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:58.577Z","sequence":33117,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:58.583Z","sequence":33118,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:58.583Z","sequence":33119,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:58.584Z","sequence":33120,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ebf9d613-9530-413a-b852-98b4af86693f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:07:58.588Z","sequence":33121,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-47a60383-bead-49d9-86f1-8e1903a60583, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:04.284Z","sequence":33122,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191332]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e8ee45169c596d79","parentId":"43f170029492d231","traceId":"0000000000000000a87ac5088199ab1e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:04.307Z","sequence":33123,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191332, resource-version: a42b29d4-9228-42c1-b096-33fb5c2c5361]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e8ee45169c596d79","parentId":"43f170029492d231","traceId":"0000000000000000a87ac5088199ab1e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:04.316Z","sequence":33124,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191332, resource-version: bbac3095-4302-4936-a380-5efd119ca3cf]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e8ee45169c596d79","parentId":"43f170029492d231","traceId":"0000000000000000a87ac5088199ab1e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:04.319Z","sequence":33125,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191332]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b255569969b1e840","parentId":"651cbf5db97c161f","traceId":"0000000000000000a87ac5088199ab1e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:04.474Z","sequence":33126,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191332]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b255569969b1e840","parentId":"651cbf5db97c161f","traceId":"0000000000000000a87ac5088199ab1e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:05.609Z","sequence":33127,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFA91732C04167D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"76250ec6872ed23b","parentId":"dc4d2259866393f5","traceId":"00000000000000008c1ab9bfb100390d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:05.626Z","sequence":33128,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFA91732C04167D, resource-version: 3b4cf8ec-9773-474e-903c-f424154c2432]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"76250ec6872ed23b","parentId":"dc4d2259866393f5","traceId":"00000000000000008c1ab9bfb100390d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:05.632Z","sequence":33129,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFA91732C04167D, resource-version: a9431d3d-7daf-441c-9f43-bec98a6ab152]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"76250ec6872ed23b","parentId":"dc4d2259866393f5","traceId":"00000000000000008c1ab9bfb100390d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:06.719Z","sequence":33130,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:06.72Z","sequence":33131,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:06.724Z","sequence":33132,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-792984ff-8e25-4cdc-976f-c7fb5daa025b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:06.728Z","sequence":33133,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:06.728Z","sequence":33134,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191332]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:06.739Z","sequence":33135,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-86319f18-89d7-43bf-bbf0-a58feff3716e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:06.856Z","sequence":33136,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:06.856Z","sequence":33137,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFA91732C04167D] for gateway [gateway_integrationtest_network_191332]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:06.857Z","sequence":33138,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:06.857Z","sequence":33139,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191332]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:06.863Z","sequence":33140,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ebc063b7-48bd-463c-8aaf-5cd1a093f29a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:06.863Z","sequence":33141,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:06.864Z","sequence":33142,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:07.216Z","sequence":33143,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a6d28719-c852-44e1-86de-14649fb898a7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:10.376Z","sequence":33144,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:10.377Z","sequence":33145,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000793] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:10.388Z","sequence":33146,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:10.389Z","sequence":33147,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:10.396Z","sequence":33148,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ddf3f397-9f28-4737-991a-d601cd75fdb6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:11.534Z","sequence":33149,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:11.534Z","sequence":33150,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006C9] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:11.54Z","sequence":33151,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:11.54Z","sequence":33152,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:11.547Z","sequence":33153,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-35f1302b-0e5f-4cdf-9179-f1699909bf1b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:14.605Z","sequence":33154,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:14.605Z","sequence":33155,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000204] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:14.612Z","sequence":33156,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:14.613Z","sequence":33157,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:14.621Z","sequence":33158,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b3779fb9-ba74-4941-966b-e3c8bc0ad3f3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:14.644Z","sequence":33159,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:14.645Z","sequence":33160,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000204] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:14.652Z","sequence":33161,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:14.652Z","sequence":33162,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:14.657Z","sequence":33163,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-453018d0-91fa-4275-a971-77216911c65e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:16.072Z","sequence":33164,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:16.073Z","sequence":33165,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10007A2] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:16.078Z","sequence":33166,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:16.078Z","sequence":33167,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:16.085Z","sequence":33168,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5b3f4762-91bf-4480-9784-f5cb3e8961c2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:16.864Z","sequence":33169,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:16.864Z","sequence":33170,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000838] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:16.872Z","sequence":33171,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.8.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:16.873Z","sequence":33172,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:16.877Z","sequence":33173,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6b1c725b-1050-47af-ae30-2443af77c48c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:17.508Z","sequence":33174,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFA91732C04167D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1682c8559a435333","parentId":"2441eb7fbc7eb653","traceId":"000000000000000068bb8479d15422cc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:17.537Z","sequence":33175,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFA91732C04167D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1682c8559a435333","parentId":"2441eb7fbc7eb653","traceId":"000000000000000068bb8479d15422cc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:18.21Z","sequence":33176,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191332]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"959b32a554fd92e9","parentId":"2535c1734c7a89f9","traceId":"0000000000000000fffb0af7e64e7917","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:18.233Z","sequence":33177,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191332]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"959b32a554fd92e9","parentId":"2535c1734c7a89f9","traceId":"0000000000000000fffb0af7e64e7917","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:18.827Z","sequence":33178,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: FA71D2D641FD]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ae3c0f6cce8ded66","parentId":"d1849adc61b7bee4","traceId":"0000000000000000ca0076a9c39673f0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:18.845Z","sequence":33179,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: FA71D2D641FD, resource-version: 4b336816-e43e-4ab1-8c1a-481e16240902]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ae3c0f6cce8ded66","parentId":"d1849adc61b7bee4","traceId":"0000000000000000ca0076a9c39673f0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:18.852Z","sequence":33180,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: FA71D2D641FD, resource-version: cdc5c877-883b-48bc-bf07-e4acc3651c1c]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ae3c0f6cce8ded66","parentId":"d1849adc61b7bee4","traceId":"0000000000000000ca0076a9c39673f0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:18.855Z","sequence":33181,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: FA71D2D641FD]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"42c7c2460d26fb29","parentId":"de200754f32ac574","traceId":"0000000000000000ca0076a9c39673f0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:19.002Z","sequence":33182,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: FA71D2D641FD]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"42c7c2460d26fb29","parentId":"de200754f32ac574","traceId":"0000000000000000ca0076a9c39673f0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:19.644Z","sequence":33183,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF4AEFD6BD07937]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"03f49b8b91781f0b","parentId":"03fdc043621d2c08","traceId":"000000000000000043b93e957f39caac","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:19.674Z","sequence":33184,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF4AEFD6BD07937, resource-version: 9046076d-6f32-4454-bd5e-3e104f8a2df7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"03f49b8b91781f0b","parentId":"03fdc043621d2c08","traceId":"000000000000000043b93e957f39caac","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:19.68Z","sequence":33185,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF4AEFD6BD07937, resource-version: 9c2a8aaa-59f6-4622-abd4-af3434588699]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"03f49b8b91781f0b","parentId":"03fdc043621d2c08","traceId":"000000000000000043b93e957f39caac","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:20.745Z","sequence":33186,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:20.746Z","sequence":33187,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:20.75Z","sequence":33188,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-cc30cf46-83d0-449b-9edb-c4caeaf81d5c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:20.752Z","sequence":33189,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:20.752Z","sequence":33190,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-FA71D2D641FD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:20.762Z","sequence":33191,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-9eb537a6-2541-450a-b01c-6aaa570fcd02, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:20.894Z","sequence":33192,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:20.895Z","sequence":33193,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: FA71D2D641FD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:20.9Z","sequence":33194,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-17f8bd22-03c7-4896-8232-8753a24e0210, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:20.905Z","sequence":33195,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:20.905Z","sequence":33196,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF4AEFD6BD07937] for gateway [FA71D2D641FD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:20.91Z","sequence":33197,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:20.91Z","sequence":33198,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:21.208Z","sequence":33199,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-95219a81-c5bb-42ff-aef0-880f771d63e4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:23.304Z","sequence":33200,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:23.304Z","sequence":33201,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000850] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:23.323Z","sequence":33202,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.8.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:23.323Z","sequence":33203,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:23.327Z","sequence":33204,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d0476f9e-4586-40d3-97ad-7dbeb8693bfe, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:24.629Z","sequence":33205,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:24.629Z","sequence":33206,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B76] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:24.636Z","sequence":33207,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:24.636Z","sequence":33208,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:24.643Z","sequence":33209,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e78a7c06-cece-49a0-84b7-c5c13a26abfa, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:26.765Z","sequence":33210,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/aloxy:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:26.765Z","sequence":33211,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: aloxy, device-id: 0008004A8F68]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:26.77Z","sequence":33212,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b92df93d-5ccc-40ae-a1b9-a9189fbe49e9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:26.774Z","sequence":33213,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:26.774Z","sequence":33214,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: aloxy]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:26.777Z","sequence":33215,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-e55c2134-ece5-4533-83c6-0f3f6dc036fc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:29.433Z","sequence":33216,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:29.434Z","sequence":33217,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10018E3] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:29.439Z","sequence":33218,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:29.439Z","sequence":33219,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:29.494Z","sequence":33220,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-af16bbd6-44a5-4a3e-bb56-994f5277fbd8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:32.989Z","sequence":33221,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF4AEFD6BD07937]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fcf3c1e4ecddfb01","parentId":"4e0ae582cf5cf287","traceId":"00000000000000008698198d97e0d4cf","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:33.02Z","sequence":33222,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF4AEFD6BD07937]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fcf3c1e4ecddfb01","parentId":"4e0ae582cf5cf287","traceId":"00000000000000008698198d97e0d4cf","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:33.338Z","sequence":33223,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: FA71D2D641FD]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3d26e3ae5939517e","parentId":"e3d901126fcca456","traceId":"00000000000000009eff738968116416","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:33.354Z","sequence":33224,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: FA71D2D641FD]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3d26e3ae5939517e","parentId":"e3d901126fcca456","traceId":"00000000000000009eff738968116416","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:33.45Z","sequence":33225,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:33.45Z","sequence":33226,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10001D1] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:33.457Z","sequence":33227,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:33.457Z","sequence":33228,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:33.463Z","sequence":33229,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-365ba912-b6cf-406e-b4ef-a7435d171dd4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:35.888Z","sequence":33230,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:35.888Z","sequence":33231,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001F4] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:35.901Z","sequence":33232,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:35.901Z","sequence":33233,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:35.905Z","sequence":33234,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-33342112-6f1d-45c1-abfb-0326fed089eb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:36.381Z","sequence":33235,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:36.381Z","sequence":33236,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001F4] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:36.405Z","sequence":33237,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:36.405Z","sequence":33238,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:36.408Z","sequence":33239,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ed67d96f-9166-4352-887a-48230277a684, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:45.249Z","sequence":33240,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:45.249Z","sequence":33241,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BB613]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:45.273Z","sequence":33242,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-78097437-633c-4ed0-ba44-a4a04cba13f8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:50.747Z","sequence":33243,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:50.747Z","sequence":33244,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 70B3D57BB1000190] for gateway [0008004BB613]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:50.753Z","sequence":33245,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_lanxess\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:50.753Z","sequence":33246,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_lanxess\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:50.756Z","sequence":33247,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-043e8c50-644e-4bd3-b6c4-52d8a47e6528, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:54.565Z","sequence":33248,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:54.565Z","sequence":33249,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10009E9] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:54.589Z","sequence":33250,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:54.589Z","sequence":33251,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:08:54.594Z","sequence":33252,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7d9a4ecc-6f09-4c2a-bac1-fe11fc099b68, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:00.452Z","sequence":33253,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:00.453Z","sequence":33254,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: ineos]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:00.456Z","sequence":33255,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-115f3af8-f335-42d8-8891-8865487abc13, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:00.458Z","sequence":33256,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:00.459Z","sequence":33257,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB1000A89] for gateway [0008004B5135]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:00.464Z","sequence":33258,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:00.464Z","sequence":33259,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:00.467Z","sequence":33260,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d4f46811-157e-49ce-a6cf-7770c9ca8ee3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:00.824Z","sequence":33261,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oiltanking:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:00.824Z","sequence":33262,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oiltanking, device-id: 70B3D57BB1000C83] for gateway [0008004BB60F]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:00.853Z","sequence":33263,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_oiltanking\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:00.854Z","sequence":33264,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oiltanking\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:00.856Z","sequence":33265,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4d6c189a-e503-4a58-89c2-d82d86d81236, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:05.149Z","sequence":33266,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: CFC5F9FF72AD]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fe10b309d4425bad","parentId":"63bdfb6d632d7f5d","traceId":"0000000000000000cd40c3ae173aa615","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:05.177Z","sequence":33267,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: CFC5F9FF72AD, resource-version: 6dd78446-7256-441c-81b0-ef3133776a08]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fe10b309d4425bad","parentId":"63bdfb6d632d7f5d","traceId":"0000000000000000cd40c3ae173aa615","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:05.189Z","sequence":33268,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: CFC5F9FF72AD, resource-version: 7bc6e730-d050-4e11-abc9-f77111ee5259]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fe10b309d4425bad","parentId":"63bdfb6d632d7f5d","traceId":"0000000000000000cd40c3ae173aa615","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:05.193Z","sequence":33269,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: CFC5F9FF72AD]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cec858b7e2d196c8","parentId":"3a150b3a0bdbd062","traceId":"0000000000000000cd40c3ae173aa615","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:05.521Z","sequence":33270,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: CFC5F9FF72AD]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cec858b7e2d196c8","parentId":"3a150b3a0bdbd062","traceId":"0000000000000000cd40c3ae173aa615","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:06.06Z","sequence":33271,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF71FC85053BA11]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"40f8f49cc7b79dbf","parentId":"0a0e84c8ea5ce9a6","traceId":"0000000000000000a8d7f4a98ed13f1a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:06.078Z","sequence":33272,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF71FC85053BA11, resource-version: 56a31ffd-7142-4f5e-b8ad-391b4ad34da2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"40f8f49cc7b79dbf","parentId":"0a0e84c8ea5ce9a6","traceId":"0000000000000000a8d7f4a98ed13f1a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:06.085Z","sequence":33273,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF71FC85053BA11, resource-version: 17bbf101-41d0-4ce4-9b49-2aef6926649f]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"40f8f49cc7b79dbf","parentId":"0a0e84c8ea5ce9a6","traceId":"0000000000000000a8d7f4a98ed13f1a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:06.203Z","sequence":33274,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:06.204Z","sequence":33275,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-CFC5F9FF72AD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:06.206Z","sequence":33276,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:06.206Z","sequence":33277,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-CFC5F9FF72AD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:06.208Z","sequence":33278,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:06.208Z","sequence":33279,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-CFC5F9FF72AD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:06.209Z","sequence":33280,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:06.209Z","sequence":33281,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-CFC5F9FF72AD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:06.214Z","sequence":33282,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-e8512e5e-9fd4-4ee2-af3a-ffc8f64d85b5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:06.216Z","sequence":33283,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-249cb3fd-8775-403c-9955-ac0fd63c2271, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:06.218Z","sequence":33284,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-a35d59d9-ed38-41ca-95f1-fb03ac58b6af, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:06.219Z","sequence":33285,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-3e1388ab-b501-45ed-a5d9-474f134ebaab, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:06.773Z","sequence":33286,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:06.774Z","sequence":33287,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: CFC5F9FF72AD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:06.78Z","sequence":33288,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8e816afc-7b89-420f-a402-7ca08ae74150, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:06.781Z","sequence":33289,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:06.781Z","sequence":33290,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: CFC5F9FF72AD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:06.795Z","sequence":33291,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-32ccc662-9f7b-44f5-8dc3-46da1030a6b1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:06.865Z","sequence":33292,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:06.866Z","sequence":33293,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF71FC85053BA11] for gateway [CFC5F9FF72AD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:06.875Z","sequence":33294,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:06.875Z","sequence":33295,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:06.903Z","sequence":33296,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:06.904Z","sequence":33297,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF71FC85053BA11] for gateway [CFC5F9FF72AD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:06.904Z","sequence":33298,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:06.905Z","sequence":33299,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF71FC85053BA11] for gateway [CFC5F9FF72AD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:06.905Z","sequence":33300,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:06.906Z","sequence":33301,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF71FC85053BA11] for gateway [CFC5F9FF72AD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:06.906Z","sequence":33302,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:06.906Z","sequence":33303,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF71FC85053BA11] for gateway [CFC5F9FF72AD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:06.907Z","sequence":33304,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:06.907Z","sequence":33305,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF71FC85053BA11] for gateway [CFC5F9FF72AD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:06.907Z","sequence":33306,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:06.908Z","sequence":33307,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF71FC85053BA11] for gateway [CFC5F9FF72AD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:06.909Z","sequence":33308,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:06.909Z","sequence":33309,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF71FC85053BA11] for gateway [CFC5F9FF72AD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:06.91Z","sequence":33310,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:06.91Z","sequence":33311,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF71FC85053BA11] for gateway [CFC5F9FF72AD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:06.911Z","sequence":33312,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:06.911Z","sequence":33313,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF71FC85053BA11] for gateway [CFC5F9FF72AD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:06.911Z","sequence":33314,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:06.912Z","sequence":33315,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF71FC85053BA11] for gateway [CFC5F9FF72AD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:06.915Z","sequence":33316,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:06.915Z","sequence":33317,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF71FC85053BA11] for gateway [CFC5F9FF72AD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:06.915Z","sequence":33318,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:06.915Z","sequence":33319,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF71FC85053BA11] for gateway [CFC5F9FF72AD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:06.916Z","sequence":33320,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:06.916Z","sequence":33321,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF71FC85053BA11] for gateway [CFC5F9FF72AD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:06.916Z","sequence":33322,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:06.917Z","sequence":33323,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF71FC85053BA11] for gateway [CFC5F9FF72AD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:06.92Z","sequence":33324,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:06.92Z","sequence":33325,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF71FC85053BA11] for gateway [CFC5F9FF72AD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:06.92Z","sequence":33326,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:06.921Z","sequence":33327,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF71FC85053BA11] for gateway [CFC5F9FF72AD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:06.921Z","sequence":33328,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:06.921Z","sequence":33329,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF71FC85053BA11] for gateway [CFC5F9FF72AD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:06.927Z","sequence":33330,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:06.928Z","sequence":33331,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF71FC85053BA11] for gateway [CFC5F9FF72AD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:06.928Z","sequence":33332,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:06.928Z","sequence":33333,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF71FC85053BA11] for gateway [CFC5F9FF72AD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:06.929Z","sequence":33334,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:06.929Z","sequence":33335,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF71FC85053BA11] for gateway [CFC5F9FF72AD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:06.93Z","sequence":33336,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:06.93Z","sequence":33337,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF71FC85053BA11] for gateway [CFC5F9FF72AD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:06.933Z","sequence":33338,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:06.94Z","sequence":33339,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF71FC85053BA11] for gateway [CFC5F9FF72AD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:06.94Z","sequence":33340,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:06.94Z","sequence":33341,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF71FC85053BA11] for gateway [CFC5F9FF72AD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:06.941Z","sequence":33342,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:06.941Z","sequence":33343,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF71FC85053BA11] for gateway [CFC5F9FF72AD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:06.942Z","sequence":33344,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:06.942Z","sequence":33345,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF71FC85053BA11] for gateway [CFC5F9FF72AD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:06.942Z","sequence":33346,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:06.942Z","sequence":33347,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF71FC85053BA11] for gateway [CFC5F9FF72AD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:06.942Z","sequence":33348,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:06.942Z","sequence":33349,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF71FC85053BA11] for gateway [CFC5F9FF72AD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:06.942Z","sequence":33350,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:06.943Z","sequence":33351,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF71FC85053BA11] for gateway [CFC5F9FF72AD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:06.943Z","sequence":33352,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:06.943Z","sequence":33353,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF71FC85053BA11] for gateway [CFC5F9FF72AD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:06.966Z","sequence":33354,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:06.966Z","sequence":33355,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF71FC85053BA11] for gateway [CFC5F9FF72AD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:06.966Z","sequence":33356,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:06.966Z","sequence":33357,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF71FC85053BA11] for gateway [CFC5F9FF72AD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:06.971Z","sequence":33358,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:06.971Z","sequence":33359,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF71FC85053BA11] for gateway [CFC5F9FF72AD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:06.972Z","sequence":33360,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:06.972Z","sequence":33361,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF71FC85053BA11] for gateway [CFC5F9FF72AD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:06.972Z","sequence":33362,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:06.973Z","sequence":33363,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF71FC85053BA11] for gateway [CFC5F9FF72AD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:06.973Z","sequence":33364,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:06.973Z","sequence":33365,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF71FC85053BA11] for gateway [CFC5F9FF72AD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:06.999Z","sequence":33366,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:06.999Z","sequence":33367,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF71FC85053BA11] for gateway [CFC5F9FF72AD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.003Z","sequence":33368,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.003Z","sequence":33369,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF71FC85053BA11] for gateway [CFC5F9FF72AD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.003Z","sequence":33370,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.003Z","sequence":33371,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF71FC85053BA11] for gateway [CFC5F9FF72AD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.003Z","sequence":33372,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.003Z","sequence":33373,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF71FC85053BA11] for gateway [CFC5F9FF72AD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.003Z","sequence":33374,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.003Z","sequence":33375,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF71FC85053BA11] for gateway [CFC5F9FF72AD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.004Z","sequence":33376,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.004Z","sequence":33377,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF71FC85053BA11] for gateway [CFC5F9FF72AD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.004Z","sequence":33378,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.004Z","sequence":33379,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF71FC85053BA11] for gateway [CFC5F9FF72AD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.004Z","sequence":33380,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.004Z","sequence":33381,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF71FC85053BA11] for gateway [CFC5F9FF72AD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.004Z","sequence":33382,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.004Z","sequence":33383,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF71FC85053BA11] for gateway [CFC5F9FF72AD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.006Z","sequence":33384,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.006Z","sequence":33385,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF71FC85053BA11] for gateway [CFC5F9FF72AD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.006Z","sequence":33386,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.007Z","sequence":33387,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF71FC85053BA11] for gateway [CFC5F9FF72AD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.007Z","sequence":33388,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.007Z","sequence":33389,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF71FC85053BA11] for gateway [CFC5F9FF72AD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.007Z","sequence":33390,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.007Z","sequence":33391,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF71FC85053BA11] for gateway [CFC5F9FF72AD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.007Z","sequence":33392,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.007Z","sequence":33393,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF71FC85053BA11] for gateway [CFC5F9FF72AD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.007Z","sequence":33394,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.007Z","sequence":33395,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF71FC85053BA11] for gateway [CFC5F9FF72AD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.007Z","sequence":33396,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.007Z","sequence":33397,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF71FC85053BA11] for gateway [CFC5F9FF72AD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.008Z","sequence":33398,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.008Z","sequence":33399,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF71FC85053BA11] for gateway [CFC5F9FF72AD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.008Z","sequence":33400,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.008Z","sequence":33401,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF71FC85053BA11] for gateway [CFC5F9FF72AD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.008Z","sequence":33402,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.008Z","sequence":33403,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF71FC85053BA11] for gateway [CFC5F9FF72AD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.012Z","sequence":33404,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.012Z","sequence":33405,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF71FC85053BA11] for gateway [CFC5F9FF72AD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.012Z","sequence":33406,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.012Z","sequence":33407,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF71FC85053BA11] for gateway [CFC5F9FF72AD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.012Z","sequence":33408,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.013Z","sequence":33409,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF71FC85053BA11] for gateway [CFC5F9FF72AD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.013Z","sequence":33410,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.013Z","sequence":33411,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF71FC85053BA11] for gateway [CFC5F9FF72AD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.013Z","sequence":33412,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.013Z","sequence":33413,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF71FC85053BA11] for gateway [CFC5F9FF72AD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.013Z","sequence":33414,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.013Z","sequence":33415,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF71FC85053BA11] for gateway [CFC5F9FF72AD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.013Z","sequence":33416,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.013Z","sequence":33417,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF71FC85053BA11] for gateway [CFC5F9FF72AD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.013Z","sequence":33418,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.013Z","sequence":33419,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF71FC85053BA11] for gateway [CFC5F9FF72AD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.014Z","sequence":33420,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.014Z","sequence":33421,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF71FC85053BA11] for gateway [CFC5F9FF72AD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.014Z","sequence":33422,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.014Z","sequence":33423,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF71FC85053BA11] for gateway [CFC5F9FF72AD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.014Z","sequence":33424,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.014Z","sequence":33425,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF71FC85053BA11] for gateway [CFC5F9FF72AD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.014Z","sequence":33426,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.014Z","sequence":33427,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF71FC85053BA11] for gateway [CFC5F9FF72AD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.014Z","sequence":33428,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.014Z","sequence":33429,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF71FC85053BA11] for gateway [CFC5F9FF72AD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.014Z","sequence":33430,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.015Z","sequence":33431,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF71FC85053BA11] for gateway [CFC5F9FF72AD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.015Z","sequence":33432,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.015Z","sequence":33433,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF71FC85053BA11] for gateway [CFC5F9FF72AD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.015Z","sequence":33434,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.015Z","sequence":33435,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF71FC85053BA11] for gateway [CFC5F9FF72AD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.015Z","sequence":33436,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.015Z","sequence":33437,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF71FC85053BA11] for gateway [CFC5F9FF72AD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.022Z","sequence":33438,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.022Z","sequence":33439,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF71FC85053BA11] for gateway [CFC5F9FF72AD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.022Z","sequence":33440,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.022Z","sequence":33441,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF71FC85053BA11] for gateway [CFC5F9FF72AD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.022Z","sequence":33442,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.022Z","sequence":33443,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF71FC85053BA11] for gateway [CFC5F9FF72AD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.023Z","sequence":33444,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.023Z","sequence":33445,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF71FC85053BA11] for gateway [CFC5F9FF72AD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.023Z","sequence":33446,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.023Z","sequence":33447,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF71FC85053BA11] for gateway [CFC5F9FF72AD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.023Z","sequence":33448,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.023Z","sequence":33449,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF71FC85053BA11] for gateway [CFC5F9FF72AD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.023Z","sequence":33450,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.023Z","sequence":33451,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF71FC85053BA11] for gateway [CFC5F9FF72AD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.023Z","sequence":33452,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.023Z","sequence":33453,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF71FC85053BA11] for gateway [CFC5F9FF72AD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.023Z","sequence":33454,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.023Z","sequence":33455,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF71FC85053BA11] for gateway [CFC5F9FF72AD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.024Z","sequence":33456,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.024Z","sequence":33457,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF71FC85053BA11] for gateway [CFC5F9FF72AD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.024Z","sequence":33458,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.024Z","sequence":33459,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF71FC85053BA11] for gateway [CFC5F9FF72AD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.024Z","sequence":33460,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.024Z","sequence":33461,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF71FC85053BA11] for gateway [CFC5F9FF72AD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.024Z","sequence":33462,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.024Z","sequence":33463,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF71FC85053BA11] for gateway [CFC5F9FF72AD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.025Z","sequence":33464,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.027Z","sequence":33465,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF71FC85053BA11] for gateway [CFC5F9FF72AD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.027Z","sequence":33466,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.027Z","sequence":33467,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF71FC85053BA11] for gateway [CFC5F9FF72AD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.027Z","sequence":33468,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.027Z","sequence":33469,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF71FC85053BA11] for gateway [CFC5F9FF72AD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.027Z","sequence":33470,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.027Z","sequence":33471,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF71FC85053BA11] for gateway [CFC5F9FF72AD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.027Z","sequence":33472,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.027Z","sequence":33473,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF71FC85053BA11] for gateway [CFC5F9FF72AD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.028Z","sequence":33474,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.028Z","sequence":33475,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF71FC85053BA11] for gateway [CFC5F9FF72AD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.028Z","sequence":33476,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.028Z","sequence":33477,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF71FC85053BA11] for gateway [CFC5F9FF72AD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.051Z","sequence":33478,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.051Z","sequence":33479,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF71FC85053BA11] for gateway [CFC5F9FF72AD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.051Z","sequence":33480,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.051Z","sequence":33481,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF71FC85053BA11] for gateway [CFC5F9FF72AD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.051Z","sequence":33482,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.051Z","sequence":33483,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF71FC85053BA11] for gateway [CFC5F9FF72AD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.052Z","sequence":33484,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.052Z","sequence":33485,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF71FC85053BA11] for gateway [CFC5F9FF72AD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.46Z","sequence":33486,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-037c4e64-be1e-45f9-be7e-781969997305, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.461Z","sequence":33487,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.461Z","sequence":33488,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.461Z","sequence":33489,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.461Z","sequence":33490,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.461Z","sequence":33491,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.462Z","sequence":33492,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.462Z","sequence":33493,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.462Z","sequence":33494,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.462Z","sequence":33495,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.462Z","sequence":33496,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.462Z","sequence":33497,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.463Z","sequence":33498,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.463Z","sequence":33499,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.463Z","sequence":33500,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.465Z","sequence":33501,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.465Z","sequence":33502,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.465Z","sequence":33503,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.465Z","sequence":33504,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.465Z","sequence":33505,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.465Z","sequence":33506,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.466Z","sequence":33507,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.466Z","sequence":33508,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.466Z","sequence":33509,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.466Z","sequence":33510,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.466Z","sequence":33511,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.466Z","sequence":33512,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.467Z","sequence":33513,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.467Z","sequence":33514,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.467Z","sequence":33515,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.467Z","sequence":33516,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.467Z","sequence":33517,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.467Z","sequence":33518,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.468Z","sequence":33519,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.468Z","sequence":33520,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF71FC85053BA11] for gateway [CFC5F9FF72AD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.468Z","sequence":33521,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.469Z","sequence":33522,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF71FC85053BA11] for gateway [CFC5F9FF72AD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.469Z","sequence":33523,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.469Z","sequence":33524,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF71FC85053BA11] for gateway [CFC5F9FF72AD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.469Z","sequence":33525,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.469Z","sequence":33526,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF71FC85053BA11] for gateway [CFC5F9FF72AD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.47Z","sequence":33527,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.47Z","sequence":33528,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.47Z","sequence":33529,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.47Z","sequence":33530,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.472Z","sequence":33531,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.472Z","sequence":33532,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.472Z","sequence":33533,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.472Z","sequence":33534,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.488Z","sequence":33535,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.488Z","sequence":33536,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.489Z","sequence":33537,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.489Z","sequence":33538,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.49Z","sequence":33539,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.49Z","sequence":33540,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.491Z","sequence":33541,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.491Z","sequence":33542,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.494Z","sequence":33543,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.494Z","sequence":33544,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.499Z","sequence":33545,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.499Z","sequence":33546,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.51Z","sequence":33547,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.511Z","sequence":33548,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.511Z","sequence":33549,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.511Z","sequence":33550,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.514Z","sequence":33551,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.514Z","sequence":33552,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.543Z","sequence":33553,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.543Z","sequence":33554,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.554Z","sequence":33555,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.554Z","sequence":33556,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.563Z","sequence":33557,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.563Z","sequence":33558,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.582Z","sequence":33559,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.582Z","sequence":33560,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.582Z","sequence":33561,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.582Z","sequence":33562,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.587Z","sequence":33563,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.587Z","sequence":33564,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.588Z","sequence":33565,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.588Z","sequence":33566,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.593Z","sequence":33567,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.593Z","sequence":33568,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.594Z","sequence":33569,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.594Z","sequence":33570,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.595Z","sequence":33571,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.595Z","sequence":33572,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.597Z","sequence":33573,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.597Z","sequence":33574,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.599Z","sequence":33575,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.599Z","sequence":33576,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.599Z","sequence":33577,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.599Z","sequence":33578,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.6Z","sequence":33579,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.6Z","sequence":33580,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.601Z","sequence":33581,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.601Z","sequence":33582,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.602Z","sequence":33583,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.602Z","sequence":33584,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.603Z","sequence":33585,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.603Z","sequence":33586,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.604Z","sequence":33587,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.604Z","sequence":33588,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.605Z","sequence":33589,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.605Z","sequence":33590,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.606Z","sequence":33591,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.606Z","sequence":33592,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.607Z","sequence":33593,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.607Z","sequence":33594,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.607Z","sequence":33595,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.607Z","sequence":33596,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.608Z","sequence":33597,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.608Z","sequence":33598,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.609Z","sequence":33599,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.609Z","sequence":33600,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.609Z","sequence":33601,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.609Z","sequence":33602,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.616Z","sequence":33603,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.617Z","sequence":33604,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.617Z","sequence":33605,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.617Z","sequence":33606,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.621Z","sequence":33607,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.621Z","sequence":33608,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.622Z","sequence":33609,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.622Z","sequence":33610,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.623Z","sequence":33611,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.623Z","sequence":33612,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.624Z","sequence":33613,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.624Z","sequence":33614,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.625Z","sequence":33615,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.625Z","sequence":33616,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.625Z","sequence":33617,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.625Z","sequence":33618,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.627Z","sequence":33619,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.628Z","sequence":33620,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.628Z","sequence":33621,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.628Z","sequence":33622,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.629Z","sequence":33623,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.629Z","sequence":33624,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.63Z","sequence":33625,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.63Z","sequence":33626,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.631Z","sequence":33627,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.631Z","sequence":33628,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.632Z","sequence":33629,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.632Z","sequence":33630,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.632Z","sequence":33631,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.632Z","sequence":33632,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.633Z","sequence":33633,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.633Z","sequence":33634,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.633Z","sequence":33635,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.633Z","sequence":33636,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.635Z","sequence":33637,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.635Z","sequence":33638,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.635Z","sequence":33639,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.635Z","sequence":33640,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.636Z","sequence":33641,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.636Z","sequence":33642,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.636Z","sequence":33643,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.636Z","sequence":33644,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.638Z","sequence":33645,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.638Z","sequence":33646,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.638Z","sequence":33647,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.638Z","sequence":33648,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.639Z","sequence":33649,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.639Z","sequence":33650,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.639Z","sequence":33651,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.639Z","sequence":33652,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.64Z","sequence":33653,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.64Z","sequence":33654,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.641Z","sequence":33655,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.641Z","sequence":33656,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.641Z","sequence":33657,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.641Z","sequence":33658,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.643Z","sequence":33659,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.643Z","sequence":33660,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.644Z","sequence":33661,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.644Z","sequence":33662,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.645Z","sequence":33663,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.645Z","sequence":33664,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.646Z","sequence":33665,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.646Z","sequence":33666,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.647Z","sequence":33667,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.647Z","sequence":33668,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.647Z","sequence":33669,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.648Z","sequence":33670,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.648Z","sequence":33671,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.648Z","sequence":33672,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.655Z","sequence":33673,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.656Z","sequence":33674,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.667Z","sequence":33675,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.667Z","sequence":33676,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.668Z","sequence":33677,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.668Z","sequence":33678,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.668Z","sequence":33679,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.668Z","sequence":33680,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.672Z","sequence":33681,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.672Z","sequence":33682,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.814Z","sequence":33683,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:07.814Z","sequence":33684,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:08.007Z","sequence":33685,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:08.007Z","sequence":33686,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006D3] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:08.01Z","sequence":33687,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:08.01Z","sequence":33688,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:09.286Z","sequence":33689,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5f2fec89-0faf-4669-9629-f64bebe74651, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:10.275Z","sequence":33690,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4b0fc58b-4027-4f50-bd78-1ae5d3a70806, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:12.167Z","sequence":33691,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7dcd05cd-e5e1-4fe1-84cd-67238028f90f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:13.072Z","sequence":33692,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b125a651-8862-4228-9db4-2144c80aa7dd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:13.991Z","sequence":33693,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-52d22546-da7b-4e85-8a82-05492cea721a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:14.81Z","sequence":33694,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-fc97eb87-30a0-4ee6-af10-403f4cc161cd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:15.181Z","sequence":33695,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-de9a3fed-25d2-4d8e-8148-bc7a07062d08, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:15.436Z","sequence":33696,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-573ad015-7143-47d5-9356-e7909a7144da, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:15.64Z","sequence":33697,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-73328f86-24ef-4ada-8722-b7f1022beea9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:15.918Z","sequence":33698,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1337816d-6ed1-4448-8c8a-a08ed94d8973, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:16.061Z","sequence":33699,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a22e38d9-d699-42a3-868d-540a6700782f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:16.203Z","sequence":33700,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0cf2fa1e-4397-4ae5-bc50-5700c65e6e86, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:16.343Z","sequence":33701,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-fc8c93bd-1da6-401d-9532-024ede7df745, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:16.483Z","sequence":33702,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a62750b6-ee59-4daa-8c96-a47e6321d15e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:16.483Z","sequence":33703,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:16.484Z","sequence":33704,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:16.911Z","sequence":33705,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-74bfcf4f-1de1-4985-8585-302f451bc3c2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:17.352Z","sequence":33706,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5258163f-be34-4f9b-9cfe-839e4a45f38e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:17.772Z","sequence":33707,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6618534e-a9d2-4e14-9ca5-eba635a5b117, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:18.183Z","sequence":33708,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-510992f5-63c0-4c82-ace4-3dd0b49b751e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:18.686Z","sequence":33709,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-af3b698a-ba09-4993-aaae-af18cb9519a1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:19.084Z","sequence":33710,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7860fa1f-8475-416c-940e-a4b8524620f2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:19.335Z","sequence":33711,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c08a8749-6d45-4fad-92b7-24abd682e890, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:19.491Z","sequence":33712,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-777e3f3d-9b87-4daa-a057-176ea25ce493, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:19.655Z","sequence":33713,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ff5eea6c-acc7-4672-b5cc-e9229780c03d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:19.799Z","sequence":33714,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-162bb4a5-bab5-4428-93c8-788676aa479a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:19.943Z","sequence":33715,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ae9acf56-5fdc-4ab7-b413-a7d1991e45e1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:20.187Z","sequence":33716,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9a6f0b9f-8d66-4321-b18f-95ea74e01687, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:20.474Z","sequence":33717,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9e085e7a-26b3-4d96-95e8-ab541970acce, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:20.475Z","sequence":33718,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:20.475Z","sequence":33719,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:20.707Z","sequence":33720,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-773db42d-8b72-4d4b-a8cc-babb25079f65, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:20.856Z","sequence":33721,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-75fc5ec1-8096-4deb-aee8-31fcd0d2a8a1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:20.998Z","sequence":33722,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-64d31973-43e6-44d6-aaaf-439529eb6ad1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:21.145Z","sequence":33723,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7236435c-af3f-460e-938e-84b856f8c4f2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:21.286Z","sequence":33724,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2b4a0348-7483-4434-994e-5ea590b7cc7a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:21.517Z","sequence":33725,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-682bf608-414a-41c4-a23d-1686d610d58e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:21.662Z","sequence":33726,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d3f5107f-5a58-4bbd-b8db-c77d6330d201, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:21.663Z","sequence":33727,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:21.663Z","sequence":33728,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:21.905Z","sequence":33729,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6be77240-de75-48d7-8f25-53c6868ad799, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:22.165Z","sequence":33730,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-89a2fbf6-f27e-4420-be6d-97528c3bad4b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:22.346Z","sequence":33731,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-aee0e54d-bc2b-4cc1-aa5c-4c1d965a89b3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:22.503Z","sequence":33732,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-503dccb6-f3b5-490c-ac69-25349dd11624, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:22.671Z","sequence":33733,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-59500bbd-fa20-4c7a-8042-619ea6c2ab20, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:22.821Z","sequence":33734,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5a2cb3ba-d5ad-4e51-b5b4-cb550ae11139, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:23.17Z","sequence":33735,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0a761883-ff23-4756-8a7b-83286d36c41d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:23.566Z","sequence":33736,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-939b7e3c-b03c-4224-b802-cd068fdf62ac, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:23.921Z","sequence":33737,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-eab22a36-8a72-47ac-9115-a269c4079637, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:24.236Z","sequence":33738,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d0de8c32-b91f-4569-94e7-7aa5d05d9e53, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:24.564Z","sequence":33739,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-56f625e7-4c16-488d-b858-5294a0e8aac0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:24.734Z","sequence":33740,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c82315c5-1d20-40c3-863e-5a99e592e66e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:24.894Z","sequence":33741,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-95264633-0c25-4ab8-ac69-0302d135e9c3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:25.037Z","sequence":33742,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ea8452f0-db55-4040-94f5-3cebec68f91d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:25.295Z","sequence":33743,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7c4adaaf-a11f-4176-9aa2-41f53d1a97c8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:25.801Z","sequence":33744,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4570e0de-2f73-40d1-867c-695b98013c3f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:26.007Z","sequence":33745,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8dcc3a8b-cb1b-4789-8ed7-785980b6177e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:26.208Z","sequence":33746,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-be5c20c8-a4e0-4668-9633-458cba1e4d13, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:26.464Z","sequence":33747,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6e0fd894-6111-4f18-807e-780bb0ff6116, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:26.896Z","sequence":33748,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-36cc8690-22f3-4aeb-9bb9-116425726e74, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:27.136Z","sequence":33749,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-741fa1e5-9c67-4cc5-90b2-bb301aed7fcf, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:27.363Z","sequence":33750,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c3ce8016-9bc6-4ac6-9f50-e3888fda0873, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:27.365Z","sequence":33751,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/acta:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:27.365Z","sequence":33752,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: acta, device-id: 0008004AAAA3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:27.366Z","sequence":33753,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono service-command-router-Device Registration-6b43a4ef-0980-4edd-b8fb-ab7a8b085811] closed connection with error","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72,"exception":{"refId":1,"exceptionType":"io.vertx.core.impl.NoStackTraceThrowable","message":"Error{condition=amqp:resource-limit-exceeded, description='local-idle-timeout expired', info=null}","frames":[]}} +{"timestamp":"2023-07-25T05:09:27.367Z","sequence":33754,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Tenant-995cc45f-23b2-488f-a5d9-0b18c4ae6c62] closed connection with error","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72,"exception":{"refId":1,"exceptionType":"io.vertx.core.impl.NoStackTraceThrowable","message":"Error{condition=amqp:resource-limit-exceeded, description='local-idle-timeout expired', info=null}","frames":[]}} +{"timestamp":"2023-07-25T05:09:27.367Z","sequence":33755,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] closed connection with error","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72,"exception":{"refId":1,"exceptionType":"io.vertx.core.impl.NoStackTraceThrowable","message":"Error{condition=amqp:resource-limit-exceeded, description='local-idle-timeout expired', info=null}","frames":[]}} +{"timestamp":"2023-07-25T05:09:27.368Z","sequence":33756,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono service-command-router-Tenant-8c258f6d-8b57-47cf-8f84-a38d9786fed2] closed connection with error","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72,"exception":{"refId":1,"exceptionType":"io.vertx.core.impl.NoStackTraceThrowable","message":"Error{condition=amqp:resource-limit-exceeded, description='local-idle-timeout expired', info=null}","frames":[]}} +{"timestamp":"2023-07-25T05:09:27.368Z","sequence":33757,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Credentials-75faa79c-12c0-45f2-bd9c-973655a3937c] closed connection with error","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72,"exception":{"refId":1,"exceptionType":"io.vertx.core.impl.NoStackTraceThrowable","message":"Error{condition=amqp:resource-limit-exceeded, description='local-idle-timeout expired', info=null}","frames":[]}} +{"timestamp":"2023-07-25T05:09:27.369Z","sequence":33758,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Tenant-ded758d0-b7cf-4d65-a210-6d11fa222d32] closed connection with error","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72,"exception":{"refId":1,"exceptionType":"io.vertx.core.impl.NoStackTraceThrowable","message":"Error{condition=amqp:resource-limit-exceeded, description='local-idle-timeout expired', info=null}","frames":[]}} +{"timestamp":"2023-07-25T05:09:27.37Z","sequence":33759,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:27.37Z","sequence":33760,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000857] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:27.37Z","sequence":33761,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:27.37Z","sequence":33762,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006D3] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:27.37Z","sequence":33763,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] closed connection with error","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72,"exception":{"refId":1,"exceptionType":"io.vertx.core.impl.NoStackTraceThrowable","message":"Error{condition=amqp:resource-limit-exceeded, description='local-idle-timeout expired', info=null}","frames":[]}} +{"timestamp":"2023-07-25T05:09:27.682Z","sequence":33764,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-db95f55f-f552-4ba8-a0b9-afee173a7c06, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:27.88Z","sequence":33765,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e242ded0-65fc-4bd9-ab2f-ee3f886f9818, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:28.034Z","sequence":33766,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a4de11d5-d142-4d84-ac44-b905004de367, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:28.63Z","sequence":33767,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-10deac0a-1735-41f4-948d-8e54088b3d53, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:28.843Z","sequence":33768,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e298599c-348d-402a-ae05-5df7d8decd99, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:28.984Z","sequence":33769,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-59e71ffe-cb8a-4174-b3d3-874c558cda79, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:29.135Z","sequence":33770,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2e11af89-979c-4dbf-9fd4-842dfdf1993b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:29.275Z","sequence":33771,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7958bdca-da72-4d4c-a6be-e77768128ebb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:29.415Z","sequence":33772,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-169377c9-ea85-4020-83dc-d98643837dbf, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:29.658Z","sequence":33773,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b8fd539e-c8af-46d1-9c2b-ddf5251e4041, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:29.986Z","sequence":33774,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-968029ae-a565-42a9-b4cc-2b4ab8d4d362, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:30.32Z","sequence":33775,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2a8218fb-b012-4365-b19a-7cc9f4fd6da9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:30.636Z","sequence":33776,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ca11b8d9-ad1a-47fb-97ca-8a1b3f65aadf, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:30.92Z","sequence":33777,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8f5ec2f9-f57d-4fd3-9770-6a4561891a9a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:31.064Z","sequence":33778,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ce35fe26-f62e-4c21-aeee-7c94f671bcfe, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:31.211Z","sequence":33779,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ef3e0d9a-797d-4360-88d7-2960cb6b0d42, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:31.412Z","sequence":33780,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4bfbf8b2-c530-401d-a181-71bd1e8d8d00, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:31.663Z","sequence":33781,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6aef183e-580b-4c1c-97d0-e218dbd1bb46, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:31.909Z","sequence":33782,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a16d546a-fc19-412e-962f-8c4521a770a4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:32.051Z","sequence":33783,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9b5b39c3-5025-4eff-8c98-5dfd9330f063, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:32.209Z","sequence":33784,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c4112f0c-5dbc-4366-bbcb-638eed1094ba, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:32.362Z","sequence":33785,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-831f97a3-06ee-48ac-b266-5919691ecd55, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:32.553Z","sequence":33786,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d3595436-7c29-438a-b76c-e57d9359f29e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:32.847Z","sequence":33787,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5838495c-dca3-46ea-96ce-dc802e986b40, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:33.241Z","sequence":33788,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8eee3d29-74f7-4464-ad4a-ffd3931fc257, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:33.528Z","sequence":33789,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-64597bc7-3e00-404b-af05-c00862f22c22, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:33.784Z","sequence":33790,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-52008332-9252-4152-a4d0-472261017f08, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:34.104Z","sequence":33791,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-dc3a2e2c-1ca0-46ca-a084-5008cfb779f0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:34.346Z","sequence":33792,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-cdb6ae9f-4517-48b7-be45-4b3a19ac96c5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:34.528Z","sequence":33793,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-69849fa1-8601-4e08-acd6-5aa56cbf7587, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:34.752Z","sequence":33794,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9713552b-fd34-4d35-9aed-8df1abc6c6dd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:35.007Z","sequence":33795,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-314e0c80-26e6-44e6-9933-35e0eb24d276, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:35.272Z","sequence":33796,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2692408e-7d90-4200-975a-cc8bed2ba699, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:35.413Z","sequence":33797,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-132af42d-270e-4cbd-bc7c-21fdbbeb49cf, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:35.566Z","sequence":33798,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3f1f67be-878c-49d5-a289-2f560f2563a1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:35.711Z","sequence":33799,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ce8cc102-f210-4339-a46b-4f6cb5615f78, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:35.857Z","sequence":33800,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a024abbc-f4a6-4fc7-86e7-1f4f9fae6d13, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:35.996Z","sequence":33801,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5631b490-9f17-476a-af6a-dddc5e9f57a5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:36.134Z","sequence":33802,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b0c6c794-ff50-4fb4-938f-d4e31138c20c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:36.274Z","sequence":33803,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c1333de8-e4bd-4101-8870-09f9c072f8ea, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:36.501Z","sequence":33804,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-77350649-faba-4144-b67a-caaf4785a1c0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:36.81Z","sequence":33805,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-72040bc1-9ca0-4c93-89da-b7fe8f9f342b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:37.083Z","sequence":33806,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8329e2dd-957c-4b81-80fe-814b1fbe3fea, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:37.084Z","sequence":33807,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.8.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:37.084Z","sequence":33808,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:37.086Z","sequence":33809,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:37.093Z","sequence":33810,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:37.093Z","sequence":33811,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/acta:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:37.093Z","sequence":33812,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: acta, device-id: 0008004AAAA3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:37.381Z","sequence":33813,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono service-command-router-Device Registration-6b43a4ef-0980-4edd-b8fb-ab7a8b085811] disconnected","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:37.386Z","sequence":33814,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Tenant-995cc45f-23b2-488f-a5d9-0b18c4ae6c62] disconnected","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:37.386Z","sequence":33815,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] disconnected","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:37.386Z","sequence":33816,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono service-command-router-Tenant-8c258f6d-8b57-47cf-8f84-a38d9786fed2] disconnected","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:37.387Z","sequence":33817,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Credentials-75faa79c-12c0-45f2-bd9c-973655a3937c] disconnected","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:37.387Z","sequence":33818,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Tenant-ded758d0-b7cf-4d65-a210-6d11fa222d32] disconnected","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:37.387Z","sequence":33819,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] disconnected","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:37.389Z","sequence":33820,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-662c7c6b-818b-43f7-86f4-5be1d5325be1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:37.39Z","sequence":33821,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.HonoProtonHelper","level":"DEBUG","message":"sender link [source: registration/shell/3c1dc02a-cd07-43be-b9c0-fce2db321e34, target: null] is locally open but underlying transport is disconnected","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:37.391Z","sequence":33822,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.8.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:37.392Z","sequence":33823,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:37.393Z","sequence":33824,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:37.394Z","sequence":33825,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:37.395Z","sequence":33826,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5026231b-c417-48c3-a59c-c3c8694ee853, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:37.395Z","sequence":33827,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3e3669c3-005e-4d6b-94a8-4dd494d41a4d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.018Z","sequence":33828,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.HonoProtonHelper","level":"DEBUG","message":"sender link [source: registration/shell/3c1dc02a-cd07-43be-b9c0-fce2db321e34, target: null] is locally open but underlying transport is disconnected","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.019Z","sequence":33829,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.HonoProtonHelper","level":"DEBUG","message":"sender link [source: registration/flint/149a9225-50d6-4dbc-b67f-c307e0d41b03, target: null] is locally open but underlying transport is disconnected","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.02Z","sequence":33830,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/repsol:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.02Z","sequence":33831,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: repsol, device-id: 0008004A37FF]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.022Z","sequence":33832,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"initializing SASL authenticator","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.022Z","sequence":33833,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client provided an empty list of SASL mechanisms [hostname: null, state: PN_SASL_IDLE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.023Z","sequence":33834,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"initializing SASL authenticator","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.024Z","sequence":33835,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client provided an empty list of SASL mechanisms [hostname: null, state: PN_SASL_IDLE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.025Z","sequence":33836,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"initializing SASL authenticator","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.025Z","sequence":33837,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client provided an empty list of SASL mechanisms [hostname: null, state: PN_SASL_IDLE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.026Z","sequence":33838,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"initializing SASL authenticator","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.026Z","sequence":33839,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client provided an empty list of SASL mechanisms [hostname: null, state: PN_SASL_IDLE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.028Z","sequence":33840,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"initializing SASL authenticator","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.028Z","sequence":33841,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client provided an empty list of SASL mechanisms [hostname: null, state: PN_SASL_IDLE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.029Z","sequence":33842,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"initializing SASL authenticator","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.029Z","sequence":33843,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client provided an empty list of SASL mechanisms [hostname: null, state: PN_SASL_IDLE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.03Z","sequence":33844,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"initializing SASL authenticator","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.03Z","sequence":33845,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client provided an empty list of SASL mechanisms [hostname: null, state: PN_SASL_IDLE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.031Z","sequence":33846,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"initializing SASL authenticator","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.032Z","sequence":33847,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client provided an empty list of SASL mechanisms [hostname: null, state: PN_SASL_IDLE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.033Z","sequence":33848,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"initializing SASL authenticator","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.033Z","sequence":33849,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client provided an empty list of SASL mechanisms [hostname: null, state: PN_SASL_IDLE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.034Z","sequence":33850,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"initializing SASL authenticator","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.035Z","sequence":33851,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client provided an empty list of SASL mechanisms [hostname: null, state: PN_SASL_IDLE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.12Z","sequence":33852,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client wants to authenticate using SASL [mechanism: PLAIN, host: null, state: PN_SASL_STEP]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.121Z","sequence":33853,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client wants to authenticate using SASL [mechanism: PLAIN, host: null, state: PN_SASL_STEP]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.121Z","sequence":33854,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client wants to authenticate using SASL [mechanism: PLAIN, host: null, state: PN_SASL_STEP]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.121Z","sequence":33855,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client wants to authenticate using SASL [mechanism: PLAIN, host: null, state: PN_SASL_STEP]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.122Z","sequence":33856,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client wants to authenticate using SASL [mechanism: PLAIN, host: null, state: PN_SASL_STEP]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.122Z","sequence":33857,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client wants to authenticate using SASL [mechanism: PLAIN, host: null, state: PN_SASL_STEP]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.123Z","sequence":33858,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client wants to authenticate using SASL [mechanism: PLAIN, host: null, state: PN_SASL_STEP]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.123Z","sequence":33859,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client wants to authenticate using SASL [mechanism: PLAIN, host: null, state: PN_SASL_STEP]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.123Z","sequence":33860,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client wants to authenticate using SASL [mechanism: PLAIN, host: null, state: PN_SASL_STEP]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.124Z","sequence":33861,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client wants to authenticate using SASL [mechanism: PLAIN, host: null, state: PN_SASL_STEP]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.124Z","sequence":33862,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"received authentication request [mechanism: PLAIN]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b5c5fcae62b265dd","traceId":"ddab449293823137650b6b9b5a9b5796","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.124Z","sequence":33863,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"processing PLAIN authentication request [authzid: , authcid: command-router@HONO, pwd: *****]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b5c5fcae62b265dd","traceId":"ddab449293823137650b6b9b5a9b5796","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.124Z","sequence":33864,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"OpenSSL [available: false, supports KeyManagerFactory: false]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b5c5fcae62b265dd","traceId":"ddab449293823137650b6b9b5a9b5796","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.124Z","sequence":33865,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"using JVM's default SSL engine","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b5c5fcae62b265dd","traceId":"ddab449293823137650b6b9b5a9b5796","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.124Z","sequence":33866,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b5c5fcae62b265dd","traceId":"ddab449293823137650b6b9b5a9b5796","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.125Z","sequence":33867,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b5c5fcae62b265dd","traceId":"ddab449293823137650b6b9b5a9b5796","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.125Z","sequence":33868,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connecting to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b5c5fcae62b265dd","traceId":"ddab449293823137650b6b9b5a9b5796","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.125Z","sequence":33869,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"received authentication request [mechanism: PLAIN]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"09cbc5a11e9e0327","traceId":"14ce37de2e1297196051df7279120005","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.125Z","sequence":33870,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"processing PLAIN authentication request [authzid: , authcid: lora-adapter@HONO, pwd: *****]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"09cbc5a11e9e0327","traceId":"14ce37de2e1297196051df7279120005","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.125Z","sequence":33871,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"OpenSSL [available: false, supports KeyManagerFactory: false]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"09cbc5a11e9e0327","traceId":"14ce37de2e1297196051df7279120005","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.125Z","sequence":33872,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"using JVM's default SSL engine","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"09cbc5a11e9e0327","traceId":"14ce37de2e1297196051df7279120005","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.125Z","sequence":33873,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"09cbc5a11e9e0327","traceId":"14ce37de2e1297196051df7279120005","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.125Z","sequence":33874,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"09cbc5a11e9e0327","traceId":"14ce37de2e1297196051df7279120005","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.125Z","sequence":33875,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connecting to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"09cbc5a11e9e0327","traceId":"14ce37de2e1297196051df7279120005","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.125Z","sequence":33876,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"received authentication request [mechanism: PLAIN]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"68788c37dc86a218","traceId":"875b18e53fda79410d907f0d638ea6af","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.125Z","sequence":33877,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"processing PLAIN authentication request [authzid: , authcid: lora-adapter@HONO, pwd: *****]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"68788c37dc86a218","traceId":"875b18e53fda79410d907f0d638ea6af","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.125Z","sequence":33878,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"OpenSSL [available: false, supports KeyManagerFactory: false]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"68788c37dc86a218","traceId":"875b18e53fda79410d907f0d638ea6af","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.125Z","sequence":33879,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"using JVM's default SSL engine","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"68788c37dc86a218","traceId":"875b18e53fda79410d907f0d638ea6af","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.125Z","sequence":33880,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"68788c37dc86a218","traceId":"875b18e53fda79410d907f0d638ea6af","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.125Z","sequence":33881,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"68788c37dc86a218","traceId":"875b18e53fda79410d907f0d638ea6af","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.125Z","sequence":33882,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connecting to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"68788c37dc86a218","traceId":"875b18e53fda79410d907f0d638ea6af","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.125Z","sequence":33883,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"received authentication request [mechanism: PLAIN]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3ae7bd379ef63378","traceId":"edaa94352915534b5b62bf873b9ff240","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.125Z","sequence":33884,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"processing PLAIN authentication request [authzid: , authcid: lora-adapter@HONO, pwd: *****]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3ae7bd379ef63378","traceId":"edaa94352915534b5b62bf873b9ff240","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.125Z","sequence":33885,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"OpenSSL [available: false, supports KeyManagerFactory: false]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3ae7bd379ef63378","traceId":"edaa94352915534b5b62bf873b9ff240","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.125Z","sequence":33886,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"using JVM's default SSL engine","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3ae7bd379ef63378","traceId":"edaa94352915534b5b62bf873b9ff240","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.125Z","sequence":33887,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3ae7bd379ef63378","traceId":"edaa94352915534b5b62bf873b9ff240","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.125Z","sequence":33888,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3ae7bd379ef63378","traceId":"edaa94352915534b5b62bf873b9ff240","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.125Z","sequence":33889,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connecting to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3ae7bd379ef63378","traceId":"edaa94352915534b5b62bf873b9ff240","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.125Z","sequence":33890,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"received authentication request [mechanism: PLAIN]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"63ec57248a8e370a","traceId":"2bd84b005afa8601d6d059c54a801acf","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.125Z","sequence":33891,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"processing PLAIN authentication request [authzid: , authcid: command-router@HONO, pwd: *****]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"63ec57248a8e370a","traceId":"2bd84b005afa8601d6d059c54a801acf","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.126Z","sequence":33892,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"OpenSSL [available: false, supports KeyManagerFactory: false]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"63ec57248a8e370a","traceId":"2bd84b005afa8601d6d059c54a801acf","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.126Z","sequence":33893,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"using JVM's default SSL engine","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"63ec57248a8e370a","traceId":"2bd84b005afa8601d6d059c54a801acf","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.126Z","sequence":33894,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"63ec57248a8e370a","traceId":"2bd84b005afa8601d6d059c54a801acf","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.126Z","sequence":33895,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"63ec57248a8e370a","traceId":"2bd84b005afa8601d6d059c54a801acf","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.126Z","sequence":33896,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connecting to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"63ec57248a8e370a","traceId":"2bd84b005afa8601d6d059c54a801acf","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.126Z","sequence":33897,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"received authentication request [mechanism: PLAIN]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"64190b22e71c3ed3","traceId":"5e33e35e7774fa93264be5b1f5c7553d","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.126Z","sequence":33898,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"processing PLAIN authentication request [authzid: , authcid: mqtt-adapter@HONO, pwd: *****]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"64190b22e71c3ed3","traceId":"5e33e35e7774fa93264be5b1f5c7553d","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.126Z","sequence":33899,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"OpenSSL [available: false, supports KeyManagerFactory: false]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"64190b22e71c3ed3","traceId":"5e33e35e7774fa93264be5b1f5c7553d","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.126Z","sequence":33900,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"using JVM's default SSL engine","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"64190b22e71c3ed3","traceId":"5e33e35e7774fa93264be5b1f5c7553d","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.126Z","sequence":33901,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"64190b22e71c3ed3","traceId":"5e33e35e7774fa93264be5b1f5c7553d","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.126Z","sequence":33902,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"64190b22e71c3ed3","traceId":"5e33e35e7774fa93264be5b1f5c7553d","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.126Z","sequence":33903,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connecting to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"64190b22e71c3ed3","traceId":"5e33e35e7774fa93264be5b1f5c7553d","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.126Z","sequence":33904,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"received authentication request [mechanism: PLAIN]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"54d92d98df9ae1b3","traceId":"df6532ae5aadcf3b53537899aaafb13d","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.126Z","sequence":33905,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"processing PLAIN authentication request [authzid: , authcid: mqtt-adapter@HONO, pwd: *****]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"54d92d98df9ae1b3","traceId":"df6532ae5aadcf3b53537899aaafb13d","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.126Z","sequence":33906,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"OpenSSL [available: false, supports KeyManagerFactory: false]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"54d92d98df9ae1b3","traceId":"df6532ae5aadcf3b53537899aaafb13d","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.126Z","sequence":33907,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"using JVM's default SSL engine","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"54d92d98df9ae1b3","traceId":"df6532ae5aadcf3b53537899aaafb13d","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.126Z","sequence":33908,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"54d92d98df9ae1b3","traceId":"df6532ae5aadcf3b53537899aaafb13d","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.126Z","sequence":33909,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"54d92d98df9ae1b3","traceId":"df6532ae5aadcf3b53537899aaafb13d","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.126Z","sequence":33910,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connecting to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"54d92d98df9ae1b3","traceId":"df6532ae5aadcf3b53537899aaafb13d","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.126Z","sequence":33911,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"received authentication request [mechanism: PLAIN]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"130d10d21f0e595a","traceId":"6e310a85844a4a131136a5e72ee90609","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.126Z","sequence":33912,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"processing PLAIN authentication request [authzid: , authcid: command-router@HONO, pwd: *****]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"130d10d21f0e595a","traceId":"6e310a85844a4a131136a5e72ee90609","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.126Z","sequence":33913,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"OpenSSL [available: false, supports KeyManagerFactory: false]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"130d10d21f0e595a","traceId":"6e310a85844a4a131136a5e72ee90609","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.132Z","sequence":33914,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"using JVM's default SSL engine","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"130d10d21f0e595a","traceId":"6e310a85844a4a131136a5e72ee90609","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.132Z","sequence":33915,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"130d10d21f0e595a","traceId":"6e310a85844a4a131136a5e72ee90609","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.132Z","sequence":33916,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"130d10d21f0e595a","traceId":"6e310a85844a4a131136a5e72ee90609","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.132Z","sequence":33917,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connecting to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"130d10d21f0e595a","traceId":"6e310a85844a4a131136a5e72ee90609","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.132Z","sequence":33918,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"received authentication request [mechanism: PLAIN]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"78636da463d32024","traceId":"44bb138f79528eaac56102be7c95f042","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.133Z","sequence":33919,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"processing PLAIN authentication request [authzid: , authcid: lora-adapter@HONO, pwd: *****]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"78636da463d32024","traceId":"44bb138f79528eaac56102be7c95f042","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.133Z","sequence":33920,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"OpenSSL [available: false, supports KeyManagerFactory: false]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"78636da463d32024","traceId":"44bb138f79528eaac56102be7c95f042","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.133Z","sequence":33921,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"using JVM's default SSL engine","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"78636da463d32024","traceId":"44bb138f79528eaac56102be7c95f042","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.133Z","sequence":33922,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"78636da463d32024","traceId":"44bb138f79528eaac56102be7c95f042","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.133Z","sequence":33923,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"78636da463d32024","traceId":"44bb138f79528eaac56102be7c95f042","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.133Z","sequence":33924,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connecting to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"78636da463d32024","traceId":"44bb138f79528eaac56102be7c95f042","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.133Z","sequence":33925,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"received authentication request [mechanism: PLAIN]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c0252c7a9e9b6793","traceId":"467966982687d1c82966620ec9beb50a","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.133Z","sequence":33926,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"processing PLAIN authentication request [authzid: , authcid: lora-adapter@HONO, pwd: *****]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c0252c7a9e9b6793","traceId":"467966982687d1c82966620ec9beb50a","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.133Z","sequence":33927,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"OpenSSL [available: false, supports KeyManagerFactory: false]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c0252c7a9e9b6793","traceId":"467966982687d1c82966620ec9beb50a","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.133Z","sequence":33928,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"using JVM's default SSL engine","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c0252c7a9e9b6793","traceId":"467966982687d1c82966620ec9beb50a","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.133Z","sequence":33929,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c0252c7a9e9b6793","traceId":"467966982687d1c82966620ec9beb50a","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.133Z","sequence":33930,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c0252c7a9e9b6793","traceId":"467966982687d1c82966620ec9beb50a","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.133Z","sequence":33931,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connecting to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c0252c7a9e9b6793","traceId":"467966982687d1c82966620ec9beb50a","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.136Z","sequence":33932,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"initializing SASL authenticator","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.136Z","sequence":33933,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client provided an empty list of SASL mechanisms [hostname: null, state: PN_SASL_IDLE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.137Z","sequence":33934,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"initializing SASL authenticator","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.138Z","sequence":33935,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client provided an empty list of SASL mechanisms [hostname: null, state: PN_SASL_IDLE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.139Z","sequence":33936,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"initializing SASL authenticator","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.139Z","sequence":33937,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client provided an empty list of SASL mechanisms [hostname: null, state: PN_SASL_IDLE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.14Z","sequence":33938,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ed341736-9ef4-4819-a18a-c2bf7a0306b7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.184Z","sequence":33939,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client wants to authenticate using SASL [mechanism: PLAIN, host: null, state: PN_SASL_STEP]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.184Z","sequence":33940,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"received authentication request [mechanism: PLAIN]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8fa67457aa94dbff","traceId":"03282a972118ecbd8e48c5a3e629ef4b","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.184Z","sequence":33941,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"processing PLAIN authentication request [authzid: , authcid: command-router@HONO, pwd: *****]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8fa67457aa94dbff","traceId":"03282a972118ecbd8e48c5a3e629ef4b","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.184Z","sequence":33942,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"OpenSSL [available: false, supports KeyManagerFactory: false]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8fa67457aa94dbff","traceId":"03282a972118ecbd8e48c5a3e629ef4b","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.184Z","sequence":33943,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"using JVM's default SSL engine","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8fa67457aa94dbff","traceId":"03282a972118ecbd8e48c5a3e629ef4b","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.184Z","sequence":33944,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8fa67457aa94dbff","traceId":"03282a972118ecbd8e48c5a3e629ef4b","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.184Z","sequence":33945,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8fa67457aa94dbff","traceId":"03282a972118ecbd8e48c5a3e629ef4b","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.184Z","sequence":33946,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connecting to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8fa67457aa94dbff","traceId":"03282a972118ecbd8e48c5a3e629ef4b","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.185Z","sequence":33947,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client wants to authenticate using SASL [mechanism: PLAIN, host: null, state: PN_SASL_STEP]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.185Z","sequence":33948,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"received authentication request [mechanism: PLAIN]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"183c0b5faacc5326","traceId":"2b4789b8f660800fc6afdc20a255671d","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.185Z","sequence":33949,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"processing PLAIN authentication request [authzid: , authcid: mqtt-adapter@HONO, pwd: *****]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"183c0b5faacc5326","traceId":"2b4789b8f660800fc6afdc20a255671d","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.185Z","sequence":33950,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"OpenSSL [available: false, supports KeyManagerFactory: false]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"183c0b5faacc5326","traceId":"2b4789b8f660800fc6afdc20a255671d","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.185Z","sequence":33951,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"using JVM's default SSL engine","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"183c0b5faacc5326","traceId":"2b4789b8f660800fc6afdc20a255671d","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.185Z","sequence":33952,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"183c0b5faacc5326","traceId":"2b4789b8f660800fc6afdc20a255671d","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.185Z","sequence":33953,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"183c0b5faacc5326","traceId":"2b4789b8f660800fc6afdc20a255671d","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.185Z","sequence":33954,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connecting to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"183c0b5faacc5326","traceId":"2b4789b8f660800fc6afdc20a255671d","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.185Z","sequence":33955,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client wants to authenticate using SASL [mechanism: PLAIN, host: null, state: PN_SASL_STEP]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.185Z","sequence":33956,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"received authentication request [mechanism: PLAIN]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5c6d19337b43956f","traceId":"147608624346bc91cee7174e643aec9c","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.186Z","sequence":33957,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"processing PLAIN authentication request [authzid: , authcid: lora-adapter@HONO, pwd: *****]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5c6d19337b43956f","traceId":"147608624346bc91cee7174e643aec9c","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.186Z","sequence":33958,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"OpenSSL [available: false, supports KeyManagerFactory: false]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5c6d19337b43956f","traceId":"147608624346bc91cee7174e643aec9c","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.186Z","sequence":33959,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"using JVM's default SSL engine","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5c6d19337b43956f","traceId":"147608624346bc91cee7174e643aec9c","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.186Z","sequence":33960,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5c6d19337b43956f","traceId":"147608624346bc91cee7174e643aec9c","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.186Z","sequence":33961,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5c6d19337b43956f","traceId":"147608624346bc91cee7174e643aec9c","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.186Z","sequence":33962,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connecting to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5c6d19337b43956f","traceId":"147608624346bc91cee7174e643aec9c","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.187Z","sequence":33963,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"initializing SASL authenticator","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.187Z","sequence":33964,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client provided an empty list of SASL mechanisms [hostname: null, state: PN_SASL_IDLE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.19Z","sequence":33965,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client wants to authenticate using SASL [mechanism: PLAIN, host: null, state: PN_SASL_STEP]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.19Z","sequence":33966,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"received authentication request [mechanism: PLAIN]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e95b6cf2e033a48f","traceId":"ff39c41f18c22fd947ac012e5764624a","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.19Z","sequence":33967,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"processing PLAIN authentication request [authzid: , authcid: mqtt-adapter@HONO, pwd: *****]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e95b6cf2e033a48f","traceId":"ff39c41f18c22fd947ac012e5764624a","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.19Z","sequence":33968,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"OpenSSL [available: false, supports KeyManagerFactory: false]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e95b6cf2e033a48f","traceId":"ff39c41f18c22fd947ac012e5764624a","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.19Z","sequence":33969,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"using JVM's default SSL engine","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e95b6cf2e033a48f","traceId":"ff39c41f18c22fd947ac012e5764624a","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.19Z","sequence":33970,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e95b6cf2e033a48f","traceId":"ff39c41f18c22fd947ac012e5764624a","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.19Z","sequence":33971,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e95b6cf2e033a48f","traceId":"ff39c41f18c22fd947ac012e5764624a","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.19Z","sequence":33972,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connecting to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e95b6cf2e033a48f","traceId":"ff39c41f18c22fd947ac012e5764624a","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.827Z","sequence":33973,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connected to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server], opening connection ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3ae7bd379ef63378","traceId":"edaa94352915534b5b62bf873b9ff240","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.829Z","sequence":33974,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connection to container [hono-auth-0.0.0.0:5671] at [amqps://aloxy-hono-service-auth:5671, role: Authentication Server] open","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3ae7bd379ef63378","traceId":"edaa94352915534b5b62bf873b9ff240","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.831Z","sequence":33975,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"opened receiver link to Authentication service, waiting for token ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3ae7bd379ef63378","traceId":"edaa94352915534b5b62bf873b9ff240","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.831Z","sequence":33976,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"successfully retrieved token from Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3ae7bd379ef63378","traceId":"edaa94352915534b5b62bf873b9ff240","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.832Z","sequence":33977,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"closing connection to Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3ae7bd379ef63378","traceId":"edaa94352915534b5b62bf873b9ff240","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.851Z","sequence":33978,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.EventBusAuthenticationService","level":"DEBUG","message":"received token [length: 969] in response to authentication request","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.851Z","sequence":33979,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connected to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server], opening connection ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"09cbc5a11e9e0327","traceId":"14ce37de2e1297196051df7279120005","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.851Z","sequence":33980,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.JjwtBasedAuthTokenValidator","level":"DEBUG","message":"using key [id: 984e3639028b1e7d0b7d97f8f3de6a82638af0ed7d06ce7d9e038a1c4c634169] to validate signature (alg: RS256]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.852Z","sequence":33981,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"authentication of client [authorization ID: lora-adapter@HONO] succeeded","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.852Z","sequence":33982,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"finishing SASL handshake with outcome PN_SASL_OK","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.852Z","sequence":33983,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"received connection request from client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.853Z","sequence":33984,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connection to container [hono-auth-0.0.0.0:5671] at [amqps://aloxy-hono-service-auth:5671, role: Authentication Server] open","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"09cbc5a11e9e0327","traceId":"14ce37de2e1297196051df7279120005","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.854Z","sequence":33985,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"processing open frame from client container [vert.x-5ea65be7-33d3-4659-916e-f8e3a1a400d4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.855Z","sequence":33986,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"INFO","message":"client connected [container: vert.x-5ea65be7-33d3-4659-916e-f8e3a1a400d4, user: lora-adapter@HONO, token valid until: 2023-07-25T06:09:38Z]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.855Z","sequence":33987,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: vert.x-5ea65be7-33d3-4659-916e-f8e3a1a400d4] closed connection","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.855Z","sequence":33988,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: vert.x-5ea65be7-33d3-4659-916e-f8e3a1a400d4] disconnected","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.855Z","sequence":33989,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connected to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server], opening connection ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"63ec57248a8e370a","traceId":"2bd84b005afa8601d6d059c54a801acf","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.856Z","sequence":33990,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"opened receiver link to Authentication service, waiting for token ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"09cbc5a11e9e0327","traceId":"14ce37de2e1297196051df7279120005","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.856Z","sequence":33991,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"successfully retrieved token from Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"09cbc5a11e9e0327","traceId":"14ce37de2e1297196051df7279120005","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.857Z","sequence":33992,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"closing connection to Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"09cbc5a11e9e0327","traceId":"14ce37de2e1297196051df7279120005","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.857Z","sequence":33993,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.EventBusAuthenticationService","level":"DEBUG","message":"received token [length: 969] in response to authentication request","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.857Z","sequence":33994,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.JjwtBasedAuthTokenValidator","level":"DEBUG","message":"using key [id: 984e3639028b1e7d0b7d97f8f3de6a82638af0ed7d06ce7d9e038a1c4c634169] to validate signature (alg: RS256]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.858Z","sequence":33995,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"authentication of client [authorization ID: lora-adapter@HONO] succeeded","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.858Z","sequence":33996,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"finishing SASL handshake with outcome PN_SASL_OK","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.858Z","sequence":33997,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"received connection request from client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.86Z","sequence":33998,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"processing open frame from client container [vert.x-ca3cec47-5478-4406-b712-ac170d885121]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.86Z","sequence":33999,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"INFO","message":"client connected [container: vert.x-ca3cec47-5478-4406-b712-ac170d885121, user: lora-adapter@HONO, token valid until: 2023-07-25T06:09:38Z]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.86Z","sequence":34000,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: vert.x-ca3cec47-5478-4406-b712-ac170d885121] closed connection","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.86Z","sequence":34001,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: vert.x-ca3cec47-5478-4406-b712-ac170d885121] disconnected","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.863Z","sequence":34002,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connection to container [hono-auth-0.0.0.0:5671] at [amqps://aloxy-hono-service-auth:5671, role: Authentication Server] open","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"63ec57248a8e370a","traceId":"2bd84b005afa8601d6d059c54a801acf","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.865Z","sequence":34003,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"opened receiver link to Authentication service, waiting for token ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"63ec57248a8e370a","traceId":"2bd84b005afa8601d6d059c54a801acf","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.865Z","sequence":34004,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"successfully retrieved token from Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"63ec57248a8e370a","traceId":"2bd84b005afa8601d6d059c54a801acf","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.866Z","sequence":34005,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"closing connection to Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"63ec57248a8e370a","traceId":"2bd84b005afa8601d6d059c54a801acf","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.866Z","sequence":34006,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.EventBusAuthenticationService","level":"DEBUG","message":"received token [length: 696] in response to authentication request","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.866Z","sequence":34007,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.JjwtBasedAuthTokenValidator","level":"DEBUG","message":"using key [id: 984e3639028b1e7d0b7d97f8f3de6a82638af0ed7d06ce7d9e038a1c4c634169] to validate signature (alg: RS256]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.867Z","sequence":34008,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"authentication of client [authorization ID: command-router@HONO] succeeded","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.867Z","sequence":34009,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"finishing SASL handshake with outcome PN_SASL_OK","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.867Z","sequence":34010,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"received connection request from client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.869Z","sequence":34011,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"processing open frame from client container [vert.x-eb45e659-741d-445e-ba70-82e279ee5f88]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.869Z","sequence":34012,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"INFO","message":"client connected [container: vert.x-eb45e659-741d-445e-ba70-82e279ee5f88, user: command-router@HONO, token valid until: 2023-07-25T06:09:38Z]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.869Z","sequence":34013,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: vert.x-eb45e659-741d-445e-ba70-82e279ee5f88] closed connection","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.869Z","sequence":34014,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: vert.x-eb45e659-741d-445e-ba70-82e279ee5f88] disconnected","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.875Z","sequence":34015,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connected to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server], opening connection ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5c6d19337b43956f","traceId":"147608624346bc91cee7174e643aec9c","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.877Z","sequence":34016,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connection to container [hono-auth-0.0.0.0:5671] at [amqps://aloxy-hono-service-auth:5671, role: Authentication Server] open","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5c6d19337b43956f","traceId":"147608624346bc91cee7174e643aec9c","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.88Z","sequence":34017,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"opened receiver link to Authentication service, waiting for token ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5c6d19337b43956f","traceId":"147608624346bc91cee7174e643aec9c","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.88Z","sequence":34018,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"successfully retrieved token from Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5c6d19337b43956f","traceId":"147608624346bc91cee7174e643aec9c","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.88Z","sequence":34019,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"closing connection to Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5c6d19337b43956f","traceId":"147608624346bc91cee7174e643aec9c","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.88Z","sequence":34020,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.EventBusAuthenticationService","level":"DEBUG","message":"received token [length: 969] in response to authentication request","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.88Z","sequence":34021,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.JjwtBasedAuthTokenValidator","level":"DEBUG","message":"using key [id: 984e3639028b1e7d0b7d97f8f3de6a82638af0ed7d06ce7d9e038a1c4c634169] to validate signature (alg: RS256]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.881Z","sequence":34022,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"authentication of client [authorization ID: lora-adapter@HONO] succeeded","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.881Z","sequence":34023,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"finishing SASL handshake with outcome PN_SASL_OK","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.881Z","sequence":34024,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"received connection request from client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.882Z","sequence":34025,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"processing open frame from client container [Hono adapter-lora-Tenant-995cc45f-23b2-488f-a5d9-0b18c4ae6c62]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.883Z","sequence":34026,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"INFO","message":"client connected [container: Hono adapter-lora-Tenant-995cc45f-23b2-488f-a5d9-0b18c4ae6c62, user: lora-adapter@HONO, token valid until: 2023-07-25T06:09:38Z]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.884Z","sequence":34027,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"opening new session with client [container: Hono adapter-lora-Tenant-995cc45f-23b2-488f-a5d9-0b18c4ae6c62]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.89Z","sequence":34028,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connected to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server], opening connection ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c0252c7a9e9b6793","traceId":"467966982687d1c82966620ec9beb50a","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.892Z","sequence":34029,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connection to container [hono-auth-0.0.0.0:5671] at [amqps://aloxy-hono-service-auth:5671, role: Authentication Server] open","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c0252c7a9e9b6793","traceId":"467966982687d1c82966620ec9beb50a","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.894Z","sequence":34030,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"opened receiver link to Authentication service, waiting for token ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c0252c7a9e9b6793","traceId":"467966982687d1c82966620ec9beb50a","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.894Z","sequence":34031,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"successfully retrieved token from Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c0252c7a9e9b6793","traceId":"467966982687d1c82966620ec9beb50a","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.894Z","sequence":34032,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"closing connection to Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c0252c7a9e9b6793","traceId":"467966982687d1c82966620ec9beb50a","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.894Z","sequence":34033,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.EventBusAuthenticationService","level":"DEBUG","message":"received token [length: 969] in response to authentication request","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.895Z","sequence":34034,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.JjwtBasedAuthTokenValidator","level":"DEBUG","message":"using key [id: 984e3639028b1e7d0b7d97f8f3de6a82638af0ed7d06ce7d9e038a1c4c634169] to validate signature (alg: RS256]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.895Z","sequence":34035,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"authentication of client [authorization ID: lora-adapter@HONO] succeeded","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.895Z","sequence":34036,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"finishing SASL handshake with outcome PN_SASL_OK","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.895Z","sequence":34037,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"received connection request from client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.897Z","sequence":34038,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"processing open frame from client container [Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.897Z","sequence":34039,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"INFO","message":"client connected [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6, user: lora-adapter@HONO, token valid until: 2023-07-25T06:09:38Z]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.899Z","sequence":34040,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"opening new session with client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.905Z","sequence":34041,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connected to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server], opening connection ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e95b6cf2e033a48f","traceId":"ff39c41f18c22fd947ac012e5764624a","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.907Z","sequence":34042,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connection to container [hono-auth-0.0.0.0:5671] at [amqps://aloxy-hono-service-auth:5671, role: Authentication Server] open","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e95b6cf2e033a48f","traceId":"ff39c41f18c22fd947ac012e5764624a","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.91Z","sequence":34043,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"opened receiver link to Authentication service, waiting for token ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e95b6cf2e033a48f","traceId":"ff39c41f18c22fd947ac012e5764624a","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.91Z","sequence":34044,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"successfully retrieved token from Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e95b6cf2e033a48f","traceId":"ff39c41f18c22fd947ac012e5764624a","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.91Z","sequence":34045,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"closing connection to Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e95b6cf2e033a48f","traceId":"ff39c41f18c22fd947ac012e5764624a","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.91Z","sequence":34046,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.EventBusAuthenticationService","level":"DEBUG","message":"received token [length: 969] in response to authentication request","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.911Z","sequence":34047,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.JjwtBasedAuthTokenValidator","level":"DEBUG","message":"using key [id: 984e3639028b1e7d0b7d97f8f3de6a82638af0ed7d06ce7d9e038a1c4c634169] to validate signature (alg: RS256]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.911Z","sequence":34048,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"authentication of client [authorization ID: mqtt-adapter@HONO] succeeded","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.911Z","sequence":34049,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"finishing SASL handshake with outcome PN_SASL_OK","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.911Z","sequence":34050,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"received connection request from client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.913Z","sequence":34051,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"processing open frame from client container [Hono adapter-mqtt-Credentials-75faa79c-12c0-45f2-bd9c-973655a3937c]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.913Z","sequence":34052,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"INFO","message":"client connected [container: Hono adapter-mqtt-Credentials-75faa79c-12c0-45f2-bd9c-973655a3937c, user: mqtt-adapter@HONO, token valid until: 2023-07-25T06:09:38Z]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.916Z","sequence":34053,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"opening new session with client [container: Hono adapter-mqtt-Credentials-75faa79c-12c0-45f2-bd9c-973655a3937c]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.92Z","sequence":34054,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connected to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server], opening connection ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b5c5fcae62b265dd","traceId":"ddab449293823137650b6b9b5a9b5796","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.922Z","sequence":34055,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connection to container [hono-auth-0.0.0.0:5671] at [amqps://aloxy-hono-service-auth:5671, role: Authentication Server] open","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b5c5fcae62b265dd","traceId":"ddab449293823137650b6b9b5a9b5796","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.925Z","sequence":34056,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"opened receiver link to Authentication service, waiting for token ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b5c5fcae62b265dd","traceId":"ddab449293823137650b6b9b5a9b5796","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.925Z","sequence":34057,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"successfully retrieved token from Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b5c5fcae62b265dd","traceId":"ddab449293823137650b6b9b5a9b5796","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.925Z","sequence":34058,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"closing connection to Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b5c5fcae62b265dd","traceId":"ddab449293823137650b6b9b5a9b5796","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.925Z","sequence":34059,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.EventBusAuthenticationService","level":"DEBUG","message":"received token [length: 696] in response to authentication request","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.925Z","sequence":34060,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.JjwtBasedAuthTokenValidator","level":"DEBUG","message":"using key [id: 984e3639028b1e7d0b7d97f8f3de6a82638af0ed7d06ce7d9e038a1c4c634169] to validate signature (alg: RS256]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.926Z","sequence":34061,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"authentication of client [authorization ID: command-router@HONO] succeeded","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.926Z","sequence":34062,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"finishing SASL handshake with outcome PN_SASL_OK","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.926Z","sequence":34063,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"received connection request from client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.928Z","sequence":34064,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"processing open frame from client container [vert.x-2e6a252d-1476-4034-b768-86b9c8536002]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.928Z","sequence":34065,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"INFO","message":"client connected [container: vert.x-2e6a252d-1476-4034-b768-86b9c8536002, user: command-router@HONO, token valid until: 2023-07-25T06:09:38Z]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.928Z","sequence":34066,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: vert.x-2e6a252d-1476-4034-b768-86b9c8536002] closed connection","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.929Z","sequence":34067,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: vert.x-2e6a252d-1476-4034-b768-86b9c8536002] disconnected","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.934Z","sequence":34068,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connected to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server], opening connection ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"78636da463d32024","traceId":"44bb138f79528eaac56102be7c95f042","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.936Z","sequence":34069,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connection to container [hono-auth-0.0.0.0:5671] at [amqps://aloxy-hono-service-auth:5671, role: Authentication Server] open","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"78636da463d32024","traceId":"44bb138f79528eaac56102be7c95f042","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.939Z","sequence":34070,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"opened receiver link to Authentication service, waiting for token ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"78636da463d32024","traceId":"44bb138f79528eaac56102be7c95f042","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.939Z","sequence":34071,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"successfully retrieved token from Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"78636da463d32024","traceId":"44bb138f79528eaac56102be7c95f042","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.939Z","sequence":34072,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"closing connection to Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"78636da463d32024","traceId":"44bb138f79528eaac56102be7c95f042","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.939Z","sequence":34073,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.EventBusAuthenticationService","level":"DEBUG","message":"received token [length: 969] in response to authentication request","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.94Z","sequence":34074,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.JjwtBasedAuthTokenValidator","level":"DEBUG","message":"using key [id: 984e3639028b1e7d0b7d97f8f3de6a82638af0ed7d06ce7d9e038a1c4c634169] to validate signature (alg: RS256]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.94Z","sequence":34075,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"authentication of client [authorization ID: lora-adapter@HONO] succeeded","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.94Z","sequence":34076,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"finishing SASL handshake with outcome PN_SASL_OK","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.94Z","sequence":34077,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"received connection request from client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.942Z","sequence":34078,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"processing open frame from client container [Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.943Z","sequence":34079,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"INFO","message":"client connected [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d, user: lora-adapter@HONO, token valid until: 2023-07-25T06:09:38Z]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.945Z","sequence":34080,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"opening new session with client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.966Z","sequence":34081,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connected to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server], opening connection ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"64190b22e71c3ed3","traceId":"5e33e35e7774fa93264be5b1f5c7553d","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.968Z","sequence":34082,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connection to container [hono-auth-0.0.0.0:5671] at [amqps://aloxy-hono-service-auth:5671, role: Authentication Server] open","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"64190b22e71c3ed3","traceId":"5e33e35e7774fa93264be5b1f5c7553d","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.971Z","sequence":34083,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"opened receiver link to Authentication service, waiting for token ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"64190b22e71c3ed3","traceId":"5e33e35e7774fa93264be5b1f5c7553d","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.971Z","sequence":34084,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"successfully retrieved token from Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"64190b22e71c3ed3","traceId":"5e33e35e7774fa93264be5b1f5c7553d","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.971Z","sequence":34085,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"closing connection to Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"64190b22e71c3ed3","traceId":"5e33e35e7774fa93264be5b1f5c7553d","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.972Z","sequence":34086,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.EventBusAuthenticationService","level":"DEBUG","message":"received token [length: 969] in response to authentication request","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.972Z","sequence":34087,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.JjwtBasedAuthTokenValidator","level":"DEBUG","message":"using key [id: 984e3639028b1e7d0b7d97f8f3de6a82638af0ed7d06ce7d9e038a1c4c634169] to validate signature (alg: RS256]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.972Z","sequence":34088,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"authentication of client [authorization ID: mqtt-adapter@HONO] succeeded","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.972Z","sequence":34089,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"finishing SASL handshake with outcome PN_SASL_OK","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.973Z","sequence":34090,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"received connection request from client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.975Z","sequence":34091,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"processing open frame from client container [vert.x-a755cb3a-0dfa-458b-8e49-9d03ae80ed76]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.975Z","sequence":34092,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"INFO","message":"client connected [container: vert.x-a755cb3a-0dfa-458b-8e49-9d03ae80ed76, user: mqtt-adapter@HONO, token valid until: 2023-07-25T06:09:38Z]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.975Z","sequence":34093,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: vert.x-a755cb3a-0dfa-458b-8e49-9d03ae80ed76] closed connection","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.975Z","sequence":34094,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: vert.x-a755cb3a-0dfa-458b-8e49-9d03ae80ed76] disconnected","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.981Z","sequence":34095,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connected to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server], opening connection ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"183c0b5faacc5326","traceId":"2b4789b8f660800fc6afdc20a255671d","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.983Z","sequence":34096,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connection to container [hono-auth-0.0.0.0:5671] at [amqps://aloxy-hono-service-auth:5671, role: Authentication Server] open","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"183c0b5faacc5326","traceId":"2b4789b8f660800fc6afdc20a255671d","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.985Z","sequence":34097,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"opened receiver link to Authentication service, waiting for token ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"183c0b5faacc5326","traceId":"2b4789b8f660800fc6afdc20a255671d","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.985Z","sequence":34098,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"successfully retrieved token from Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"183c0b5faacc5326","traceId":"2b4789b8f660800fc6afdc20a255671d","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.985Z","sequence":34099,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"closing connection to Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"183c0b5faacc5326","traceId":"2b4789b8f660800fc6afdc20a255671d","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.986Z","sequence":34100,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.EventBusAuthenticationService","level":"DEBUG","message":"received token [length: 969] in response to authentication request","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.986Z","sequence":34101,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.JjwtBasedAuthTokenValidator","level":"DEBUG","message":"using key [id: 984e3639028b1e7d0b7d97f8f3de6a82638af0ed7d06ce7d9e038a1c4c634169] to validate signature (alg: RS256]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.987Z","sequence":34102,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"authentication of client [authorization ID: mqtt-adapter@HONO] succeeded","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.987Z","sequence":34103,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"finishing SASL handshake with outcome PN_SASL_OK","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.987Z","sequence":34104,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"received connection request from client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.989Z","sequence":34105,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"processing open frame from client container [Hono adapter-mqtt-Tenant-ded758d0-b7cf-4d65-a210-6d11fa222d32]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.989Z","sequence":34106,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"INFO","message":"client connected [container: Hono adapter-mqtt-Tenant-ded758d0-b7cf-4d65-a210-6d11fa222d32, user: mqtt-adapter@HONO, token valid until: 2023-07-25T06:09:38Z]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.991Z","sequence":34107,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"opening new session with client [container: Hono adapter-mqtt-Tenant-ded758d0-b7cf-4d65-a210-6d11fa222d32]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.991Z","sequence":34108,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Tenant-ded758d0-b7cf-4d65-a210-6d11fa222d32] wants to open a link [address: Source{address='tenant/2b37ab4f-de4d-4011-8653-586da079701c', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.991Z","sequence":34109,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-0]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.991Z","sequence":34110,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@5960c36f] for replies to [tenant/2b37ab4f-de4d-4011-8653-586da079701c]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.993Z","sequence":34111,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Tenant-ded758d0-b7cf-4d65-a210-6d11fa222d32] wants to open a link [address: Target{address='tenant', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.993Z","sequence":34112,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-1]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.993Z","sequence":34113,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.995Z","sequence":34114,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.995Z","sequence":34115,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: repsol]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.996Z","sequence":34116,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connected to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server], opening connection ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"54d92d98df9ae1b3","traceId":"df6532ae5aadcf3b53537899aaafb13d","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.998Z","sequence":34117,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connection to container [hono-auth-0.0.0.0:5671] at [amqps://aloxy-hono-service-auth:5671, role: Authentication Server] open","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"54d92d98df9ae1b3","traceId":"df6532ae5aadcf3b53537899aaafb13d","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:38.998Z","sequence":34118,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-f1df4b3d-7eaa-446d-a8ae-bdb83834c396, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:39.001Z","sequence":34119,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"opened receiver link to Authentication service, waiting for token ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"54d92d98df9ae1b3","traceId":"df6532ae5aadcf3b53537899aaafb13d","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:39.001Z","sequence":34120,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"successfully retrieved token from Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"54d92d98df9ae1b3","traceId":"df6532ae5aadcf3b53537899aaafb13d","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:39.001Z","sequence":34121,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"closing connection to Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"54d92d98df9ae1b3","traceId":"df6532ae5aadcf3b53537899aaafb13d","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:39.001Z","sequence":34122,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.EventBusAuthenticationService","level":"DEBUG","message":"received token [length: 969] in response to authentication request","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:39.002Z","sequence":34123,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.JjwtBasedAuthTokenValidator","level":"DEBUG","message":"using key [id: 984e3639028b1e7d0b7d97f8f3de6a82638af0ed7d06ce7d9e038a1c4c634169] to validate signature (alg: RS256]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:39.002Z","sequence":34124,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"authentication of client [authorization ID: mqtt-adapter@HONO] succeeded","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:39.002Z","sequence":34125,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"finishing SASL handshake with outcome PN_SASL_OK","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:39.002Z","sequence":34126,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"received connection request from client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:39.004Z","sequence":34127,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"processing open frame from client container [vert.x-068af84a-776c-43ee-9105-fd4130b68a09]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:39.004Z","sequence":34128,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"INFO","message":"client connected [container: vert.x-068af84a-776c-43ee-9105-fd4130b68a09, user: mqtt-adapter@HONO, token valid until: 2023-07-25T06:09:38Z]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:39.004Z","sequence":34129,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: vert.x-068af84a-776c-43ee-9105-fd4130b68a09] closed connection","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:39.004Z","sequence":34130,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: vert.x-068af84a-776c-43ee-9105-fd4130b68a09] disconnected","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:39.014Z","sequence":34131,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connected to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server], opening connection ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8fa67457aa94dbff","traceId":"03282a972118ecbd8e48c5a3e629ef4b","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:39.017Z","sequence":34132,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connection to container [hono-auth-0.0.0.0:5671] at [amqps://aloxy-hono-service-auth:5671, role: Authentication Server] open","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8fa67457aa94dbff","traceId":"03282a972118ecbd8e48c5a3e629ef4b","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:39.019Z","sequence":34133,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"opened receiver link to Authentication service, waiting for token ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8fa67457aa94dbff","traceId":"03282a972118ecbd8e48c5a3e629ef4b","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:39.019Z","sequence":34134,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"successfully retrieved token from Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8fa67457aa94dbff","traceId":"03282a972118ecbd8e48c5a3e629ef4b","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:39.019Z","sequence":34135,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"closing connection to Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8fa67457aa94dbff","traceId":"03282a972118ecbd8e48c5a3e629ef4b","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:39.019Z","sequence":34136,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.EventBusAuthenticationService","level":"DEBUG","message":"received token [length: 696] in response to authentication request","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:39.019Z","sequence":34137,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.JjwtBasedAuthTokenValidator","level":"DEBUG","message":"using key [id: 984e3639028b1e7d0b7d97f8f3de6a82638af0ed7d06ce7d9e038a1c4c634169] to validate signature (alg: RS256]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:39.02Z","sequence":34138,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"authentication of client [authorization ID: command-router@HONO] succeeded","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:39.02Z","sequence":34139,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"finishing SASL handshake with outcome PN_SASL_OK","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:39.02Z","sequence":34140,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"received connection request from client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:39.022Z","sequence":34141,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"processing open frame from client container [Hono service-command-router-Tenant-8c258f6d-8b57-47cf-8f84-a38d9786fed2]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:39.022Z","sequence":34142,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"INFO","message":"client connected [container: Hono service-command-router-Tenant-8c258f6d-8b57-47cf-8f84-a38d9786fed2, user: command-router@HONO, token valid until: 2023-07-25T06:09:38Z]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:39.024Z","sequence":34143,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"opening new session with client [container: Hono service-command-router-Tenant-8c258f6d-8b57-47cf-8f84-a38d9786fed2]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:39.029Z","sequence":34144,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connected to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server], opening connection ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"68788c37dc86a218","traceId":"875b18e53fda79410d907f0d638ea6af","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:39.031Z","sequence":34145,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connection to container [hono-auth-0.0.0.0:5671] at [amqps://aloxy-hono-service-auth:5671, role: Authentication Server] open","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"68788c37dc86a218","traceId":"875b18e53fda79410d907f0d638ea6af","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:39.034Z","sequence":34146,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"opened receiver link to Authentication service, waiting for token ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"68788c37dc86a218","traceId":"875b18e53fda79410d907f0d638ea6af","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:39.034Z","sequence":34147,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"successfully retrieved token from Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"68788c37dc86a218","traceId":"875b18e53fda79410d907f0d638ea6af","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:39.034Z","sequence":34148,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"closing connection to Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"68788c37dc86a218","traceId":"875b18e53fda79410d907f0d638ea6af","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:39.034Z","sequence":34149,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.EventBusAuthenticationService","level":"DEBUG","message":"received token [length: 969] in response to authentication request","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:39.035Z","sequence":34150,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.JjwtBasedAuthTokenValidator","level":"DEBUG","message":"using key [id: 984e3639028b1e7d0b7d97f8f3de6a82638af0ed7d06ce7d9e038a1c4c634169] to validate signature (alg: RS256]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:39.035Z","sequence":34151,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"authentication of client [authorization ID: lora-adapter@HONO] succeeded","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:39.035Z","sequence":34152,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"finishing SASL handshake with outcome PN_SASL_OK","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:39.035Z","sequence":34153,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"received connection request from client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:39.037Z","sequence":34154,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"processing open frame from client container [vert.x-5a9ac83b-6f99-4097-a004-653c2a5cede9]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:39.037Z","sequence":34155,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"INFO","message":"client connected [container: vert.x-5a9ac83b-6f99-4097-a004-653c2a5cede9, user: lora-adapter@HONO, token valid until: 2023-07-25T06:09:38Z]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:39.037Z","sequence":34156,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: vert.x-5a9ac83b-6f99-4097-a004-653c2a5cede9] closed connection","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:39.038Z","sequence":34157,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: vert.x-5a9ac83b-6f99-4097-a004-653c2a5cede9] disconnected","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:39.044Z","sequence":34158,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connected to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server], opening connection ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"130d10d21f0e595a","traceId":"6e310a85844a4a131136a5e72ee90609","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:39.046Z","sequence":34159,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connection to container [hono-auth-0.0.0.0:5671] at [amqps://aloxy-hono-service-auth:5671, role: Authentication Server] open","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"130d10d21f0e595a","traceId":"6e310a85844a4a131136a5e72ee90609","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:39.049Z","sequence":34160,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"opened receiver link to Authentication service, waiting for token ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"130d10d21f0e595a","traceId":"6e310a85844a4a131136a5e72ee90609","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:39.05Z","sequence":34161,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"successfully retrieved token from Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"130d10d21f0e595a","traceId":"6e310a85844a4a131136a5e72ee90609","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:39.05Z","sequence":34162,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"closing connection to Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"130d10d21f0e595a","traceId":"6e310a85844a4a131136a5e72ee90609","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:39.05Z","sequence":34163,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.EventBusAuthenticationService","level":"DEBUG","message":"received token [length: 696] in response to authentication request","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:39.05Z","sequence":34164,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.JjwtBasedAuthTokenValidator","level":"DEBUG","message":"using key [id: 984e3639028b1e7d0b7d97f8f3de6a82638af0ed7d06ce7d9e038a1c4c634169] to validate signature (alg: RS256]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:39.051Z","sequence":34165,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"authentication of client [authorization ID: command-router@HONO] succeeded","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:39.051Z","sequence":34166,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"finishing SASL handshake with outcome PN_SASL_OK","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:39.051Z","sequence":34167,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"received connection request from client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:39.053Z","sequence":34168,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"processing open frame from client container [Hono service-command-router-Device Registration-6b43a4ef-0980-4edd-b8fb-ab7a8b085811]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:39.053Z","sequence":34169,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"INFO","message":"client connected [container: Hono service-command-router-Device Registration-6b43a4ef-0980-4edd-b8fb-ab7a8b085811, user: command-router@HONO, token valid until: 2023-07-25T06:09:39Z]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:39.055Z","sequence":34170,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"opening new session with client [container: Hono service-command-router-Device Registration-6b43a4ef-0980-4edd-b8fb-ab7a8b085811]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:40.041Z","sequence":34171,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Credentials-75faa79c-12c0-45f2-bd9c-973655a3937c] wants to open a link [address: Source{address='credentials/oci/62021157-690f-4a44-ae51-7065db1a333d', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:40.042Z","sequence":34172,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-0]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:40.042Z","sequence":34173,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@34eba74] for replies to [credentials/oci/62021157-690f-4a44-ae51-7065db1a333d]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:40.044Z","sequence":34174,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Credentials-75faa79c-12c0-45f2-bd9c-973655a3937c] wants to open a link [address: Target{address='credentials/oci', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:40.044Z","sequence":34175,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-1]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:40.044Z","sequence":34176,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:40.047Z","sequence":34177,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/oci:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:40.047Z","sequence":34178,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: oci, type: hashed-password, auth-id: auth-0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:40.058Z","sequence":34179,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-db410f1e-38ba-480c-a310-ae6b63a1215b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:40.207Z","sequence":34180,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:40.207Z","sequence":34181,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:40.213Z","sequence":34182,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-fc2250f8-c62b-44f0-97f2-65dd5001d3fe, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:41.465Z","sequence":34183,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] wants to open a link [address: Source{address='registration/shell/57274fd3-00c5-4b83-ad68-50144b634bb2', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:41.466Z","sequence":34184,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-0]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:41.466Z","sequence":34185,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@2a57d6bf] for replies to [registration/shell/57274fd3-00c5-4b83-ad68-50144b634bb2]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:41.468Z","sequence":34186,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] wants to open a link [address: Target{address='registration/shell', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:41.468Z","sequence":34187,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-1]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:41.469Z","sequence":34188,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:41.472Z","sequence":34189,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:41.473Z","sequence":34190,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10018E5] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:41.489Z","sequence":34191,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:41.489Z","sequence":34192,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:41.495Z","sequence":34193,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6af18bcf-a6e9-4e46-ba01-646b77cd2176, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:41.601Z","sequence":34194,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:41.601Z","sequence":34195,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006D3] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:41.606Z","sequence":34196,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.8.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:41.606Z","sequence":34197,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:41.611Z","sequence":34198,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3b53d50b-704f-43ec-bfe2-a7b1eb21e46e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:41.914Z","sequence":34199,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:41.915Z","sequence":34200,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006A5] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:41.92Z","sequence":34201,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:41.92Z","sequence":34202,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:41.926Z","sequence":34203,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4a8482a5-29f6-4235-9233-0cdfa84c840a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:42.832Z","sequence":34204,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:42.832Z","sequence":34205,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C47] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:42.865Z","sequence":34206,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:42.865Z","sequence":34207,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:42.881Z","sequence":34208,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a1d11f29-ee38-4fd7-ae6d-97a741875b35, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:44.122Z","sequence":34209,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:44.123Z","sequence":34210,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AAE] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:44.144Z","sequence":34211,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:44.145Z","sequence":34212,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:44.163Z","sequence":34213,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5df8059f-dee2-4c12-a819-c21d28e58bd0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:46.419Z","sequence":34214,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Tenant-995cc45f-23b2-488f-a5d9-0b18c4ae6c62] wants to open a link [address: Source{address='tenant/96173dea-30d3-44b8-bed2-736067262fb0', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:46.419Z","sequence":34215,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-0]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:46.419Z","sequence":34216,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@63a43baf] for replies to [tenant/96173dea-30d3-44b8-bed2-736067262fb0]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:46.422Z","sequence":34217,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Tenant-995cc45f-23b2-488f-a5d9-0b18c4ae6c62] wants to open a link [address: Target{address='tenant', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:46.422Z","sequence":34218,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-1]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:46.422Z","sequence":34219,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:46.424Z","sequence":34220,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:46.424Z","sequence":34221,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: flint]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:46.427Z","sequence":34222,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-77fc8061-3363-4754-b8ed-227b140c2011, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:46.429Z","sequence":34223,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Source{address='credentials/flint/0cc48004-9b4a-4a6a-bc36-d704d4a6f536', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:46.429Z","sequence":34224,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-0]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:46.43Z","sequence":34225,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@37d58aa7] for replies to [credentials/flint/0cc48004-9b4a-4a6a-bc36-d704d4a6f536]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:46.431Z","sequence":34226,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Target{address='credentials/flint', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:46.432Z","sequence":34227,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-1]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:46.432Z","sequence":34228,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:46.434Z","sequence":34229,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/flint:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:46.434Z","sequence":34230,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: flint, type: hashed-password, auth-id: auth-flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:46.443Z","sequence":34231,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-b0c497a1-f576-4866-b409-5d517202e9f9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:46.565Z","sequence":34232,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] wants to open a link [address: Source{address='registration/flint/feb72b60-ad7b-4fd0-a230-cfe6b2bb7581', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:46.565Z","sequence":34233,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-2]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:46.565Z","sequence":34234,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@40c198f9] for replies to [registration/flint/feb72b60-ad7b-4fd0-a230-cfe6b2bb7581]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:46.567Z","sequence":34235,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] wants to open a link [address: Target{address='registration/flint', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:46.567Z","sequence":34236,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:46.567Z","sequence":34237,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:46.569Z","sequence":34238,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:46.569Z","sequence":34239,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB100089B] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:46.574Z","sequence":34240,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:46.574Z","sequence":34241,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:46.589Z","sequence":34242,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f99e9e59-11cf-48b3-8023-17282be41117, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:48.489Z","sequence":34243,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:48.489Z","sequence":34244,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000571] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:48.517Z","sequence":34245,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:48.517Z","sequence":34246,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:48.533Z","sequence":34247,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f8b27222-9384-4069-9a1e-482bd29e83a7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:52.663Z","sequence":34248,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:52.663Z","sequence":34249,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100079B] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:52.67Z","sequence":34250,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:52.67Z","sequence":34251,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:09:52.676Z","sequence":34252,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-615a7c52-0149-4ed4-8df8-5494addf0f62, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:02.105Z","sequence":34253,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:02.106Z","sequence":34254,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 0008004B51D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:02.111Z","sequence":34255,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7ecae432-439a-4a48-a1b7-e9629395ddf0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:02.114Z","sequence":34256,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:02.115Z","sequence":34257,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: dow]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:02.118Z","sequence":34258,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-f2d0657f-bd1b-425d-b9ee-b3188a203b04, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:09.771Z","sequence":34259,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:09.771Z","sequence":34260,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: terega]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:09.774Z","sequence":34261,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-80637749-d648-4a52-aafc-d542bfa2e898, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:09.776Z","sequence":34262,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Source{address='credentials/terega/4d4bc5d6-575b-43f5-8ea0-adaa4c17c1bb', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:09.776Z","sequence":34263,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-2]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:09.776Z","sequence":34264,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@3d1a1408] for replies to [credentials/terega/4d4bc5d6-575b-43f5-8ea0-adaa4c17c1bb]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:09.777Z","sequence":34265,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Target{address='credentials/terega', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:09.778Z","sequence":34266,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:09.778Z","sequence":34267,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:09.78Z","sequence":34268,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/terega:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:09.78Z","sequence":34269,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: terega, type: hashed-password, auth-id: auth-gateway_terega_network_27]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:09.791Z","sequence":34270,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-7e54687c-f0d1-47f9-8760-672726911d13, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:09.917Z","sequence":34271,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] wants to open a link [address: Source{address='registration/terega/15fe2dcf-9b2c-4f7f-993e-e947e793a90e', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:09.917Z","sequence":34272,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:09.917Z","sequence":34273,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@30ed2a2a] for replies to [registration/terega/15fe2dcf-9b2c-4f7f-993e-e947e793a90e]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:09.919Z","sequence":34274,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] wants to open a link [address: Target{address='registration/terega', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:09.919Z","sequence":34275,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-5]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:09.919Z","sequence":34276,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:09.922Z","sequence":34277,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/terega:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:09.922Z","sequence":34278,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: terega, device-id: 70B3D57BB10000A2] for gateway [gateway_terega_network_27]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:09.922Z","sequence":34279,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/terega:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:09.922Z","sequence":34280,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: terega, device-id: gateway_terega_network_27]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:09.927Z","sequence":34281,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_terega\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:09.927Z","sequence":34282,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_terega\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:09.927Z","sequence":34283,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-51ca8cf3-8e45-47ba-8746-ae6b78b83c8f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:09.93Z","sequence":34284,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e1ebde74-a916-4ace-be17-caafa5a6fb04, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:18.192Z","sequence":34285,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:18.192Z","sequence":34286,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10018EB] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:18.199Z","sequence":34287,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:18.199Z","sequence":34288,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:18.207Z","sequence":34289,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-142e9826-4093-45f1-99e9-cafe616defc6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:25.985Z","sequence":34290,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:25.985Z","sequence":34291,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A8F] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:26.02Z","sequence":34292,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:26.021Z","sequence":34293,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:26.029Z","sequence":34294,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3e5764c1-c27c-4973-b761-dc440492f656, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:32.044Z","sequence":34295,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] wants to open a link [address: Source{address='registration/dow/aa13e67e-6182-49a2-aa5d-5558f2c14580', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:32.044Z","sequence":34296,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-6]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:32.044Z","sequence":34297,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@7541c036] for replies to [registration/dow/aa13e67e-6182-49a2-aa5d-5558f2c14580]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:32.046Z","sequence":34298,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] wants to open a link [address: Target{address='registration/dow', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:32.046Z","sequence":34299,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-7]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:32.047Z","sequence":34300,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:32.049Z","sequence":34301,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:32.049Z","sequence":34302,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 70B3D57BB100124C] for gateway [gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:32.05Z","sequence":34303,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:32.05Z","sequence":34304,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:32.057Z","sequence":34305,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ef2be885-3605-43d3-84e1-7db4a7157d8b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:32.058Z","sequence":34306,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:32.058Z","sequence":34307,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:32.1Z","sequence":34308,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-36768c06-04cb-40ab-b685-b293a6ebac03, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:35.459Z","sequence":34309,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/conditionall:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:35.459Z","sequence":34310,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: conditionall, device-id: 0008004B512D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:35.469Z","sequence":34311,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3365340f-ee47-46d3-ac53-4737cc1fee63, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:35.473Z","sequence":34312,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:35.473Z","sequence":34313,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: conditionall]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:35.477Z","sequence":34314,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-7b50a927-a619-41df-9329-4ff9f08d9c99, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:36.199Z","sequence":34315,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:36.199Z","sequence":34316,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000179] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:36.205Z","sequence":34317,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:36.205Z","sequence":34318,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:36.208Z","sequence":34319,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-fff10fc9-a50c-43a3-9cdc-e33b7db37e5b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:36.261Z","sequence":34320,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:36.261Z","sequence":34321,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000179] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:36.267Z","sequence":34322,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:36.267Z","sequence":34323,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:36.27Z","sequence":34324,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a270e36d-a6e1-4e5b-a430-dce7107e8cfd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:38.447Z","sequence":34325,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:38.447Z","sequence":34326,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB1000A60] for gateway [0008004B5135]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:38.452Z","sequence":34327,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:38.452Z","sequence":34328,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:38.456Z","sequence":34329,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-72e8344c-5f03-4775-8d2e-fc4c7aec13f6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:42.149Z","sequence":34330,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:42.149Z","sequence":34331,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10009D8] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:42.156Z","sequence":34332,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:42.156Z","sequence":34333,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:42.161Z","sequence":34334,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ac002c3c-80d6-4edf-8141-12bf386c887a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:45.273Z","sequence":34335,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:45.273Z","sequence":34336,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:45.28Z","sequence":34337,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b4bacc67-ad8c-4eeb-886d-d6202c510e82, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:46.343Z","sequence":34338,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:46.343Z","sequence":34339,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006CF] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:46.349Z","sequence":34340,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:46.349Z","sequence":34341,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:46.355Z","sequence":34342,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0dbac3e8-4cbc-4820-8004-df226d5d71ee, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:46.955Z","sequence":34343,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:46.955Z","sequence":34344,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: shell]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:46.959Z","sequence":34345,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-3e30ae10-ea2d-446e-98a6-c54b949fc2d9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:46.962Z","sequence":34346,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Source{address='credentials/shell/01f60ea3-bc91-4a78-87a4-0109ed806503', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:46.962Z","sequence":34347,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:46.962Z","sequence":34348,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@24e97c2] for replies to [credentials/shell/01f60ea3-bc91-4a78-87a4-0109ed806503]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:46.964Z","sequence":34349,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Target{address='credentials/shell', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:46.964Z","sequence":34350,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-5]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:46.964Z","sequence":34351,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:46.966Z","sequence":34352,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/shell:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:46.966Z","sequence":34353,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: shell, type: hashed-password, auth-id: auth-gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:46.976Z","sequence":34354,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-04b85cc1-2d65-4bc9-be82-0bacaae86b22, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:47.101Z","sequence":34355,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:47.101Z","sequence":34356,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B6E] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:47.107Z","sequence":34357,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:47.107Z","sequence":34358,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:47.113Z","sequence":34359,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2c75839e-099f-427c-9756-e3adfbbef364, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:48.659Z","sequence":34360,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:48.659Z","sequence":34361,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: dow]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:48.662Z","sequence":34362,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-0f993658-a5ad-494b-a6ee-0d6c56b1ceab, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:48.664Z","sequence":34363,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Source{address='credentials/dow/cfdb0a16-ab10-46b9-b800-dbbdbba1efe7', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:48.665Z","sequence":34364,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-6]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:48.665Z","sequence":34365,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@4b2f6feb] for replies to [credentials/dow/cfdb0a16-ab10-46b9-b800-dbbdbba1efe7]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:48.667Z","sequence":34366,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Target{address='credentials/dow', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:48.667Z","sequence":34367,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-7]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:48.667Z","sequence":34368,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:48.669Z","sequence":34369,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/dow:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:48.669Z","sequence":34370,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: dow, type: hashed-password, auth-id: auth-gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:48.679Z","sequence":34371,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-1c623b67-a890-4cde-9a76-9bb97655901a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:54.713Z","sequence":34372,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:54.714Z","sequence":34373,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000F7D] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:54.719Z","sequence":34374,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:54.72Z","sequence":34375,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:54.725Z","sequence":34376,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2bbf09f9-1767-40d7-b5ab-b55f548f1b05, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:56.15Z","sequence":34377,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF71FC85053BA11]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3806624872278ac4","parentId":"5761a7b5eb1272bc","traceId":"00000000000000000814799dd51c6b2e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:56.17Z","sequence":34378,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF71FC85053BA11]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3806624872278ac4","parentId":"5761a7b5eb1272bc","traceId":"00000000000000000814799dd51c6b2e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:58.036Z","sequence":34379,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: CFC5F9FF72AD]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0258c0fc4e9dc14c","parentId":"d92b1ae87b92a4c8","traceId":"0000000000000000f2dd0c038af04e08","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:58.053Z","sequence":34380,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: CFC5F9FF72AD]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0258c0fc4e9dc14c","parentId":"d92b1ae87b92a4c8","traceId":"0000000000000000f2dd0c038af04e08","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:59.502Z","sequence":34381,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191335]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"edd6d09ab7e31b14","parentId":"392538c50fb8300b","traceId":"0000000000000000a3255e289d345e16","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:59.52Z","sequence":34382,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191335, resource-version: 9a07c860-36bb-4625-b707-70bddd075277]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"edd6d09ab7e31b14","parentId":"392538c50fb8300b","traceId":"0000000000000000a3255e289d345e16","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:59.527Z","sequence":34383,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191335, resource-version: 2449ecf6-e44f-486f-9bca-4122942f2163]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"edd6d09ab7e31b14","parentId":"392538c50fb8300b","traceId":"0000000000000000a3255e289d345e16","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:59.53Z","sequence":34384,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191335]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"29585f3cb651500f","parentId":"8e516e49120fd7bd","traceId":"0000000000000000a3255e289d345e16","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:10:59.699Z","sequence":34385,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191335]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"29585f3cb651500f","parentId":"8e516e49120fd7bd","traceId":"0000000000000000a3255e289d345e16","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:00.653Z","sequence":34386,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF9D657F2EAB486]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"96866d066f1ceb14","parentId":"833a3ebf5119c6db","traceId":"000000000000000079de09e45da81cb7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:00.681Z","sequence":34387,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF9D657F2EAB486, resource-version: f0a6e87c-d92e-46b7-bfa6-b28f33540c01]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"96866d066f1ceb14","parentId":"833a3ebf5119c6db","traceId":"000000000000000079de09e45da81cb7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:00.693Z","sequence":34388,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF9D657F2EAB486, resource-version: f608ba28-0abe-4d37-9efb-d373ea7fad0d]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"96866d066f1ceb14","parentId":"833a3ebf5119c6db","traceId":"000000000000000079de09e45da81cb7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:02.499Z","sequence":34389,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Source{address='credentials/integrationtest/d59e0d6a-fac8-46a7-bff1-ea574d083b4c', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:02.499Z","sequence":34390,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-8]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:02.499Z","sequence":34391,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@e7f91d5] for replies to [credentials/integrationtest/d59e0d6a-fac8-46a7-bff1-ea574d083b4c]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:02.502Z","sequence":34392,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Target{address='credentials/integrationtest', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:02.503Z","sequence":34393,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-9]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:02.503Z","sequence":34394,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:02.505Z","sequence":34395,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:02.505Z","sequence":34396,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191335]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:02.52Z","sequence":34397,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-81b7d3c9-f994-4ea3-8502-e1fb18194130, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:02.651Z","sequence":34398,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] wants to open a link [address: Source{address='registration/integrationtest/ca591783-238b-4528-87d7-58835259d4e1', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:02.651Z","sequence":34399,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-8]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:02.651Z","sequence":34400,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@24a00b5e] for replies to [registration/integrationtest/ca591783-238b-4528-87d7-58835259d4e1]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:02.653Z","sequence":34401,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] wants to open a link [address: Target{address='registration/integrationtest', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:02.653Z","sequence":34402,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-9]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:02.653Z","sequence":34403,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:02.656Z","sequence":34404,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:02.656Z","sequence":34405,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF9D657F2EAB486] for gateway [gateway_integrationtest_network_191335]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:02.656Z","sequence":34406,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:02.656Z","sequence":34407,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191335]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:02.662Z","sequence":34408,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:02.662Z","sequence":34409,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:02.663Z","sequence":34410,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c1ec7f82-59a9-43bc-8fd8-0c2a25f48907, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:02.846Z","sequence":34411,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ecb0e273-7db7-4010-98b6-2c6c79ef61fd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:04.792Z","sequence":34412,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: BE2E51EB19F1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c3526d96a629f8b1","parentId":"61e93b342d955e3f","traceId":"00000000000000004f14f10dc362a915","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:04.81Z","sequence":34413,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: BE2E51EB19F1, resource-version: 8106fed7-4dc9-46c5-8173-28e9d9c81e28]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c3526d96a629f8b1","parentId":"61e93b342d955e3f","traceId":"00000000000000004f14f10dc362a915","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:04.817Z","sequence":34414,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: BE2E51EB19F1, resource-version: eb2e5f2b-a84a-498b-bb0f-26c48f9c960e]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c3526d96a629f8b1","parentId":"61e93b342d955e3f","traceId":"00000000000000004f14f10dc362a915","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:04.821Z","sequence":34415,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: BE2E51EB19F1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2fa970a0f1be470a","parentId":"651adaa3d5e012a0","traceId":"00000000000000004f14f10dc362a915","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:04.939Z","sequence":34416,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: BE2E51EB19F1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2fa970a0f1be470a","parentId":"651adaa3d5e012a0","traceId":"00000000000000004f14f10dc362a915","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:05.291Z","sequence":34417,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/repsol:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:05.291Z","sequence":34418,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: repsol, device-id: 70B3D57BB1000229] for gateway [0008004A37FF]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:05.307Z","sequence":34419,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:0.4.1\"\n },\n \"viaGroups\" : [ \"gateways_repsol\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:05.307Z","sequence":34420,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_repsol\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:05.31Z","sequence":34421,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-05fbc565-89bb-4dba-ae80-5b42a22ea087, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:06.258Z","sequence":34422,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF5A05149857B38]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"588323591aa66968","parentId":"7e794ff38beadea7","traceId":"00000000000000000257f52b186b6d31","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:06.275Z","sequence":34423,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF5A05149857B38, resource-version: 8a23229d-b37c-4ec0-90fd-30ce24286342]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"588323591aa66968","parentId":"7e794ff38beadea7","traceId":"00000000000000000257f52b186b6d31","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:06.28Z","sequence":34424,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF5A05149857B38, resource-version: 4ff72912-0c93-4478-836f-9ce9a52c5f57]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"588323591aa66968","parentId":"7e794ff38beadea7","traceId":"00000000000000000257f52b186b6d31","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:07.333Z","sequence":34425,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Credentials-75faa79c-12c0-45f2-bd9c-973655a3937c] wants to open a link [address: Source{address='credentials/integrationtest/fdad6818-b437-4b8e-8684-40f9e9ff579a', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:07.333Z","sequence":34426,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-2]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:07.333Z","sequence":34427,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@1ee1e2af] for replies to [credentials/integrationtest/fdad6818-b437-4b8e-8684-40f9e9ff579a]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:07.336Z","sequence":34428,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Credentials-75faa79c-12c0-45f2-bd9c-973655a3937c] wants to open a link [address: Target{address='credentials/integrationtest', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:07.337Z","sequence":34429,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:07.337Z","sequence":34430,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:07.341Z","sequence":34431,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:07.341Z","sequence":34432,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-BE2E51EB19F1]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:07.401Z","sequence":34433,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-378e1d3a-24df-4999-a2fc-e79f1ad5b45e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:07.525Z","sequence":34434,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:07.526Z","sequence":34435,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: BE2E51EB19F1]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:07.561Z","sequence":34436,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-bc293e1e-9c2b-484f-8796-9af6fadd655b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:07.565Z","sequence":34437,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:07.565Z","sequence":34438,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF5A05149857B38] for gateway [BE2E51EB19F1]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:07.581Z","sequence":34439,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:07.581Z","sequence":34440,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:08.085Z","sequence":34441,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4b951344-aedb-4bb8-bc81-124d80d89699, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:12.764Z","sequence":34442,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:12.765Z","sequence":34443,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BB84C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:12.769Z","sequence":34444,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d84734b5-931c-4368-b33a-7b9e23c21418, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:12.773Z","sequence":34445,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:12.773Z","sequence":34446,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: lanxess]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:12.775Z","sequence":34447,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-b68d7bd9-ca31-43d8-869e-d6d2be1175ff, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:14.166Z","sequence":34448,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:14.166Z","sequence":34449,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 0008004B5135]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:14.178Z","sequence":34450,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e9b1201b-6f23-4d84-a404-de3d2e0691ce, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:15.756Z","sequence":34451,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF9D657F2EAB486]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3bbed585199f5f6f","parentId":"8a7fd1ac34406480","traceId":"00000000000000004f3271315d3e8cfc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:15.772Z","sequence":34452,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF9D657F2EAB486]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3bbed585199f5f6f","parentId":"8a7fd1ac34406480","traceId":"00000000000000004f3271315d3e8cfc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:16.555Z","sequence":34453,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191335]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c5226a8f8e8cd7f5","parentId":"60df37add9bab83c","traceId":"00000000000000000bc6ad04bd49b082","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:16.571Z","sequence":34454,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191335]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c5226a8f8e8cd7f5","parentId":"60df37add9bab83c","traceId":"00000000000000000bc6ad04bd49b082","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:17.777Z","sequence":34455,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:17.777Z","sequence":34456,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AE7] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:17.784Z","sequence":34457,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:17.784Z","sequence":34458,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:17.791Z","sequence":34459,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b9340b94-4f4d-4d67-b4d1-889a093796ab, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:17.963Z","sequence":34460,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:17.963Z","sequence":34461,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BBD1B]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:17.969Z","sequence":34462,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ad01a8ad-ba35-4c70-afe6-64c5f1dd3d79, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:19.74Z","sequence":34463,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:19.74Z","sequence":34464,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000A69] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:19.745Z","sequence":34465,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:19.746Z","sequence":34466,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:19.751Z","sequence":34467,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2aac8e42-c533-4d5e-9c35-30597877b827, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:21.181Z","sequence":34468,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF5A05149857B38]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"23f67c21f2751958","parentId":"d6b0d838c19b0ae5","traceId":"0000000000000000914751c4625920b9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:21.21Z","sequence":34469,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF5A05149857B38]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"23f67c21f2751958","parentId":"d6b0d838c19b0ae5","traceId":"0000000000000000914751c4625920b9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:22.651Z","sequence":34470,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: BE2E51EB19F1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"dadd00ab3a45b000","parentId":"4b271d865ec97372","traceId":"0000000000000000e7646b8629026fa8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:22.672Z","sequence":34471,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: BE2E51EB19F1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"dadd00ab3a45b000","parentId":"4b271d865ec97372","traceId":"0000000000000000e7646b8629026fa8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:25.475Z","sequence":34472,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/arkema:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:25.475Z","sequence":34473,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: arkema, device-id: 0008004AE119]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:25.485Z","sequence":34474,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7bb086f0-6cd1-4dec-be51-b57177991f26, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:25.489Z","sequence":34475,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:25.489Z","sequence":34476,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: arkema]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:25.493Z","sequence":34477,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-e6ed756b-af00-46af-86e7-8da459064ce3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:28.508Z","sequence":34478,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:28.508Z","sequence":34479,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 70B3D57BB100125C] for gateway [gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:28.515Z","sequence":34480,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:28.515Z","sequence":34481,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:28.519Z","sequence":34482,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ff65148b-ff22-46bb-9abe-be9c7409a412, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:37.937Z","sequence":34483,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:37.937Z","sequence":34484,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oci]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:37.956Z","sequence":34485,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-b5f9c87b-0915-43c1-a0cf-90cdb725c487, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:37.961Z","sequence":34486,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:37.961Z","sequence":34487,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000176] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:37.99Z","sequence":34488,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:37.99Z","sequence":34489,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:38.012Z","sequence":34490,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f0d0793d-fd81-4245-b3f7-19db17654477, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:38.017Z","sequence":34491,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:38.017Z","sequence":34492,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000176] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:38.041Z","sequence":34493,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:38.041Z","sequence":34494,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:38.051Z","sequence":34495,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c95f6f62-863c-44b1-82ea-7baa97efe7cf, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:38.548Z","sequence":34496,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:38.548Z","sequence":34497,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB1000A63] for gateway [0008004B5135]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:38.577Z","sequence":34498,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:38.577Z","sequence":34499,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:38.586Z","sequence":34500,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7ef363fd-ea8b-411f-ad6c-6e8c75e51908, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:42.908Z","sequence":34501,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:42.908Z","sequence":34502,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100079C] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:42.926Z","sequence":34503,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:42.926Z","sequence":34504,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:42.944Z","sequence":34505,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-aa095f14-1764-4feb-8b44-34475f67f57e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:50.192Z","sequence":34506,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:50.192Z","sequence":34507,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C0F] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:50.198Z","sequence":34508,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:50.198Z","sequence":34509,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:50.204Z","sequence":34510,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8e388ea8-47eb-44af-97bd-06416e47aee0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:54.661Z","sequence":34511,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:54.661Z","sequence":34512,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000895] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:54.667Z","sequence":34513,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:54.667Z","sequence":34514,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:54.671Z","sequence":34515,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0f7a7232-24f1-44cd-901f-4987f8f9f709, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:58.799Z","sequence":34516,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:58.799Z","sequence":34517,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AD7] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:58.804Z","sequence":34518,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:58.804Z","sequence":34519,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:11:58.809Z","sequence":34520,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e0fc785a-751e-4e90-93e9-bc1395b68502, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:00.291Z","sequence":34521,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:00.291Z","sequence":34522,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100086F] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:00.296Z","sequence":34523,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:00.296Z","sequence":34524,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:00.302Z","sequence":34525,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e52a7375-0c17-4509-a637-f3a67c549ca6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:03.601Z","sequence":34526,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:03.601Z","sequence":34527,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10007F7] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:03.616Z","sequence":34528,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:03.617Z","sequence":34529,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:03.629Z","sequence":34530,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-686736f6-3740-4ee9-ab2c-01236f6c4e99, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:04.229Z","sequence":34531,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:04.229Z","sequence":34532,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A8E] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:04.229Z","sequence":34533,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:04.229Z","sequence":34534,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:04.252Z","sequence":34535,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:04.253Z","sequence":34536,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:04.253Z","sequence":34537,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-035c3c36-d19f-46c3-bd51-026dc424487e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:04.26Z","sequence":34538,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-905c2b4e-25d3-46a1-bae1-dc0d871f784d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:04.783Z","sequence":34539,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:04.783Z","sequence":34540,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000852] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:04.788Z","sequence":34541,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:04.788Z","sequence":34542,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:04.792Z","sequence":34543,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7d2acab0-23c7-462d-9468-22c2eb2952f5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:07.925Z","sequence":34544,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:07.925Z","sequence":34545,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:07.941Z","sequence":34546,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-eaf47f3c-2bd0-4752-9fe9-d68dd074a26a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:07.945Z","sequence":34547,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:07.945Z","sequence":34548,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: ineos]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:07.95Z","sequence":34549,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-56af02e0-a200-4291-ab12-58b15a21ab5a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:10.483Z","sequence":34550,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:10.483Z","sequence":34551,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A89] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:10.488Z","sequence":34552,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:10.488Z","sequence":34553,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:10.5Z","sequence":34554,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a148e248-086c-478e-b4dd-f63fcc41ae7c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:10.648Z","sequence":34555,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:10.648Z","sequence":34556,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019CA] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:10.654Z","sequence":34557,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:10.654Z","sequence":34558,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:10.66Z","sequence":34559,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5ad5da28-7064-4b87-8a8c-0f7165fca4d8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:21.84Z","sequence":34560,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:21.84Z","sequence":34561,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: chevron]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:21.844Z","sequence":34562,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-0b365fd1-9fa0-4a16-a0b3-a5ef975d8c04, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:21.848Z","sequence":34563,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Source{address='credentials/chevron/20f10f58-e936-477c-8ea0-6cc46b3d15c0', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:21.848Z","sequence":34564,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:21.849Z","sequence":34565,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@77ab1e17] for replies to [credentials/chevron/20f10f58-e936-477c-8ea0-6cc46b3d15c0]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:21.85Z","sequence":34566,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Target{address='credentials/chevron', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:21.851Z","sequence":34567,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-11]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:21.851Z","sequence":34568,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:21.853Z","sequence":34569,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/chevron:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:21.853Z","sequence":34570,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: chevron, type: hashed-password, auth-id: auth-CHEVRON-ORBIWISE-EL-SEGUNDO]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:21.865Z","sequence":34571,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-61c80337-a262-4bd6-8df2-1314b06e1057, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:21.986Z","sequence":34572,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] wants to open a link [address: Source{address='registration/chevron/42afadd0-6da3-4b3e-b42e-8067f6707a42', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:21.987Z","sequence":34573,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:21.987Z","sequence":34574,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@4ec34144] for replies to [registration/chevron/42afadd0-6da3-4b3e-b42e-8067f6707a42]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:21.989Z","sequence":34575,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] wants to open a link [address: Target{address='registration/chevron', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:21.989Z","sequence":34576,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-11]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:21.989Z","sequence":34577,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:21.991Z","sequence":34578,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/chevron:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:21.991Z","sequence":34579,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: chevron, device-id: 70B3D57BB10005CC] for gateway [CHEVRON-ORBIWISE-EL-SEGUNDO]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:21.991Z","sequence":34580,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/chevron:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:21.991Z","sequence":34581,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: chevron, device-id: CHEVRON-ORBIWISE-EL-SEGUNDO]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:21.997Z","sequence":34582,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-fd8ad55e-344d-47bb-81b5-5e0557c222b4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:21.997Z","sequence":34583,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_chevron\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:21.998Z","sequence":34584,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_chevron\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:22.003Z","sequence":34585,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c6b6565f-c30f-485a-9ce7-d474485f4121, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:29.317Z","sequence":34586,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:29.317Z","sequence":34587,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BBD1C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:29.322Z","sequence":34588,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-eda04bba-c444-4f7e-a6d3-cdb58f6574d2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:30.119Z","sequence":34589,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:30.119Z","sequence":34590,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000173] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:30.124Z","sequence":34591,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:30.124Z","sequence":34592,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:30.127Z","sequence":34593,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2988a075-e302-4996-ab04-d42bcdc9c6fb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:30.239Z","sequence":34594,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:30.239Z","sequence":34595,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000173] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:30.245Z","sequence":34596,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:30.245Z","sequence":34597,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:30.248Z","sequence":34598,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-32c78528-67f4-4e10-80b9-266994994bfc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:30.664Z","sequence":34599,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/conditionall:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:30.664Z","sequence":34600,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: conditionall, device-id: 70B3D57BB1000211] for gateway [0008004B512D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:30.67Z","sequence":34601,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_conditionall\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:30.67Z","sequence":34602,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_conditionall\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:30.673Z","sequence":34603,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-585c33e5-a234-4430-bc46-46017f5ff041, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:31.601Z","sequence":34604,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:31.601Z","sequence":34605,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019CD] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:31.618Z","sequence":34606,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:31.618Z","sequence":34607,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:31.629Z","sequence":34608,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c1035326-8991-462f-8492-76e57d49c862, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:31.893Z","sequence":34609,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:31.893Z","sequence":34610,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100016E] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:31.902Z","sequence":34611,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:31.902Z","sequence":34612,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:31.908Z","sequence":34613,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-fdda33cf-5268-40cc-a22b-c8351c2ee68a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:31.915Z","sequence":34614,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:31.915Z","sequence":34615,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100016E] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:31.924Z","sequence":34616,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:31.925Z","sequence":34617,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:31.928Z","sequence":34618,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-275cb286-4ee9-492c-b7f9-e092b6006612, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:32.615Z","sequence":34619,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191337]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d6ed247cb7caeeb9","parentId":"322a4ceaa65da890","traceId":"000000000000000068ac1b2870e870bd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:32.642Z","sequence":34620,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191337, resource-version: d899ced0-8c34-4afd-b745-cda3f2042f95]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d6ed247cb7caeeb9","parentId":"322a4ceaa65da890","traceId":"000000000000000068ac1b2870e870bd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:32.649Z","sequence":34621,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191337, resource-version: 2b06e37b-0ccf-4114-a4aa-a008d8639a2a]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d6ed247cb7caeeb9","parentId":"322a4ceaa65da890","traceId":"000000000000000068ac1b2870e870bd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:32.652Z","sequence":34622,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191337]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1d9fd044aeda5ca2","parentId":"9f6cdf296ab526d9","traceId":"000000000000000068ac1b2870e870bd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:32.799Z","sequence":34623,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191337]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1d9fd044aeda5ca2","parentId":"9f6cdf296ab526d9","traceId":"000000000000000068ac1b2870e870bd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:33.546Z","sequence":34624,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFD5CC13AFCF2A7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cf0353c7a0be4299","parentId":"c7e9cec8c526cf7b","traceId":"00000000000000009bd396b916b99f92","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:33.566Z","sequence":34625,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFD5CC13AFCF2A7, resource-version: bed7e17d-8c62-41f8-87fa-2d76d5693a8f]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cf0353c7a0be4299","parentId":"c7e9cec8c526cf7b","traceId":"00000000000000009bd396b916b99f92","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:33.574Z","sequence":34626,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFD5CC13AFCF2A7, resource-version: 7a01ef35-bb2a-4787-b34f-38be7cdb96c8]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cf0353c7a0be4299","parentId":"c7e9cec8c526cf7b","traceId":"00000000000000009bd396b916b99f92","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:34.353Z","sequence":34627,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:34.353Z","sequence":34628,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A82] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:34.358Z","sequence":34629,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:34.359Z","sequence":34630,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:34.365Z","sequence":34631,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d3d0ef5a-a922-41a4-83c8-a230a83c9151, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:34.638Z","sequence":34632,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:34.638Z","sequence":34633,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:34.649Z","sequence":34634,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-e2157fca-953f-4d75-85a7-36c9490b2077, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:34.655Z","sequence":34635,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:34.656Z","sequence":34636,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191337]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:34.679Z","sequence":34637,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-f62e4331-7e3b-4807-af4f-7014aaab7167, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:34.712Z","sequence":34638,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:34.712Z","sequence":34639,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019BF] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:34.717Z","sequence":34640,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:34.718Z","sequence":34641,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:34.723Z","sequence":34642,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8b1a5898-121f-4dde-b19d-7e8aa885d664, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:34.829Z","sequence":34643,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:34.829Z","sequence":34644,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD5CC13AFCF2A7] for gateway [gateway_integrationtest_network_191337]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:34.83Z","sequence":34645,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:34.83Z","sequence":34646,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191337]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:34.835Z","sequence":34647,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:34.835Z","sequence":34648,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:34.836Z","sequence":34649,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-47063258-c825-47e7-9515-ad05e9082db4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:35.14Z","sequence":34650,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2440cb36-cff2-4190-8784-6c6c37fc4dbd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:36.033Z","sequence":34651,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:36.033Z","sequence":34652,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019BB] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:36.039Z","sequence":34653,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:36.039Z","sequence":34654,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:36.045Z","sequence":34655,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-28932747-af87-4470-a332-56674f168112, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:38.159Z","sequence":34656,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:38.159Z","sequence":34657,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 0008004C80F4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:38.164Z","sequence":34658,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7a400d40-eb79-4608-b66d-80a0bf53b1fe, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:46.635Z","sequence":34659,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFD5CC13AFCF2A7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"15d236dc8849f08c","parentId":"8429d76957eb2a13","traceId":"00000000000000004cb1a945335eccef","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:46.691Z","sequence":34660,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFD5CC13AFCF2A7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"15d236dc8849f08c","parentId":"8429d76957eb2a13","traceId":"00000000000000004cb1a945335eccef","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:46.837Z","sequence":34661,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191337]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"09f9dec998250d45","parentId":"1f467d9a1222a106","traceId":"0000000000000000e7944ecc4a2e4e5e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:46.858Z","sequence":34662,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191337]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"09f9dec998250d45","parentId":"1f467d9a1222a106","traceId":"0000000000000000e7944ecc4a2e4e5e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:47.316Z","sequence":34663,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 9BF4C22519C0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"13fdf60ef5c1b0d5","parentId":"9a2553e9fb6af068","traceId":"0000000000000000115544b09cd7d876","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:47.334Z","sequence":34664,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 9BF4C22519C0, resource-version: e99a01b2-2527-4976-a8ac-499c2f8d692d]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"13fdf60ef5c1b0d5","parentId":"9a2553e9fb6af068","traceId":"0000000000000000115544b09cd7d876","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:47.343Z","sequence":34665,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 9BF4C22519C0, resource-version: 07f6c580-de44-43a8-b200-556d6a0bb191]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"13fdf60ef5c1b0d5","parentId":"9a2553e9fb6af068","traceId":"0000000000000000115544b09cd7d876","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:47.346Z","sequence":34666,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 9BF4C22519C0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8b5880dac51bb052","parentId":"c1ede105e72bfb2e","traceId":"0000000000000000115544b09cd7d876","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:47.46Z","sequence":34667,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 9BF4C22519C0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8b5880dac51bb052","parentId":"c1ede105e72bfb2e","traceId":"0000000000000000115544b09cd7d876","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:48.147Z","sequence":34668,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF3B41C3B5165B7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b697c7b55df1da87","parentId":"0a70fea3a3505c9b","traceId":"0000000000000000a8624535037a221a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:48.165Z","sequence":34669,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF3B41C3B5165B7, resource-version: 3c9e7472-fd8c-4443-9483-0e6582932129]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b697c7b55df1da87","parentId":"0a70fea3a3505c9b","traceId":"0000000000000000a8624535037a221a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:48.175Z","sequence":34670,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF3B41C3B5165B7, resource-version: 14431a2e-1bf0-4487-8bd5-e9e1a947d33e]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b697c7b55df1da87","parentId":"0a70fea3a3505c9b","traceId":"0000000000000000a8624535037a221a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:49.222Z","sequence":34671,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:49.222Z","sequence":34672,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:49.225Z","sequence":34673,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-7733594f-65d6-4b31-9c25-d9ceb949415a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:49.229Z","sequence":34674,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:49.229Z","sequence":34675,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-9BF4C22519C0]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:49.239Z","sequence":34676,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-4e9ad708-bcff-46d0-a744-518a0be518a1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:49.355Z","sequence":34677,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:49.355Z","sequence":34678,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 9BF4C22519C0]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:49.361Z","sequence":34679,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-06b40c9d-eed6-408b-9d5e-b58574d25623, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:49.365Z","sequence":34680,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:49.366Z","sequence":34681,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF3B41C3B5165B7] for gateway [9BF4C22519C0]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:49.371Z","sequence":34682,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:49.371Z","sequence":34683,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:49.671Z","sequence":34684,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-066d521c-d076-4f6a-baac-bcf8c2f44a8e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:50.189Z","sequence":34685,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:50.189Z","sequence":34686,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001ADF] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:50.205Z","sequence":34687,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:50.205Z","sequence":34688,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:50.214Z","sequence":34689,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-77e0afc2-b1c5-4d83-ac9c-87b9070b3201, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:51.641Z","sequence":34690,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:51.641Z","sequence":34691,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000154] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:51.647Z","sequence":34692,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:51.647Z","sequence":34693,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:51.65Z","sequence":34694,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-44bb2abb-21d7-4419-af9e-1245379064a0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:51.699Z","sequence":34695,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:51.699Z","sequence":34696,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000154] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:51.704Z","sequence":34697,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:51.704Z","sequence":34698,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:51.707Z","sequence":34699,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0e186acb-4106-4773-88ca-2a5aba442d58, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:54.23Z","sequence":34700,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:54.23Z","sequence":34701,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019B6] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:54.241Z","sequence":34702,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:54.241Z","sequence":34703,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:54.249Z","sequence":34704,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7511facd-85d8-4c37-a6e4-0b8e1847b23a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:54.666Z","sequence":34705,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oiltanking:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:54.666Z","sequence":34706,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oiltanking, device-id: 0008004BB60F]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:54.672Z","sequence":34707,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-022c430a-b53b-4d7b-99dd-fb6bd9cdc053, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:54.675Z","sequence":34708,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:54.675Z","sequence":34709,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oiltanking]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:12:54.677Z","sequence":34710,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-6b350034-c276-496b-b0e5-a0fb46db5087, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:13:00.404Z","sequence":34711,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF3B41C3B5165B7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0d2c14307fe2a590","parentId":"bfb13cda91f5b98e","traceId":"00000000000000004795be409b5c83ec","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:13:00.424Z","sequence":34712,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF3B41C3B5165B7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0d2c14307fe2a590","parentId":"bfb13cda91f5b98e","traceId":"00000000000000004795be409b5c83ec","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:13:00.889Z","sequence":34713,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 9BF4C22519C0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"060fc276a0fb1051","parentId":"a41ce4f75ac78863","traceId":"000000000000000072054ab97f3c8eda","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:13:00.911Z","sequence":34714,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 9BF4C22519C0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"060fc276a0fb1051","parentId":"a41ce4f75ac78863","traceId":"000000000000000072054ab97f3c8eda","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:13:02.938Z","sequence":34715,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/chevron:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:13:02.939Z","sequence":34716,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: chevron, device-id: 70B3D57BB1000259] for gateway [CHEVRON-ORBIWISE-EL-SEGUNDO]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:13:02.945Z","sequence":34717,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_chevron\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:13:02.945Z","sequence":34718,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_chevron\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:13:02.949Z","sequence":34719,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-60348943-4fe8-4139-b874-3daf96e86bb4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:13:05.191Z","sequence":34720,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:13:05.191Z","sequence":34721,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019C0] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:13:05.197Z","sequence":34722,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:13:05.197Z","sequence":34723,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:13:05.203Z","sequence":34724,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0ce7ce72-8aa9-40cf-9362-ee4d5f46f084, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:13:11.979Z","sequence":34725,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:13:11.979Z","sequence":34726,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100021A] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:13:11.985Z","sequence":34727,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:0.4.1\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:13:11.985Z","sequence":34728,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:13:11.992Z","sequence":34729,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-21df5f52-cd91-42a5-b160-a833ef76b1cb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:13:12.805Z","sequence":34730,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:13:12.805Z","sequence":34731,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019D5] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:13:12.812Z","sequence":34732,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:13:12.813Z","sequence":34733,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:13:12.818Z","sequence":34734,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f1579ff3-201c-4292-b5f7-56414e225d99, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:13:16.174Z","sequence":34735,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:13:16.175Z","sequence":34736,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C04] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:13:16.181Z","sequence":34737,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:13:16.181Z","sequence":34738,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:13:16.187Z","sequence":34739,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d6ce0503-b4c9-4c09-9ae3-4fa739bc819c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:13:21.519Z","sequence":34740,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:13:21.519Z","sequence":34741,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001ADD] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:13:21.525Z","sequence":34742,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:13:21.525Z","sequence":34743,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:13:21.531Z","sequence":34744,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-23627464-7a4d-4e61-a1e0-ab83947db4b1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:13:24.501Z","sequence":34745,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:13:24.501Z","sequence":34746,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006CC] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:13:24.507Z","sequence":34747,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.8.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:13:24.507Z","sequence":34748,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:13:24.513Z","sequence":34749,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-190e9894-cd1e-4711-ac8c-1de5c504a3e8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:13:28.034Z","sequence":34750,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/aloxy:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:13:28.034Z","sequence":34751,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: aloxy, device-id: 0008004A8F68]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:13:28.04Z","sequence":34752,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-81a03dca-0cfa-41ff-bba0-febc4705a5c6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:13:28.043Z","sequence":34753,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:13:28.044Z","sequence":34754,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: aloxy]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:13:28.046Z","sequence":34755,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-af510ba5-06aa-4615-8034-94d1f75010ee, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:13:39.725Z","sequence":34756,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:13:39.725Z","sequence":34757,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001ADB] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:13:39.73Z","sequence":34758,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:13:39.73Z","sequence":34759,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:13:39.736Z","sequence":34760,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0bf0ad43-1a3a-48c9-9a4e-07ec41bc3aaa, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:13:41.505Z","sequence":34761,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:13:41.505Z","sequence":34762,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C42] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:13:41.51Z","sequence":34763,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:13:41.511Z","sequence":34764,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:13:41.516Z","sequence":34765,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c14a900f-b1ce-4925-898b-20de9dc53722, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:13:45.335Z","sequence":34766,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:13:45.336Z","sequence":34767,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000A6E] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:13:45.341Z","sequence":34768,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:13:45.342Z","sequence":34769,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:13:45.35Z","sequence":34770,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-69b9f115-35f8-49a4-b558-db23cf74d373, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:13:47.015Z","sequence":34771,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:13:47.015Z","sequence":34772,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BB613]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:13:47.02Z","sequence":34773,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-fcec84c0-08f8-4811-a4bd-38cce0af1a7b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:13:47.144Z","sequence":34774,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:13:47.144Z","sequence":34775,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: flint]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:13:47.157Z","sequence":34776,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-4ae6e545-61e2-405c-8e96-ae8755989265, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:13:47.163Z","sequence":34777,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/flint:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:13:47.163Z","sequence":34778,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: flint, type: hashed-password, auth-id: auth-flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:13:47.164Z","sequence":34779,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/flint:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:13:47.164Z","sequence":34780,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: flint, type: hashed-password, auth-id: auth-flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:13:47.182Z","sequence":34781,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-995b49c2-86b8-408b-978a-f7bda0f9e7b8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:13:47.183Z","sequence":34782,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-6b12f26f-94ba-45ef-9d73-203320ecc8d4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:13:47.385Z","sequence":34783,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:13:47.385Z","sequence":34784,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10009D3] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:13:47.386Z","sequence":34785,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:13:47.389Z","sequence":34786,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:13:47.396Z","sequence":34787,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:13:47.396Z","sequence":34788,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:13:47.401Z","sequence":34789,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b4e0bd00-55c9-4a70-823c-b9c0a6f303f2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:13:47.402Z","sequence":34790,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-92d1054b-595c-46d2-9f62-41ac7e21d8c4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:13:56.567Z","sequence":34791,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:13:56.567Z","sequence":34792,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: shell]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:13:56.571Z","sequence":34793,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-637be393-2053-4ad4-be26-7f85e921fd6a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:13:56.573Z","sequence":34794,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/shell:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:13:56.573Z","sequence":34795,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: shell, type: hashed-password, auth-id: auth-gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:13:56.584Z","sequence":34796,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-37803efc-e908-498f-a45c-1ea0e40932fd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:13:56.71Z","sequence":34797,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:13:56.711Z","sequence":34798,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100079A] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:13:56.717Z","sequence":34799,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:13:56.717Z","sequence":34800,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:13:56.723Z","sequence":34801,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-39e6f8bb-eff8-45b4-b6b8-2962bbf3ff40, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:03.875Z","sequence":34802,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:03.876Z","sequence":34803,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 70B3D57BB10001A5] for gateway [0008004BB84C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:03.886Z","sequence":34804,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:0.4.1\"\n },\n \"viaGroups\" : [ \"gateways_lanxess\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:03.887Z","sequence":34805,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_lanxess\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:03.89Z","sequence":34806,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b492c05f-0bf0-4960-8f64-40009317014d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:04.274Z","sequence":34807,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191339]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"73dfdf6f859fd4a6","parentId":"c26c6a421faf964f","traceId":"0000000000000000b5cb8ba421321504","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:04.296Z","sequence":34808,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191339, resource-version: 5029a57d-d828-4cfa-9345-ad77df582301]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"73dfdf6f859fd4a6","parentId":"c26c6a421faf964f","traceId":"0000000000000000b5cb8ba421321504","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:04.303Z","sequence":34809,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191339, resource-version: e3eb8a13-22d4-4a51-8692-07221a2b5e75]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"73dfdf6f859fd4a6","parentId":"c26c6a421faf964f","traceId":"0000000000000000b5cb8ba421321504","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:04.309Z","sequence":34810,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191339]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b2228de83509d374","parentId":"05235d6f684d0db3","traceId":"0000000000000000b5cb8ba421321504","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:04.645Z","sequence":34811,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191339]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b2228de83509d374","parentId":"05235d6f684d0db3","traceId":"0000000000000000b5cb8ba421321504","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:04.701Z","sequence":34812,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/acta:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:04.701Z","sequence":34813,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: acta, device-id: 0008004AAAA3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:04.717Z","sequence":34814,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-02b243eb-1c53-4867-86a2-a7c2dc974898, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:04.725Z","sequence":34815,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:04.725Z","sequence":34816,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: acta]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:04.727Z","sequence":34817,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-ae334564-ea71-4bf2-863b-1287f894d210, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:04.735Z","sequence":34818,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/acta:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:04.735Z","sequence":34819,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: acta, device-id: 353438340047002F] for gateway [0008004AAAA3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:04.74Z","sequence":34820,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.3.0\"\n },\n \"viaGroups\" : [ \"gateways_acta\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:04.74Z","sequence":34821,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_acta\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:04.743Z","sequence":34822,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6335a688-f838-4fb2-aba0-eff77dbb87d0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:05.477Z","sequence":34823,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF1B1C4D6A99099]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f6c633a47e493525","parentId":"e3594ac45d58b0e5","traceId":"00000000000000000b4c010ad76ebd03","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:05.494Z","sequence":34824,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF1B1C4D6A99099, resource-version: ca038797-5fd1-4fff-8637-8a3b28b2547c]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f6c633a47e493525","parentId":"e3594ac45d58b0e5","traceId":"00000000000000000b4c010ad76ebd03","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:05.5Z","sequence":34825,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF1B1C4D6A99099, resource-version: 43592988-25dc-416f-8350-4ae8e945b953]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f6c633a47e493525","parentId":"e3594ac45d58b0e5","traceId":"00000000000000000b4c010ad76ebd03","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:06.578Z","sequence":34826,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:06.578Z","sequence":34827,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191339]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:06.589Z","sequence":34828,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-be40bcdd-599b-4fa6-b650-136abeeaef0c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:06.71Z","sequence":34829,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:06.711Z","sequence":34830,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF1B1C4D6A99099] for gateway [gateway_integrationtest_network_191339]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:06.712Z","sequence":34831,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:06.712Z","sequence":34832,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191339]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:06.717Z","sequence":34833,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:06.717Z","sequence":34834,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:06.718Z","sequence":34835,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8b791c82-b733-4971-b13e-f614e0c8b7de, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:07.019Z","sequence":34836,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-71eb9697-1ba7-4c3d-aea5-a5523943c61e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:17.732Z","sequence":34837,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF1B1C4D6A99099]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2de94dd95d31cc4c","parentId":"70e85bd9b93e5cc6","traceId":"00000000000000001f1d9e884e031f5c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:17.75Z","sequence":34838,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF1B1C4D6A99099]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2de94dd95d31cc4c","parentId":"70e85bd9b93e5cc6","traceId":"00000000000000001f1d9e884e031f5c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:18.301Z","sequence":34839,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191339]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"65f26c5576e61626","parentId":"b884accd8aa61a17","traceId":"00000000000000003eadef6e558bd5f7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:18.316Z","sequence":34840,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191339]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"65f26c5576e61626","parentId":"b884accd8aa61a17","traceId":"00000000000000003eadef6e558bd5f7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:18.953Z","sequence":34841,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: FE0888F65176]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bd61d0a244edbf6d","parentId":"3b906ef08ecaf3ac","traceId":"000000000000000014ce393ee5b8857b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:18.991Z","sequence":34842,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: FE0888F65176, resource-version: cb3c1efe-a4d1-4e30-a02c-58f4528cee6b]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bd61d0a244edbf6d","parentId":"3b906ef08ecaf3ac","traceId":"000000000000000014ce393ee5b8857b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:19.012Z","sequence":34843,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: FE0888F65176, resource-version: 5221bc51-a386-42e7-8322-b3a983a7dd49]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bd61d0a244edbf6d","parentId":"3b906ef08ecaf3ac","traceId":"000000000000000014ce393ee5b8857b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:19.016Z","sequence":34844,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: FE0888F65176]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b3645c58cd32618d","parentId":"55e4be77c67adf8a","traceId":"000000000000000014ce393ee5b8857b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:19.232Z","sequence":34845,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: FE0888F65176]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b3645c58cd32618d","parentId":"55e4be77c67adf8a","traceId":"000000000000000014ce393ee5b8857b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:19.641Z","sequence":34846,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:19.641Z","sequence":34847,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10009E6] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:19.649Z","sequence":34848,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:19.649Z","sequence":34849,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:19.657Z","sequence":34850,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-68676e2e-6657-4e80-a08c-1b2f2b4e8e18, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:19.714Z","sequence":34851,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF002676F722549]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"84fd28891a972d57","parentId":"6ff3b62d7d320f68","traceId":"00000000000000001ba81efc2ec137f2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:19.731Z","sequence":34852,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF002676F722549, resource-version: 1b4a3512-bb3b-4345-ad4f-a6f3f7cd64aa]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"84fd28891a972d57","parentId":"6ff3b62d7d320f68","traceId":"00000000000000001ba81efc2ec137f2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:19.739Z","sequence":34853,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF002676F722549, resource-version: 1695fddb-1dc3-4319-ad54-633245f3a9e4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"84fd28891a972d57","parentId":"6ff3b62d7d320f68","traceId":"00000000000000001ba81efc2ec137f2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:20.784Z","sequence":34854,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:20.784Z","sequence":34855,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-FE0888F65176]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:20.796Z","sequence":34856,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-c7ebf3ab-815c-4c79-9da4-74edb6e48ca9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:20.913Z","sequence":34857,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:20.913Z","sequence":34858,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: FE0888F65176]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:20.918Z","sequence":34859,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-12d7f7a3-65ba-44e2-872b-cc44d00966c4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:20.922Z","sequence":34860,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:20.922Z","sequence":34861,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF002676F722549] for gateway [FE0888F65176]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:20.926Z","sequence":34862,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:20.926Z","sequence":34863,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:21.11Z","sequence":34864,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e7683dc4-4162-4d74-af78-cec64f89e6cf, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:25.782Z","sequence":34865,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:25.782Z","sequence":34866,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001C0] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:25.788Z","sequence":34867,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:25.788Z","sequence":34868,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:25.791Z","sequence":34869,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-338f5575-e0d6-4630-9ecb-7f9dec50af60, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:25.873Z","sequence":34870,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:25.873Z","sequence":34871,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001C0] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:25.879Z","sequence":34872,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:25.879Z","sequence":34873,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:25.882Z","sequence":34874,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8836154b-3183-48b2-9740-711d52a4542d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:31.559Z","sequence":34875,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:31.56Z","sequence":34876,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000169] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:31.565Z","sequence":34877,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:31.566Z","sequence":34878,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:31.57Z","sequence":34879,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ff7cc712-397a-444b-b714-48485a20ebd5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:32.208Z","sequence":34880,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:32.208Z","sequence":34881,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000169] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:32.213Z","sequence":34882,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:32.213Z","sequence":34883,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:32.216Z","sequence":34884,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-559eb6a8-fc45-489f-8a5f-9713ceae20b5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:33.81Z","sequence":34885,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF002676F722549]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8dafd61a0c119e7e","parentId":"06466278fcf2f085","traceId":"0000000000000000cf657e88a71a93f7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:33.828Z","sequence":34886,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF002676F722549]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8dafd61a0c119e7e","parentId":"06466278fcf2f085","traceId":"0000000000000000cf657e88a71a93f7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:34.13Z","sequence":34887,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: FE0888F65176]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"386b7486715fba92","parentId":"c77fcbe0346f3643","traceId":"0000000000000000edd58fa7f3463f0e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:34.148Z","sequence":34888,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: FE0888F65176]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"386b7486715fba92","parentId":"c77fcbe0346f3643","traceId":"0000000000000000edd58fa7f3463f0e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:39.104Z","sequence":34889,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:39.104Z","sequence":34890,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019C5] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:39.11Z","sequence":34891,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:39.11Z","sequence":34892,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:39.116Z","sequence":34893,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7b2b7713-8164-42bb-8813-03a7fc245b9a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:39.193Z","sequence":34894,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/repsol:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:39.193Z","sequence":34895,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: repsol, device-id: 0008004A37FF]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:39.201Z","sequence":34896,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e9967651-69fa-4209-ac63-6902c170d397, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:39.205Z","sequence":34897,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:39.205Z","sequence":34898,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: repsol]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:39.208Z","sequence":34899,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-0aefaeaf-47a7-42ce-9655-ab34eb45b843, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:39.528Z","sequence":34900,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:39.528Z","sequence":34901,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001ADC] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:39.534Z","sequence":34902,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:39.534Z","sequence":34903,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:39.54Z","sequence":34904,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8795250d-2d79-48e1-832b-7cfc6f96f944, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:54.738Z","sequence":34905,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:54.738Z","sequence":34906,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10007FE] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:54.744Z","sequence":34907,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:54.744Z","sequence":34908,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:54.748Z","sequence":34909,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c1302eb5-d594-4abf-98d4-177b02c52c2d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:57.985Z","sequence":34910,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:57.985Z","sequence":34911,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000ACD] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:57.994Z","sequence":34912,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:57.994Z","sequence":34913,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:58Z","sequence":34914,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b21f0ecc-74d6-4b31-9e34-6b8d7b419069, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:58.213Z","sequence":34915,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:58.213Z","sequence":34916,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AD4] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:58.221Z","sequence":34917,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:58.221Z","sequence":34918,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:14:58.228Z","sequence":34919,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-54c6f936-72e3-48a0-b254-17e68dad0ddf, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:01.107Z","sequence":34920,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:01.107Z","sequence":34921,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: lanxess]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:01.126Z","sequence":34922,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-cb649255-47a0-4177-a6fb-a4d407210cd8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:01.132Z","sequence":34923,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:01.132Z","sequence":34924,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 70B3D57BB10001AE] for gateway [0008004BB84C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:01.169Z","sequence":34925,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:0.4.0\"\n },\n \"viaGroups\" : [ \"gateways_lanxess\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:01.169Z","sequence":34926,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_lanxess\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:01.197Z","sequence":34927,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e68d95ac-ee35-460b-a1a5-6430d5a82362, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:01.377Z","sequence":34928,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:01.377Z","sequence":34929,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:01.405Z","sequence":34930,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-290a954e-b2bd-4a8f-b02b-95be0188961f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:01.409Z","sequence":34931,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:01.409Z","sequence":34932,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oci]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:01.427Z","sequence":34933,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-1eb4d603-ec25-470a-b3ee-f35a46d65783, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:01.433Z","sequence":34934,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:01.433Z","sequence":34935,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001E8] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:01.461Z","sequence":34936,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:01.461Z","sequence":34937,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:01.475Z","sequence":34938,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b6501e11-6692-4a2f-a876-f8e6e863855f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:01.503Z","sequence":34939,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:01.503Z","sequence":34940,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001E8] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:01.524Z","sequence":34941,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:01.525Z","sequence":34942,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:01.534Z","sequence":34943,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6af7d96c-389a-49ad-81a4-69cb07fc24b9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:02.133Z","sequence":34944,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:02.133Z","sequence":34945,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006E0] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:02.162Z","sequence":34946,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:02.164Z","sequence":34947,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:02.185Z","sequence":34948,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-daecd5e6-dcd1-4283-b8d7-cdeb8a357ecc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:03.969Z","sequence":34949,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:03.969Z","sequence":34950,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 0008004B51D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:03.977Z","sequence":34951,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-514d8888-4b75-4a46-8d4c-ff12f431114a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:03.985Z","sequence":34952,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:03.985Z","sequence":34953,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: dow]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:03.988Z","sequence":34954,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-153d2ff5-0e96-404c-b288-e4328788afe9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:04.754Z","sequence":34955,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:04.754Z","sequence":34956,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: chevronsgp]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:04.757Z","sequence":34957,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-5d7a8194-a3ae-4eeb-94a6-1bd5bb6c420d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:04.761Z","sequence":34958,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Source{address='credentials/chevronsgp/e8e2fc27-89d3-4635-b866-6a74005fd739', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:04.762Z","sequence":34959,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-12]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:04.762Z","sequence":34960,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@5d214a92] for replies to [credentials/chevronsgp/e8e2fc27-89d3-4635-b866-6a74005fd739]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:04.766Z","sequence":34961,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Target{address='credentials/chevronsgp', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:04.766Z","sequence":34962,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-13]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:04.767Z","sequence":34963,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:04.769Z","sequence":34964,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/chevronsgp:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:04.769Z","sequence":34965,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: chevronsgp, type: hashed-password, auth-id: auth-chevronsgp_42]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:04.78Z","sequence":34966,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-9cea9205-d4fa-43dc-8c05-6b5020fb1ade, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:04.897Z","sequence":34967,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] wants to open a link [address: Source{address='registration/chevronsgp/c13ddaf8-4876-44e9-ab05-5f65796d532e', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:04.898Z","sequence":34968,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-12]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:04.898Z","sequence":34969,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@368009e] for replies to [registration/chevronsgp/c13ddaf8-4876-44e9-ab05-5f65796d532e]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:04.903Z","sequence":34970,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] wants to open a link [address: Target{address='registration/chevronsgp', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:04.903Z","sequence":34971,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-13]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:04.904Z","sequence":34972,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:04.906Z","sequence":34973,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/chevronsgp:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:04.906Z","sequence":34974,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: chevronsgp, device-id: 70B3D57BB10008BD] for gateway [gateway_chevronsgp_network_42]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:04.907Z","sequence":34975,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/chevronsgp:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:04.907Z","sequence":34976,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: chevronsgp, device-id: gateway_chevronsgp_network_42]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:04.921Z","sequence":34977,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5f8f8d15-d96c-4db4-9fcf-53729e957398, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:04.921Z","sequence":34978,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_chevronsgp\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:04.921Z","sequence":34979,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_chevronsgp\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:04.924Z","sequence":34980,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-de21d1d0-262a-4368-83c3-e7f0c7e1009e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:09.893Z","sequence":34981,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:09.896Z","sequence":34982,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000804] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:09.924Z","sequence":34983,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:09.924Z","sequence":34984,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:09.937Z","sequence":34985,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-26f0a220-6fd4-48d3-b75f-1e5fca56b9a7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:10.056Z","sequence":34986,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:10.056Z","sequence":34987,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10009C5] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:10.064Z","sequence":34988,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:10.064Z","sequence":34989,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:10.068Z","sequence":34990,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4955ccce-3aae-4039-8407-0e4a5edc90e8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:11.317Z","sequence":34991,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/chevron:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:11.325Z","sequence":34992,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: chevron, device-id: 70B3D57BB100065D] for gateway [CHEVRON-ORBIWISE-EL-SEGUNDO]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:11.353Z","sequence":34993,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_chevron\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:11.353Z","sequence":34994,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_chevron\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:11.361Z","sequence":34995,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a77424e3-505f-4886-b571-e88534a10302, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:21.124Z","sequence":34996,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:21.124Z","sequence":34997,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000579] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:21.133Z","sequence":34998,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:21.133Z","sequence":34999,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:21.146Z","sequence":35000,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-108dbdbf-1777-4be9-a209-0f9f186e78ff, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:22.823Z","sequence":35001,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:22.823Z","sequence":35002,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: chevron]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:22.827Z","sequence":35003,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-10077dbe-838d-4dd9-a83b-c51dcdde6015, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:22.829Z","sequence":35004,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/chevron:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:22.83Z","sequence":35005,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: chevron, type: hashed-password, auth-id: auth-CHEVRON-ORBIWISE-EL-SEGUNDO]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:22.84Z","sequence":35006,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-61a557f2-c0aa-42bc-8bb1-14b9e18855f6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:25.999Z","sequence":35007,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:25.999Z","sequence":35008,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: ineos]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:26.008Z","sequence":35009,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-a239ba82-2a0d-434b-85ca-29f082e77781, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:26.01Z","sequence":35010,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:26.011Z","sequence":35011,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB1000A83] for gateway [0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:26.016Z","sequence":35012,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:26.016Z","sequence":35013,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:26.019Z","sequence":35014,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-bbb01b21-5240-4c66-962d-fbda4178130f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:37.049Z","sequence":35015,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:37.049Z","sequence":35016,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BA1] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:37.057Z","sequence":35017,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:37.057Z","sequence":35018,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:37.063Z","sequence":35019,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-acc7bdf7-a3a8-4197-b7a2-8d2512a8eb20, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:37.222Z","sequence":35020,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/conditionall:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:37.222Z","sequence":35021,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: conditionall, device-id: 0008004B512D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:37.229Z","sequence":35022,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-fc37a3dc-1391-40e9-82fe-68d5ea9da179, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:37.236Z","sequence":35023,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:37.237Z","sequence":35024,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: conditionall]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:37.241Z","sequence":35025,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-7676fd53-3613-4f5c-bb59-6bd2fcec3cbb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:40.965Z","sequence":35026,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:40.966Z","sequence":35027,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BE0] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:40.972Z","sequence":35028,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:40.972Z","sequence":35029,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:40.978Z","sequence":35030,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e7e556c8-b548-4864-8dbd-e87854d5e057, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:47.243Z","sequence":35031,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:47.243Z","sequence":35032,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:47.249Z","sequence":35033,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a5c24abb-4287-49bb-859b-f3df26665fb9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:49.522Z","sequence":35034,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:49.522Z","sequence":35035,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000796] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:49.532Z","sequence":35036,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:49.532Z","sequence":35037,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:49.539Z","sequence":35038,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-569a8c86-5fb6-4a00-b331-101fdc394ad8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:57.22Z","sequence":35039,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:57.221Z","sequence":35040,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BAD] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:57.227Z","sequence":35041,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:57.228Z","sequence":35042,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:15:57.233Z","sequence":35043,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3d3713c1-d235-4c26-af9d-dd173978f1ce, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:04.208Z","sequence":35044,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191341]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4fe07aa85b2ae731","parentId":"01e735782992230a","traceId":"00000000000000002cf6cf1ceb6c3454","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:04.229Z","sequence":35045,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191341, resource-version: 028218a8-195a-4afe-ae4b-7d1e2333ab32]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4fe07aa85b2ae731","parentId":"01e735782992230a","traceId":"00000000000000002cf6cf1ceb6c3454","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:04.235Z","sequence":35046,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191341, resource-version: f3e069c8-9dbc-42f0-97f2-ba6a0093e308]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4fe07aa85b2ae731","parentId":"01e735782992230a","traceId":"00000000000000002cf6cf1ceb6c3454","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:04.238Z","sequence":35047,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191341]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5d6c17b15fa58c2f","parentId":"486213608d26bed2","traceId":"00000000000000002cf6cf1ceb6c3454","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:04.387Z","sequence":35048,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191341]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5d6c17b15fa58c2f","parentId":"486213608d26bed2","traceId":"00000000000000002cf6cf1ceb6c3454","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:05.414Z","sequence":35049,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF472C16F97A85B]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"df96d50d9a48d78f","parentId":"4328c570cb81cedf","traceId":"0000000000000000d3777bc4948e3a07","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:05.43Z","sequence":35050,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF472C16F97A85B, resource-version: 8d9bddc6-9e0f-4ef8-9eb2-6ca6986c7761]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"df96d50d9a48d78f","parentId":"4328c570cb81cedf","traceId":"0000000000000000d3777bc4948e3a07","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:05.438Z","sequence":35051,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF472C16F97A85B, resource-version: a8f22ee7-a830-47a0-9fff-450f76d532b7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"df96d50d9a48d78f","parentId":"4328c570cb81cedf","traceId":"0000000000000000d3777bc4948e3a07","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:06.544Z","sequence":35052,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:06.544Z","sequence":35053,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:06.548Z","sequence":35054,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-8e204354-ea35-4416-9696-7c31a4513dd4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:06.55Z","sequence":35055,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:06.55Z","sequence":35056,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191341]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:06.567Z","sequence":35057,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-02715d37-1a82-4766-a3b4-74ffba05881d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:06.686Z","sequence":35058,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:06.686Z","sequence":35059,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF472C16F97A85B] for gateway [gateway_integrationtest_network_191341]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:06.687Z","sequence":35060,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:06.687Z","sequence":35061,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191341]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:06.692Z","sequence":35062,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:06.692Z","sequence":35063,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:06.693Z","sequence":35064,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d2d059c1-feab-490b-a56b-d564059f0ff0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:07.027Z","sequence":35065,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f266c233-1c47-4655-a136-4c115562da45, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:14.556Z","sequence":35066,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:14.556Z","sequence":35067,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BB84C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:14.576Z","sequence":35068,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-31e4dee6-f079-4d5f-b999-a2df85cca01a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:15.884Z","sequence":35069,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:15.884Z","sequence":35070,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 0008004B5135]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:15.889Z","sequence":35071,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-26e08713-800d-4c74-ae29-83035a928f18, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:19.58Z","sequence":35072,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF472C16F97A85B]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5161ba60e78843f6","parentId":"a49d75dbe28f9262","traceId":"00000000000000001418f79a4157c623","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:19.602Z","sequence":35073,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF472C16F97A85B]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5161ba60e78843f6","parentId":"a49d75dbe28f9262","traceId":"00000000000000001418f79a4157c623","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:19.746Z","sequence":35074,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:19.746Z","sequence":35075,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BBD1B]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:19.751Z","sequence":35076,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-595847aa-8bc8-48e6-8f12-d5e3d98e8f24, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:19.763Z","sequence":35077,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191341]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"849edbec43a8db3e","parentId":"a11def2a5ec5c55b","traceId":"0000000000000000519268cf185c5cc3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:19.784Z","sequence":35078,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191341]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"849edbec43a8db3e","parentId":"a11def2a5ec5c55b","traceId":"0000000000000000519268cf185c5cc3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:20.382Z","sequence":35079,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 1F57269A6D16]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"013b334b9b252bb5","parentId":"e4807fa0bb26340a","traceId":"00000000000000003d9b0bad15637c2a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:20.429Z","sequence":35080,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 1F57269A6D16, resource-version: 92813b5e-77e4-4d87-8cf7-016df92f7c55]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"013b334b9b252bb5","parentId":"e4807fa0bb26340a","traceId":"00000000000000003d9b0bad15637c2a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:20.438Z","sequence":35081,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 1F57269A6D16, resource-version: 796afd9a-ea1c-4ce0-badd-84e951562f1b]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"013b334b9b252bb5","parentId":"e4807fa0bb26340a","traceId":"00000000000000003d9b0bad15637c2a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:20.442Z","sequence":35082,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 1F57269A6D16]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"419857d5a3ec1b69","parentId":"87ea71b97c3b6179","traceId":"00000000000000003d9b0bad15637c2a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:20.639Z","sequence":35083,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 1F57269A6D16]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"419857d5a3ec1b69","parentId":"87ea71b97c3b6179","traceId":"00000000000000003d9b0bad15637c2a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:21.347Z","sequence":35084,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF66110F69B332E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"abff3b5e56c11e7c","parentId":"9c2ddf7defdadbb1","traceId":"0000000000000000ce6a4e000c492e8f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:21.38Z","sequence":35085,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF66110F69B332E, resource-version: edf9f47e-0767-45f7-8db9-26b69ed2001f]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"abff3b5e56c11e7c","parentId":"9c2ddf7defdadbb1","traceId":"0000000000000000ce6a4e000c492e8f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:21.403Z","sequence":35086,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF66110F69B332E, resource-version: a22ec384-9692-4982-9291-e6345a5f0a2d]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"abff3b5e56c11e7c","parentId":"9c2ddf7defdadbb1","traceId":"0000000000000000ce6a4e000c492e8f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:22.453Z","sequence":35087,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:22.453Z","sequence":35088,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:22.461Z","sequence":35089,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-d089ca5c-f6f4-48c6-acb9-40cabeefe267, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:22.464Z","sequence":35090,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:22.465Z","sequence":35091,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-1F57269A6D16]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:22.475Z","sequence":35092,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-5c29c13b-07df-494b-8beb-f6dc4a9f9f8f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:22.593Z","sequence":35093,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:22.594Z","sequence":35094,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 1F57269A6D16]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:22.599Z","sequence":35095,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-278f451c-bc14-4a02-bbb3-9317b08bc427, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:22.603Z","sequence":35096,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:22.603Z","sequence":35097,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF66110F69B332E] for gateway [1F57269A6D16]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:22.608Z","sequence":35098,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:22.608Z","sequence":35099,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:22.876Z","sequence":35100,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-11d9afd2-09e5-41ac-a49a-7f5ae60ce3ba, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:25.446Z","sequence":35101,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:25.446Z","sequence":35102,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 70B3D57BB1000196] for gateway [0008004BBD1B]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:25.474Z","sequence":35103,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:0.4.1\"\n },\n \"viaGroups\" : [ \"gateways_lanxess\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:25.474Z","sequence":35104,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_lanxess\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:25.49Z","sequence":35105,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5a8edc20-66f0-4bee-837c-324ff349e40e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:27.257Z","sequence":35106,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:27.257Z","sequence":35107,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000813] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:27.263Z","sequence":35108,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:27.263Z","sequence":35109,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:27.266Z","sequence":35110,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d8fd7b00-32d0-4e77-a2e8-8b10b3b590cb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:27.277Z","sequence":35111,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/arkema:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:27.277Z","sequence":35112,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: arkema, device-id: 0008004AE119]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:27.282Z","sequence":35113,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8a41611e-5ec3-4d67-850c-8f2f53cc31be, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:27.287Z","sequence":35114,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:27.287Z","sequence":35115,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: arkema]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:27.29Z","sequence":35116,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-5cee9edd-47b2-40b0-acc9-e483b5694738, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:32.47Z","sequence":35117,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:32.47Z","sequence":35118,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006A1] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:32.477Z","sequence":35119,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:32.477Z","sequence":35120,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:32.483Z","sequence":35121,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-29b494b9-48bd-4567-82eb-7d687fde9901, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:34.662Z","sequence":35122,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF66110F69B332E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e57e922cd09f1b61","parentId":"106aedbb7ab95160","traceId":"0000000000000000be0ad391a97c7ee1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:34.677Z","sequence":35123,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF66110F69B332E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e57e922cd09f1b61","parentId":"106aedbb7ab95160","traceId":"0000000000000000be0ad391a97c7ee1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:35.022Z","sequence":35124,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 1F57269A6D16]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1cb607f2d39c1e29","parentId":"df624235e5b1239d","traceId":"0000000000000000d57d97974f96b9c8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:35.04Z","sequence":35125,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 1F57269A6D16]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1cb607f2d39c1e29","parentId":"df624235e5b1239d","traceId":"0000000000000000d57d97974f96b9c8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:41.71Z","sequence":35126,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:41.71Z","sequence":35127,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B50] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:41.715Z","sequence":35128,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:41.716Z","sequence":35129,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:41.721Z","sequence":35130,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-32fa9477-e397-4595-9e63-8758f894880f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:42.036Z","sequence":35131,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:42.036Z","sequence":35132,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AD9] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:42.042Z","sequence":35133,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:42.042Z","sequence":35134,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:42.048Z","sequence":35135,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d896848f-8700-4d2f-8719-6c8c4dcfee72, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:45.415Z","sequence":35136,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:45.416Z","sequence":35137,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000203] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:45.422Z","sequence":35138,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:45.422Z","sequence":35139,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:45.425Z","sequence":35140,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f4bf7e85-18fb-42af-af6d-04eb3a628895, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:45.487Z","sequence":35141,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:45.488Z","sequence":35142,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000203] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:45.493Z","sequence":35143,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:45.493Z","sequence":35144,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:45.496Z","sequence":35145,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-19dd21f5-507c-4ed5-ba9f-8c3b6cc5aa9b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:56.246Z","sequence":35146,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:56.247Z","sequence":35147,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: flint]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:56.25Z","sequence":35148,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-7501b2e7-b1cc-4ae1-9fb5-fdf7d25489c6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:56.252Z","sequence":35149,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/flint:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:56.252Z","sequence":35150,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: flint, type: hashed-password, auth-id: auth-flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:56.253Z","sequence":35151,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/flint:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:56.254Z","sequence":35152,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: flint, type: hashed-password, auth-id: auth-flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:56.262Z","sequence":35153,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-f78d70bf-d40c-435c-9609-5212306db99f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:56.264Z","sequence":35154,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-b2e175fc-65fa-4a4a-8ec4-591bd8748ad1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:56.579Z","sequence":35155,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:56.58Z","sequence":35156,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10007F4] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:56.586Z","sequence":35157,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:56.587Z","sequence":35158,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:56.59Z","sequence":35159,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8b979e0f-a11b-4a1e-a28d-f9d1ce657c2d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:58.385Z","sequence":35160,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:58.385Z","sequence":35161,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: shell]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:58.39Z","sequence":35162,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-69c16c9e-b648-49c6-932d-552d728560e2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:58.392Z","sequence":35163,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/shell:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:58.392Z","sequence":35164,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: shell, type: hashed-password, auth-id: auth-gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:58.403Z","sequence":35165,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-2b551eb1-6cb6-449b-b3ef-cb175d1e28e9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:58.524Z","sequence":35166,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:58.524Z","sequence":35167,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B47] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:58.545Z","sequence":35168,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:58.545Z","sequence":35169,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:16:58.557Z","sequence":35170,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-fb63708e-b319-435e-9ca1-4c889fb152c0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:17:01.111Z","sequence":35171,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/acta:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:17:01.111Z","sequence":35172,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: acta, device-id: 35343834001F0046] for gateway [0008004AAAA3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:17:01.119Z","sequence":35173,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.3.0\"\n },\n \"viaGroups\" : [ \"gateways_acta\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:17:01.119Z","sequence":35174,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_acta\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:17:01.122Z","sequence":35175,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e32f9852-3219-4ea3-a7a7-735f993b2085, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:17:01.728Z","sequence":35176,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:17:01.728Z","sequence":35177,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB1000A68] for gateway [0008004B5135]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:17:01.74Z","sequence":35178,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:17:01.74Z","sequence":35179,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:17:01.745Z","sequence":35180,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-fa549243-2393-43d3-854d-3ff241fc5e02, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:17:09.765Z","sequence":35181,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:17:09.765Z","sequence":35182,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:17:09.772Z","sequence":35183,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e02469fd-8bd4-44a9-8bed-249ebeb90134, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:17:13.836Z","sequence":35184,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:17:13.836Z","sequence":35185,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000159] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:17:13.844Z","sequence":35186,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:17:13.844Z","sequence":35187,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:17:13.849Z","sequence":35188,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-26ba5e06-0884-4411-81e3-5f21a4bde838, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:17:14.001Z","sequence":35189,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:17:14.001Z","sequence":35190,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000159] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:17:14.02Z","sequence":35191,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:17:14.02Z","sequence":35192,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:17:14.023Z","sequence":35193,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6d37239e-a09d-4171-a7ed-cea14cbcf672, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:17:19.417Z","sequence":35194,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:17:19.417Z","sequence":35195,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10001F6] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:17:19.418Z","sequence":35196,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:17:19.418Z","sequence":35197,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:17:19.428Z","sequence":35198,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:17:19.428Z","sequence":35199,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:17:19.429Z","sequence":35200,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-66caa4ca-172f-4fda-87a0-225725a9d964, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:17:19.437Z","sequence":35201,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-126a84b8-27ea-4365-b47b-207bfe581dec, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:17:23.39Z","sequence":35202,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:17:23.39Z","sequence":35203,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10018F8] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:17:23.395Z","sequence":35204,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:17:23.396Z","sequence":35205,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:17:23.401Z","sequence":35206,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-96c52e06-1d0f-4be8-8474-64a8b41a7721, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:17:32.872Z","sequence":35207,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:17:32.872Z","sequence":35208,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BBD1C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:17:32.877Z","sequence":35209,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4bbdedf9-3318-42d0-b635-8ed026a491d3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:17:35Z","sequence":35210,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:17:35.001Z","sequence":35211,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019E1] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:17:35.007Z","sequence":35212,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:17:35.007Z","sequence":35213,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:17:35.012Z","sequence":35214,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d58b6434-ded8-4eb0-9ae6-71a30a4400f8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:17:39.917Z","sequence":35215,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:17:39.917Z","sequence":35216,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 0008004C80F4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:17:39.923Z","sequence":35217,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b3b009cf-36d1-4982-b4be-117f41467cee, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:17:56.517Z","sequence":35218,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oiltanking:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:17:56.517Z","sequence":35219,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oiltanking, device-id: 0008004BB60F]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:17:56.523Z","sequence":35220,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8d8e5b5d-305a-44fc-a9dd-83cdd3e1b7be, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:17:56.526Z","sequence":35221,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:17:56.526Z","sequence":35222,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oiltanking]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:17:56.529Z","sequence":35223,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-ee87be1c-12a0-41ec-87f5-6d4abdd4a588, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:17:57.39Z","sequence":35224,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:17:57.39Z","sequence":35225,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C2C] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:17:57.396Z","sequence":35226,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:17:57.396Z","sequence":35227,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:17:57.402Z","sequence":35228,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-56bf4103-4750-4b61-bacd-c11810596581, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:04.564Z","sequence":35229,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191343]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d0af94c893cbb0fa","parentId":"dff76054fa5a9304","traceId":"000000000000000021823218aca81e34","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:04.583Z","sequence":35230,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191343, resource-version: cdd59e62-2f20-493f-89e1-88d710964b0f]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d0af94c893cbb0fa","parentId":"dff76054fa5a9304","traceId":"000000000000000021823218aca81e34","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:04.589Z","sequence":35231,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191343, resource-version: ddc25d97-01ce-4d49-b6d0-2f550d6423ad]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d0af94c893cbb0fa","parentId":"dff76054fa5a9304","traceId":"000000000000000021823218aca81e34","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:04.593Z","sequence":35232,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191343]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e4813c4d0ef92981","parentId":"cd3ede3d2e336e98","traceId":"000000000000000021823218aca81e34","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:04.752Z","sequence":35233,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191343]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e4813c4d0ef92981","parentId":"cd3ede3d2e336e98","traceId":"000000000000000021823218aca81e34","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:05.763Z","sequence":35234,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF2CA3ADF748CD6]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e78e5d2ec74723a6","parentId":"ae16df7439616690","traceId":"0000000000000000fb44046a824ea80d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:05.784Z","sequence":35235,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF2CA3ADF748CD6, resource-version: 1f443ee7-596d-4ca3-bb8b-76dd81d2d587]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e78e5d2ec74723a6","parentId":"ae16df7439616690","traceId":"0000000000000000fb44046a824ea80d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:05.79Z","sequence":35236,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF2CA3ADF748CD6, resource-version: d2255273-6a32-4049-897a-6750156927e5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e78e5d2ec74723a6","parentId":"ae16df7439616690","traceId":"0000000000000000fb44046a824ea80d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:06.243Z","sequence":35237,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:06.244Z","sequence":35238,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A03] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:06.249Z","sequence":35239,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:06.25Z","sequence":35240,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:06.256Z","sequence":35241,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6ca0e0f4-0e2a-4be6-9088-312f8a6ea2ed, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:07.005Z","sequence":35242,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:07.005Z","sequence":35243,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191343]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:07.038Z","sequence":35244,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-33e822c3-aa70-4beb-9274-1eacbafeb4dc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:07.159Z","sequence":35245,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:07.159Z","sequence":35246,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF2CA3ADF748CD6] for gateway [gateway_integrationtest_network_191343]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:07.16Z","sequence":35247,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:07.16Z","sequence":35248,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191343]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:07.169Z","sequence":35249,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:07.17Z","sequence":35250,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:07.171Z","sequence":35251,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3b6f2c96-eebe-4a98-bea0-7e0558b93f1e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:07.527Z","sequence":35252,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-727f5762-3b18-4afe-aab3-2c43f5312c15, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:07.897Z","sequence":35253,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:07.897Z","sequence":35254,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A00] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:07.903Z","sequence":35255,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:07.903Z","sequence":35256,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:07.909Z","sequence":35257,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-bc902835-6a4f-4fe7-9759-c0de636c5457, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:13.256Z","sequence":35258,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:13.257Z","sequence":35259,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AA4] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:13.265Z","sequence":35260,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:13.265Z","sequence":35261,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:13.271Z","sequence":35262,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b9585c79-58c2-46a5-b87c-57171c4f3838, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:16.556Z","sequence":35263,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:16.556Z","sequence":35264,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100021F] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:16.562Z","sequence":35265,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:0.4.1\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:16.562Z","sequence":35266,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:16.569Z","sequence":35267,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-89cb87c6-47ac-4278-8c8c-500b86ff03e0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:16.848Z","sequence":35268,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF2CA3ADF748CD6]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"064e947a922786c0","parentId":"2285ec6a68de8c68","traceId":"00000000000000001405978a20df6a1f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:16.866Z","sequence":35269,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF2CA3ADF748CD6]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"064e947a922786c0","parentId":"2285ec6a68de8c68","traceId":"00000000000000001405978a20df6a1f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:17.243Z","sequence":35270,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191343]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9c694eee2ad307d5","parentId":"816d59e75c0be90b","traceId":"00000000000000003777e4cb0f0c44e4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:17.263Z","sequence":35271,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191343]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9c694eee2ad307d5","parentId":"816d59e75c0be90b","traceId":"00000000000000003777e4cb0f0c44e4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:17.893Z","sequence":35272,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 7AB3020E6113]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"40b224943014c004","parentId":"e8b95ef8386917fe","traceId":"0000000000000000a73485e952bda425","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:17.917Z","sequence":35273,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 7AB3020E6113, resource-version: 6310344e-5f83-47c1-a370-45985180e238]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"40b224943014c004","parentId":"e8b95ef8386917fe","traceId":"0000000000000000a73485e952bda425","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:17.926Z","sequence":35274,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 7AB3020E6113, resource-version: b9c76244-4b73-4c74-a50d-f8fa7350be88]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"40b224943014c004","parentId":"e8b95ef8386917fe","traceId":"0000000000000000a73485e952bda425","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:17.931Z","sequence":35275,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 7AB3020E6113]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a9c6439dc16bb068","parentId":"ef614f4712b1fc1a","traceId":"0000000000000000a73485e952bda425","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:18.084Z","sequence":35276,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 7AB3020E6113]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a9c6439dc16bb068","parentId":"ef614f4712b1fc1a","traceId":"0000000000000000a73485e952bda425","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:18.789Z","sequence":35277,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF843201DB98C12]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"58aefc2a905fc3ae","parentId":"455f8e48ae1d51e9","traceId":"0000000000000000f42c28b6d26b7363","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:18.814Z","sequence":35278,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF843201DB98C12, resource-version: 42d0df99-4d92-4045-96eb-5d02928ad451]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"58aefc2a905fc3ae","parentId":"455f8e48ae1d51e9","traceId":"0000000000000000f42c28b6d26b7363","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:18.819Z","sequence":35279,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF843201DB98C12, resource-version: da1be7a8-04a0-4634-8458-ebea7fdf2573]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"58aefc2a905fc3ae","parentId":"455f8e48ae1d51e9","traceId":"0000000000000000f42c28b6d26b7363","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:19.869Z","sequence":35280,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:19.869Z","sequence":35281,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-7AB3020E6113]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:19.885Z","sequence":35282,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-feca12d1-080d-492c-a70a-dc54dcd0f8fd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:20.005Z","sequence":35283,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:20.005Z","sequence":35284,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 7AB3020E6113]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:20.017Z","sequence":35285,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d6f1daf3-e539-43a4-b58a-0c17f2ee133a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:20.023Z","sequence":35286,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:20.023Z","sequence":35287,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF843201DB98C12] for gateway [7AB3020E6113]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:20.028Z","sequence":35288,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:20.028Z","sequence":35289,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:20.258Z","sequence":35290,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7de6fd73-4f78-40a2-9b11-fc7722cef834, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:24.11Z","sequence":35291,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:24.11Z","sequence":35292,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019FC] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:24.117Z","sequence":35293,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:24.117Z","sequence":35294,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:24.124Z","sequence":35295,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5015f6ab-3d0f-453b-8c27-eb12facff3e3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:27.91Z","sequence":35296,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:27.91Z","sequence":35297,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AAB] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:27.917Z","sequence":35298,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:27.917Z","sequence":35299,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:27.923Z","sequence":35300,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-969fe232-d584-43be-b9b9-def7dfab008f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:28.155Z","sequence":35301,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:28.155Z","sequence":35302,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C2E] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:28.177Z","sequence":35303,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:28.177Z","sequence":35304,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:28.186Z","sequence":35305,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-19d134b3-b18d-46a2-be3d-12145de09c11, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:30.127Z","sequence":35306,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/aloxy:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:30.127Z","sequence":35307,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: aloxy, device-id: 0008004A8F68]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:30.134Z","sequence":35308,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ba8cb8f6-bbb8-4605-a470-e85acc5bf85e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:30.137Z","sequence":35309,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:30.138Z","sequence":35310,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: aloxy]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:30.14Z","sequence":35311,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-4f427890-49a5-4d63-8164-3636cf28446a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:30.937Z","sequence":35312,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:30.937Z","sequence":35313,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: dow]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:30.94Z","sequence":35314,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-4c497a2b-126f-4e6d-ab0a-895f090169a8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:30.942Z","sequence":35315,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/dow:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:30.942Z","sequence":35316,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: dow, type: hashed-password, auth-id: auth-gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:30.951Z","sequence":35317,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-553ef692-2f5f-411b-8b63-91dbb05dda6c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:31.252Z","sequence":35318,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:31.253Z","sequence":35319,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 70B3D57BB1001266] for gateway [gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:31.253Z","sequence":35320,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:31.253Z","sequence":35321,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:31.258Z","sequence":35322,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:31.258Z","sequence":35323,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:31.259Z","sequence":35324,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-862ed8b6-6753-4340-a119-ea1c50364e99, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:31.261Z","sequence":35325,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c589bc99-46e6-417d-be4d-2d62b23166ed, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:31.605Z","sequence":35326,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:31.605Z","sequence":35327,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B78] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:31.611Z","sequence":35328,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:31.611Z","sequence":35329,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:31.618Z","sequence":35330,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1e354724-1505-4f8f-a69a-a3976737c0f2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:34.169Z","sequence":35331,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:34.169Z","sequence":35332,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB100088F] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:34.181Z","sequence":35333,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:34.181Z","sequence":35334,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:34.184Z","sequence":35335,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9d2cbcb0-7ee5-469f-8124-ec4feacb2101, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:34.259Z","sequence":35336,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF843201DB98C12]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b4fa9e336049a033","parentId":"2e89398a6f500639","traceId":"000000000000000095f0122e7e94c777","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:34.277Z","sequence":35337,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF843201DB98C12]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b4fa9e336049a033","parentId":"2e89398a6f500639","traceId":"000000000000000095f0122e7e94c777","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:34.706Z","sequence":35338,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 7AB3020E6113]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1e2faa707f069c89","parentId":"7291b8118a474bfa","traceId":"0000000000000000b1ce69f6a3e0d5cf","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:34.725Z","sequence":35339,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 7AB3020E6113]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1e2faa707f069c89","parentId":"7291b8118a474bfa","traceId":"0000000000000000b1ce69f6a3e0d5cf","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:41.773Z","sequence":35340,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:41.773Z","sequence":35341,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C24] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:41.779Z","sequence":35342,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:41.779Z","sequence":35343,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:41.786Z","sequence":35344,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b3c0dab4-d974-4765-9671-c16e4d581cff, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:44.687Z","sequence":35345,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:44.687Z","sequence":35346,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019FA] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:44.705Z","sequence":35347,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:44.705Z","sequence":35348,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:44.711Z","sequence":35349,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0abac0df-51fc-4cef-b0cf-b12d094da63a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:45.385Z","sequence":35350,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:45.385Z","sequence":35351,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: lanxess]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:45.393Z","sequence":35352,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-fc050eb5-d5dd-4152-ac1c-4e6625cc210d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:46.587Z","sequence":35353,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:46.587Z","sequence":35354,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C25] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:46.597Z","sequence":35355,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:46.597Z","sequence":35356,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:46.605Z","sequence":35357,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0e7b17a8-b8ae-4490-b246-043d4a2463b6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:48.743Z","sequence":35358,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:48.743Z","sequence":35359,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BB613]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:48.753Z","sequence":35360,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5c63efa9-1507-4712-91b2-3dbe6b0cf2a8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:51.329Z","sequence":35361,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:51.329Z","sequence":35362,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001402] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:51.34Z","sequence":35363,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:51.341Z","sequence":35364,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:51.35Z","sequence":35365,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b7c56be6-6804-4ed5-8939-359b7fe9d8ea, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:53.645Z","sequence":35366,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:53.645Z","sequence":35367,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019FB] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:53.652Z","sequence":35368,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:53.652Z","sequence":35369,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:18:53.66Z","sequence":35370,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a624d91e-dc25-4cd0-b9fb-96247b261908, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:19:01.601Z","sequence":35371,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:19:01.601Z","sequence":35372,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A06] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:19:01.607Z","sequence":35373,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:19:01.608Z","sequence":35374,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:19:01.615Z","sequence":35375,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6bf96c65-3543-478f-b41f-8d3207a4c442, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:19:10.041Z","sequence":35376,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:19:10.041Z","sequence":35377,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B72] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:19:10.048Z","sequence":35378,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:19:10.048Z","sequence":35379,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:19:10.055Z","sequence":35380,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-cf71a7d9-6d18-4f10-8618-db60c88bde35, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:19:14.513Z","sequence":35381,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:19:14.513Z","sequence":35382,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000792] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:19:14.523Z","sequence":35383,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:19:14.523Z","sequence":35384,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:19:14.53Z","sequence":35385,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-256b738c-cc8a-4009-b1c8-2aa6b9797d80, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:19:17.626Z","sequence":35386,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:19:17.626Z","sequence":35387,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10007A1] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:19:17.632Z","sequence":35388,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:19:17.632Z","sequence":35389,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:19:17.639Z","sequence":35390,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5c032454-063a-438a-9b92-398388fad3a0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:19:24.929Z","sequence":35391,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:19:24.93Z","sequence":35392,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB100084E] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:19:24.93Z","sequence":35393,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:19:24.93Z","sequence":35394,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:19:24.953Z","sequence":35395,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:19:24.954Z","sequence":35396,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:19:24.954Z","sequence":35397,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-aa2c600f-7c28-4668-aad3-2f58cefbd40f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:19:24.959Z","sequence":35398,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-48587e63-7522-4632-b255-1453beb13dfd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:19:26.913Z","sequence":35399,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:19:26.913Z","sequence":35400,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AB2] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:19:26.944Z","sequence":35401,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:19:26.944Z","sequence":35402,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:19:26.951Z","sequence":35403,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0986ff20-2f66-4f59-9225-08de0994a1d1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:19:28.583Z","sequence":35404,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:19:28.583Z","sequence":35405,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A01] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:19:28.589Z","sequence":35406,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:19:28.589Z","sequence":35407,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:19:28.594Z","sequence":35408,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-affce3fc-d20a-4220-b908-b24016a93b2c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:19:31.901Z","sequence":35409,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:19:31.901Z","sequence":35410,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000A92] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:19:31.906Z","sequence":35411,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:19:31.906Z","sequence":35412,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:19:31.913Z","sequence":35413,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-bada855c-7d83-4235-9696-75cb58c77aa2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:19:32.807Z","sequence":35414,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/acta:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:19:32.807Z","sequence":35415,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: acta, device-id: 0008004AAAA3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:19:32.85Z","sequence":35416,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-212f674d-5b4f-407a-a297-c47e0c40a78c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:19:32.854Z","sequence":35417,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:19:32.854Z","sequence":35418,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: acta]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:19:32.858Z","sequence":35419,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-83850261-b37f-4789-9927-efbf7c06f0e3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:19:33.183Z","sequence":35420,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:19:33.184Z","sequence":35421,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oci]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:19:33.187Z","sequence":35422,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-fc692acf-cd95-4983-b0d9-23b696a48815, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:19:40.9Z","sequence":35423,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/repsol:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:19:40.9Z","sequence":35424,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: repsol, device-id: 0008004A37FF]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:19:40.906Z","sequence":35425,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-077ce4fa-bd26-4d0e-8fe8-d125e0b30237, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:19:40.909Z","sequence":35426,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:19:40.909Z","sequence":35427,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: repsol]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:19:40.913Z","sequence":35428,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-574a4655-8fe7-41b3-9b4f-6575392beac1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:19:43.725Z","sequence":35429,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:19:43.725Z","sequence":35430,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000524] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:19:43.744Z","sequence":35431,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:19:43.744Z","sequence":35432,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:19:43.801Z","sequence":35433,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e8d46877-57bb-44d9-8283-c17ec3c8700d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:19:43.846Z","sequence":35434,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:19:43.846Z","sequence":35435,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000508] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:19:43.853Z","sequence":35436,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:19:43.853Z","sequence":35437,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:19:43.859Z","sequence":35438,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-da45ecad-0a2d-42c1-8885-00823dae2671, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:19:50.182Z","sequence":35439,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:19:50.182Z","sequence":35440,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: chevronsgp]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:19:50.189Z","sequence":35441,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-152ef85b-1f23-4d70-8470-3112f873ea5e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:19:50.193Z","sequence":35442,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/chevronsgp:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:19:50.194Z","sequence":35443,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: chevronsgp, type: hashed-password, auth-id: auth-chevronsgp_42]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:19:50.205Z","sequence":35444,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-a1c84c31-f5a7-44a9-97fd-6bbc6b0cb657, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:19:50.324Z","sequence":35445,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/chevronsgp:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:19:50.324Z","sequence":35446,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: chevronsgp, device-id: 70B3D57BB10008C7] for gateway [gateway_chevronsgp_network_42]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:19:50.331Z","sequence":35447,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_chevronsgp\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:19:50.331Z","sequence":35448,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_chevronsgp\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:19:50.339Z","sequence":35449,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f8644c00-0b5a-42e9-890a-ea3485f97bfd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:19:51.977Z","sequence":35450,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/acta:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:19:51.977Z","sequence":35451,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: acta, device-id: 39383837002B0047] for gateway [0008004AAAA3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:19:51.983Z","sequence":35452,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.3.0\"\n },\n \"viaGroups\" : [ \"gateways_acta\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:19:51.984Z","sequence":35453,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_acta\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:19:51.987Z","sequence":35454,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-dca65c43-df2c-43d0-b34a-8efaa86574a9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:19:59.745Z","sequence":35455,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:19:59.745Z","sequence":35456,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000177] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:19:59.751Z","sequence":35457,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:19:59.751Z","sequence":35458,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:19:59.755Z","sequence":35459,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-85b76b31-9991-47ca-bb59-b39a0a8f7914, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:19:59.981Z","sequence":35460,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:19:59.981Z","sequence":35461,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 70B3D57BB1001284] for gateway [gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:19:59.997Z","sequence":35462,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:19:59.997Z","sequence":35463,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:00.041Z","sequence":35464,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-54b821f4-387c-44b3-b555-9cb0579f2405, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:00.79Z","sequence":35465,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:00.792Z","sequence":35466,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000177] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:00.804Z","sequence":35467,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:00.804Z","sequence":35468,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:00.807Z","sequence":35469,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-59b709d9-8828-451c-a997-0870e7fa2394, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:04.07Z","sequence":35470,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:04.07Z","sequence":35471,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: shell]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:04.089Z","sequence":35472,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-7e51a7ea-c2fa-4670-9a60-7ad6417ba261, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:04.091Z","sequence":35473,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/shell:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:04.091Z","sequence":35474,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: shell, type: hashed-password, auth-id: auth-gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:04.102Z","sequence":35475,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-ab12a4d9-fd6b-4027-946f-562f59450732, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:04.161Z","sequence":35476,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191345]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"92f53ccc862f3990","parentId":"33cd55abfeafb351","traceId":"000000000000000095d1c6cff303bb6e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:04.215Z","sequence":35477,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191345, resource-version: db1771b6-2a2f-45e8-a5de-5c2a9918fb9b]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"92f53ccc862f3990","parentId":"33cd55abfeafb351","traceId":"000000000000000095d1c6cff303bb6e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:04.225Z","sequence":35478,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:04.225Z","sequence":35479,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100052A] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:04.23Z","sequence":35480,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:04.23Z","sequence":35481,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:04.253Z","sequence":35482,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191345, resource-version: d77cce1d-cea6-41fd-8a27-0b4cbf708c4e]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"92f53ccc862f3990","parentId":"33cd55abfeafb351","traceId":"000000000000000095d1c6cff303bb6e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:04.256Z","sequence":35483,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191345]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"90a5ed2d6ba7f59b","parentId":"daf89ebd31cd3cff","traceId":"000000000000000095d1c6cff303bb6e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:04.3Z","sequence":35484,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5844109b-7031-4fcb-a5b3-93749b239cfd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:04.421Z","sequence":35485,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191345]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"90a5ed2d6ba7f59b","parentId":"daf89ebd31cd3cff","traceId":"000000000000000095d1c6cff303bb6e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:05.473Z","sequence":35486,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFCD5155ABB3F43]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"572ce85f69ec7e4f","parentId":"fe1c6398eada7e7c","traceId":"00000000000000009aa35bace6d445f5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:05.503Z","sequence":35487,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFCD5155ABB3F43, resource-version: 2e555dae-d3e4-4040-9173-3ffd67fdff62]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"572ce85f69ec7e4f","parentId":"fe1c6398eada7e7c","traceId":"00000000000000009aa35bace6d445f5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:05.509Z","sequence":35488,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFCD5155ABB3F43, resource-version: 212c1fae-2f6a-4fa3-9354-34faa65c8e4c]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"572ce85f69ec7e4f","parentId":"fe1c6398eada7e7c","traceId":"00000000000000009aa35bace6d445f5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:05.73Z","sequence":35489,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:05.73Z","sequence":35490,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 0008004B51D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:05.739Z","sequence":35491,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-39c3da33-302d-4f50-bed3-6ffbc5540947, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:05.743Z","sequence":35492,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:05.743Z","sequence":35493,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: dow]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:05.746Z","sequence":35494,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-5336138e-a2cc-4b6f-b407-a354c724f45c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:06.624Z","sequence":35495,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:06.624Z","sequence":35496,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:06.629Z","sequence":35497,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-ecc34419-c751-4091-a028-bbb98b32d347, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:06.631Z","sequence":35498,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:06.631Z","sequence":35499,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191345]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:06.642Z","sequence":35500,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-fee809f5-3581-4638-ac2c-7f08fa607bad, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:06.766Z","sequence":35501,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:06.766Z","sequence":35502,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCD5155ABB3F43] for gateway [gateway_integrationtest_network_191345]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:06.767Z","sequence":35503,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:06.767Z","sequence":35504,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191345]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:06.773Z","sequence":35505,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:06.773Z","sequence":35506,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:06.774Z","sequence":35507,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-cf1ad1f0-7cc7-4c50-ba85-63ac76105b6f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:07.109Z","sequence":35508,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-485de11c-5f8b-494e-999d-e21f69e15c04, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:15.249Z","sequence":35509,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:15.249Z","sequence":35510,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000F83] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:15.299Z","sequence":35511,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:15.299Z","sequence":35512,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:15.349Z","sequence":35513,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-496427d5-7906-4878-a7b1-fad8437a28de, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:16.919Z","sequence":35514,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFCD5155ABB3F43]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c62a8665ff4e25e7","parentId":"c1eb75825590f109","traceId":"0000000000000000e064137faab2ec84","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:17.004Z","sequence":35515,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFCD5155ABB3F43]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c62a8665ff4e25e7","parentId":"c1eb75825590f109","traceId":"0000000000000000e064137faab2ec84","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:17.357Z","sequence":35516,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191345]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5d4989ce5456bb89","parentId":"524260c5e0435c2f","traceId":"00000000000000003962aa75a3c139fe","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:17.403Z","sequence":35517,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191345]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5d4989ce5456bb89","parentId":"524260c5e0435c2f","traceId":"00000000000000003962aa75a3c139fe","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:18.476Z","sequence":35518,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 856313A28E98]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d864e95f53e7a7cf","parentId":"43ddc55bc32131e8","traceId":"0000000000000000f10095d55296eb5e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:18.505Z","sequence":35519,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 856313A28E98, resource-version: a132390c-0348-4873-adad-61397dca5088]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d864e95f53e7a7cf","parentId":"43ddc55bc32131e8","traceId":"0000000000000000f10095d55296eb5e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:18.541Z","sequence":35520,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 856313A28E98, resource-version: 7249e64e-344a-4a3f-956e-da5a23402ce2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d864e95f53e7a7cf","parentId":"43ddc55bc32131e8","traceId":"0000000000000000f10095d55296eb5e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:18.545Z","sequence":35521,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 856313A28E98]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1d6fbcc0d260e962","parentId":"41e07ea9a18f9d50","traceId":"0000000000000000f10095d55296eb5e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:18.747Z","sequence":35522,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 856313A28E98]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1d6fbcc0d260e962","parentId":"41e07ea9a18f9d50","traceId":"0000000000000000f10095d55296eb5e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:19.203Z","sequence":35523,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFB3214FE913346]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cc2305e09e51f700","parentId":"e4ce6be2013c9a98","traceId":"0000000000000000be535c87ef50bbd8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:19.247Z","sequence":35524,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFB3214FE913346, resource-version: 372c7a5d-0222-45ff-bb61-d8e71103cd08]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cc2305e09e51f700","parentId":"e4ce6be2013c9a98","traceId":"0000000000000000be535c87ef50bbd8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:19.255Z","sequence":35525,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFB3214FE913346, resource-version: 515d5d3c-3d7a-41d6-a731-49bb11f06db7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cc2305e09e51f700","parentId":"e4ce6be2013c9a98","traceId":"0000000000000000be535c87ef50bbd8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:20.301Z","sequence":35526,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:20.301Z","sequence":35527,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:20.305Z","sequence":35528,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-732fd7e4-c18f-47b9-9a91-c352f7883363, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:20.307Z","sequence":35529,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:20.307Z","sequence":35530,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-856313A28E98]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:20.317Z","sequence":35531,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-f69b8651-ac67-43d7-a392-4a48817e1163, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:20.434Z","sequence":35532,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:20.434Z","sequence":35533,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 856313A28E98]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:20.441Z","sequence":35534,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f827a1df-38b5-4566-9913-35985ca858c3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:20.445Z","sequence":35535,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:20.445Z","sequence":35536,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFB3214FE913346] for gateway [856313A28E98]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:20.45Z","sequence":35537,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:20.45Z","sequence":35538,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:20.674Z","sequence":35539,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-038c08df-89ff-411d-a23b-4ccf4916cb3f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:22.015Z","sequence":35540,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:22.015Z","sequence":35541,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 70B3D57BB100123E] for gateway [gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:22.021Z","sequence":35542,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:22.021Z","sequence":35543,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:22.041Z","sequence":35544,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-82eef1e8-9adc-4f22-b090-87e982768757, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:26.141Z","sequence":35545,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:26.142Z","sequence":35546,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AA7] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:26.149Z","sequence":35547,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:26.149Z","sequence":35548,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:26.238Z","sequence":35549,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0c9415b2-c497-4653-8718-c016e7315a2e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:29.7Z","sequence":35550,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:29.7Z","sequence":35551,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: ineos]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:29.703Z","sequence":35552,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-81b4b45d-ba7c-4a15-b79c-63b5d073bb52, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:29.705Z","sequence":35553,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:29.705Z","sequence":35554,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB1000A6A] for gateway [0008004B5135]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:29.71Z","sequence":35555,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:29.71Z","sequence":35556,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:29.713Z","sequence":35557,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-570c3c6e-658a-4dfe-b143-9389a8193aa4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:30.629Z","sequence":35558,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFB3214FE913346]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9c9ea899f9b44910","parentId":"69378f3b1fa91ffa","traceId":"0000000000000000b79358c16c92cf95","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:30.668Z","sequence":35559,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFB3214FE913346]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9c9ea899f9b44910","parentId":"69378f3b1fa91ffa","traceId":"0000000000000000b79358c16c92cf95","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:30.956Z","sequence":35560,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 856313A28E98]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5b42350b3f66300c","parentId":"507ad688062e6118","traceId":"0000000000000000a2d1212d97bfdeb2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:30.986Z","sequence":35561,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 856313A28E98]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5b42350b3f66300c","parentId":"507ad688062e6118","traceId":"0000000000000000a2d1212d97bfdeb2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:38.965Z","sequence":35562,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/conditionall:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:38.965Z","sequence":35563,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: conditionall, device-id: 0008004B512D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:39.001Z","sequence":35564,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e6d970a2-52cc-40ea-b114-ed95ea28ec19, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:39.004Z","sequence":35565,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:39.004Z","sequence":35566,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: conditionall]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:39.008Z","sequence":35567,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-ff1d411a-be42-4c77-9bda-b53d312de6c2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:47.098Z","sequence":35568,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:47.098Z","sequence":35569,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: flint]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:47.141Z","sequence":35570,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-63e22056-7543-4e1a-bd29-069511b98e02, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:47.145Z","sequence":35571,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/flint:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:47.145Z","sequence":35572,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: flint, type: hashed-password, auth-id: auth-flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:47.146Z","sequence":35573,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/flint:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:47.146Z","sequence":35574,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: flint, type: hashed-password, auth-id: auth-flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:47.252Z","sequence":35575,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-8e495e75-ce07-4dfc-b854-ff98eca54e4e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:47.253Z","sequence":35576,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-4b9eebfe-413d-43c7-82f1-9da3077486dc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:47.471Z","sequence":35577,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:47.471Z","sequence":35578,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10007F2] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:47.489Z","sequence":35579,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:47.489Z","sequence":35580,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:47.546Z","sequence":35581,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-762a557d-d931-432b-8faf-364c51dfa73e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:49.004Z","sequence":35582,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:49.004Z","sequence":35583,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:49.042Z","sequence":35584,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8f5c7b9f-01ef-4c15-b974-f360304ad02b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:50.017Z","sequence":35585,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:50.017Z","sequence":35586,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006C5] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:50.046Z","sequence":35587,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:50.047Z","sequence":35588,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:50.098Z","sequence":35589,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e2494cf5-ed3c-4070-93d6-3bd75848fe96, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:59.352Z","sequence":35590,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:59.352Z","sequence":35591,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001D4] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:59.385Z","sequence":35592,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:59.385Z","sequence":35593,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:59.388Z","sequence":35594,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4a2719d4-3761-4a93-9f76-832a48170286, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:59.506Z","sequence":35595,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:59.506Z","sequence":35596,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:59.529Z","sequence":35597,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-06e7b0c4-ba5f-472b-9d10-aed767c050fd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:59.532Z","sequence":35598,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:59.532Z","sequence":35599,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001D4] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:59.545Z","sequence":35600,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:59.545Z","sequence":35601,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:20:59.555Z","sequence":35602,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a63ec3b9-8c57-440a-9489-84556c41e6b4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:21:00.194Z","sequence":35603,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:21:00.195Z","sequence":35604,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10002AC] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:21:00.241Z","sequence":35605,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:21:00.241Z","sequence":35606,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:21:00.287Z","sequence":35607,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-76c03b4e-496e-4966-9b24-e00369501ef8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:21:01.577Z","sequence":35608,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/conditionall:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:21:01.578Z","sequence":35609,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: conditionall, device-id: 70B3D57BB10001F0] for gateway [0008004B512D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:21:01.588Z","sequence":35610,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_conditionall\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:21:01.588Z","sequence":35611,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_conditionall\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:21:01.59Z","sequence":35612,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-49efa33a-ddad-4fa7-9733-5d62a4abcb3c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:21:07.834Z","sequence":35613,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:21:07.835Z","sequence":35614,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000574] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:21:07.844Z","sequence":35615,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:21:07.844Z","sequence":35616,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:21:07.9Z","sequence":35617,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8d4d9c15-3318-44bf-85a3-7835fec4866d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:21:08.421Z","sequence":35618,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:21:08.421Z","sequence":35619,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB1000A77] for gateway [0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:21:08.467Z","sequence":35620,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:21:08.467Z","sequence":35621,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:21:08.485Z","sequence":35622,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c069863f-d20b-4053-a09b-9ac9597f0590, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:21:09.057Z","sequence":35623,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:21:09.057Z","sequence":35624,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C59] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:21:09.072Z","sequence":35625,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:21:09.072Z","sequence":35626,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:21:09.085Z","sequence":35627,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ac338824-e9d2-4d0e-8fb4-9421c760f8a0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:21:12.889Z","sequence":35628,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:21:12.889Z","sequence":35629,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019E7] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:21:12.897Z","sequence":35630,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:21:12.898Z","sequence":35631,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:21:12.905Z","sequence":35632,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1297089b-ee5e-4f2c-940e-34034b2fb3fc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:21:13.321Z","sequence":35633,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:21:13.321Z","sequence":35634,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AA2] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:21:13.331Z","sequence":35635,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:21:13.331Z","sequence":35636,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:21:13.341Z","sequence":35637,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-83d81534-0804-492e-bf61-9b24ba280c5f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:21:15.862Z","sequence":35638,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:21:15.862Z","sequence":35639,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BB84C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:21:15.867Z","sequence":35640,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6d014c34-64dd-4e45-9ded-ee073d9519db, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:21:15.871Z","sequence":35641,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:21:15.871Z","sequence":35642,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 70B3D57BB100018E] for gateway [0008004BB84C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:21:15.875Z","sequence":35643,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_lanxess\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:21:15.875Z","sequence":35644,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_lanxess\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:21:15.878Z","sequence":35645,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2afb9367-2201-4849-a456-f5856a4a0866, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:21:17.777Z","sequence":35646,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:21:17.778Z","sequence":35647,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 0008004B5135]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:21:17.793Z","sequence":35648,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2d67e8ea-c9a7-496a-baba-8b2e132b2eda, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:21:21.424Z","sequence":35649,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:21:21.424Z","sequence":35650,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BBD1B]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:21:21.489Z","sequence":35651,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-05b4c5f1-adb9-41b3-8b27-f4e5cff02159, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:21:29.045Z","sequence":35652,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/arkema:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:21:29.045Z","sequence":35653,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: arkema, device-id: 0008004AE119]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:21:29.088Z","sequence":35654,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8f5bcb31-7f34-43a1-810d-5c87eba5a526, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:21:29.091Z","sequence":35655,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:21:29.091Z","sequence":35656,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: arkema]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:21:29.095Z","sequence":35657,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-a4023b95-d35b-470b-a356-e0308aa61cbc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:21:34.189Z","sequence":35658,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:21:34.189Z","sequence":35659,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: dow]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:21:34.193Z","sequence":35660,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-9661741f-2067-4760-8e15-07bd945f8657, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:21:34.195Z","sequence":35661,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/dow:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:21:34.195Z","sequence":35662,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: dow, type: hashed-password, auth-id: auth-gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:21:34.284Z","sequence":35663,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-94087b81-aa4f-4f12-a169-12a3c9f20e13, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:21:34.531Z","sequence":35664,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:21:34.531Z","sequence":35665,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 70B3D57BB1001258] for gateway [gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:21:34.537Z","sequence":35666,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:21:34.537Z","sequence":35667,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:21:34.597Z","sequence":35668,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-aeb8d661-d5cc-4f2a-9d99-b8d3454141a3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:21:51.063Z","sequence":35669,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/repsol:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:21:51.063Z","sequence":35670,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: repsol, device-id: 70B3D57BB1000207] for gateway [0008004A37FF]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:21:51.092Z","sequence":35671,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:0.4.1\"\n },\n \"viaGroups\" : [ \"gateways_repsol\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:21:51.092Z","sequence":35672,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_repsol\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:21:51.135Z","sequence":35673,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-36336eae-b3d3-4dd4-8d9f-06d066ee6f99, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:21:52.345Z","sequence":35674,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:21:52.345Z","sequence":35675,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10018FA] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:21:52.401Z","sequence":35676,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:21:52.401Z","sequence":35677,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:21:52.501Z","sequence":35678,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-43dba0d2-0a04-4366-8adf-a5fd25c35d93, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:21:57.192Z","sequence":35679,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:21:57.192Z","sequence":35680,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10018F3] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:21:57.201Z","sequence":35681,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:21:57.201Z","sequence":35682,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:21:57.211Z","sequence":35683,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-df2941ce-8e4c-4566-8c6a-1dcb5861927e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:01.136Z","sequence":35684,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:01.136Z","sequence":35685,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: lanxess]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:01.139Z","sequence":35686,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-fe66949d-bd91-45d9-a46d-4a4d28dfbd5f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:04.293Z","sequence":35687,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191347]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"72db5c18207c2683","parentId":"6f37f684c0e329c5","traceId":"00000000000000004956e3c956775e68","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:04.316Z","sequence":35688,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191347, resource-version: d9e5968c-fbfe-49be-8db6-3745b7880fdb]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"72db5c18207c2683","parentId":"6f37f684c0e329c5","traceId":"00000000000000004956e3c956775e68","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:04.326Z","sequence":35689,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191347, resource-version: 3a5f7a16-ff6a-4a89-b20e-0043952b5531]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"72db5c18207c2683","parentId":"6f37f684c0e329c5","traceId":"00000000000000004956e3c956775e68","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:04.329Z","sequence":35690,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191347]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"072078b270c2d495","parentId":"b69c3164d9d1d4d7","traceId":"00000000000000004956e3c956775e68","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:04.48Z","sequence":35691,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191347]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"072078b270c2d495","parentId":"b69c3164d9d1d4d7","traceId":"00000000000000004956e3c956775e68","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:05.38Z","sequence":35692,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF38C012A2F422E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"31995c78f051b5bf","parentId":"5727634ea07400f7","traceId":"000000000000000042f91748ca5179cf","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:05.398Z","sequence":35693,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF38C012A2F422E, resource-version: f6a841a5-3fc3-43e4-975f-fcf2ff2fcf84]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"31995c78f051b5bf","parentId":"5727634ea07400f7","traceId":"000000000000000042f91748ca5179cf","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:05.403Z","sequence":35694,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF38C012A2F422E, resource-version: a40ddb06-bb24-4a1e-943a-b045319ba923]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"31995c78f051b5bf","parentId":"5727634ea07400f7","traceId":"000000000000000042f91748ca5179cf","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:06.003Z","sequence":35695,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:06.003Z","sequence":35696,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C06] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:06.01Z","sequence":35697,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:06.01Z","sequence":35698,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:06.043Z","sequence":35699,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-73f0be86-63d7-4341-8b54-7273c84d288e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:06.598Z","sequence":35700,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:06.599Z","sequence":35701,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191347]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:06.645Z","sequence":35702,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-6cea00a2-df58-4720-86e9-1bb3f2f3b319, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:06.765Z","sequence":35703,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:06.765Z","sequence":35704,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF38C012A2F422E] for gateway [gateway_integrationtest_network_191347]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:06.765Z","sequence":35705,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:06.765Z","sequence":35706,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191347]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:06.797Z","sequence":35707,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7111f6d2-4974-4931-9246-7193aaf70e74, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:06.797Z","sequence":35708,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:06.797Z","sequence":35709,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:07.114Z","sequence":35710,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-edb8217b-2370-473f-991d-e22675064e8c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:11.645Z","sequence":35711,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:11.646Z","sequence":35712,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:11.657Z","sequence":35713,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-57c55cc3-00d7-41a7-9840-0fcae35c6bdf, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:13.528Z","sequence":35714,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:13.528Z","sequence":35715,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019EA] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:13.535Z","sequence":35716,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:13.535Z","sequence":35717,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:13.543Z","sequence":35718,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f75fcf6c-5eb0-4237-adb3-e2e14190e621, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:18.157Z","sequence":35719,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF38C012A2F422E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f9992858c096e542","parentId":"29204535e3c86154","traceId":"00000000000000003ed946294a2f0cf5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:18.174Z","sequence":35720,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF38C012A2F422E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f9992858c096e542","parentId":"29204535e3c86154","traceId":"00000000000000003ed946294a2f0cf5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:18.505Z","sequence":35721,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191347]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"95a4f5b19fe5d0bf","parentId":"ada080aaeea61773","traceId":"0000000000000000e16198dc319c77b5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:18.544Z","sequence":35722,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191347]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"95a4f5b19fe5d0bf","parentId":"ada080aaeea61773","traceId":"0000000000000000e16198dc319c77b5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:19.13Z","sequence":35723,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 323D2E06B1BA]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7e67785bf28754de","parentId":"75eb42e0a3d6f7d3","traceId":"000000000000000095bcbfb1c908d77d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:19.148Z","sequence":35724,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 323D2E06B1BA, resource-version: ceebb3f7-aba3-4bb4-96bd-bb8185b9593e]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7e67785bf28754de","parentId":"75eb42e0a3d6f7d3","traceId":"000000000000000095bcbfb1c908d77d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:19.156Z","sequence":35725,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 323D2E06B1BA, resource-version: 01ebb74e-7397-40a3-a603-464c16ddb778]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7e67785bf28754de","parentId":"75eb42e0a3d6f7d3","traceId":"000000000000000095bcbfb1c908d77d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:19.159Z","sequence":35726,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 323D2E06B1BA]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a9a5d06b32eebac7","parentId":"96ff3f1c8b85a3f4","traceId":"000000000000000095bcbfb1c908d77d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:19.292Z","sequence":35727,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 323D2E06B1BA]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a9a5d06b32eebac7","parentId":"96ff3f1c8b85a3f4","traceId":"000000000000000095bcbfb1c908d77d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:19.835Z","sequence":35728,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF5726EE454622D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6f50b7d2614dedde","parentId":"d7b40d9276e1d91b","traceId":"00000000000000004e5340fbfbd005d5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:19.853Z","sequence":35729,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF5726EE454622D, resource-version: 83a24921-f767-408d-a91a-b504d820c110]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6f50b7d2614dedde","parentId":"d7b40d9276e1d91b","traceId":"00000000000000004e5340fbfbd005d5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:19.86Z","sequence":35730,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF5726EE454622D, resource-version: 31468609-e9c1-48a3-98aa-f68ba5354b31]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6f50b7d2614dedde","parentId":"d7b40d9276e1d91b","traceId":"00000000000000004e5340fbfbd005d5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:20.651Z","sequence":35731,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:20.651Z","sequence":35732,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AA5] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:20.654Z","sequence":35733,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:20.654Z","sequence":35734,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:20.657Z","sequence":35735,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:20.657Z","sequence":35736,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:20.659Z","sequence":35737,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-cbefc010-4d24-4bfc-ae09-c12d4cbdece6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:20.663Z","sequence":35738,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-fb8da0b7-2f44-4eb4-af6f-735a1e85be59, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:20.911Z","sequence":35739,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:20.911Z","sequence":35740,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-323D2E06B1BA]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:20.92Z","sequence":35741,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-3f874fb5-c0c2-4759-bfb3-2c3c3fb9684b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:21.042Z","sequence":35742,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:21.042Z","sequence":35743,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 323D2E06B1BA]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:21.049Z","sequence":35744,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-19f8b838-55ce-4025-9886-7f85958d2dd2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:21.058Z","sequence":35745,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:21.058Z","sequence":35746,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF5726EE454622D] for gateway [323D2E06B1BA]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:21.063Z","sequence":35747,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:21.063Z","sequence":35748,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:21.254Z","sequence":35749,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3e3bb062-f031-40fa-9003-c22670cc0f02, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:25.434Z","sequence":35750,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:25.434Z","sequence":35751,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB100084B] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:25.455Z","sequence":35752,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:25.462Z","sequence":35753,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:25.476Z","sequence":35754,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-36f6d7f8-aa05-453b-86d0-e66447a827f6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:25.612Z","sequence":35755,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:25.612Z","sequence":35756,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BC0] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:25.625Z","sequence":35757,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:25.625Z","sequence":35758,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:25.644Z","sequence":35759,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ffefa75c-a148-491c-aaac-8870eb8ff72a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:26.682Z","sequence":35760,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/acta:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:26.682Z","sequence":35761,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: acta, device-id: 35343834003C0033] for gateway [0008004AAAA3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:26.69Z","sequence":35762,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.3.0\"\n },\n \"viaGroups\" : [ \"gateways_acta\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:26.69Z","sequence":35763,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_acta\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:26.693Z","sequence":35764,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-58b629d4-32da-4e17-83ff-14727f417b40, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:30.17Z","sequence":35765,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:30.17Z","sequence":35766,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10001DE] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:30.175Z","sequence":35767,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:0.4.1\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:30.175Z","sequence":35768,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:30.182Z","sequence":35769,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-08a3185a-d8f8-4c25-ada2-2e398014f098, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:30.763Z","sequence":35770,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:30.763Z","sequence":35771,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019DF] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:30.769Z","sequence":35772,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:30.77Z","sequence":35773,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:30.776Z","sequence":35774,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1a9cacc1-1a8d-4d34-8c99-12ebb300940c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:31.092Z","sequence":35775,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:31.092Z","sequence":35776,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006B9] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:31.098Z","sequence":35777,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:31.098Z","sequence":35778,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:31.105Z","sequence":35779,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-55c4162d-2716-4f15-b844-899349dfe073, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:31.471Z","sequence":35780,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:31.471Z","sequence":35781,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000673] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:31.477Z","sequence":35782,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:31.477Z","sequence":35783,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:31.481Z","sequence":35784,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6cb6163b-8c19-4e06-9e42-10a73cf0f9f8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:33.918Z","sequence":35785,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:33.918Z","sequence":35786,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C17] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:33.925Z","sequence":35787,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:33.925Z","sequence":35788,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:33.931Z","sequence":35789,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e58bd195-c05c-4dbf-a569-0865c8eee7ed, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:34.561Z","sequence":35790,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF5726EE454622D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6eba76dc4257184e","parentId":"463740e446f0df9f","traceId":"000000000000000091868165f84afb68","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:34.602Z","sequence":35791,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF5726EE454622D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6eba76dc4257184e","parentId":"463740e446f0df9f","traceId":"000000000000000091868165f84afb68","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:34.991Z","sequence":35792,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 323D2E06B1BA]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b8978615e007224b","parentId":"f4f5f75ce13c2593","traceId":"0000000000000000ba67c4772f76d14e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:35.036Z","sequence":35793,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 323D2E06B1BA]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b8978615e007224b","parentId":"f4f5f75ce13c2593","traceId":"0000000000000000ba67c4772f76d14e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:36.115Z","sequence":35794,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:36.115Z","sequence":35795,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BBD1C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:36.121Z","sequence":35796,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6027e7dc-5aed-4d6b-baca-c6b5618f3b7c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:37.517Z","sequence":35797,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:37.517Z","sequence":35798,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BE6] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:37.523Z","sequence":35799,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:37.523Z","sequence":35800,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:37.529Z","sequence":35801,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-05f8abec-fcba-437f-b90c-5a7e32b8af73, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:42.297Z","sequence":35802,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:42.297Z","sequence":35803,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 0008004C80F4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:42.302Z","sequence":35804,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7d6a4a02-e45a-4be4-83e5-92b67e6a12b2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:43.346Z","sequence":35805,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:43.346Z","sequence":35806,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B9B] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:43.355Z","sequence":35807,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:43.356Z","sequence":35808,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:43.362Z","sequence":35809,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1aa30f1f-123b-47b5-a6ee-7daa22840c8c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:47.328Z","sequence":35810,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:47.328Z","sequence":35811,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AB8] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:47.333Z","sequence":35812,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:47.335Z","sequence":35813,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:47.342Z","sequence":35814,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6a0143cd-d965-43f7-8d26-95743fff94da, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:50.127Z","sequence":35815,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:50.128Z","sequence":35816,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oiltanking]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:50.132Z","sequence":35817,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-b496e8bb-1c7e-42fa-93ee-b3bf21ba73bf, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:50.146Z","sequence":35818,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oiltanking:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:50.147Z","sequence":35819,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oiltanking, device-id: 70B3D57BB100076B] for gateway [0008004BB60F]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:50.151Z","sequence":35820,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_oiltanking\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:50.151Z","sequence":35821,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oiltanking\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:50.154Z","sequence":35822,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-90c1292b-239d-408a-bb74-6e899ecbf795, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:56.926Z","sequence":35823,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:56.926Z","sequence":35824,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C33] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:56.932Z","sequence":35825,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:56.932Z","sequence":35826,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:56.939Z","sequence":35827,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-dadc6d94-3886-4880-a8b9-115c91bfe733, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:58.391Z","sequence":35828,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oiltanking:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:58.391Z","sequence":35829,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oiltanking, device-id: 0008004BB60F]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:22:58.397Z","sequence":35830,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8af592c2-c943-4a86-8dfe-5751d10249db, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:00.868Z","sequence":35831,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:00.868Z","sequence":35832,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000859] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:00.882Z","sequence":35833,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:00.882Z","sequence":35834,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:00.89Z","sequence":35835,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1bc904f3-e455-4f90-8f7d-68d8e93c3bb8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:04.045Z","sequence":35836,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:04.046Z","sequence":35837,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10018FB] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:04.054Z","sequence":35838,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:04.054Z","sequence":35839,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:04.06Z","sequence":35840,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e777bd48-5451-4813-89f9-82d530079ad7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:05.207Z","sequence":35841,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:05.207Z","sequence":35842,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: shell]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:05.233Z","sequence":35843,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-5e1dad42-4a34-410c-bb18-3e7a443027e0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:05.236Z","sequence":35844,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/shell:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:05.237Z","sequence":35845,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: shell, type: hashed-password, auth-id: auth-gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:05.293Z","sequence":35846,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-83345462-d85b-4c2c-ba0d-0455ca9a9590, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:05.418Z","sequence":35847,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:05.418Z","sequence":35848,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006E3] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:05.424Z","sequence":35849,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:05.424Z","sequence":35850,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:05.437Z","sequence":35851,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-475bd8d0-b492-4d44-8a07-cd0ab2c149a0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:09.32Z","sequence":35852,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:09.32Z","sequence":35853,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BD4] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:09.328Z","sequence":35854,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:09.328Z","sequence":35855,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:09.335Z","sequence":35856,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e3a20f98-8953-435d-91b2-b3c564a02db3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:11.493Z","sequence":35857,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:11.494Z","sequence":35858,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019C4] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:11.499Z","sequence":35859,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:11.5Z","sequence":35860,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:11.506Z","sequence":35861,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9901d78c-4eaf-487a-9e53-a5ad5a3a87d4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:12.112Z","sequence":35862,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:12.112Z","sequence":35863,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019B8] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:12.121Z","sequence":35864,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:12.121Z","sequence":35865,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:12.129Z","sequence":35866,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-49ea8c0a-5f4e-49f3-881c-fa953c4f6cc2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:16.573Z","sequence":35867,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:16.573Z","sequence":35868,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B85] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:16.585Z","sequence":35869,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:16.585Z","sequence":35870,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:16.591Z","sequence":35871,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1dcf8f2c-e167-4f0c-81bd-5da1c9c6adb9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:18.409Z","sequence":35872,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:18.409Z","sequence":35873,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000A97] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:18.415Z","sequence":35874,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:18.415Z","sequence":35875,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:18.421Z","sequence":35876,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e35406e5-55f8-4f5e-bd1f-90f4c46c47f4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:22.169Z","sequence":35877,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:22.169Z","sequence":35878,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019BC] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:22.174Z","sequence":35879,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:22.174Z","sequence":35880,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:22.18Z","sequence":35881,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c1684641-4e01-4c7f-b03c-440106095afd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:25.134Z","sequence":35882,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:25.134Z","sequence":35883,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10008AA] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:25.14Z","sequence":35884,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:25.14Z","sequence":35885,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:25.143Z","sequence":35886,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-33766fe8-90df-4150-be15-c42450aa02cf, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:26.766Z","sequence":35887,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:26.767Z","sequence":35888,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A0D] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:26.773Z","sequence":35889,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:26.773Z","sequence":35890,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:26.778Z","sequence":35891,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ad2de8b1-0108-4fbc-9ae3-360d1e6ee26b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:26.975Z","sequence":35892,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:26.975Z","sequence":35893,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oci]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:26.979Z","sequence":35894,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-231afb39-3056-4d3d-8d1a-5a5f5cb2dca5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:26.985Z","sequence":35895,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:26.985Z","sequence":35896,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100016A] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:26.99Z","sequence":35897,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:26.99Z","sequence":35898,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:26.993Z","sequence":35899,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-755b08b0-1afb-478d-b274-a51631be96f9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:27.008Z","sequence":35900,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:27.008Z","sequence":35901,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100016A] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:27.014Z","sequence":35902,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:27.014Z","sequence":35903,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:27.017Z","sequence":35904,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9ba1e2ad-60e2-414a-b1b4-70de03a0f914, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:27.706Z","sequence":35905,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:27.706Z","sequence":35906,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019D3] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:27.711Z","sequence":35907,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:27.712Z","sequence":35908,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:27.717Z","sequence":35909,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-29bad44b-1266-4152-b65d-3caf3748f7a9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:30.238Z","sequence":35910,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:30.238Z","sequence":35911,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A83] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:30.244Z","sequence":35912,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:30.244Z","sequence":35913,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:30.25Z","sequence":35914,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5734e0cc-ba03-42d4-9260-488cd0916c7c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:31.782Z","sequence":35915,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/aloxy:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:31.782Z","sequence":35916,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: aloxy, device-id: 0008004A8F68]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:31.787Z","sequence":35917,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f509bfd3-801b-400c-8b1f-7f81cdef1094, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:31.791Z","sequence":35918,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:31.791Z","sequence":35919,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: aloxy]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:31.794Z","sequence":35920,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-a3690d39-abe4-4078-a90f-04721224fc83, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:33.93Z","sequence":35921,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:33.93Z","sequence":35922,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000170] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:33.936Z","sequence":35923,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:33.936Z","sequence":35924,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:33.938Z","sequence":35925,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ffd3defa-6bca-4564-b27a-89a1a6c3a201, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:33.949Z","sequence":35926,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:33.949Z","sequence":35927,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000170] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:33.956Z","sequence":35928,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:33.956Z","sequence":35929,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:33.959Z","sequence":35930,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5a1ff6a4-c8eb-4157-8742-2ae13f3ee766, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:39.67Z","sequence":35931,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:39.671Z","sequence":35932,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100018D] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:39.677Z","sequence":35933,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:39.677Z","sequence":35934,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:39.68Z","sequence":35935,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d45fc6c7-95fd-4cdf-a366-1d8e73de0364, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:39.698Z","sequence":35936,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:39.698Z","sequence":35937,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100018D] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:39.705Z","sequence":35938,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:39.705Z","sequence":35939,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:39.707Z","sequence":35940,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-154de917-af10-4ede-b4aa-78a55b6eac5e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:44.462Z","sequence":35941,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:44.462Z","sequence":35942,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019DE] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:44.476Z","sequence":35943,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:44.476Z","sequence":35944,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:44.482Z","sequence":35945,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-05ed6673-2f74-4f4b-b7af-a6e1019f1ebb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:44.483Z","sequence":35946,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:44.483Z","sequence":35947,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001923] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:44.49Z","sequence":35948,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:44.49Z","sequence":35949,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:44.495Z","sequence":35950,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d9d1e545-9e8e-4b9a-bf4f-70d821af67d8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:50.581Z","sequence":35951,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:50.581Z","sequence":35952,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BB613]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:50.587Z","sequence":35953,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3467285b-5347-4cbd-8a2b-1446386c56d3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:54.85Z","sequence":35954,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/aloxy:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:54.85Z","sequence":35955,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: aloxy, device-id: 353438340047002A] for gateway [0008004A8F68]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:54.856Z","sequence":35956,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDao","level":"DEBUG","message":"error retrieving device [tenantId: aloxy, deviceId: 353438340047002A]: org.eclipse.hono.client.ClientErrorException: device not found","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:54.862Z","sequence":35957,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"no such device","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:54.863Z","sequence":35958,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8da2bb6c-9eb8-484c-9f56-28bd7546762c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:55.24Z","sequence":35959,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:55.24Z","sequence":35960,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019C1] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:55.246Z","sequence":35961,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:55.246Z","sequence":35962,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:55.252Z","sequence":35963,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-63ab7460-603d-4066-b455-0b3e5d6c1eb6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:56.765Z","sequence":35964,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:56.765Z","sequence":35965,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000575] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:56.77Z","sequence":35966,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:56.77Z","sequence":35967,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:56.777Z","sequence":35968,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2371eda9-fb67-4198-b5b7-a0cf5841492c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:58.545Z","sequence":35969,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:58.545Z","sequence":35970,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019BD] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:58.553Z","sequence":35971,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:58.553Z","sequence":35972,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:23:58.559Z","sequence":35973,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-790a26bf-349a-4620-a2af-19beb4cb8da0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:01.193Z","sequence":35974,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:01.193Z","sequence":35975,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100190C] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:01.198Z","sequence":35976,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:01.199Z","sequence":35977,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:01.204Z","sequence":35978,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9b8329be-206f-498f-8396-2deeff25c20b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:04.361Z","sequence":35979,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191349]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"df2fd287fa502fa2","parentId":"7b51d23990442fab","traceId":"0000000000000000a4f165222852faa1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:04.394Z","sequence":35980,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191349, resource-version: 9a95088f-0ba9-42e0-9ba8-933cdd077451]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"df2fd287fa502fa2","parentId":"7b51d23990442fab","traceId":"0000000000000000a4f165222852faa1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:04.403Z","sequence":35981,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191349, resource-version: 1c340b90-8517-48a3-8056-aae53ba089f9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"df2fd287fa502fa2","parentId":"7b51d23990442fab","traceId":"0000000000000000a4f165222852faa1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:04.406Z","sequence":35982,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191349]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ea9b8e2be7e49dfc","parentId":"bc4dd3906be47389","traceId":"0000000000000000a4f165222852faa1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:04.588Z","sequence":35983,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191349]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ea9b8e2be7e49dfc","parentId":"bc4dd3906be47389","traceId":"0000000000000000a4f165222852faa1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:05.325Z","sequence":35984,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:05.325Z","sequence":35985,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100015F] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:05.357Z","sequence":35986,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:05.357Z","sequence":35987,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:05.365Z","sequence":35988,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ed28a4fd-7d86-4d1c-bc4f-adb5d5a46ab0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:05.393Z","sequence":35989,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:05.393Z","sequence":35990,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100015F] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:05.399Z","sequence":35991,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:05.399Z","sequence":35992,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:05.403Z","sequence":35993,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8b32e625-0bec-480c-a95d-1f3eb5aa23e2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:05.49Z","sequence":35994,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:05.49Z","sequence":35995,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C2D] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:05.495Z","sequence":35996,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:05.496Z","sequence":35997,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:05.502Z","sequence":35998,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7cd4fef0-7b60-4913-8b42-3201ad5fda31, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:05.537Z","sequence":35999,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF116C13DCD9C60]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c3216291d1650d25","parentId":"805e40e32d6c0795","traceId":"000000000000000044091bdc533cda5d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:05.553Z","sequence":36000,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF116C13DCD9C60, resource-version: 218b8d92-1974-476c-9238-30bc846361a5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c3216291d1650d25","parentId":"805e40e32d6c0795","traceId":"000000000000000044091bdc533cda5d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:05.593Z","sequence":36001,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF116C13DCD9C60, resource-version: 5c89b77d-19b0-4bbc-a241-7aa7edac123d]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c3216291d1650d25","parentId":"805e40e32d6c0795","traceId":"000000000000000044091bdc533cda5d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:06.241Z","sequence":36002,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:06.241Z","sequence":36003,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 70B3D57BB1001269] for gateway [gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:06.242Z","sequence":36004,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:06.242Z","sequence":36005,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:06.253Z","sequence":36006,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:06.253Z","sequence":36007,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:06.255Z","sequence":36008,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f1cca1c5-3966-4d70-bdf0-3e4cc8bb749b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:06.262Z","sequence":36009,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e35bd45b-46d6-4210-a299-c6799ef5ca0b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:06.536Z","sequence":36010,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:06.536Z","sequence":36011,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B99] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:06.545Z","sequence":36012,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:06.546Z","sequence":36013,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:06.551Z","sequence":36014,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1202a512-c59a-4941-804e-41c7589baad4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:06.667Z","sequence":36015,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:06.671Z","sequence":36016,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:06.677Z","sequence":36017,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-3cd67e21-8574-4cc6-9852-7f3674b6840c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:06.68Z","sequence":36018,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:06.68Z","sequence":36019,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191349]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:06.697Z","sequence":36020,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-4f6385cf-da38-4043-a0d4-1fbcbd04195e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:06.907Z","sequence":36021,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:06.907Z","sequence":36022,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF116C13DCD9C60] for gateway [gateway_integrationtest_network_191349]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:06.908Z","sequence":36023,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:06.908Z","sequence":36024,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191349]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:06.917Z","sequence":36025,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0b169471-172e-478a-892d-949c90aa8031, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:06.918Z","sequence":36026,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:06.918Z","sequence":36027,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:07.637Z","sequence":36028,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3e30a12f-ff06-47f3-9be4-0c7172355e85, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:14.614Z","sequence":36029,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:14.614Z","sequence":36030,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019B7] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:14.637Z","sequence":36031,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:14.637Z","sequence":36032,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:14.653Z","sequence":36033,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-03f8c612-3b97-4123-abaf-6f8e01469b85, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:16.405Z","sequence":36034,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:16.405Z","sequence":36035,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001906] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:16.415Z","sequence":36036,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:16.415Z","sequence":36037,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:16.421Z","sequence":36038,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9260f387-deef-4a44-b89a-a505e738c5b8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:20.486Z","sequence":36039,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF116C13DCD9C60]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fa00c1832282d8ae","parentId":"490f76aa01469d21","traceId":"0000000000000000a36b19ce6c72020d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:20.507Z","sequence":36040,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF116C13DCD9C60]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fa00c1832282d8ae","parentId":"490f76aa01469d21","traceId":"0000000000000000a36b19ce6c72020d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:20.652Z","sequence":36041,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191349]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"91a9cbc0ee68c58d","parentId":"6f8b228aedf769a4","traceId":"0000000000000000d25784ab53de03ed","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:20.668Z","sequence":36042,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191349]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"91a9cbc0ee68c58d","parentId":"6f8b228aedf769a4","traceId":"0000000000000000d25784ab53de03ed","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:21.129Z","sequence":36043,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 8B4D3705340D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c994bdd5daf62460","parentId":"4dc6ac45241fee04","traceId":"0000000000000000280759bd2cfd54f0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:21.146Z","sequence":36044,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 8B4D3705340D, resource-version: 9cc17e6c-f031-4429-b34a-df45fb25b5af]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c994bdd5daf62460","parentId":"4dc6ac45241fee04","traceId":"0000000000000000280759bd2cfd54f0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:21.153Z","sequence":36045,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 8B4D3705340D, resource-version: 623c3a39-67d5-4cd3-827a-2bbe42f88717]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c994bdd5daf62460","parentId":"4dc6ac45241fee04","traceId":"0000000000000000280759bd2cfd54f0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:21.156Z","sequence":36046,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 8B4D3705340D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"46c926748185b7f3","parentId":"c15cb7ccceb15173","traceId":"0000000000000000280759bd2cfd54f0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:21.28Z","sequence":36047,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 8B4D3705340D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"46c926748185b7f3","parentId":"c15cb7ccceb15173","traceId":"0000000000000000280759bd2cfd54f0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:21.698Z","sequence":36048,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFF9F746EF81F2E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d6df9d9345d27347","parentId":"8399a1c44844e683","traceId":"0000000000000000e34269d440634bb7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:21.715Z","sequence":36049,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFF9F746EF81F2E, resource-version: fc964ea2-9415-4a7d-8688-9d7c994316b5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d6df9d9345d27347","parentId":"8399a1c44844e683","traceId":"0000000000000000e34269d440634bb7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:21.721Z","sequence":36050,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFF9F746EF81F2E, resource-version: 4eb43b93-b3a3-4f9f-9bfd-aba941d04e29]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d6df9d9345d27347","parentId":"8399a1c44844e683","traceId":"0000000000000000e34269d440634bb7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:22.77Z","sequence":36051,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:22.77Z","sequence":36052,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:22.773Z","sequence":36053,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-c0b2ba74-d058-4dc2-94f4-f929a4ae88f6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:22.776Z","sequence":36054,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:22.776Z","sequence":36055,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-8B4D3705340D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:22.785Z","sequence":36056,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-3b571112-06ad-49e8-9b9e-e47f974f000f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:22.911Z","sequence":36057,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:22.911Z","sequence":36058,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 8B4D3705340D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:22.917Z","sequence":36059,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7cb7f51f-27bf-4ac4-8c1a-e26b86b4f13a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:22.921Z","sequence":36060,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:22.921Z","sequence":36061,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFF9F746EF81F2E] for gateway [8B4D3705340D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:22.926Z","sequence":36062,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:22.926Z","sequence":36063,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:23.104Z","sequence":36064,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-23c8768c-22e9-4437-a238-f9dd60a8c1c3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:23.617Z","sequence":36065,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:23.617Z","sequence":36066,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019C2] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:23.623Z","sequence":36067,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:23.623Z","sequence":36068,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:23.63Z","sequence":36069,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-fcfe3c84-9296-4a2d-8727-f3f72a3a5fa0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:25.902Z","sequence":36070,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:25.903Z","sequence":36071,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019D8] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:25.912Z","sequence":36072,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:25.912Z","sequence":36073,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:25.917Z","sequence":36074,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0c8c71b4-c0ae-4d85-b142-2935f3c54142, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:30.329Z","sequence":36075,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:30.329Z","sequence":36076,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000791] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:30.334Z","sequence":36077,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:30.334Z","sequence":36078,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:30.34Z","sequence":36079,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6a03877a-25c3-419e-ab64-4db0cfc209d9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:31.665Z","sequence":36080,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:31.665Z","sequence":36081,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000F82] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:31.672Z","sequence":36082,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:31.672Z","sequence":36083,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:31.678Z","sequence":36084,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b20bef47-246b-42d7-87e9-079329e94eba, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:31.898Z","sequence":36085,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:31.898Z","sequence":36086,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019D2] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:31.903Z","sequence":36087,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:31.903Z","sequence":36088,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:31.909Z","sequence":36089,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1ac40ffc-faba-498b-83ba-cd0caa826646, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:35.73Z","sequence":36090,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/acta:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:35.73Z","sequence":36091,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: acta, device-id: 0008004AAAA3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:35.737Z","sequence":36092,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3e94e099-638a-4576-8567-9fe774ce44b1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:35.74Z","sequence":36093,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:35.74Z","sequence":36094,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: acta]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:35.743Z","sequence":36095,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-480ca5c8-5456-4b53-b936-35f13011b259, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:36.979Z","sequence":36096,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFF9F746EF81F2E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"add18a36ce0054c1","parentId":"2e7c9cb7ccc25c96","traceId":"000000000000000037d3aa9d5c7de31b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:36.994Z","sequence":36097,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFF9F746EF81F2E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"add18a36ce0054c1","parentId":"2e7c9cb7ccc25c96","traceId":"000000000000000037d3aa9d5c7de31b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:37.378Z","sequence":36098,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 8B4D3705340D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9f674c695cdaabac","parentId":"deb56b066daf4690","traceId":"0000000000000000f81494b978f70b3c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:37.392Z","sequence":36099,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 8B4D3705340D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9f674c695cdaabac","parentId":"deb56b066daf4690","traceId":"0000000000000000f81494b978f70b3c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:38.629Z","sequence":36100,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:38.63Z","sequence":36101,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019C3] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:38.636Z","sequence":36102,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:38.636Z","sequence":36103,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:38.641Z","sequence":36104,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-73d97c01-4012-45ae-a4aa-456fe8e16027, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:42.621Z","sequence":36105,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/repsol:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:42.622Z","sequence":36106,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: repsol, device-id: 0008004A37FF]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:42.628Z","sequence":36107,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c1a7df00-dea6-45ea-a4e7-3ff93be8aa79, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:42.631Z","sequence":36108,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:42.631Z","sequence":36109,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: repsol]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:42.633Z","sequence":36110,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-b28a23b0-b7e1-428c-bfed-eefbbfb73cbe, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:44.363Z","sequence":36111,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:44.363Z","sequence":36112,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AAB] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:44.371Z","sequence":36113,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:44.371Z","sequence":36114,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:44.377Z","sequence":36115,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3cc84f99-807c-4d64-b84f-a4d6a0f50c0b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:45.495Z","sequence":36116,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:45.495Z","sequence":36117,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C3C] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:45.502Z","sequence":36118,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:45.503Z","sequence":36119,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:45.509Z","sequence":36120,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-51f43104-f0ee-4452-a561-f4224bdfb98e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:45.864Z","sequence":36121,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:45.865Z","sequence":36122,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: shelldev]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:45.869Z","sequence":36123,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-fc1f3191-58b6-4431-8163-2a34517254c5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:45.871Z","sequence":36124,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Source{address='credentials/shelldev/76d27f03-72ba-4bfe-8360-d49bba905537', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:45.871Z","sequence":36125,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-14]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:45.871Z","sequence":36126,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@3ff32695] for replies to [credentials/shelldev/76d27f03-72ba-4bfe-8360-d49bba905537]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:45.877Z","sequence":36127,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Target{address='credentials/shelldev', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:45.877Z","sequence":36128,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-15]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:45.877Z","sequence":36129,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:45.881Z","sequence":36130,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/shelldev:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:45.881Z","sequence":36131,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: shelldev, type: hashed-password, auth-id: auth-AZUREFUNCTION-DEV]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:45.933Z","sequence":36132,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-3f2c6f6e-3f54-41b4-b9ea-fde100e0b5bd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:46.101Z","sequence":36133,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] wants to open a link [address: Source{address='registration/shelldev/0359f605-ec7c-4efb-b1a0-f700542b7efd', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:46.101Z","sequence":36134,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-14]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:46.101Z","sequence":36135,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@6fbfd758] for replies to [registration/shelldev/0359f605-ec7c-4efb-b1a0-f700542b7efd]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:46.104Z","sequence":36136,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] wants to open a link [address: Target{address='registration/shelldev', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:46.105Z","sequence":36137,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-15]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:46.105Z","sequence":36138,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:46.108Z","sequence":36139,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shelldev:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:46.109Z","sequence":36140,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shelldev, device-id: 70B3D57BB100099A] for gateway [AZUREFUNCTION-DEV]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:46.109Z","sequence":36141,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shelldev:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:46.11Z","sequence":36142,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shelldev, device-id: AZUREFUNCTION-DEV]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:46.138Z","sequence":36143,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-55adc529-5c2c-49cd-8350-2228c78213fd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:46.139Z","sequence":36144,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDao","level":"DEBUG","message":"error retrieving device [tenantId: shelldev, deviceId: 70B3D57BB100099A]: org.eclipse.hono.client.ClientErrorException: device not found","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:46.139Z","sequence":36145,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"no such device","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:46.139Z","sequence":36146,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b5ff4d5e-54bb-4767-98e6-3cfad73a4971, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:51.846Z","sequence":36147,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:51.847Z","sequence":36148,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100015B] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:51.853Z","sequence":36149,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:0.4.1\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:51.854Z","sequence":36150,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:51.859Z","sequence":36151,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2f242da2-a014-4277-bb64-e6b0d18a865e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:55.329Z","sequence":36152,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:55.329Z","sequence":36153,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006B7] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:55.335Z","sequence":36154,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:55.335Z","sequence":36155,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:55.345Z","sequence":36156,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1dccfde0-8079-477c-8071-7c53238789ed, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:56.301Z","sequence":36157,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shelldev:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:56.302Z","sequence":36158,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shelldev, device-id: 70B3D57BB100099A] for gateway [AZUREFUNCTION-DEV]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:56.307Z","sequence":36159,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDao","level":"DEBUG","message":"error retrieving device [tenantId: shelldev, deviceId: 70B3D57BB100099A]: org.eclipse.hono.client.ClientErrorException: device not found","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:56.307Z","sequence":36160,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"no such device","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:24:56.308Z","sequence":36161,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-372c16ca-db6d-43d5-9969-f02794d76b60, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:03.453Z","sequence":36162,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:03.454Z","sequence":36163,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: chevronsgp]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:03.457Z","sequence":36164,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-1c3a9ad0-4990-4693-b6f8-3834b92ed20a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:03.46Z","sequence":36165,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/chevronsgp:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:03.46Z","sequence":36166,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: chevronsgp, type: hashed-password, auth-id: auth-chevronsgp_42]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:03.472Z","sequence":36167,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-14c04d02-8094-4d4e-b7c5-8522145c1425, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:03.599Z","sequence":36168,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/chevronsgp:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:03.599Z","sequence":36169,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: chevronsgp, device-id: 70B3D57BB10008CA] for gateway [gateway_chevronsgp_network_42]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:03.6Z","sequence":36170,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/chevronsgp:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:03.6Z","sequence":36171,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: chevronsgp, device-id: gateway_chevronsgp_network_42]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:03.607Z","sequence":36172,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_chevronsgp\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:03.607Z","sequence":36173,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_chevronsgp\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:03.609Z","sequence":36174,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-679f2235-1367-4df8-a69f-728ef4259370, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:03.61Z","sequence":36175,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-fe0b400e-c31d-40bc-9ba6-ab97266e7c96, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:05.433Z","sequence":36176,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:05.433Z","sequence":36177,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100016D] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:05.445Z","sequence":36178,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:05.446Z","sequence":36179,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:05.45Z","sequence":36180,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ce6f13e4-4a09-4119-ac7c-2d8f11681ebd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:05.586Z","sequence":36181,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:05.586Z","sequence":36182,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100016D] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:05.592Z","sequence":36183,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:05.592Z","sequence":36184,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:05.595Z","sequence":36185,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f8cdf51e-235f-4d10-9033-7f664bb7d1aa, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:06.483Z","sequence":36186,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shelldev:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:06.483Z","sequence":36187,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shelldev, device-id: 70B3D57BB100099A] for gateway [AZUREFUNCTION-DEV]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:06.489Z","sequence":36188,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDao","level":"DEBUG","message":"error retrieving device [tenantId: shelldev, deviceId: 70B3D57BB100099A]: org.eclipse.hono.client.ClientErrorException: device not found","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:06.489Z","sequence":36189,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"no such device","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:06.49Z","sequence":36190,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-57161c63-8640-4695-80e4-25d699902f83, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:07.766Z","sequence":36191,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:07.767Z","sequence":36192,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 0008004B51D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:07.793Z","sequence":36193,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e370207e-4685-4497-a527-adee630ec281, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:07.796Z","sequence":36194,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:07.797Z","sequence":36195,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: dow]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:07.809Z","sequence":36196,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-8fa3809d-a099-4f1d-9618-0a5e4ca34d0d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:13.22Z","sequence":36197,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:13.22Z","sequence":36198,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006D0] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:13.226Z","sequence":36199,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:13.226Z","sequence":36200,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:13.233Z","sequence":36201,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8f2d2b24-0ec7-4832-83ad-54d89efc0725, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:16.661Z","sequence":36202,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shelldev:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:16.661Z","sequence":36203,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shelldev, device-id: 70B3D57BB100099A] for gateway [AZUREFUNCTION-DEV]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:16.669Z","sequence":36204,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDao","level":"DEBUG","message":"error retrieving device [tenantId: shelldev, deviceId: 70B3D57BB100099A]: org.eclipse.hono.client.ClientErrorException: device not found","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:16.669Z","sequence":36205,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"no such device","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:16.67Z","sequence":36206,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-66ecd066-6313-43cf-9bed-8f7aff8fe86c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:16.898Z","sequence":36207,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:16.898Z","sequence":36208,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001EB] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:16.905Z","sequence":36209,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:16.905Z","sequence":36210,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:16.911Z","sequence":36211,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f1f9b86a-d5c2-47d7-9464-1c528fd527cc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:17.014Z","sequence":36212,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:17.014Z","sequence":36213,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001EB] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:17.02Z","sequence":36214,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:17.02Z","sequence":36215,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:17.022Z","sequence":36216,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3be1ec9e-eb51-4204-a6fd-5860c62a13d4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:18.868Z","sequence":36217,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:18.869Z","sequence":36218,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B95] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:18.875Z","sequence":36219,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:18.875Z","sequence":36220,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:18.881Z","sequence":36221,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-33d42a8a-2529-444d-884c-67e63676be69, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:19.636Z","sequence":36222,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:19.637Z","sequence":36223,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BB2] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:19.652Z","sequence":36224,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:19.652Z","sequence":36225,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:19.658Z","sequence":36226,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-486d3f9b-d73c-445b-aeb1-edd786321c60, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:21.175Z","sequence":36227,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:21.175Z","sequence":36228,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C30] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:21.181Z","sequence":36229,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:21.182Z","sequence":36230,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:21.188Z","sequence":36231,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d601e2c2-e205-4780-991c-532a7c5e9404, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:21.222Z","sequence":36232,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:21.222Z","sequence":36233,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10018F4] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:21.232Z","sequence":36234,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:21.232Z","sequence":36235,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:21.238Z","sequence":36236,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-dd468afe-5979-4aad-80a4-be35b3f25a85, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:21.652Z","sequence":36237,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:21.653Z","sequence":36238,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: flint]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:21.657Z","sequence":36239,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-1f5e5738-1028-4503-b47c-ea05136278e3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:21.659Z","sequence":36240,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/flint:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:21.659Z","sequence":36241,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: flint, type: hashed-password, auth-id: auth-flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:21.669Z","sequence":36242,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-95f5f844-31e7-4b0a-87e0-741601fefed4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:21.787Z","sequence":36243,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:21.787Z","sequence":36244,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000896] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:21.788Z","sequence":36245,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:21.788Z","sequence":36246,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:21.794Z","sequence":36247,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:21.794Z","sequence":36248,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:21.795Z","sequence":36249,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1e06df25-ea90-4d6b-ba9a-b2a2ecf75e61, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:21.797Z","sequence":36250,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-fbfbb669-5eea-4ab8-9913-f139622f12c6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:37.416Z","sequence":36251,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:37.416Z","sequence":36252,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10009AA] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:37.421Z","sequence":36253,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:37.421Z","sequence":36254,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:37.425Z","sequence":36255,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a9442ba1-1812-461e-989d-3595051ccb6f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:40.937Z","sequence":36256,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/conditionall:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:40.937Z","sequence":36257,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: conditionall, device-id: 0008004B512D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:40.942Z","sequence":36258,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-82adb522-f4e5-474c-a1e6-62d69555a075, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:40.945Z","sequence":36259,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:40.945Z","sequence":36260,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: conditionall]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:40.949Z","sequence":36261,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-6eeaefb9-f029-47ff-8268-426b57e025f4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:49.315Z","sequence":36262,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:49.315Z","sequence":36263,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001925] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:49.323Z","sequence":36264,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:49.323Z","sequence":36265,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:49.33Z","sequence":36266,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6219ddcd-b37e-4b85-af2b-8a117fcb1288, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:50.234Z","sequence":36267,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:50.235Z","sequence":36268,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C31] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:50.241Z","sequence":36269,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:50.241Z","sequence":36270,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:50.247Z","sequence":36271,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-dff6af93-6c42-44c7-9777-767c88629252, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:50.805Z","sequence":36272,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:50.805Z","sequence":36273,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:50.812Z","sequence":36274,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7374d2bc-b401-4e0c-9d61-d2dce43a6b83, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:56.886Z","sequence":36275,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:56.886Z","sequence":36276,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C3B] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:56.892Z","sequence":36277,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:56.892Z","sequence":36278,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:25:56.899Z","sequence":36279,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-140b9c8a-80f9-4c79-a06a-c13bbbaceae5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:01.815Z","sequence":36280,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:01.815Z","sequence":36281,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: rigstar]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:01.819Z","sequence":36282,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-61d3e0be-bf17-444f-a4f9-502981269ddb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:01.821Z","sequence":36283,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Source{address='credentials/rigstar/a8f5d0fa-97ea-401d-b2f0-ada6181bf1a8', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:01.822Z","sequence":36284,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-16]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:01.822Z","sequence":36285,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@327578bf] for replies to [credentials/rigstar/a8f5d0fa-97ea-401d-b2f0-ada6181bf1a8]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:01.824Z","sequence":36286,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Target{address='credentials/rigstar', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:01.824Z","sequence":36287,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-17]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:01.825Z","sequence":36288,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:01.827Z","sequence":36289,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/rigstar:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:01.829Z","sequence":36290,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: rigstar, type: hashed-password, auth-id: auth-gateway_rigstar_network_38]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:01.839Z","sequence":36291,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-4e5bcc67-db6a-4921-94bb-169a0644b424, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:01.958Z","sequence":36292,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] wants to open a link [address: Source{address='registration/rigstar/135f01d4-38b7-498f-be22-be4cc920a3ec', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:01.958Z","sequence":36293,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-16]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:01.958Z","sequence":36294,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@4001737] for replies to [registration/rigstar/135f01d4-38b7-498f-be22-be4cc920a3ec]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:01.961Z","sequence":36295,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] wants to open a link [address: Target{address='registration/rigstar', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:01.961Z","sequence":36296,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-17]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:01.962Z","sequence":36297,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:01.966Z","sequence":36298,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/rigstar:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:01.966Z","sequence":36299,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: rigstar, device-id: 70B3D57BB100096C] for gateway [gateway_rigstar_network_38]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:01.967Z","sequence":36300,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/rigstar:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:01.967Z","sequence":36301,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: rigstar, device-id: gateway_rigstar_network_38]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:01.975Z","sequence":36302,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_rigstar\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:01.975Z","sequence":36303,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_rigstar\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:01.976Z","sequence":36304,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e17126ad-bf5c-401b-aa5f-94a64cbe5a5e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:01.978Z","sequence":36305,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9a0af3f1-4b95-43cf-89f6-9f37fd641359, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:02.354Z","sequence":36306,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:02.354Z","sequence":36307,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000894] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:02.376Z","sequence":36308,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:02.376Z","sequence":36309,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:02.389Z","sequence":36310,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e5f168ad-d693-4bf3-b7d2-c9e0dec3f40f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:04.561Z","sequence":36311,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191351]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a6d7dce91057213a","parentId":"b77d3e51d4926814","traceId":"00000000000000002d4235b506d86e92","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:04.591Z","sequence":36312,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191351, resource-version: f4eea3f5-43f6-4f11-93ea-a3861035cea7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a6d7dce91057213a","parentId":"b77d3e51d4926814","traceId":"00000000000000002d4235b506d86e92","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:04.598Z","sequence":36313,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191351, resource-version: 4b9b7981-518c-4b48-a28c-5e602db27feb]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a6d7dce91057213a","parentId":"b77d3e51d4926814","traceId":"00000000000000002d4235b506d86e92","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:04.602Z","sequence":36314,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191351]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b39769c1ac9e4242","parentId":"d6ca93c54ca4032e","traceId":"00000000000000002d4235b506d86e92","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:04.803Z","sequence":36315,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191351]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b39769c1ac9e4242","parentId":"d6ca93c54ca4032e","traceId":"00000000000000002d4235b506d86e92","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:05.587Z","sequence":36316,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF3D1B3F86E57D3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0b3ab1ffbdb2ecb5","parentId":"6041954c07467c07","traceId":"00000000000000002d5169eac508fcb9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:05.61Z","sequence":36317,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF3D1B3F86E57D3, resource-version: a3457733-efab-4b63-bb30-cee7e8bb578e]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0b3ab1ffbdb2ecb5","parentId":"6041954c07467c07","traceId":"00000000000000002d5169eac508fcb9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:05.617Z","sequence":36318,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF3D1B3F86E57D3, resource-version: 55312618-2ad6-4b9f-b2b3-59a32aa7d8e2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0b3ab1ffbdb2ecb5","parentId":"6041954c07467c07","traceId":"00000000000000002d5169eac508fcb9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:06.691Z","sequence":36319,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:06.691Z","sequence":36320,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191351]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:06.703Z","sequence":36321,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-19caa628-9748-43a6-a60c-2a3113f0a6af, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:06.82Z","sequence":36322,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:06.821Z","sequence":36323,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF3D1B3F86E57D3] for gateway [gateway_integrationtest_network_191351]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:06.821Z","sequence":36324,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:06.821Z","sequence":36325,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191351]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:06.828Z","sequence":36326,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:06.828Z","sequence":36327,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:06.829Z","sequence":36328,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-89f181f1-9b54-441a-80e8-75111d8c497d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:07.143Z","sequence":36329,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d4ec3aee-3ba4-4297-97dc-a1a64a28bc57, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:18.249Z","sequence":36330,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:18.249Z","sequence":36331,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BB84C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:18.255Z","sequence":36332,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-277ca05b-75f6-47d3-98b2-2fe962b4a775, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:18.258Z","sequence":36333,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:18.258Z","sequence":36334,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: lanxess]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:18.261Z","sequence":36335,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-eaf9286f-21c4-4b88-8939-778a9232e0ef, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:19.528Z","sequence":36336,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:19.529Z","sequence":36337,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 0008004B5135]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:19.535Z","sequence":36338,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f3ff8559-461e-451d-a236-8f20e85257ee, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:19.538Z","sequence":36339,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:19.538Z","sequence":36340,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: ineos]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:19.541Z","sequence":36341,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-7fd43611-ace9-412c-8159-826d71921c82, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:19.599Z","sequence":36342,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:19.6Z","sequence":36343,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: shell]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:19.609Z","sequence":36344,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-7d5e26e0-095f-45bd-b2d8-ae025527f1a6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:19.611Z","sequence":36345,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/shell:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:19.611Z","sequence":36346,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: shell, type: hashed-password, auth-id: auth-gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:19.623Z","sequence":36347,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-8fb0b18b-7b3d-4c89-8d0d-7b5c74247a39, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:19.721Z","sequence":36348,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF3D1B3F86E57D3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7047b7b16902aace","parentId":"1d593ac1da7e725e","traceId":"0000000000000000f87300a4a8d5daa5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:19.739Z","sequence":36349,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF3D1B3F86E57D3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7047b7b16902aace","parentId":"1d593ac1da7e725e","traceId":"0000000000000000f87300a4a8d5daa5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:19.745Z","sequence":36350,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:19.745Z","sequence":36351,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BBD] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:19.751Z","sequence":36352,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:19.751Z","sequence":36353,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:19.76Z","sequence":36354,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f6b76b05-4b64-4771-b6c3-4426fffca392, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:19.885Z","sequence":36355,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191351]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4fc8c850d8e90c0b","parentId":"7966e09fb59c578c","traceId":"0000000000000000eab9de4ee1739407","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:19.9Z","sequence":36356,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191351]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4fc8c850d8e90c0b","parentId":"7966e09fb59c578c","traceId":"0000000000000000eab9de4ee1739407","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:23.286Z","sequence":36357,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:23.286Z","sequence":36358,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BBD1B]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:23.291Z","sequence":36359,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-719cc143-b30f-40cf-bd26-50f42a67e503, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:23.533Z","sequence":36360,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 6766B850AD96]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3ab31cfc97319a12","parentId":"a7bb7bceefb4fe0d","traceId":"000000000000000014645cacea1f569e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:23.551Z","sequence":36361,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 6766B850AD96, resource-version: d8c49bde-65b7-4461-9858-e03906251cac]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3ab31cfc97319a12","parentId":"a7bb7bceefb4fe0d","traceId":"000000000000000014645cacea1f569e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:23.559Z","sequence":36362,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 6766B850AD96, resource-version: 8c414733-6db3-492e-8617-2a9aca812917]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3ab31cfc97319a12","parentId":"a7bb7bceefb4fe0d","traceId":"000000000000000014645cacea1f569e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:23.563Z","sequence":36363,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 6766B850AD96]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a41c6ec25312ae51","parentId":"fd57c9d9dd3e6d81","traceId":"000000000000000014645cacea1f569e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:23.689Z","sequence":36364,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 6766B850AD96]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a41c6ec25312ae51","parentId":"fd57c9d9dd3e6d81","traceId":"000000000000000014645cacea1f569e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:24.355Z","sequence":36365,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF9BCD504D2422E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c92f714b021fc2cd","parentId":"a812b384ec0b8b91","traceId":"00000000000000002988528f74e7830f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:24.375Z","sequence":36366,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF9BCD504D2422E, resource-version: aff8250b-0dfa-4d77-8cfb-de3a7f719f45]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c92f714b021fc2cd","parentId":"a812b384ec0b8b91","traceId":"00000000000000002988528f74e7830f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:24.382Z","sequence":36367,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF9BCD504D2422E, resource-version: 5e8fe545-0fbb-49a0-8b1c-8dba94d3c67c]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c92f714b021fc2cd","parentId":"a812b384ec0b8b91","traceId":"00000000000000002988528f74e7830f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:25.437Z","sequence":36368,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:25.437Z","sequence":36369,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-6766B850AD96]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:25.469Z","sequence":36370,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-350fff88-a414-412f-8a9e-08e652046b13, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:25.591Z","sequence":36371,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:25.591Z","sequence":36372,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 6766B850AD96]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:25.597Z","sequence":36373,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e6a095de-33a2-4a15-8c99-9adfd60119fb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:25.601Z","sequence":36374,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:25.601Z","sequence":36375,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF9BCD504D2422E] for gateway [6766B850AD96]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:25.608Z","sequence":36376,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:25.608Z","sequence":36377,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:25.772Z","sequence":36378,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d87dfef1-74e0-491c-af6e-c59a9d64078c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:27.855Z","sequence":36379,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:27.855Z","sequence":36380,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100079A] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:27.86Z","sequence":36381,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:27.86Z","sequence":36382,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:27.866Z","sequence":36383,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6c1ecf46-8e0a-4fe4-a4c5-a968a205071f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:27.997Z","sequence":36384,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"retrieving device [tenant: shell, device-id: 70B3D57BB100079A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"086cbc6441b701a2","parentId":"051a5b7684beff63","traceId":"68b75182c363e7eccc37adaf88916646","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:30.606Z","sequence":36385,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:30.606Z","sequence":36386,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000500] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:30.611Z","sequence":36387,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:30.611Z","sequence":36388,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:30.618Z","sequence":36389,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3591459a-3d90-4cbb-a438-1b4d0814fcfc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:30.846Z","sequence":36390,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/arkema:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:30.846Z","sequence":36391,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: arkema, device-id: 0008004AE119]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:30.853Z","sequence":36392,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-32f6a48d-e2da-477c-80c3-361ec35e9078, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:30.856Z","sequence":36393,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:30.857Z","sequence":36394,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: arkema]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:30.86Z","sequence":36395,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-e8f75285-b8e0-425f-a83d-fece45e8da19, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:34.495Z","sequence":36396,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:34.498Z","sequence":36397,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100190A] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:34.503Z","sequence":36398,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:34.503Z","sequence":36399,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:34.512Z","sequence":36400,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7778c460-dca6-4852-b13d-52c4b301e461, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:35.097Z","sequence":36401,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF9BCD504D2422E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"41404d8e4db23933","parentId":"4c654a199968467b","traceId":"00000000000000005cb1b0de44e9e906","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:35.115Z","sequence":36402,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF9BCD504D2422E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"41404d8e4db23933","parentId":"4c654a199968467b","traceId":"00000000000000005cb1b0de44e9e906","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:35.412Z","sequence":36403,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 6766B850AD96]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"53767de1e37b17c6","parentId":"803e7e6394489903","traceId":"00000000000000008d96229722cdcb85","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:35.437Z","sequence":36404,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 6766B850AD96]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"53767de1e37b17c6","parentId":"803e7e6394489903","traceId":"00000000000000008d96229722cdcb85","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:36.923Z","sequence":36405,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:36.923Z","sequence":36406,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AB9] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:36.953Z","sequence":36407,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:36.953Z","sequence":36408,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:36.96Z","sequence":36409,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f0730e1a-59bc-4cb9-bc37-7da67a3e3b92, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:40.294Z","sequence":36410,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:40.294Z","sequence":36411,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: dow]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:40.298Z","sequence":36412,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-559e53b1-7e14-4c4f-96cc-87731357a185, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:40.3Z","sequence":36413,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/dow:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:40.3Z","sequence":36414,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: dow, type: hashed-password, auth-id: auth-gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:40.311Z","sequence":36415,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-83b2c98c-3009-4673-aa14-77ceb918ee69, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:40.6Z","sequence":36416,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:40.6Z","sequence":36417,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 70B3D57BB1001259] for gateway [gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:40.621Z","sequence":36418,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:40.621Z","sequence":36419,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:40.626Z","sequence":36420,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a3670e86-e69a-4108-84ab-c219790305f7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:50.348Z","sequence":36421,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:50.349Z","sequence":36422,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB100080A] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:50.354Z","sequence":36423,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:50.354Z","sequence":36424,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:50.358Z","sequence":36425,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-745ac6f2-8a9c-497b-868f-e82c22206deb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:50.639Z","sequence":36426,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:50.639Z","sequence":36427,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C2B] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:50.645Z","sequence":36428,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:50.645Z","sequence":36429,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:50.651Z","sequence":36430,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-534bf3db-16d2-4912-98f4-86a0792ff780, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:51.282Z","sequence":36431,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:51.282Z","sequence":36432,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oci]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:51.285Z","sequence":36433,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-f3aae7e5-db0a-4732-9575-c3c2e391aa5b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:51.292Z","sequence":36434,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:51.292Z","sequence":36435,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001C1] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:51.297Z","sequence":36436,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:51.298Z","sequence":36437,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:51.305Z","sequence":36438,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-54baaf21-df04-4433-995b-bc786d69b4a2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:51.315Z","sequence":36439,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:51.315Z","sequence":36440,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:51.323Z","sequence":36441,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ee032bd2-b650-4672-9298-d240c8e657d2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:51.327Z","sequence":36442,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:51.327Z","sequence":36443,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001C1] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:51.332Z","sequence":36444,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:51.332Z","sequence":36445,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:51.335Z","sequence":36446,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-324bcb5c-5485-48cd-8cec-362f40a8e41d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:55.203Z","sequence":36447,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:55.203Z","sequence":36448,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100056E] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:55.237Z","sequence":36449,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:55.237Z","sequence":36450,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:26:55.253Z","sequence":36451,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-fcb69e51-0659-49da-9b97-4e6198947f03, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:27:05.947Z","sequence":36452,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:27:05.947Z","sequence":36453,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C3E] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:27:05.954Z","sequence":36454,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:27:05.955Z","sequence":36455,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:27:05.961Z","sequence":36456,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-cec823c3-dad7-4c6f-8685-f9b3a0e73e32, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:27:11.68Z","sequence":36457,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:27:11.68Z","sequence":36458,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10002D2] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:27:11.686Z","sequence":36459,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:27:11.687Z","sequence":36460,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:27:11.69Z","sequence":36461,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f77a35b0-dbe9-4801-b2c3-69dd815ff6bd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:27:13.409Z","sequence":36462,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:27:13.409Z","sequence":36463,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:27:13.418Z","sequence":36464,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0dd425fc-7e8f-4349-bc4d-54f36abb5e8c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:27:20.538Z","sequence":36465,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:27:20.538Z","sequence":36466,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006C7] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:27:20.543Z","sequence":36467,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:27:20.543Z","sequence":36468,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:27:20.55Z","sequence":36469,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1ec71a77-048c-4d49-97e5-4d2bc61466dd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:27:25.784Z","sequence":36470,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:27:25.784Z","sequence":36471,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB1000A7D] for gateway [0008004B5135]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:27:25.791Z","sequence":36472,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:27:25.791Z","sequence":36473,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:27:25.794Z","sequence":36474,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-fc70f99d-3aad-4630-8e41-9471c2cf9b3f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:27:27.939Z","sequence":36475,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:27:27.939Z","sequence":36476,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C29] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:27:27.94Z","sequence":36477,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:27:27.94Z","sequence":36478,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:27:27.945Z","sequence":36479,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:27:27.945Z","sequence":36480,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:27:27.945Z","sequence":36481,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b0b65aae-544a-4458-bc46-bf9ad7e34e97, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:27:27.951Z","sequence":36482,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7d55cab2-c445-4e8e-9462-7587822782f6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:27:28.461Z","sequence":36483,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:27:28.461Z","sequence":36484,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100015E] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:27:28.467Z","sequence":36485,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:27:28.467Z","sequence":36486,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:27:28.47Z","sequence":36487,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c86b2c28-3903-42a7-a485-b79b2730d2b0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:27:28.525Z","sequence":36488,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:27:28.525Z","sequence":36489,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100015E] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:27:28.532Z","sequence":36490,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:27:28.532Z","sequence":36491,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:27:28.534Z","sequence":36492,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d30a6ade-fece-4267-acb6-28b81bbeb568, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:27:30.351Z","sequence":36493,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:27:30.352Z","sequence":36494,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100048D] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:27:30.358Z","sequence":36495,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:27:30.358Z","sequence":36496,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:27:30.365Z","sequence":36497,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-89393c6d-fc21-4db2-8a21-c699fa9065f9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:27:39.341Z","sequence":36498,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:27:39.342Z","sequence":36499,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BBD1C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:27:39.347Z","sequence":36500,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1f266486-29f2-4495-bc77-e94e25ff36db, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:27:44.025Z","sequence":36501,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:27:44.025Z","sequence":36502,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 0008004C80F4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:27:44.061Z","sequence":36503,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-831177a6-f88f-4a4e-b00a-4fe58acd70fc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:00.47Z","sequence":36504,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oiltanking:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:00.47Z","sequence":36505,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oiltanking, device-id: 0008004BB60F]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:00.476Z","sequence":36506,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-082a680d-68c4-42c4-ad24-2cc6a5a09314, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:00.479Z","sequence":36507,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:00.479Z","sequence":36508,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oiltanking]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:00.482Z","sequence":36509,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-b8775adf-f589-49bb-b203-e0f2407f6001, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:04.271Z","sequence":36510,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191353]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bede5ecf7e3be129","parentId":"9661b6d6fe60b111","traceId":"0000000000000000f3ae1692b1be90d4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:04.302Z","sequence":36511,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191353, resource-version: e7df2b8b-5e6c-4055-81c3-b629a63fc2d8]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bede5ecf7e3be129","parentId":"9661b6d6fe60b111","traceId":"0000000000000000f3ae1692b1be90d4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:04.311Z","sequence":36512,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191353, resource-version: 82537228-a424-4a3c-925b-e1ae4b2b8a1a]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bede5ecf7e3be129","parentId":"9661b6d6fe60b111","traceId":"0000000000000000f3ae1692b1be90d4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:04.314Z","sequence":36513,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191353]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9e7df158190114a5","parentId":"77ac9c195b54a08d","traceId":"0000000000000000f3ae1692b1be90d4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:04.465Z","sequence":36514,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191353]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9e7df158190114a5","parentId":"77ac9c195b54a08d","traceId":"0000000000000000f3ae1692b1be90d4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:05.409Z","sequence":36515,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF91C28832F60E3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"50147adff5afbf20","parentId":"3ca4451dec6dd9cf","traceId":"00000000000000000ae85069ba6be72b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:05.442Z","sequence":36516,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF91C28832F60E3, resource-version: e7c877fa-801c-438c-804e-5f8f45e80ae4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"50147adff5afbf20","parentId":"3ca4451dec6dd9cf","traceId":"00000000000000000ae85069ba6be72b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:05.448Z","sequence":36517,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF91C28832F60E3, resource-version: ec8e3451-db63-481c-ac8a-7a1bf99afde1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"50147adff5afbf20","parentId":"3ca4451dec6dd9cf","traceId":"00000000000000000ae85069ba6be72b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:06.245Z","sequence":36518,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:06.245Z","sequence":36519,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C2A] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:06.259Z","sequence":36520,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:06.259Z","sequence":36521,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:06.272Z","sequence":36522,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-cf6a735e-cdf4-4af6-9acb-05af799ecb84, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:06.629Z","sequence":36523,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:06.629Z","sequence":36524,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:06.641Z","sequence":36525,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-d5bea0bc-e47b-4064-b996-7d6961ebd80b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:06.644Z","sequence":36526,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:06.645Z","sequence":36527,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191353]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:06.645Z","sequence":36528,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:06.646Z","sequence":36529,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C4C] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:06.673Z","sequence":36530,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:06.673Z","sequence":36531,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:06.685Z","sequence":36532,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c3e1ca3a-551a-4bbc-9dcb-90df3c37a378, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:06.686Z","sequence":36533,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-adf3ccbd-073f-4194-8f9d-237ad84e1698, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:06.829Z","sequence":36534,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:06.829Z","sequence":36535,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF91C28832F60E3] for gateway [gateway_integrationtest_network_191353]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:06.83Z","sequence":36536,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:06.83Z","sequence":36537,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191353]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:06.847Z","sequence":36538,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:06.847Z","sequence":36539,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:06.848Z","sequence":36540,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8df170fe-ec36-4d93-ad4f-48519ffca4dc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:07.302Z","sequence":36541,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-dc9ed123-901b-4b2a-a6ef-24a136c7f0c7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:17.966Z","sequence":36542,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF91C28832F60E3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3a7c690a8148c6d0","parentId":"dc1c0aae6c39cf60","traceId":"00000000000000008dd6fe6b1e70f0fb","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:17.987Z","sequence":36543,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF91C28832F60E3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3a7c690a8148c6d0","parentId":"dc1c0aae6c39cf60","traceId":"00000000000000008dd6fe6b1e70f0fb","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:18.107Z","sequence":36544,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191353]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"de6af44e4ae7eafd","parentId":"f9f3431b49d4046e","traceId":"0000000000000000ee7f106d6660dd06","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:18.126Z","sequence":36545,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191353]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"de6af44e4ae7eafd","parentId":"f9f3431b49d4046e","traceId":"0000000000000000ee7f106d6660dd06","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:18.591Z","sequence":36546,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: D668B1CC419A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2c1c24aab1f3adb8","parentId":"e34d132ed922e321","traceId":"0000000000000000d008b386d8b202b1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:18.61Z","sequence":36547,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: D668B1CC419A, resource-version: 6a132aab-7402-48af-8280-6bb099fbefdd]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2c1c24aab1f3adb8","parentId":"e34d132ed922e321","traceId":"0000000000000000d008b386d8b202b1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:18.618Z","sequence":36548,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: D668B1CC419A, resource-version: e86ed7c0-e0d0-4c00-a146-60fd13cefeff]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2c1c24aab1f3adb8","parentId":"e34d132ed922e321","traceId":"0000000000000000d008b386d8b202b1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:18.62Z","sequence":36549,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: D668B1CC419A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4725328f603de719","parentId":"129472e2e58aeea6","traceId":"0000000000000000d008b386d8b202b1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:18.751Z","sequence":36550,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: D668B1CC419A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4725328f603de719","parentId":"129472e2e58aeea6","traceId":"0000000000000000d008b386d8b202b1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:19.181Z","sequence":36551,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF06DB1902F0A8E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5f36ae1d78172ce2","parentId":"b86d215116d45b66","traceId":"000000000000000006a177fcb9a2dd7b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:19.2Z","sequence":36552,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF06DB1902F0A8E, resource-version: 7b4cbccb-f925-45ef-a01b-cf1af7d5cdae]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5f36ae1d78172ce2","parentId":"b86d215116d45b66","traceId":"000000000000000006a177fcb9a2dd7b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:19.206Z","sequence":36553,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF06DB1902F0A8E, resource-version: a1e14230-be9f-4e11-8f04-04fdf112514b]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5f36ae1d78172ce2","parentId":"b86d215116d45b66","traceId":"000000000000000006a177fcb9a2dd7b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:20.255Z","sequence":36554,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:20.255Z","sequence":36555,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:20.258Z","sequence":36556,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-3de1fe81-735e-41f0-b522-43b191c892b1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:20.261Z","sequence":36557,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:20.261Z","sequence":36558,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-D668B1CC419A]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:20.272Z","sequence":36559,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-7aa6af28-5970-46c8-a1d8-205f5ae17065, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:20.39Z","sequence":36560,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:20.39Z","sequence":36561,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: D668B1CC419A]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:20.395Z","sequence":36562,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-352ecbaa-43dd-4ce6-80c0-f3fc7cc2d76a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:20.4Z","sequence":36563,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:20.4Z","sequence":36564,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF06DB1902F0A8E] for gateway [D668B1CC419A]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:20.406Z","sequence":36565,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:20.407Z","sequence":36566,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:20.602Z","sequence":36567,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-19352ca9-bfd3-4362-909a-af1ddadb9511, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:23.398Z","sequence":36568,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:23.398Z","sequence":36569,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000223] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:23.408Z","sequence":36570,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:23.408Z","sequence":36571,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:23.411Z","sequence":36572,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-66c2c8f8-6279-42d3-933c-33d467945907, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:23.461Z","sequence":36573,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:23.461Z","sequence":36574,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000223] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:23.466Z","sequence":36575,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:23.466Z","sequence":36576,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:23.469Z","sequence":36577,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ad5a9e72-648b-48ab-898a-ed79c66944ba, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:27.188Z","sequence":36578,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:27.188Z","sequence":36579,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB10001DC] for gateway [0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:27.193Z","sequence":36580,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:27.193Z","sequence":36581,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:27.196Z","sequence":36582,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-78653b3c-3b94-4ae3-927f-cf2c681e89d1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:29.599Z","sequence":36583,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF06DB1902F0A8E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"de62d913aaa8b315","parentId":"cfb955007871ed64","traceId":"0000000000000000e317c05d2b660e98","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:29.615Z","sequence":36584,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF06DB1902F0A8E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"de62d913aaa8b315","parentId":"cfb955007871ed64","traceId":"0000000000000000e317c05d2b660e98","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:29.962Z","sequence":36585,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: D668B1CC419A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f0a51247c4d6cd86","parentId":"5d0966a37c1c3485","traceId":"0000000000000000fa40797a36d499de","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:29.978Z","sequence":36586,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: D668B1CC419A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f0a51247c4d6cd86","parentId":"5d0966a37c1c3485","traceId":"0000000000000000fa40797a36d499de","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:32.621Z","sequence":36587,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:32.621Z","sequence":36588,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 70B3D57BB1001274] for gateway [gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:32.631Z","sequence":36589,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:32.632Z","sequence":36590,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:32.635Z","sequence":36591,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-591d36f9-251c-4549-b860-b4cbe1950c5d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:33.528Z","sequence":36592,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/aloxy:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:33.528Z","sequence":36593,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: aloxy, device-id: 0008004A8F68]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:33.533Z","sequence":36594,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-87830ea6-45bc-4d1e-9089-6a21b07dc3e1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:33.536Z","sequence":36595,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:33.537Z","sequence":36596,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: aloxy]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:33.539Z","sequence":36597,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-ca6c0dd4-65ff-4d99-b493-20b303ec3834, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:40.418Z","sequence":36598,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:40.418Z","sequence":36599,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000F99] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:40.424Z","sequence":36600,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:40.424Z","sequence":36601,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:40.43Z","sequence":36602,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f3e73190-a0c4-497d-aa83-2845d5aeb6de, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:51.784Z","sequence":36603,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:51.784Z","sequence":36604,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006D9] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:51.796Z","sequence":36605,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:51.796Z","sequence":36606,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:51.803Z","sequence":36607,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9b0adad0-5883-44bc-9ead-4a496e42d3a2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:52.358Z","sequence":36608,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:52.359Z","sequence":36609,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BB613]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:52.369Z","sequence":36610,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b86d445a-043d-46b9-a4f4-d2c35b355fca, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:55.027Z","sequence":36611,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:55.027Z","sequence":36612,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100017A] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:55.035Z","sequence":36613,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:55.035Z","sequence":36614,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:55.039Z","sequence":36615,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9718090f-d697-43ae-9acd-472e49cc77fe, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:55.069Z","sequence":36616,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:55.07Z","sequence":36617,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100017A] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:55.077Z","sequence":36618,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:55.077Z","sequence":36619,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:55.08Z","sequence":36620,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f06d844e-ec04-4b65-8f74-6ecf8da25f4b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:57.623Z","sequence":36621,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:57.623Z","sequence":36622,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C27] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:57.629Z","sequence":36623,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:57.63Z","sequence":36624,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:28:57.635Z","sequence":36625,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-23d797d3-80d1-4013-9115-a0ec2762c550, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:29:09.279Z","sequence":36626,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:29:09.279Z","sequence":36627,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C26] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:29:09.305Z","sequence":36628,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:29:09.305Z","sequence":36629,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:29:09.321Z","sequence":36630,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6abf4338-6f5e-4141-94f5-607f6c564890, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:29:13.365Z","sequence":36631,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:29:13.365Z","sequence":36632,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001FA] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:29:13.373Z","sequence":36633,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:29:13.373Z","sequence":36634,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:29:13.376Z","sequence":36635,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-fe0c63c4-bc86-4380-9718-4dd7ce240d07, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:29:13.505Z","sequence":36636,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:29:13.505Z","sequence":36637,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001FA] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:29:13.513Z","sequence":36638,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:29:13.513Z","sequence":36639,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:29:13.517Z","sequence":36640,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-19f9df2d-3dba-47cb-9691-3c1324fbbcb0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:29:14.765Z","sequence":36641,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:29:14.765Z","sequence":36642,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100068F] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:29:14.784Z","sequence":36643,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:29:14.784Z","sequence":36644,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:29:14.801Z","sequence":36645,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f144a581-1663-48b0-8dd5-4977fb4614b6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:29:29.643Z","sequence":36646,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:29:29.643Z","sequence":36647,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: flint]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:29:29.648Z","sequence":36648,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-4cd423fc-4610-4542-926c-b269fa1d3279, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:29:29.65Z","sequence":36649,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/flint:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:29:29.65Z","sequence":36650,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: flint, type: hashed-password, auth-id: auth-flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:29:29.66Z","sequence":36651,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-93546005-bc43-402f-a578-a640a049b96f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:29:29.778Z","sequence":36652,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:29:29.779Z","sequence":36653,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10009E1] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:29:29.785Z","sequence":36654,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:29:29.785Z","sequence":36655,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:29:29.789Z","sequence":36656,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-bf55cef9-7dc6-4cb4-a39f-2af410c11788, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:29:38.57Z","sequence":36657,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/acta:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:29:38.57Z","sequence":36658,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: acta, device-id: 0008004AAAA3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:29:38.575Z","sequence":36659,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-42b9d2b8-1251-4a03-bb28-628d2dde42cc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:29:38.579Z","sequence":36660,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:29:38.579Z","sequence":36661,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: acta]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:29:38.581Z","sequence":36662,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-5b4eee3e-5be7-477c-86b4-310c3d312a06, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:29:44.365Z","sequence":36663,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/repsol:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:29:44.365Z","sequence":36664,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: repsol, device-id: 0008004A37FF]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:29:44.374Z","sequence":36665,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a4a21a90-8840-4fcd-baa5-5e660da8c88a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:29:44.377Z","sequence":36666,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:29:44.377Z","sequence":36667,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: repsol]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:29:44.38Z","sequence":36668,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-c0959c16-0229-43a2-9442-af37a7ee5614, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:29:47.786Z","sequence":36669,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:29:47.786Z","sequence":36670,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: dow]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:29:47.79Z","sequence":36671,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-279a196b-c359-478c-99aa-1cba776b466f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:29:47.792Z","sequence":36672,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/dow:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:29:47.792Z","sequence":36673,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: dow, type: hashed-password, auth-id: auth-gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:29:47.803Z","sequence":36674,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-585eca1a-9065-403d-a9d6-083f01b0e470, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:29:48.095Z","sequence":36675,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:29:48.095Z","sequence":36676,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 70B3D57BB100123E] for gateway [gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:29:48.096Z","sequence":36677,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:29:48.096Z","sequence":36678,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:29:48.101Z","sequence":36679,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:29:48.101Z","sequence":36680,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:29:48.102Z","sequence":36681,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8710b1a9-818b-48b4-9d67-814f02e54b7b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:29:48.104Z","sequence":36682,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c2ea23ca-ef1e-4cb4-96da-db41eeead4e2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:29:50.813Z","sequence":36683,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:29:50.813Z","sequence":36684,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000832] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:29:50.82Z","sequence":36685,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:29:50.82Z","sequence":36686,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:29:50.825Z","sequence":36687,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-92c10d72-2b7b-4211-99f9-3d49f46384aa, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:29:51.769Z","sequence":36688,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:29:51.769Z","sequence":36689,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: shell]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:29:51.793Z","sequence":36690,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-f284cd74-1abe-4162-984f-7a7a1f08b7e4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:29:51.797Z","sequence":36691,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/shell:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:29:51.797Z","sequence":36692,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: shell, type: hashed-password, auth-id: auth-gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:29:51.813Z","sequence":36693,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-536acd85-a2f3-46f9-9d5f-a64917f60458, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:29:51.933Z","sequence":36694,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:29:51.933Z","sequence":36695,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000A9B] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:29:51.941Z","sequence":36696,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:29:51.946Z","sequence":36697,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:29:51.952Z","sequence":36698,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-399c6a08-f27e-46c2-aeed-d5e03a266aef, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:00.001Z","sequence":36699,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:00.002Z","sequence":36700,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB100089B] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:00.017Z","sequence":36701,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:00.017Z","sequence":36702,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:00.021Z","sequence":36703,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d874fc53-4127-4906-a8ad-79e74b2e57ef, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:00.172Z","sequence":36704,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:00.173Z","sequence":36705,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: lanxess]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:00.176Z","sequence":36706,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-ca6b8734-0b7a-4558-8a6b-fc4fa025bedf, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:00.179Z","sequence":36707,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:00.179Z","sequence":36708,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 70B3D57BB10001B5] for gateway [0008004BB84C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:00.184Z","sequence":36709,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_lanxess\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:00.185Z","sequence":36710,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_lanxess\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:00.188Z","sequence":36711,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9e90d32a-4375-4ca0-bfe0-7ace54fee071, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:00.458Z","sequence":36712,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:00.458Z","sequence":36713,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000567] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:00.463Z","sequence":36714,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:00.463Z","sequence":36715,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:00.469Z","sequence":36716,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d86f34da-6b21-44c3-98dc-8857782a07d7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:04.218Z","sequence":36717,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191355]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f8dc427224f3bfc5","parentId":"6f552a7ac48af93f","traceId":"00000000000000008722b921f1400e3a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:04.245Z","sequence":36718,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191355, resource-version: d829df5a-b5db-4a68-951a-9aaabcb6c8fe]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f8dc427224f3bfc5","parentId":"6f552a7ac48af93f","traceId":"00000000000000008722b921f1400e3a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:04.253Z","sequence":36719,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191355, resource-version: f3395f1c-bcbc-4c61-b152-5238e78abe75]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f8dc427224f3bfc5","parentId":"6f552a7ac48af93f","traceId":"00000000000000008722b921f1400e3a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:04.256Z","sequence":36720,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191355]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"29ea7109785489f0","parentId":"5346ee79d3234787","traceId":"00000000000000008722b921f1400e3a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:04.457Z","sequence":36721,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191355]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"29ea7109785489f0","parentId":"5346ee79d3234787","traceId":"00000000000000008722b921f1400e3a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:05.457Z","sequence":36722,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF59C0ECE7F92D4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b996a8e3113c7fe8","parentId":"7438a2c8f64ec3b3","traceId":"0000000000000000749b47a893cacb77","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:05.479Z","sequence":36723,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF59C0ECE7F92D4, resource-version: fafbbb02-ca92-4263-a3e9-561d4c88f34c]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b996a8e3113c7fe8","parentId":"7438a2c8f64ec3b3","traceId":"0000000000000000749b47a893cacb77","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:05.489Z","sequence":36724,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF59C0ECE7F92D4, resource-version: 2204d4b8-060a-4db7-9631-c71f5d006bf8]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b996a8e3113c7fe8","parentId":"7438a2c8f64ec3b3","traceId":"0000000000000000749b47a893cacb77","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:06.612Z","sequence":36725,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:06.612Z","sequence":36726,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191355]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:06.626Z","sequence":36727,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-0499e552-a563-437a-9b5c-26ac6587f91f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:06.745Z","sequence":36728,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:06.745Z","sequence":36729,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF59C0ECE7F92D4] for gateway [gateway_integrationtest_network_191355]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:06.746Z","sequence":36730,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:06.746Z","sequence":36731,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191355]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:06.754Z","sequence":36732,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-80cf0978-1fa9-43a6-9334-d745f601505f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:06.755Z","sequence":36733,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:06.755Z","sequence":36734,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:07.146Z","sequence":36735,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4fde5bad-d71b-4a00-aefd-c49f088aec62, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:09.522Z","sequence":36736,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:09.522Z","sequence":36737,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A49] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:09.533Z","sequence":36738,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:09.533Z","sequence":36739,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:09.538Z","sequence":36740,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0865d18f-6c4a-4360-aa92-445cccbdce00, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:09.567Z","sequence":36741,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:09.567Z","sequence":36742,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 0008004B51D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:09.572Z","sequence":36743,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e3114e5b-9e9a-4842-a55a-c59a759a87b2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:09.576Z","sequence":36744,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:09.576Z","sequence":36745,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: dow]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:09.579Z","sequence":36746,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-c1e96324-1c57-4596-9780-d0db60f5d169, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:18.151Z","sequence":36747,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:18.151Z","sequence":36748,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000F97] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:18.158Z","sequence":36749,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:18.158Z","sequence":36750,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:18.164Z","sequence":36751,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-bcd9d13f-7be4-4bcd-b7c7-93f893c7d593, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:18.512Z","sequence":36752,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF59C0ECE7F92D4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"195430312ca36ede","parentId":"94cde0bb84833e75","traceId":"00000000000000008baf2455c78e6f48","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:18.545Z","sequence":36753,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF59C0ECE7F92D4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"195430312ca36ede","parentId":"94cde0bb84833e75","traceId":"00000000000000008baf2455c78e6f48","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:18.869Z","sequence":36754,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191355]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"583980c448350621","parentId":"3db2ca83a1dc6e88","traceId":"0000000000000000ca0f882b1566e2b9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:18.908Z","sequence":36755,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191355]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"583980c448350621","parentId":"3db2ca83a1dc6e88","traceId":"0000000000000000ca0f882b1566e2b9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:19.623Z","sequence":36756,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 7D47FCFA37D6]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1ba9f412b982fe8a","parentId":"e2c7c645048d981b","traceId":"0000000000000000b10a2a38999dfad1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:19.651Z","sequence":36757,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 7D47FCFA37D6, resource-version: f1bfceba-c5b3-4842-9350-0149c8606a0d]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1ba9f412b982fe8a","parentId":"e2c7c645048d981b","traceId":"0000000000000000b10a2a38999dfad1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:19.658Z","sequence":36758,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 7D47FCFA37D6, resource-version: be8e0d63-b694-41f1-b0f3-740df12fc2e8]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1ba9f412b982fe8a","parentId":"e2c7c645048d981b","traceId":"0000000000000000b10a2a38999dfad1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:19.661Z","sequence":36759,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 7D47FCFA37D6]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"32e75d711331c55d","parentId":"0bc1f8191ab9609f","traceId":"0000000000000000b10a2a38999dfad1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:19.798Z","sequence":36760,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 7D47FCFA37D6]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"32e75d711331c55d","parentId":"0bc1f8191ab9609f","traceId":"0000000000000000b10a2a38999dfad1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:20.672Z","sequence":36761,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF10AB33B95ACD1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7a96aca6368a2695","parentId":"2d7e2def0a016955","traceId":"0000000000000000ea727882ce2a1761","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:20.691Z","sequence":36762,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF10AB33B95ACD1, resource-version: 1707331e-fffb-4e99-aa28-3e279d1ad902]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7a96aca6368a2695","parentId":"2d7e2def0a016955","traceId":"0000000000000000ea727882ce2a1761","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:20.701Z","sequence":36763,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF10AB33B95ACD1, resource-version: d68f40e8-e873-4eb3-9a84-b856e73a6d14]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7a96aca6368a2695","parentId":"2d7e2def0a016955","traceId":"0000000000000000ea727882ce2a1761","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:21.751Z","sequence":36764,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:21.751Z","sequence":36765,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-7D47FCFA37D6]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:21.763Z","sequence":36766,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-f610b36b-f96c-4385-952f-397f0a716c98, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:21.883Z","sequence":36767,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:21.883Z","sequence":36768,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 7D47FCFA37D6]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:21.888Z","sequence":36769,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-07d2d72a-da13-472b-86aa-2542834f266a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:21.893Z","sequence":36770,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:21.893Z","sequence":36771,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF10AB33B95ACD1] for gateway [7D47FCFA37D6]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:21.898Z","sequence":36772,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:21.898Z","sequence":36773,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:22.063Z","sequence":36774,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-506b23ff-360d-4325-b6c9-c0166cd1bf01, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:23.86Z","sequence":36775,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:23.86Z","sequence":36776,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 70B3D57BB100017F] for gateway [0008004BB84C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:23.865Z","sequence":36777,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_lanxess\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:23.865Z","sequence":36778,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_lanxess\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:23.868Z","sequence":36779,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-03ec1494-1514-45af-a4ce-ecb3326f7e2d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:29.209Z","sequence":36780,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:29.209Z","sequence":36781,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AC9] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:29.214Z","sequence":36782,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:29.214Z","sequence":36783,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:29.219Z","sequence":36784,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-375c6946-b785-4342-a4e1-f219748610e3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:30.863Z","sequence":36785,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:30.864Z","sequence":36786,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10001D5] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:30.874Z","sequence":36787,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:0.4.1\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:30.874Z","sequence":36788,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:30.88Z","sequence":36789,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3c88634d-ce66-4e52-a702-6538a361177f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:31.733Z","sequence":36790,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:31.733Z","sequence":36791,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C16] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:31.74Z","sequence":36792,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:31.74Z","sequence":36793,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:31.745Z","sequence":36794,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-be43f194-cbf9-4d7c-ae73-acca748f15db, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:32.672Z","sequence":36795,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:32.673Z","sequence":36796,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: ineos]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:32.676Z","sequence":36797,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-2f750404-6c09-4ec6-a741-265c4b3c6a49, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:32.68Z","sequence":36798,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:32.68Z","sequence":36799,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB1000A70] for gateway [0008004B5135]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:32.685Z","sequence":36800,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:32.685Z","sequence":36801,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:32.688Z","sequence":36802,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-055c859d-5418-40d1-8461-269b21215566, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:35.353Z","sequence":36803,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF10AB33B95ACD1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"76c59ab8b233c333","parentId":"09c48e4dc5c12875","traceId":"0000000000000000ea1ce5375ad23c08","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:35.371Z","sequence":36804,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF10AB33B95ACD1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"76c59ab8b233c333","parentId":"09c48e4dc5c12875","traceId":"0000000000000000ea1ce5375ad23c08","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:35.675Z","sequence":36805,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 7D47FCFA37D6]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a4fa5ef6ee222649","parentId":"29d76cccd6bd4f46","traceId":"0000000000000000e95f643eac0bc154","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:35.693Z","sequence":36806,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 7D47FCFA37D6]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a4fa5ef6ee222649","parentId":"29d76cccd6bd4f46","traceId":"0000000000000000e95f643eac0bc154","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:39.736Z","sequence":36807,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:39.736Z","sequence":36808,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000A99] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:39.742Z","sequence":36809,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:39.742Z","sequence":36810,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:39.747Z","sequence":36811,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ba2856b7-2c1b-43bb-b959-56cc418d2819, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:42.886Z","sequence":36812,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/conditionall:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:42.886Z","sequence":36813,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: conditionall, device-id: 0008004B512D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:42.891Z","sequence":36814,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b55d2805-a081-4586-8758-e509465f735f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:42.895Z","sequence":36815,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:42.895Z","sequence":36816,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: conditionall]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:42.898Z","sequence":36817,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-2237464a-14e3-40c6-a902-d11aa9caaeae, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:52.624Z","sequence":36818,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:52.624Z","sequence":36819,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:52.643Z","sequence":36820,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5a8768f3-fac1-45bc-a8b7-e036ceb3827b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:52.647Z","sequence":36821,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:52.647Z","sequence":36822,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oci]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:52.65Z","sequence":36823,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-35e8fb8d-96d1-4dd6-adc2-8fa89ce7b943, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:55.537Z","sequence":36824,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:55.537Z","sequence":36825,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C4B] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:55.545Z","sequence":36826,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:55.546Z","sequence":36827,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:30:55.554Z","sequence":36828,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-85fb4bfa-8a46-4795-8b47-76efbe738421, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:31:02.343Z","sequence":36829,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:31:02.343Z","sequence":36830,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000167] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:31:02.357Z","sequence":36831,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:31:02.357Z","sequence":36832,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:31:02.36Z","sequence":36833,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a68c1c8c-12ab-4604-973b-e9da06b33032, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:31:02.398Z","sequence":36834,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:31:02.398Z","sequence":36835,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000167] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:31:02.404Z","sequence":36836,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:31:02.404Z","sequence":36837,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:31:02.408Z","sequence":36838,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b25fdf67-94fd-4604-8c52-9749cae03c45, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:31:08.023Z","sequence":36839,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:31:08.023Z","sequence":36840,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000526] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:31:08.025Z","sequence":36841,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:31:08.025Z","sequence":36842,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:31:08.03Z","sequence":36843,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:31:08.03Z","sequence":36844,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:31:08.031Z","sequence":36845,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-65fdd56f-b05b-420b-9c62-783b11f0b91b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:31:08.034Z","sequence":36846,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-089d78f4-6530-4a0f-b2fa-873bb29ecce3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:31:08.368Z","sequence":36847,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:31:08.368Z","sequence":36848,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BE5] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:31:08.385Z","sequence":36849,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:31:08.385Z","sequence":36850,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:31:08.393Z","sequence":36851,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-13d5b685-e7c9-401c-89f2-96a05094c24d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:31:16.061Z","sequence":36852,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:31:16.061Z","sequence":36853,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: shelldev]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:31:16.065Z","sequence":36854,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-7280d326-1e2d-4c5b-a270-b74fffdc4771, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:31:16.067Z","sequence":36855,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/shelldev:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:31:16.067Z","sequence":36856,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: shelldev, type: hashed-password, auth-id: auth-AZUREFUNCTION-DEV]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:31:16.077Z","sequence":36857,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-bb6b3d26-e2c4-4513-a745-ca1421c38c0c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:31:16.201Z","sequence":36858,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shelldev:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:31:16.201Z","sequence":36859,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shelldev, device-id: 70B3D57BB10006D7] for gateway [AZUREFUNCTION-DEV]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:31:16.202Z","sequence":36860,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shelldev:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:31:16.202Z","sequence":36861,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shelldev, device-id: AZUREFUNCTION-DEV]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:31:16.208Z","sequence":36862,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shelldev\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:31:16.208Z","sequence":36863,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_shelldev\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:31:16.209Z","sequence":36864,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-36cf0363-a58c-4ba9-a4a7-1c6c30cce2b2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:31:16.211Z","sequence":36865,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f9f04475-731b-4dbf-bf6f-3665e00f4dbd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:31:20.005Z","sequence":36866,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:31:20.005Z","sequence":36867,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BB84C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:31:20.015Z","sequence":36868,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0a98c001-3ff4-4f37-8480-03173300fd87, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:31:21.259Z","sequence":36869,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:31:21.259Z","sequence":36870,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 0008004B5135]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:31:21.265Z","sequence":36871,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-345f082e-8698-475b-87bc-c470330e85c7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:31:25.146Z","sequence":36872,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:31:25.146Z","sequence":36873,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BBD1B]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:31:25.151Z","sequence":36874,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-dcf27b38-b1d7-48f6-b9b6-c85f093b2d97, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:31:32.659Z","sequence":36875,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/arkema:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:31:32.659Z","sequence":36876,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: arkema, device-id: 0008004AE119]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:31:32.666Z","sequence":36877,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-93f0de73-40e6-4f2d-b90a-8a29bb43ad8e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:31:32.67Z","sequence":36878,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:31:32.67Z","sequence":36879,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: arkema]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:31:32.672Z","sequence":36880,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-07a79f6e-f13c-42c0-9352-e1b30468650e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:31:38.514Z","sequence":36881,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:31:38.514Z","sequence":36882,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AAD] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:31:38.529Z","sequence":36883,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:31:38.529Z","sequence":36884,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:31:38.541Z","sequence":36885,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-784216c0-60ad-43c2-ba9b-75fe327f49d1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:31:39.431Z","sequence":36886,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/acta:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:31:39.431Z","sequence":36887,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: acta, device-id: 3534383400470039] for gateway [0008004AAAA3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:31:39.437Z","sequence":36888,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.3.0\"\n },\n \"viaGroups\" : [ \"gateways_acta\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:31:39.437Z","sequence":36889,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_acta\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:31:39.44Z","sequence":36890,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0decf6e4-af72-4439-98d6-3fb1bfb824bb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:31:40.373Z","sequence":36891,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:31:40.373Z","sequence":36892,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10013DA] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:31:40.38Z","sequence":36893,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:31:40.38Z","sequence":36894,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:31:40.386Z","sequence":36895,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-247498bb-c984-4735-8174-07dca200009b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:31:48.997Z","sequence":36896,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:31:48.997Z","sequence":36897,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10013D9] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:31:49.02Z","sequence":36898,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:31:49.021Z","sequence":36899,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:31:49.026Z","sequence":36900,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e43d823d-a5db-4171-bbf4-7fce7a3779f9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:31:53.725Z","sequence":36901,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/conditionall:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:31:53.725Z","sequence":36902,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: conditionall, device-id: 70B3D57BB1000226] for gateway [0008004B512D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:31:53.731Z","sequence":36903,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_conditionall\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:31:53.732Z","sequence":36904,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_conditionall\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:31:53.737Z","sequence":36905,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e4df30be-fc04-41aa-8a24-94b554768c29, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:01.296Z","sequence":36906,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:01.297Z","sequence":36907,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B4A] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:01.303Z","sequence":36908,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:01.303Z","sequence":36909,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:01.309Z","sequence":36910,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-999a56d4-8df8-46bd-a743-923cf69ec554, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:02.143Z","sequence":36911,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:02.143Z","sequence":36912,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001E1] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:02.151Z","sequence":36913,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:02.152Z","sequence":36914,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:02.155Z","sequence":36915,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a72fe3ec-a71b-43bc-ab88-2cbc92ef1d67, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:02.166Z","sequence":36916,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:02.166Z","sequence":36917,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:02.179Z","sequence":36918,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6a452dea-3412-4c9a-8a62-89c5cb977c61, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:02.183Z","sequence":36919,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:02.183Z","sequence":36920,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001E1] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:02.188Z","sequence":36921,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:02.189Z","sequence":36922,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:02.193Z","sequence":36923,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f0326908-6292-4f8f-9eeb-9f4e6f2dea09, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:02.956Z","sequence":36924,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:02.956Z","sequence":36925,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: terega]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:02.965Z","sequence":36926,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-e8810cd5-ec16-415a-b655-a13b072ef4ff, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:02.969Z","sequence":36927,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/terega:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:02.969Z","sequence":36928,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: terega, type: hashed-password, auth-id: auth-gateway_terega_network_27]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:03.027Z","sequence":36929,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-02b9dcf3-4297-4669-8024-e29fc1492143, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:03.069Z","sequence":36930,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:03.071Z","sequence":36931,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 70B3D57BB100128A] for gateway [gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:03.097Z","sequence":36932,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:03.097Z","sequence":36933,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:03.11Z","sequence":36934,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-442a11b6-b58d-4c94-881a-e9345f0a089e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:03.191Z","sequence":36935,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/terega:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:03.191Z","sequence":36936,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: terega, device-id: 70B3D57BB1000091] for gateway [gateway_terega_network_27]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:03.192Z","sequence":36937,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/terega:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:03.192Z","sequence":36938,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: terega, device-id: gateway_terega_network_27]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:03.204Z","sequence":36939,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_terega\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:03.205Z","sequence":36940,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_terega\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:03.209Z","sequence":36941,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1e5a4c5b-2920-4c27-9afc-b4d9e5ba0c3a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:03.211Z","sequence":36942,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d3e6671f-dc9a-43cc-b4a5-ea00132fa50e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:04.458Z","sequence":36943,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191357]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c88fd6261db86bdd","parentId":"aeaa209012d9a251","traceId":"00000000000000001cde4ebbfcbd0b3f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:04.478Z","sequence":36944,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191357, resource-version: 7f7dd5fc-b8b1-4232-8981-be9e41299825]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c88fd6261db86bdd","parentId":"aeaa209012d9a251","traceId":"00000000000000001cde4ebbfcbd0b3f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:04.485Z","sequence":36945,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191357, resource-version: 6f21d32f-af78-4990-b8c4-74c7bf50ef3c]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c88fd6261db86bdd","parentId":"aeaa209012d9a251","traceId":"00000000000000001cde4ebbfcbd0b3f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:04.488Z","sequence":36946,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191357]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ccb6b41de238b48e","parentId":"a91087de3227d186","traceId":"00000000000000001cde4ebbfcbd0b3f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:04.774Z","sequence":36947,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191357]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ccb6b41de238b48e","parentId":"a91087de3227d186","traceId":"00000000000000001cde4ebbfcbd0b3f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:05.554Z","sequence":36948,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFD06BF598D574A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"37c6fcb3c255f44f","parentId":"1f5ecf44c2dde9ec","traceId":"00000000000000009ef0e9bc9895e9f5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:05.576Z","sequence":36949,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFD06BF598D574A, resource-version: 8c7052b1-e847-487f-a550-9d3376fefe50]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"37c6fcb3c255f44f","parentId":"1f5ecf44c2dde9ec","traceId":"00000000000000009ef0e9bc9895e9f5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:05.585Z","sequence":36950,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFD06BF598D574A, resource-version: 93394cba-ec4a-4c37-be6d-8021efad5390]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"37c6fcb3c255f44f","parentId":"1f5ecf44c2dde9ec","traceId":"00000000000000009ef0e9bc9895e9f5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:06.667Z","sequence":36951,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:06.668Z","sequence":36952,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:06.671Z","sequence":36953,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-23b735ce-fe45-49c7-9602-f541bb5f76ff, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:06.673Z","sequence":36954,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:06.674Z","sequence":36955,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191357]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:06.685Z","sequence":36956,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-02b0922b-fd2e-4158-9b5e-f8fdfcc5c990, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:06.806Z","sequence":36957,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:06.806Z","sequence":36958,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD06BF598D574A] for gateway [gateway_integrationtest_network_191357]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:06.807Z","sequence":36959,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:06.807Z","sequence":36960,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191357]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:06.816Z","sequence":36961,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a912891e-182c-4e35-b5c6-1138028f3ce8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:06.816Z","sequence":36962,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:06.817Z","sequence":36963,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:07.134Z","sequence":36964,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a15d2e7b-c4dd-48a6-b93c-dc3bc771bf94, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:15.236Z","sequence":36965,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:15.236Z","sequence":36966,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:15.242Z","sequence":36967,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-66269006-f33b-41d9-91f7-bd2534e78944, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:17.537Z","sequence":36968,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:17.537Z","sequence":36969,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000165] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:17.564Z","sequence":36970,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:17.565Z","sequence":36971,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:17.593Z","sequence":36972,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a2a7700e-81a1-4d1f-93fc-fcf51dc40640, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:17.679Z","sequence":36973,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:17.679Z","sequence":36974,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000165] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:17.689Z","sequence":36975,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:17.689Z","sequence":36976,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:17.693Z","sequence":36977,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9fed3a52-6bfd-46c6-9ca8-b725d4efc989, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:19.131Z","sequence":36978,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFD06BF598D574A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b6b6be8b724bedfa","parentId":"95fb9a1dfef1450f","traceId":"00000000000000004618476bed0cabc5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:19.149Z","sequence":36979,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFD06BF598D574A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b6b6be8b724bedfa","parentId":"95fb9a1dfef1450f","traceId":"00000000000000004618476bed0cabc5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:19.263Z","sequence":36980,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191357]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b80aa84bca2d4b27","parentId":"0e18c4f382805510","traceId":"000000000000000065450693449c7f2d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:19.282Z","sequence":36981,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191357]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b80aa84bca2d4b27","parentId":"0e18c4f382805510","traceId":"000000000000000065450693449c7f2d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:19.42Z","sequence":36982,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:19.421Z","sequence":36983,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB100084D] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:19.427Z","sequence":36984,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:19.427Z","sequence":36985,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:19.431Z","sequence":36986,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8ebf969c-2128-4929-8c89-43456d592bb6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:19.599Z","sequence":36987,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:19.6Z","sequence":36988,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB100052F] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:19.609Z","sequence":36989,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:19.609Z","sequence":36990,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:19.614Z","sequence":36991,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-39144f36-a7fd-4e64-b316-ad1516d7b00a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:19.688Z","sequence":36992,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:19.688Z","sequence":36993,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100016B] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:19.694Z","sequence":36994,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:19.694Z","sequence":36995,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:19.697Z","sequence":36996,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3aa07f9c-e34c-44ed-acc6-de1e8a8b7e47, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:19.725Z","sequence":36997,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:19.725Z","sequence":36998,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100016B] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:19.73Z","sequence":36999,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:19.73Z","sequence":37000,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:19.732Z","sequence":37001,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f2f47d79-9ad6-45c7-baa0-e15508c3434a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:19.757Z","sequence":37002,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: B53633E89FD5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"159ca367e8390bdf","parentId":"193ec5c6e472ba13","traceId":"00000000000000009d06514e31a71c48","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:19.776Z","sequence":37003,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: B53633E89FD5, resource-version: 9be5450c-9129-4efe-bd54-7e86a1519993]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"159ca367e8390bdf","parentId":"193ec5c6e472ba13","traceId":"00000000000000009d06514e31a71c48","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:19.785Z","sequence":37004,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: B53633E89FD5, resource-version: 1a2f06d5-8384-423a-b436-0f2b26d83676]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"159ca367e8390bdf","parentId":"193ec5c6e472ba13","traceId":"00000000000000009d06514e31a71c48","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:19.791Z","sequence":37005,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: B53633E89FD5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a789b9b4711d4bf8","parentId":"1da3d253c057395c","traceId":"00000000000000009d06514e31a71c48","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:19.956Z","sequence":37006,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: B53633E89FD5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a789b9b4711d4bf8","parentId":"1da3d253c057395c","traceId":"00000000000000009d06514e31a71c48","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:20.662Z","sequence":37007,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF620CC19CAF1B0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"723af5047cc5e374","parentId":"ed69bdc99dff4081","traceId":"00000000000000009660a707179d9da7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:20.678Z","sequence":37008,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF620CC19CAF1B0, resource-version: b8064e3d-4d1d-429e-b7b7-2695214ae791]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"723af5047cc5e374","parentId":"ed69bdc99dff4081","traceId":"00000000000000009660a707179d9da7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:20.689Z","sequence":37009,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF620CC19CAF1B0, resource-version: 8a383b2a-20da-4d29-9b5b-9296bc263733]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"723af5047cc5e374","parentId":"ed69bdc99dff4081","traceId":"00000000000000009660a707179d9da7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:21.017Z","sequence":37010,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:21.017Z","sequence":37011,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A20] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:21.026Z","sequence":37012,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:21.027Z","sequence":37013,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:21.033Z","sequence":37014,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7761d222-1081-4771-9c1d-8a2210f43e49, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:21.736Z","sequence":37015,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:21.736Z","sequence":37016,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:21.739Z","sequence":37017,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-b76c2504-317d-4d18-ac64-81f9378dc5a8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:21.741Z","sequence":37018,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:21.742Z","sequence":37019,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-B53633E89FD5]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:21.752Z","sequence":37020,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-ea5ba1a3-52df-4c8d-85d6-f170402d09e4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:21.882Z","sequence":37021,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:21.883Z","sequence":37022,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: B53633E89FD5]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:21.888Z","sequence":37023,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-fd5be4e9-b45b-44e9-ba9d-8f0c8b272d8b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:21.893Z","sequence":37024,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:21.893Z","sequence":37025,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF620CC19CAF1B0] for gateway [B53633E89FD5]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:21.899Z","sequence":37026,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:21.899Z","sequence":37027,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:22.077Z","sequence":37028,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-222e5c2f-5705-4069-a1dd-21e8b53da97f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:27.358Z","sequence":37029,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:27.358Z","sequence":37030,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB1000A79] for gateway [0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:27.363Z","sequence":37031,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:27.363Z","sequence":37032,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:27.366Z","sequence":37033,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e25368d7-e399-41b7-959e-c7b00c9ff6a1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:27.765Z","sequence":37034,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:27.766Z","sequence":37035,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006A3] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:27.772Z","sequence":37036,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:27.773Z","sequence":37037,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:27.779Z","sequence":37038,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-dad38cd9-9c07-4b13-892b-d780d06206dd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:34.273Z","sequence":37039,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:34.273Z","sequence":37040,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A24] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:34.274Z","sequence":37041,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:34.274Z","sequence":37042,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:34.278Z","sequence":37043,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:34.278Z","sequence":37044,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:34.279Z","sequence":37045,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-406b20ff-6a63-4b80-b373-8132db95dd5f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:34.283Z","sequence":37046,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4f011252-a9e1-42e8-843b-49a1bda197bb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:35.901Z","sequence":37047,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF620CC19CAF1B0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fd704f1300da2be0","parentId":"1791846834e6eede","traceId":"00000000000000001e493b45d210a074","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:35.917Z","sequence":37048,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF620CC19CAF1B0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fd704f1300da2be0","parentId":"1791846834e6eede","traceId":"00000000000000001e493b45d210a074","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:36.24Z","sequence":37049,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: B53633E89FD5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3092c2827f183513","parentId":"66392300de8197d4","traceId":"0000000000000000733d9926f59c126c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:36.261Z","sequence":37050,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: B53633E89FD5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3092c2827f183513","parentId":"66392300de8197d4","traceId":"0000000000000000733d9926f59c126c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:38.5Z","sequence":37051,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:38.5Z","sequence":37052,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: flint]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:38.504Z","sequence":37053,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-cf2cc4eb-2702-41f0-8417-6c6b51cc2945, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:38.506Z","sequence":37054,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/flint:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:38.506Z","sequence":37055,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: flint, type: hashed-password, auth-id: auth-flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:38.518Z","sequence":37056,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-a1915ece-6970-449e-85a2-8fd15fdd1c4b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:38.655Z","sequence":37057,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:38.655Z","sequence":37058,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB100089E] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:38.66Z","sequence":37059,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:38.66Z","sequence":37060,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:38.664Z","sequence":37061,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-531bbc23-cef4-4a50-9047-27ac2e24514a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:42.832Z","sequence":37062,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:42.833Z","sequence":37063,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BBD1C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:42.838Z","sequence":37064,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-99b08a65-2f29-4049-a767-ca671abf619f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:45.667Z","sequence":37065,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:45.667Z","sequence":37066,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 0008004C80F4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:45.673Z","sequence":37067,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4fd3154a-dc7e-4506-bef9-67c4c3abff4c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:46.557Z","sequence":37068,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:46.557Z","sequence":37069,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C23] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:46.571Z","sequence":37070,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:46.572Z","sequence":37071,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:46.577Z","sequence":37072,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-43575e78-8c31-4596-944f-bacdaf9ef990, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:48.657Z","sequence":37073,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:48.657Z","sequence":37074,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000609] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:48.669Z","sequence":37075,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:48.67Z","sequence":37076,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:48.676Z","sequence":37077,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-bd1a6085-a670-4564-8c5b-d1dad710cebc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:49.831Z","sequence":37078,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:49.832Z","sequence":37079,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A83] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:49.841Z","sequence":37080,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:49.841Z","sequence":37081,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:49.848Z","sequence":37082,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3a22d9c4-40bc-4eb7-91d7-ef873f217815, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:54.616Z","sequence":37083,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:54.616Z","sequence":37084,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB1000A62] for gateway [0008004B5135]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:54.634Z","sequence":37085,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:54.634Z","sequence":37086,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:54.637Z","sequence":37087,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-cc2df23f-8a2a-4451-9016-a1bd9f1cfca3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:54.781Z","sequence":37088,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:54.781Z","sequence":37089,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: shell]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:54.785Z","sequence":37090,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-f563bf1f-807e-4682-99cf-2cedfdd4738a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:54.788Z","sequence":37091,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/shell:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:54.789Z","sequence":37092,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: shell, type: hashed-password, auth-id: auth-gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:54.805Z","sequence":37093,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-79cba554-2e8c-4d98-a1bf-f9d2bfa55bfc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:56.52Z","sequence":37094,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:56.52Z","sequence":37095,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A21] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:56.546Z","sequence":37096,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:56.546Z","sequence":37097,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:32:56.553Z","sequence":37098,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f00039d0-2ac8-4111-b599-e4007a566bee, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:01.393Z","sequence":37099,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:01.393Z","sequence":37100,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C28] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:01.401Z","sequence":37101,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:01.401Z","sequence":37102,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:01.409Z","sequence":37103,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3759c6a0-b209-4813-a6a1-b89f99bf5d0e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:02.316Z","sequence":37104,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oiltanking:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:02.316Z","sequence":37105,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oiltanking, device-id: 0008004BB60F]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:02.327Z","sequence":37106,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4cda1b62-2b07-424e-ae5c-e45926616a67, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:02.331Z","sequence":37107,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:02.331Z","sequence":37108,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oiltanking]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:02.334Z","sequence":37109,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-d2b59cef-fdad-4e98-b3fc-1596868c155e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:02.914Z","sequence":37110,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:02.915Z","sequence":37111,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: chevron]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:02.918Z","sequence":37112,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-fa47f82a-2981-45b5-aff2-c29ee32de417, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:02.922Z","sequence":37113,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/chevron:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:02.922Z","sequence":37114,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: chevron, type: hashed-password, auth-id: auth-CHEVRON-ORBIWISE-EL-SEGUNDO]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:02.931Z","sequence":37115,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-c4783f6a-56e6-4d51-b3e4-789331fe1803, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:03.06Z","sequence":37116,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/chevron:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:03.06Z","sequence":37117,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: chevron, device-id: 70B3D57BB1000239] for gateway [CHEVRON-ORBIWISE-EL-SEGUNDO]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:03.061Z","sequence":37118,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/chevron:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:03.061Z","sequence":37119,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: chevron, device-id: CHEVRON-ORBIWISE-EL-SEGUNDO]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:03.068Z","sequence":37120,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-788c9316-3ea3-440d-8299-9bec18e5d248, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:03.069Z","sequence":37121,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_chevron\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:03.069Z","sequence":37122,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_chevron\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:03.073Z","sequence":37123,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b4ee469b-80c0-48f1-87b1-ee10eb37b9a4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:04.256Z","sequence":37124,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:04.256Z","sequence":37125,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000516] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:04.262Z","sequence":37126,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:04.262Z","sequence":37127,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:04.268Z","sequence":37128,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-608367a1-6d53-433e-b100-890cba801a86, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:08.517Z","sequence":37129,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:08.517Z","sequence":37130,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A2C] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:08.53Z","sequence":37131,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:08.53Z","sequence":37132,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:08.545Z","sequence":37133,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c6474558-cab7-4252-914c-aec34d5f5c4c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:11.63Z","sequence":37134,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:11.63Z","sequence":37135,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A35] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:11.639Z","sequence":37136,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:11.639Z","sequence":37137,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:11.646Z","sequence":37138,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a6859b40-d161-4ce6-ac3f-249fb50a70aa, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:11.889Z","sequence":37139,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:11.889Z","sequence":37140,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A2B] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:11.895Z","sequence":37141,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:11.895Z","sequence":37142,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:11.902Z","sequence":37143,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8f597d4c-45c2-48ed-b9cf-b2a4b23cafba, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:12.46Z","sequence":37144,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:12.461Z","sequence":37145,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019BB] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:12.469Z","sequence":37146,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:12.469Z","sequence":37147,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:12.477Z","sequence":37148,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4e24e91f-5983-4dd8-bfd2-1a93fc8d650a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:13.657Z","sequence":37149,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:13.658Z","sequence":37150,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001FD] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:13.664Z","sequence":37151,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:13.664Z","sequence":37152,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:13.667Z","sequence":37153,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d8eeb60b-df99-4404-a9bb-5c69d7db8eee, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:13.718Z","sequence":37154,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:13.718Z","sequence":37155,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001FD] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:13.725Z","sequence":37156,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:13.725Z","sequence":37157,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:13.728Z","sequence":37158,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-706db6d5-a838-4dd3-aaa1-0587c01ac3d3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:17.167Z","sequence":37159,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono service-command-router-Tenant-8c258f6d-8b57-47cf-8f84-a38d9786fed2] wants to open a link [address: Source{address='tenant/81ec4886-1f95-432c-83e9-151f766d050a', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:17.167Z","sequence":37160,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-0]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:17.167Z","sequence":37161,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@58371e7b] for replies to [tenant/81ec4886-1f95-432c-83e9-151f766d050a]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:17.17Z","sequence":37162,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono service-command-router-Tenant-8c258f6d-8b57-47cf-8f84-a38d9786fed2] wants to open a link [address: Target{address='tenant', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:17.17Z","sequence":37163,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-1]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:17.171Z","sequence":37164,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:17.173Z","sequence":37165,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [command-router@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:17.173Z","sequence":37166,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oiltanking]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:17.177Z","sequence":37167,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-405b08ff-7b19-4e93-9b91-7c3b0e140c3f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:17.179Z","sequence":37168,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [command-router@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:17.18Z","sequence":37169,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: lanxess]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:17.185Z","sequence":37170,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-646009be-c9f9-42ef-b725-52596a5e4842, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:17.187Z","sequence":37171,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [command-router@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:17.187Z","sequence":37172,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: ineos]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:17.19Z","sequence":37173,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-4862c064-6a50-4578-bf8a-85328572a386, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:17.192Z","sequence":37174,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [command-router@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:17.193Z","sequence":37175,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: aloxy]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:17.196Z","sequence":37176,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-5a81b72a-b56a-40da-a3d9-069752a9a409, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:17.198Z","sequence":37177,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [command-router@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:17.198Z","sequence":37178,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: dow]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:17.201Z","sequence":37179,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-9fa600fd-39a2-4c04-9964-7d97024f381b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:17.203Z","sequence":37180,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [command-router@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:17.203Z","sequence":37181,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: acta]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:17.206Z","sequence":37182,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-f477040a-59e9-47b4-862c-193a40c8642f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:17.208Z","sequence":37183,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [command-router@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:17.208Z","sequence":37184,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: arkema]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:17.211Z","sequence":37185,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-aa0e1e0f-3ed5-4e89-b4df-addcf3af694b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:19.84Z","sequence":37186,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:19.84Z","sequence":37187,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C40] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:19.847Z","sequence":37188,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:19.847Z","sequence":37189,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:19.852Z","sequence":37190,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b59bca6a-daf1-48b2-9156-991e8a6d148a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:21.093Z","sequence":37191,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:21.093Z","sequence":37192,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000507] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:21.103Z","sequence":37193,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:21.103Z","sequence":37194,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:21.107Z","sequence":37195,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-bc32833c-712b-4429-8995-8d46d23d19b7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:22.158Z","sequence":37196,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:22.159Z","sequence":37197,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C3F] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:22.165Z","sequence":37198,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:22.165Z","sequence":37199,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:22.172Z","sequence":37200,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5a3f79b0-9669-42b2-814e-570c77e52471, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:24.305Z","sequence":37201,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:24.306Z","sequence":37202,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10013FC] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:24.312Z","sequence":37203,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:24.312Z","sequence":37204,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:24.318Z","sequence":37205,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b5d85b14-f722-42a7-830f-49d6c84ae64a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:26.353Z","sequence":37206,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:26.353Z","sequence":37207,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10013F3] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:26.359Z","sequence":37208,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:26.359Z","sequence":37209,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:26.365Z","sequence":37210,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7859a0b6-c23c-48a0-b2c3-346f7a21f4d3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:35.011Z","sequence":37211,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/aloxy:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:35.011Z","sequence":37212,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: aloxy, device-id: 0008004A8F68]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:35.019Z","sequence":37213,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3968d42d-9101-4d43-84a9-152ae39f6a76, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:35.023Z","sequence":37214,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:35.023Z","sequence":37215,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: aloxy]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:35.026Z","sequence":37216,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-308d71a9-8d6f-4a81-90b8-a8d8a3945bc5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:35.201Z","sequence":37217,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:35.201Z","sequence":37218,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A29] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:35.207Z","sequence":37219,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:35.207Z","sequence":37220,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:35.213Z","sequence":37221,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e2b7e68c-b10d-4440-b950-6980e33a635e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:35.676Z","sequence":37222,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:35.676Z","sequence":37223,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000168] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:35.68Z","sequence":37224,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:35.681Z","sequence":37225,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000168] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:35.684Z","sequence":37226,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:35.684Z","sequence":37227,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:35.687Z","sequence":37228,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c8be2bd2-d1e4-4b1d-8d5a-56f20924ceed, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:35.687Z","sequence":37229,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:35.687Z","sequence":37230,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:35.69Z","sequence":37231,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f3c20f86-9c71-4b75-9715-1388e78e0922, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:38.464Z","sequence":37232,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:38.464Z","sequence":37233,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A2A] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:38.471Z","sequence":37234,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:38.471Z","sequence":37235,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:38.477Z","sequence":37236,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ee2f7d5c-9cc2-4d7d-8f20-cbbe70f3fa03, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:38.685Z","sequence":37237,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:38.685Z","sequence":37238,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006C2] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:38.717Z","sequence":37239,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:38.717Z","sequence":37240,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:38.733Z","sequence":37241,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9eacd8e1-77c1-4839-96af-b32c5302947f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:39.46Z","sequence":37242,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:39.46Z","sequence":37243,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006C4] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:39.466Z","sequence":37244,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:39.466Z","sequence":37245,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:39.472Z","sequence":37246,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2c701612-2b23-45b5-ad1f-d1b784929852, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:40.458Z","sequence":37247,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:40.458Z","sequence":37248,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001EA] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:40.464Z","sequence":37249,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:40.465Z","sequence":37250,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:40.467Z","sequence":37251,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-513a6f41-a24f-4919-85f4-281761979945, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:40.491Z","sequence":37252,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:40.491Z","sequence":37253,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001EA] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:40.499Z","sequence":37254,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:40.5Z","sequence":37255,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:40.504Z","sequence":37256,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-95b20495-4bfd-4518-91c1-2227eb7454ad, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:44.584Z","sequence":37257,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:44.584Z","sequence":37258,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10013FD] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:44.597Z","sequence":37259,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:44.597Z","sequence":37260,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:44.606Z","sequence":37261,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ab2abd9b-e211-488f-bf4c-1c63a7676963, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:46.295Z","sequence":37262,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:46.295Z","sequence":37263,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB100086A] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:46.301Z","sequence":37264,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:46.301Z","sequence":37265,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:46.305Z","sequence":37266,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a8d77807-574c-4371-97b1-04b3ba0227c3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:47.221Z","sequence":37267,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:47.221Z","sequence":37268,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB100052B] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:47.228Z","sequence":37269,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:47.228Z","sequence":37270,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:47.231Z","sequence":37271,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-acf41910-1c61-400b-b50f-adcd6940865f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:54.035Z","sequence":37272,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:54.035Z","sequence":37273,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BB613]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:54.054Z","sequence":37274,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d13c70e9-c016-46b2-b32d-31434147fef4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:54.057Z","sequence":37275,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:54.057Z","sequence":37276,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: lanxess]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:54.07Z","sequence":37277,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-875aeeef-3d3a-4ae7-89b4-eeaa45924d8e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:58.749Z","sequence":37278,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:58.749Z","sequence":37279,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A1E] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:58.755Z","sequence":37280,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:58.756Z","sequence":37281,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:33:58.762Z","sequence":37282,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-86a795ec-2681-4b92-b8ff-3eec935ea628, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:04.482Z","sequence":37283,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191359]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"172a3e6b4ae7a219","parentId":"85710b35bc43cb20","traceId":"000000000000000019ae6b2591e6bf80","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:04.507Z","sequence":37284,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191359, resource-version: 68e13ca5-5580-4405-a651-d5f34048c110]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"172a3e6b4ae7a219","parentId":"85710b35bc43cb20","traceId":"000000000000000019ae6b2591e6bf80","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:04.514Z","sequence":37285,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191359, resource-version: ee5f48f7-8007-4110-9f33-42ed719ef27b]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"172a3e6b4ae7a219","parentId":"85710b35bc43cb20","traceId":"000000000000000019ae6b2591e6bf80","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:04.518Z","sequence":37286,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191359]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"39bde17abad83bfa","parentId":"e9a7a6249b7aa446","traceId":"000000000000000019ae6b2591e6bf80","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:04.681Z","sequence":37287,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191359]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"39bde17abad83bfa","parentId":"e9a7a6249b7aa446","traceId":"000000000000000019ae6b2591e6bf80","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:05.599Z","sequence":37288,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFB7BA3754BA0AD]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1222a0e7946fb17d","parentId":"96c3c8fff09a34fd","traceId":"0000000000000000e7941161d79c3063","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:05.617Z","sequence":37289,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFB7BA3754BA0AD, resource-version: 4b418db0-7611-4eca-ba6e-371ed46c7416]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1222a0e7946fb17d","parentId":"96c3c8fff09a34fd","traceId":"0000000000000000e7941161d79c3063","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:05.624Z","sequence":37290,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFB7BA3754BA0AD, resource-version: 891171eb-e740-4531-99d8-46f792664bae]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1222a0e7946fb17d","parentId":"96c3c8fff09a34fd","traceId":"0000000000000000e7941161d79c3063","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:06.694Z","sequence":37291,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:06.694Z","sequence":37292,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191359]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:06.705Z","sequence":37293,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-dfad3cc8-3f6c-4624-bbbc-f62f368fc8a9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:06.861Z","sequence":37294,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:06.861Z","sequence":37295,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFB7BA3754BA0AD] for gateway [gateway_integrationtest_network_191359]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:06.862Z","sequence":37296,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:06.862Z","sequence":37297,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191359]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:06.87Z","sequence":37298,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3be8d9d9-1d55-460e-8395-5b104b62384d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:06.87Z","sequence":37299,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:06.87Z","sequence":37300,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:07.174Z","sequence":37301,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6325f54e-415d-4df1-8328-3fcb4e487bc6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:07.175Z","sequence":37302,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:07.175Z","sequence":37303,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C07] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:07.185Z","sequence":37304,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:07.185Z","sequence":37305,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:07.197Z","sequence":37306,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-908e2544-3278-4136-b9bc-26dfe9a0a129, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:10.963Z","sequence":37307,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:10.963Z","sequence":37308,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oci]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:10.966Z","sequence":37309,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-c866d80d-091d-4e70-ad13-f20bd249e14d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:10.989Z","sequence":37310,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:10.989Z","sequence":37311,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000218] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:10.995Z","sequence":37312,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:10.996Z","sequence":37313,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:10.998Z","sequence":37314,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f7b83376-7759-468f-884e-77267692a458, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:11.03Z","sequence":37315,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:11.03Z","sequence":37316,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000218] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:11.036Z","sequence":37317,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:11.036Z","sequence":37318,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:11.039Z","sequence":37319,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0a23c548-029a-41a6-bd17-bc8f51eb526a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:15.143Z","sequence":37320,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:15.143Z","sequence":37321,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006C8] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:15.151Z","sequence":37322,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:15.152Z","sequence":37323,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:15.157Z","sequence":37324,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-dd57e5f3-94aa-4bdc-81ac-1e147b5350a7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:16.65Z","sequence":37325,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFB7BA3754BA0AD]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fa98b3051fd7f633","parentId":"f1772484e9243e1c","traceId":"00000000000000001d5104ecbe5e0ec7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:16.674Z","sequence":37326,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFB7BA3754BA0AD]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fa98b3051fd7f633","parentId":"f1772484e9243e1c","traceId":"00000000000000001d5104ecbe5e0ec7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:16.808Z","sequence":37327,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191359]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c6e2f44a907763b5","parentId":"a5d608d1306c031a","traceId":"00000000000000008c84b3834c62ab9f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:16.825Z","sequence":37328,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191359]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c6e2f44a907763b5","parentId":"a5d608d1306c031a","traceId":"00000000000000008c84b3834c62ab9f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:17.326Z","sequence":37329,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 45E69619095F]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"196f115f566c8774","parentId":"e3e8d384038577d6","traceId":"00000000000000003b1c6e654342778f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:17.343Z","sequence":37330,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 45E69619095F, resource-version: b66b9f43-314f-42da-8e54-949da9cf97cc]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"196f115f566c8774","parentId":"e3e8d384038577d6","traceId":"00000000000000003b1c6e654342778f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:17.35Z","sequence":37331,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 45E69619095F, resource-version: 7e713079-2333-4052-9680-ddfe5819f458]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"196f115f566c8774","parentId":"e3e8d384038577d6","traceId":"00000000000000003b1c6e654342778f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:17.353Z","sequence":37332,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 45E69619095F]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"33368410d8907bb3","parentId":"aa1193c7c8671f97","traceId":"00000000000000003b1c6e654342778f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:17.586Z","sequence":37333,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 45E69619095F]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"33368410d8907bb3","parentId":"aa1193c7c8671f97","traceId":"00000000000000003b1c6e654342778f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:18.216Z","sequence":37334,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF81D168C50792D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5b519111da482126","parentId":"edb867a2c645ea22","traceId":"0000000000000000fdfdd617ee755c3c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:18.235Z","sequence":37335,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF81D168C50792D, resource-version: b292a9ae-cda4-4d23-95c1-618ad47c38e0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5b519111da482126","parentId":"edb867a2c645ea22","traceId":"0000000000000000fdfdd617ee755c3c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:18.243Z","sequence":37336,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF81D168C50792D, resource-version: ad0d803f-c945-4972-b0e4-30e8ec0cea30]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5b519111da482126","parentId":"edb867a2c645ea22","traceId":"0000000000000000fdfdd617ee755c3c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:19.294Z","sequence":37337,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:19.294Z","sequence":37338,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-45E69619095F]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:19.306Z","sequence":37339,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-8db2b748-f917-4d41-ab70-34a31857e2a8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:19.435Z","sequence":37340,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:19.436Z","sequence":37341,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 45E69619095F]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:19.442Z","sequence":37342,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-305acfe8-94a1-458f-b99f-1c34f42a7e43, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:19.448Z","sequence":37343,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:19.448Z","sequence":37344,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF81D168C50792D] for gateway [45E69619095F]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:19.453Z","sequence":37345,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:19.453Z","sequence":37346,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:19.626Z","sequence":37347,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-cd447c95-b910-4720-844b-8903807ea08a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:23.679Z","sequence":37348,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:23.679Z","sequence":37349,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006BE] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:23.687Z","sequence":37350,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:23.687Z","sequence":37351,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:23.693Z","sequence":37352,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1a8396fd-870a-4099-8a45-e11a5cfd185c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:26.24Z","sequence":37353,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:26.24Z","sequence":37354,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10018F5] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:26.245Z","sequence":37355,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:26.245Z","sequence":37356,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:26.251Z","sequence":37357,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ae1a1e3d-a9a0-427d-bc54-8811b031ddc3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:29.044Z","sequence":37358,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:29.045Z","sequence":37359,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000208] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:29.05Z","sequence":37360,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:29.05Z","sequence":37361,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:29.053Z","sequence":37362,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4ee9f645-c8cc-4b28-b7eb-712a58b3054c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:29.104Z","sequence":37363,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:29.105Z","sequence":37364,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000208] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:29.109Z","sequence":37365,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:29.109Z","sequence":37366,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:29.112Z","sequence":37367,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8a45c4ac-5352-4dc6-8549-5dd7158d6c77, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:30.318Z","sequence":37368,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF81D168C50792D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6812487170ccbe5d","parentId":"ddc70778840261ec","traceId":"00000000000000000f5ce2d8aa182bcb","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:30.336Z","sequence":37369,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF81D168C50792D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6812487170ccbe5d","parentId":"ddc70778840261ec","traceId":"00000000000000000f5ce2d8aa182bcb","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:30.471Z","sequence":37370,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:30.471Z","sequence":37371,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B2A] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:30.476Z","sequence":37372,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:30.476Z","sequence":37373,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:30.483Z","sequence":37374,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6755463e-b04d-4c6f-b430-2f71fee772d9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:30.601Z","sequence":37375,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"retrieving device [tenant: shell, device-id: 70B3D57BB1000B2A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2c420ce985a7eb97","parentId":"36bf433e5b13a9cd","traceId":"e5fe6bc83a365d3e985de6875ac00ac2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:30.708Z","sequence":37376,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 45E69619095F]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"308bd2e1d6136264","parentId":"e6674e478205c2b2","traceId":"00000000000000007c7cd8c32332b2b8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:30.732Z","sequence":37377,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 45E69619095F]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"308bd2e1d6136264","parentId":"e6674e478205c2b2","traceId":"00000000000000007c7cd8c32332b2b8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:41.583Z","sequence":37378,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/acta:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:41.583Z","sequence":37379,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: acta, device-id: 0008004AAAA3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:41.588Z","sequence":37380,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4275439b-d05e-4efc-8fa7-8999cf0fa823, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:41.592Z","sequence":37381,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:41.592Z","sequence":37382,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: acta]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:41.595Z","sequence":37383,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-8f3e78e9-5b81-4f9a-958a-df5dc0a95439, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:41.699Z","sequence":37384,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:41.699Z","sequence":37385,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000820] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:41.706Z","sequence":37386,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:41.706Z","sequence":37387,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:41.71Z","sequence":37388,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-26741055-252d-4687-ab20-2212ff8c01f8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:46.061Z","sequence":37389,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/repsol:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:46.061Z","sequence":37390,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: repsol, device-id: 0008004A37FF]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:46.068Z","sequence":37391,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5c7c99ad-4a8f-4caa-accf-af417bdbef49, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:46.072Z","sequence":37392,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:46.072Z","sequence":37393,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: repsol]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:46.09Z","sequence":37394,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-188d17ff-b3ef-4ee7-9c5f-d56210982cb0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:48.613Z","sequence":37395,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:48.613Z","sequence":37396,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10018AE] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:48.629Z","sequence":37397,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:48.629Z","sequence":37398,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:48.635Z","sequence":37399,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-444e60e2-dc2a-427a-8388-704397bbc591, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:51.581Z","sequence":37400,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:51.581Z","sequence":37401,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000692] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:51.594Z","sequence":37402,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:51.595Z","sequence":37403,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:51.602Z","sequence":37404,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0ecc74c3-1340-4a42-8da4-90ec585c0f60, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:52.981Z","sequence":37405,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:52.981Z","sequence":37406,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A1D] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:52.987Z","sequence":37407,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:52.988Z","sequence":37408,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:52.993Z","sequence":37409,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-43bfba9f-7d85-49e3-8e92-bd448b3d0b9c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:53.064Z","sequence":37410,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/repsol:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:53.064Z","sequence":37411,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: repsol, device-id: 70B3D57BB1000187] for gateway [0008004A37FF]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:53.071Z","sequence":37412,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:0.4.1\"\n },\n \"viaGroups\" : [ \"gateways_repsol\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:53.071Z","sequence":37413,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_repsol\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:53.074Z","sequence":37414,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-36df78ee-e96f-41be-91a8-3b4764eeb77c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:58.734Z","sequence":37415,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:58.734Z","sequence":37416,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100078F] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:58.744Z","sequence":37417,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:58.744Z","sequence":37418,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:34:58.751Z","sequence":37419,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5c88ac83-e6f1-426d-8989-295cbcbd1d00, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:35:01.178Z","sequence":37420,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:35:01.178Z","sequence":37421,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000A6E] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:35:01.184Z","sequence":37422,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:35:01.184Z","sequence":37423,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:35:01.19Z","sequence":37424,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c09f6bf5-7020-4baa-a5f1-4ea74f470d9b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:35:01.341Z","sequence":37425,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"retrieving device [tenant: shell, device-id: 70B3D57BB1000A6E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0f206de1df866206","parentId":"baa1977e28270676","traceId":"3c95515e5a1a59228652ab76778ab432","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:35:05.026Z","sequence":37426,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:35:05.026Z","sequence":37427,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006DC] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:35:05.034Z","sequence":37428,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:35:05.034Z","sequence":37429,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:35:05.04Z","sequence":37430,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5799131f-0d8b-4ecf-b8cc-74d23fdecd39, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:35:11.442Z","sequence":37431,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:35:11.442Z","sequence":37432,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 0008004B51D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:35:11.449Z","sequence":37433,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-381f85a1-c4e4-41f7-af20-6f2d885e42e3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:35:11.452Z","sequence":37434,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:35:11.452Z","sequence":37435,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: dow]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:35:11.455Z","sequence":37436,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-bdcf54ba-de71-4481-80c7-a07856ebbc23, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:35:20.982Z","sequence":37437,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:35:20.983Z","sequence":37438,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10009B4] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:35:20.989Z","sequence":37439,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:35:20.989Z","sequence":37440,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:35:20.993Z","sequence":37441,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7b8a2cdf-4af7-42a6-833d-74a4a3ac1962, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:35:30.496Z","sequence":37442,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:35:30.497Z","sequence":37443,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C4A] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:35:30.502Z","sequence":37444,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:35:30.502Z","sequence":37445,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:35:30.508Z","sequence":37446,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-24b4287c-794f-44f9-9043-02dfda1cec10, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:35:31.658Z","sequence":37447,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:35:31.658Z","sequence":37448,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001E9] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:35:31.686Z","sequence":37449,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:35:31.686Z","sequence":37450,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:35:31.689Z","sequence":37451,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-579c3be8-afd1-4ebd-9096-c22d1cbc4e21, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:35:31.743Z","sequence":37452,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:35:31.743Z","sequence":37453,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001E9] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:35:31.748Z","sequence":37454,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:35:31.748Z","sequence":37455,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:35:31.752Z","sequence":37456,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-95eb5e99-4b1f-4422-87ab-2d5bd2b653e7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:35:32.713Z","sequence":37457,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:35:32.713Z","sequence":37458,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BA6] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:35:32.757Z","sequence":37459,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:35:32.758Z","sequence":37460,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:35:32.779Z","sequence":37461,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9ae9b439-7fa3-4b01-be43-c40cafabf1d8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:35:34.08Z","sequence":37462,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:35:34.081Z","sequence":37463,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BA2] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:35:34.087Z","sequence":37464,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:35:34.087Z","sequence":37465,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:35:34.103Z","sequence":37466,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ecc42306-f4c7-4a79-adf4-aee3dea8388f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:35:34.237Z","sequence":37467,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:35:34.237Z","sequence":37468,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B88] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:35:34.243Z","sequence":37469,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:35:34.243Z","sequence":37470,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:35:34.25Z","sequence":37471,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-534caf6c-80db-4d8e-a5e2-67f8ffac63d5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:35:37.289Z","sequence":37472,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:35:37.289Z","sequence":37473,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019C9] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:35:37.295Z","sequence":37474,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:35:37.295Z","sequence":37475,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:35:37.302Z","sequence":37476,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b3229561-4a79-4538-b272-03c713fe5e2d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:35:42.492Z","sequence":37477,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:35:42.492Z","sequence":37478,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001938] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:35:42.498Z","sequence":37479,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:35:42.498Z","sequence":37480,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:35:42.504Z","sequence":37481,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-338668f9-2795-4616-8d51-d371612e2a66, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:35:44.635Z","sequence":37482,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/conditionall:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:35:44.635Z","sequence":37483,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: conditionall, device-id: 0008004B512D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:35:44.642Z","sequence":37484,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-592b2472-9a5c-41a6-afa4-8d58da244832, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:35:44.645Z","sequence":37485,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:35:44.645Z","sequence":37486,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: conditionall]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:35:44.648Z","sequence":37487,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-640e9ae0-b3fb-4769-af5a-6249e740ab5c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:35:47.287Z","sequence":37488,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:35:47.287Z","sequence":37489,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001937] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:35:47.302Z","sequence":37490,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:35:47.302Z","sequence":37491,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:35:47.319Z","sequence":37492,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-02dc2746-e505-4443-bc04-befba415becc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:35:50.305Z","sequence":37493,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:35:50.306Z","sequence":37494,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000202] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:35:50.324Z","sequence":37495,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:35:50.324Z","sequence":37496,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:35:50.327Z","sequence":37497,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1d182d33-1a29-4145-bec3-e42b559822f4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:35:50.372Z","sequence":37498,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:35:50.372Z","sequence":37499,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000202] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:35:50.387Z","sequence":37500,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:35:50.387Z","sequence":37501,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:35:50.39Z","sequence":37502,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-63f0cb25-0899-45eb-aa13-49cd4a4adaaa, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:35:54.343Z","sequence":37503,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:35:54.343Z","sequence":37504,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:35:54.352Z","sequence":37505,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1dad08f8-9b00-45f6-988c-3467fae21847, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:35:55.512Z","sequence":37506,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:35:55.512Z","sequence":37507,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: flint]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:35:55.518Z","sequence":37508,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-e5c84e6b-a446-47d1-a280-1979087264cc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:35:55.522Z","sequence":37509,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/flint:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:35:55.522Z","sequence":37510,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: flint, type: hashed-password, auth-id: auth-flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:35:55.557Z","sequence":37511,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-8e66149b-21a6-4e3a-a13a-fb6dd6bdbc2f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:35:55.681Z","sequence":37512,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:35:55.681Z","sequence":37513,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10009D4] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:35:55.689Z","sequence":37514,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:35:55.689Z","sequence":37515,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:35:55.695Z","sequence":37516,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-16599fa7-4159-4a6a-85d6-3ce260e12fe7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:35:58.424Z","sequence":37517,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:35:58.425Z","sequence":37518,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100016C] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:35:58.433Z","sequence":37519,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:35:58.433Z","sequence":37520,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:35:58.447Z","sequence":37521,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5a171e56-d50c-4ed3-97f3-a50c3b1ae8e7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:35:58.459Z","sequence":37522,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:35:58.459Z","sequence":37523,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100016C] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:35:58.468Z","sequence":37524,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:35:58.468Z","sequence":37525,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:35:58.471Z","sequence":37526,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4dfb062e-e658-4d46-abb8-1b8aac272deb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:02.094Z","sequence":37527,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:02.094Z","sequence":37528,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: shell]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:02.1Z","sequence":37529,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-1e896f44-7c26-42a3-a25a-4320ecfe8adf, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:02.104Z","sequence":37530,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/shell:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:02.104Z","sequence":37531,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: shell, type: hashed-password, auth-id: auth-gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:02.14Z","sequence":37532,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-06470fc3-71ff-4322-931f-50ddaebcc572, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:02.259Z","sequence":37533,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:02.259Z","sequence":37534,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001930] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:02.265Z","sequence":37535,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:02.265Z","sequence":37536,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:02.299Z","sequence":37537,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-750ea6a8-8d2e-4e81-8505-e5319e6949a1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:04.253Z","sequence":37538,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191361]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5feb4306ecdec432","parentId":"4e38560921069161","traceId":"0000000000000000b5364f978e1e401c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:04.352Z","sequence":37539,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191361, resource-version: c99fb696-5d26-476e-84bb-280d2006a2cb]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5feb4306ecdec432","parentId":"4e38560921069161","traceId":"0000000000000000b5364f978e1e401c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:04.361Z","sequence":37540,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191361, resource-version: 4d9acdf6-5f84-493f-9cd7-ea3b3da57d0e]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5feb4306ecdec432","parentId":"4e38560921069161","traceId":"0000000000000000b5364f978e1e401c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:04.365Z","sequence":37541,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191361]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f5a6234266765f1c","parentId":"3ddc904c5193b1fb","traceId":"0000000000000000b5364f978e1e401c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:04.591Z","sequence":37542,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191361]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f5a6234266765f1c","parentId":"3ddc904c5193b1fb","traceId":"0000000000000000b5364f978e1e401c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:04.865Z","sequence":37543,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:04.865Z","sequence":37544,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001933] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:04.874Z","sequence":37545,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:04.874Z","sequence":37546,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:04.88Z","sequence":37547,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3a1a5946-0217-406a-bc25-49eaa923e2a1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:05.565Z","sequence":37548,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFDA10ED7F5ED4C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d185bdd62b2c9890","parentId":"2a11a0c53ac01aeb","traceId":"0000000000000000fbd536073a14667a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:05.637Z","sequence":37549,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:05.637Z","sequence":37550,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: dow]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:05.649Z","sequence":37551,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-d2237ed8-7d2e-4655-8975-f7d7a564fd91, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:05.652Z","sequence":37553,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/dow:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:05.649Z","sequence":37552,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFDA10ED7F5ED4C, resource-version: 7e2c633c-b4ef-476f-9a23-8e9334b9e474]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d185bdd62b2c9890","parentId":"2a11a0c53ac01aeb","traceId":"0000000000000000fbd536073a14667a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:05.652Z","sequence":37554,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: dow, type: hashed-password, auth-id: auth-gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:05.708Z","sequence":37555,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFDA10ED7F5ED4C, resource-version: fc693030-c3c6-4cfb-837e-489eb25c3f65]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d185bdd62b2c9890","parentId":"2a11a0c53ac01aeb","traceId":"0000000000000000fbd536073a14667a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:05.733Z","sequence":37556,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:05.733Z","sequence":37557,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006D1] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:05.753Z","sequence":37558,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-5b5ea02e-2a40-48c9-8728-c6d04a8ab471, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:05.757Z","sequence":37559,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:05.757Z","sequence":37560,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:05.769Z","sequence":37561,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ba88b612-112f-49ee-90bf-e2eef74b4012, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:06.033Z","sequence":37562,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:06.033Z","sequence":37563,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 70B3D57BB100122E] for gateway [gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:06.034Z","sequence":37564,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:06.034Z","sequence":37565,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:06.065Z","sequence":37566,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-86bf8c01-ced5-4d1f-99bf-79bb1d4c2ab5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:06.101Z","sequence":37567,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:06.101Z","sequence":37568,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:06.149Z","sequence":37569,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-be2b3ed8-b7f7-47a1-b463-f9750ebee2f4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:06.998Z","sequence":37570,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:06.998Z","sequence":37571,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:07.002Z","sequence":37572,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-65561d87-e1b4-439a-a39c-761056d87250, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:07.004Z","sequence":37573,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:07.004Z","sequence":37574,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191361]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:07.014Z","sequence":37575,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-63dfe628-1bf5-4479-a3b8-e76716f1ef47, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:07.269Z","sequence":37576,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:07.27Z","sequence":37577,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDA10ED7F5ED4C] for gateway [gateway_integrationtest_network_191361]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:07.271Z","sequence":37578,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:07.271Z","sequence":37579,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191361]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:07.275Z","sequence":37580,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:07.275Z","sequence":37581,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:07.276Z","sequence":37582,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-984e86d2-fd88-4080-9ddd-fd1055381657, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:07.757Z","sequence":37583,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c2deffb2-7119-47bd-9dcf-0438d64969a8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:11.392Z","sequence":37584,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:11.393Z","sequence":37585,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: indeel]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:11.401Z","sequence":37586,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-d617ab95-20aa-4588-a0a6-4575ed2bf64c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:11.406Z","sequence":37587,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Source{address='credentials/indeel/cce49c94-8541-46fa-929f-4db245f095e4', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:11.406Z","sequence":37588,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-18]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:11.407Z","sequence":37589,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@436bbc62] for replies to [credentials/indeel/cce49c94-8541-46fa-929f-4db245f095e4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:11.409Z","sequence":37590,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Target{address='credentials/indeel', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:11.411Z","sequence":37591,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-19]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:11.411Z","sequence":37592,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:11.415Z","sequence":37593,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/indeel:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:11.416Z","sequence":37594,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: indeel, type: hashed-password, auth-id: auth-gateway_indeel_network_40884]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:11.459Z","sequence":37595,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-86de1026-6142-4534-88d4-a6a35e69d014, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:11.887Z","sequence":37596,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] wants to open a link [address: Source{address='registration/indeel/c90b508a-3801-40fb-89dd-e3406311d486', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:11.887Z","sequence":37597,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-18]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:11.888Z","sequence":37598,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@4a88822d] for replies to [registration/indeel/c90b508a-3801-40fb-89dd-e3406311d486]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:11.888Z","sequence":37599,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:11.889Z","sequence":37600,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001926] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:11.892Z","sequence":37601,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] wants to open a link [address: Target{address='registration/indeel', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:11.897Z","sequence":37602,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-19]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:11.897Z","sequence":37603,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:11.9Z","sequence":37604,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/indeel:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:11.901Z","sequence":37605,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: indeel, device-id: 70B3D57BB10013FB] for gateway [gateway_indeel_network_40884]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:11.901Z","sequence":37606,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/indeel:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:11.903Z","sequence":37607,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: indeel, device-id: gateway_indeel_network_40884]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:11.905Z","sequence":37608,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:11.905Z","sequence":37609,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:11.913Z","sequence":37610,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5c170217-9516-4151-8434-b8c3bac527ce, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:11.92Z","sequence":37611,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_indeel\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:11.921Z","sequence":37612,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_indeel\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:11.924Z","sequence":37613,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f9a198de-c79b-4439-b369-845fd807a90c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:11.941Z","sequence":37614,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0730aa23-4e4b-48c2-b706-152f5a229aca, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:13.799Z","sequence":37615,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:13.799Z","sequence":37616,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006B8] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:13.852Z","sequence":37617,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:13.853Z","sequence":37618,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:13.909Z","sequence":37619,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d404201c-91d0-4178-9881-c6765ffda854, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:14.076Z","sequence":37620,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:14.076Z","sequence":37621,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001940] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:14.115Z","sequence":37622,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:14.115Z","sequence":37623,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:14.127Z","sequence":37624,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-42b06645-ae47-4ccc-ade6-54e144470b99, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:15.675Z","sequence":37625,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:15.675Z","sequence":37626,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006B3] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:15.686Z","sequence":37627,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:15.686Z","sequence":37628,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:15.692Z","sequence":37629,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0e504861-a721-445e-b44c-49d70117a290, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:20.552Z","sequence":37630,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFDA10ED7F5ED4C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"60c9fce19872ee7b","parentId":"6477c01078e23c88","traceId":"0000000000000000f295f56dab8ccf8c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:20.57Z","sequence":37631,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFDA10ED7F5ED4C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"60c9fce19872ee7b","parentId":"6477c01078e23c88","traceId":"0000000000000000f295f56dab8ccf8c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:20.865Z","sequence":37632,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191361]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"06be544559228764","parentId":"7c19e5e527969c14","traceId":"0000000000000000ea6483f1768d0a08","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:20.883Z","sequence":37633,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191361]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"06be544559228764","parentId":"7c19e5e527969c14","traceId":"0000000000000000ea6483f1768d0a08","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:21.39Z","sequence":37634,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: E98FAB241DC7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9e2125d30231b568","parentId":"8904031cd49defd5","traceId":"0000000000000000956ce50a85edf808","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:21.409Z","sequence":37635,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: E98FAB241DC7, resource-version: 46ce0347-f551-444d-ae01-d85e0418c688]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9e2125d30231b568","parentId":"8904031cd49defd5","traceId":"0000000000000000956ce50a85edf808","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:21.419Z","sequence":37636,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: E98FAB241DC7, resource-version: 0c46f927-de02-4005-9b9c-85a57d0df4cc]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9e2125d30231b568","parentId":"8904031cd49defd5","traceId":"0000000000000000956ce50a85edf808","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:21.426Z","sequence":37637,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: E98FAB241DC7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7230c02720d4d86e","parentId":"c69393d12e8fd85a","traceId":"0000000000000000956ce50a85edf808","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:21.642Z","sequence":37638,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: E98FAB241DC7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7230c02720d4d86e","parentId":"c69393d12e8fd85a","traceId":"0000000000000000956ce50a85edf808","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:21.786Z","sequence":37639,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:21.787Z","sequence":37640,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BB84C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:21.792Z","sequence":37641,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-05a5410c-4e9c-40a3-997f-fa1f843c7d81, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:22.523Z","sequence":37642,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF522A275462961]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e3ecdd560b076447","parentId":"7800754588e513ee","traceId":"00000000000000003c537279a74a01d9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:22.543Z","sequence":37643,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF522A275462961, resource-version: ffd0f544-b9d5-4edf-9237-e7914b432dd5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e3ecdd560b076447","parentId":"7800754588e513ee","traceId":"00000000000000003c537279a74a01d9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:22.551Z","sequence":37644,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF522A275462961, resource-version: b33bb680-b7f6-4028-b9bd-96742ff0621d]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e3ecdd560b076447","parentId":"7800754588e513ee","traceId":"00000000000000003c537279a74a01d9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:22.985Z","sequence":37645,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:22.985Z","sequence":37646,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 0008004B5135]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:22.991Z","sequence":37647,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a1434de8-11e2-41b5-9b83-c5c5b04f4f78, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:22.996Z","sequence":37648,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:22.996Z","sequence":37649,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: ineos]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:23.005Z","sequence":37650,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-70ff5a3a-10c5-4252-9956-a2e68cec6da3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:23.411Z","sequence":37651,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:23.411Z","sequence":37652,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BFE] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:23.417Z","sequence":37653,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:23.417Z","sequence":37654,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:23.424Z","sequence":37655,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-31e82276-6583-4c0b-8592-aa0aa9af418b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:23.602Z","sequence":37656,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:23.602Z","sequence":37657,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:23.605Z","sequence":37658,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-04394d49-7b0b-42c7-9703-eea56c07a7fe, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:23.607Z","sequence":37659,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:23.608Z","sequence":37660,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-E98FAB241DC7]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:23.627Z","sequence":37661,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-03b3bb0d-c17b-4fd8-b22c-b22dbac78ee5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:23.72Z","sequence":37662,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:23.72Z","sequence":37663,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A0D] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:23.727Z","sequence":37664,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:23.727Z","sequence":37665,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:23.733Z","sequence":37666,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6c2e7cf6-1c05-4720-93ad-59ccb699f793, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:23.747Z","sequence":37667,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:23.747Z","sequence":37668,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: E98FAB241DC7]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:23.752Z","sequence":37669,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e9f46cd3-b57a-4536-83f1-114eef12f135, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:23.756Z","sequence":37670,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:23.756Z","sequence":37671,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF522A275462961] for gateway [E98FAB241DC7]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:23.767Z","sequence":37672,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:23.767Z","sequence":37673,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:24.146Z","sequence":37674,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8f6f3e72-1c4f-4337-b9a6-82331e8a1837, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:25.092Z","sequence":37675,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:25.092Z","sequence":37676,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C49] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:25.098Z","sequence":37677,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:25.098Z","sequence":37678,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:25.104Z","sequence":37679,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8566c217-ce76-4305-8a73-b6139a4d2504, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:26.909Z","sequence":37680,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:26.909Z","sequence":37681,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BBD1B]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:26.914Z","sequence":37682,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5be73914-66d2-4ccd-b152-139e3de8472f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:28.563Z","sequence":37683,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:28.563Z","sequence":37684,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100057A] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:28.568Z","sequence":37685,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:28.568Z","sequence":37686,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:28.575Z","sequence":37687,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b23861f7-90b8-4511-9cf9-30b9844953e3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:28.694Z","sequence":37688,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:28.694Z","sequence":37689,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AF7] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:28.699Z","sequence":37690,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:28.699Z","sequence":37691,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:28.704Z","sequence":37692,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-31b25ecc-3ca1-4adf-af5e-f1c81c43c160, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:29.105Z","sequence":37693,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:29.106Z","sequence":37694,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006C3] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:29.111Z","sequence":37695,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:29.111Z","sequence":37696,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:29.118Z","sequence":37697,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a698acab-537a-49fa-a85a-6254618e574d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:31.913Z","sequence":37698,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:31.913Z","sequence":37699,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C21] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:31.923Z","sequence":37700,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:31.923Z","sequence":37701,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:31.929Z","sequence":37702,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ea0f7a72-a2c0-41fe-8473-c011e3c48258, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:34.442Z","sequence":37703,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/arkema:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:34.442Z","sequence":37704,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: arkema, device-id: 0008004AE119]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:34.449Z","sequence":37705,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a6df2fdb-0b0a-4634-9a8c-ebd49b3681a8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:34.453Z","sequence":37706,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:34.453Z","sequence":37707,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: arkema]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:34.456Z","sequence":37708,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-3eb127df-90cd-4ccb-b30a-1bdf60dbc6e8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:35.72Z","sequence":37709,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/dow:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:35.721Z","sequence":37710,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: dow, type: hashed-password, auth-id: auth-gateway_dow_network_39199]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:35.731Z","sequence":37711,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-de897b0b-4d1a-480c-999c-83b98e010e24, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:36.067Z","sequence":37712,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:36.068Z","sequence":37713,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 70B3D57BB10014EE] for gateway [gateway_dow_network_39199]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:36.068Z","sequence":37714,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:36.068Z","sequence":37715,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: gateway_dow_network_39199]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:36.073Z","sequence":37716,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-39c809c4-d2e0-42b5-a79d-1ed314702a7e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:36.074Z","sequence":37717,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:36.074Z","sequence":37718,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:36.078Z","sequence":37719,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3914d065-6777-46c8-8dbc-8415740d114c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:36.644Z","sequence":37720,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF522A275462961]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8c0034c00bd0c81a","parentId":"8e537f931fa5a1fe","traceId":"0000000000000000068502ee2574d50b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:36.668Z","sequence":37721,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF522A275462961]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8c0034c00bd0c81a","parentId":"8e537f931fa5a1fe","traceId":"0000000000000000068502ee2574d50b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:36.998Z","sequence":37722,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: E98FAB241DC7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"569733734f954526","parentId":"8a33c4b7da9f8f9e","traceId":"0000000000000000d04d27eb28a02d19","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:37.021Z","sequence":37723,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: E98FAB241DC7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"569733734f954526","parentId":"8a33c4b7da9f8f9e","traceId":"0000000000000000d04d27eb28a02d19","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:40.415Z","sequence":37724,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:40.415Z","sequence":37725,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BA5] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:40.423Z","sequence":37726,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:40.423Z","sequence":37727,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:40.43Z","sequence":37728,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0f6c938c-bf77-4e35-acd5-4a2530967164, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:44.577Z","sequence":37729,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:44.577Z","sequence":37730,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BA0] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:44.593Z","sequence":37731,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:44.593Z","sequence":37732,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:44.604Z","sequence":37733,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a909774c-b494-48b7-9805-73aa793f2ef4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:46.897Z","sequence":37734,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:46.897Z","sequence":37735,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006A4] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:46.904Z","sequence":37736,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:46.904Z","sequence":37737,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:46.909Z","sequence":37738,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-00b2350f-c01d-4cd2-9586-5ecd1e9f7c6d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:53.681Z","sequence":37739,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:53.681Z","sequence":37740,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B8D] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:53.689Z","sequence":37741,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:53.689Z","sequence":37742,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:53.696Z","sequence":37743,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-24ef3be7-5e0e-4e64-8bc4-4e2f7cf91113, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:56.013Z","sequence":37744,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:56.013Z","sequence":37745,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000892] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:56.014Z","sequence":37746,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:56.014Z","sequence":37747,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:56.019Z","sequence":37748,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:56.019Z","sequence":37749,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:56.02Z","sequence":37750,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4458f53a-a95f-4898-9cf7-c7b943f83c9d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:56.023Z","sequence":37751,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-add1a8db-5b5c-4506-b2bf-64e5832e81bf, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:56.55Z","sequence":37752,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:56.55Z","sequence":37753,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB1000A72] for gateway [0008004B5135]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:56.561Z","sequence":37754,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:56.561Z","sequence":37755,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:36:56.566Z","sequence":37756,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-491c3f6e-06c2-45a7-9a87-b1ba1c766b8c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:37:00.169Z","sequence":37757,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:37:00.17Z","sequence":37758,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oiltanking]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:37:00.177Z","sequence":37759,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-92853710-0242-4d42-b91f-438e8682d4aa, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:37:00.179Z","sequence":37760,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oiltanking:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:37:00.179Z","sequence":37761,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oiltanking, device-id: 70B3D57BB10001C6] for gateway [0008004BB60F]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:37:00.189Z","sequence":37762,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.8.0\"\n },\n \"viaGroups\" : [ \"gateways_oiltanking\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:37:00.189Z","sequence":37763,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oiltanking\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:37:00.192Z","sequence":37764,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0e148758-0669-4e19-9384-24f6d9521b29, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:37:02.873Z","sequence":37765,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:37:02.873Z","sequence":37766,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 70B3D57BB1001279] for gateway [gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:37:02.909Z","sequence":37767,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:37:02.909Z","sequence":37768,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:37:02.925Z","sequence":37769,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-46c556d9-0cab-46eb-9119-0b8fe71afd67, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:37:04.573Z","sequence":37770,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:37:04.573Z","sequence":37771,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BB1] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:37:04.583Z","sequence":37772,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:37:04.583Z","sequence":37773,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:37:04.59Z","sequence":37774,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-46c0178c-9bb0-404f-96e0-38c45508c2b5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:37:13.451Z","sequence":37775,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/conditionall:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:37:13.452Z","sequence":37776,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: conditionall, device-id: 70B3D57BB1000228] for gateway [0008004B512D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:37:13.461Z","sequence":37777,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_conditionall\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:37:13.461Z","sequence":37778,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_conditionall\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:37:13.464Z","sequence":37779,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6d562811-dd82-4fbd-b6bf-ac15cf5d404c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:37:16.99Z","sequence":37780,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:37:16.99Z","sequence":37781,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C32] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:37:16.996Z","sequence":37782,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:37:16.996Z","sequence":37783,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:37:17.005Z","sequence":37784,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f4ce5f5b-5607-4adb-8cee-2dcd85bea310, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:37:17.115Z","sequence":37785,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:37:17.115Z","sequence":37786,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:37:17.128Z","sequence":37787,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c5f54046-fe12-413d-a36d-1095989a2cd8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:37:23.416Z","sequence":37788,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:37:23.416Z","sequence":37789,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001936] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:37:23.452Z","sequence":37790,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:37:23.453Z","sequence":37791,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:37:23.459Z","sequence":37792,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-cf93fac1-30a3-40ca-ad11-2862979bc25e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:37:35.677Z","sequence":37793,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:37:35.677Z","sequence":37794,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: chevron]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:37:35.686Z","sequence":37795,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-0211a628-ee05-4ae4-910d-a1f1f00f540e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:37:35.689Z","sequence":37796,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/chevron:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:37:35.689Z","sequence":37797,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: chevron, type: hashed-password, auth-id: auth-CHEVRON-ORBIWISE-EL-SEGUNDO]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:37:35.701Z","sequence":37798,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-ebcd4ab4-7ce0-4818-b902-030dcdcb5ee3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:37:35.818Z","sequence":37799,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/chevron:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:37:35.818Z","sequence":37800,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: chevron, device-id: 70B3D57BB1000257] for gateway [CHEVRON-ORBIWISE-EL-SEGUNDO]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:37:35.824Z","sequence":37801,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_chevron\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:37:35.824Z","sequence":37802,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_chevron\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:37:35.844Z","sequence":37803,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2ae4896f-70e9-4517-badc-b1e5a4ea6f0e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:37:46.173Z","sequence":37804,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:37:46.174Z","sequence":37805,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BBD1C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:37:46.189Z","sequence":37806,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-cd80f5cd-e381-4582-9b5c-2c6bb8ceebb3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:37:46.192Z","sequence":37807,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:37:46.192Z","sequence":37808,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: lanxess]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:37:46.195Z","sequence":37809,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-92185601-4a6e-42f3-a85e-d0058581df69, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:37:47.572Z","sequence":37810,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:37:47.572Z","sequence":37811,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 0008004C80F4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:37:47.597Z","sequence":37812,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7b8dcc94-9f55-4b87-91fd-b87b500ddce8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:37:50.994Z","sequence":37813,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:37:50.994Z","sequence":37814,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000809] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:37:51.002Z","sequence":37815,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:37:51.002Z","sequence":37816,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:37:51.039Z","sequence":37817,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-fe565cf0-a24f-4216-a18d-0f6d0613ed64, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:37:53.624Z","sequence":37818,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:37:53.624Z","sequence":37819,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BB4] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:37:53.626Z","sequence":37820,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:37:53.627Z","sequence":37821,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:37:53.634Z","sequence":37822,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-19fb55b2-305c-41e6-acf0-e4803ccacf84, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:37:53.634Z","sequence":37823,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:37:53.634Z","sequence":37824,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:37:53.642Z","sequence":37825,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9349846c-b852-4268-9e0d-29a20ea9df12, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:37:54.006Z","sequence":37826,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:37:54.006Z","sequence":37827,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:37:54.021Z","sequence":37828,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3995a8d0-e2a1-44d7-859b-875b1942331f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:37:54.025Z","sequence":37829,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:37:54.025Z","sequence":37830,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oci]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:37:54.03Z","sequence":37831,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-207916db-1530-461a-a8f6-684af41ed2cd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:37:54.035Z","sequence":37832,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:37:54.035Z","sequence":37833,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100016F] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:37:54.065Z","sequence":37834,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:37:54.066Z","sequence":37835,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:37:54.069Z","sequence":37836,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:37:54.069Z","sequence":37837,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100016F] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:37:54.073Z","sequence":37838,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-658271ac-cd82-4bd7-8b9b-a8da82d887f3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:37:54.084Z","sequence":37839,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:37:54.084Z","sequence":37840,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:37:54.093Z","sequence":37841,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a5d24137-9fb9-4595-8cb6-1e4e82dfb528, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:37:56.017Z","sequence":37842,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:37:56.018Z","sequence":37843,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB100082C] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:37:56.054Z","sequence":37844,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:37:56.054Z","sequence":37845,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:37:56.058Z","sequence":37846,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f0ca663c-7496-4a3c-99cd-758ccb3be8fc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:01.314Z","sequence":37847,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:01.315Z","sequence":37848,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB100087D] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:01.348Z","sequence":37849,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:01.348Z","sequence":37850,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:01.353Z","sequence":37851,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1b22761e-7865-44e2-aa68-c62094ea8c58, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:04.189Z","sequence":37852,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oiltanking:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:04.189Z","sequence":37853,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oiltanking, device-id: 0008004BB60F]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:04.2Z","sequence":37854,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-98c82b74-20f1-43aa-8d3c-3cbdf5441a09, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:04.214Z","sequence":37855,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191363]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"017d9882c72285a7","parentId":"2a89b12a75818ca2","traceId":"0000000000000000b579b59aec78ae40","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:04.292Z","sequence":37856,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191363, resource-version: 1d96afaa-6eff-49c6-80e8-b766bc56d5a9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"017d9882c72285a7","parentId":"2a89b12a75818ca2","traceId":"0000000000000000b579b59aec78ae40","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:04.3Z","sequence":37857,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191363, resource-version: e0b36305-8371-42b4-aae5-e57d89269237]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"017d9882c72285a7","parentId":"2a89b12a75818ca2","traceId":"0000000000000000b579b59aec78ae40","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:04.305Z","sequence":37858,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191363]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"69f1151766b39233","parentId":"71f27a3421682138","traceId":"0000000000000000b579b59aec78ae40","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:04.467Z","sequence":37859,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191363]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"69f1151766b39233","parentId":"71f27a3421682138","traceId":"0000000000000000b579b59aec78ae40","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:05.262Z","sequence":37860,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFE371EAD2E5C01]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7e7c25e8b9f5fffe","parentId":"fa440a8924d23f9a","traceId":"00000000000000008beed750214c8daa","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:05.289Z","sequence":37861,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFE371EAD2E5C01, resource-version: 5cc0a764-b4f7-4c42-b888-480ab813d957]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7e7c25e8b9f5fffe","parentId":"fa440a8924d23f9a","traceId":"00000000000000008beed750214c8daa","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:05.298Z","sequence":37862,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFE371EAD2E5C01, resource-version: a8dfec1c-1830-48c6-8249-dbe19a5fc99d]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7e7c25e8b9f5fffe","parentId":"fa440a8924d23f9a","traceId":"00000000000000008beed750214c8daa","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:06.375Z","sequence":37863,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:06.375Z","sequence":37864,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191363]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:06.387Z","sequence":37865,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-dee927de-ed97-4592-80c8-6cd0e5aff7d6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:06.507Z","sequence":37866,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:06.508Z","sequence":37867,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFE371EAD2E5C01] for gateway [gateway_integrationtest_network_191363]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:06.508Z","sequence":37868,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:06.508Z","sequence":37869,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191363]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:06.529Z","sequence":37870,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-51f2cca2-0dea-4058-8920-bc057dc24274, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:06.529Z","sequence":37871,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:06.529Z","sequence":37872,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:06.89Z","sequence":37873,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-dc2a1d25-6846-4575-9934-ad53f7a91f10, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:10.997Z","sequence":37874,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:10.998Z","sequence":37875,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100140C] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:11.004Z","sequence":37876,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:11.005Z","sequence":37877,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:11.012Z","sequence":37878,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a985c902-5099-4dc0-94ee-75ba67930207, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:11.177Z","sequence":37879,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:11.177Z","sequence":37880,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BB3] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:11.204Z","sequence":37881,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:11.205Z","sequence":37882,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:11.222Z","sequence":37883,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-cadbe383-53b6-4458-900a-31db4ebbc8c6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:11.606Z","sequence":37884,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:11.606Z","sequence":37885,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006C9] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:11.644Z","sequence":37886,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:11.645Z","sequence":37887,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:11.657Z","sequence":37888,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8d2ab678-69c2-4947-bd4a-ceb6d73065d2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:11.967Z","sequence":37889,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:11.968Z","sequence":37890,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001409] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:11.981Z","sequence":37891,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:11.981Z","sequence":37892,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:11.998Z","sequence":37893,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9103329b-e380-40fd-a97c-b4e06495be95, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:14.537Z","sequence":37894,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:14.537Z","sequence":37895,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000204] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:14.55Z","sequence":37896,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:14.55Z","sequence":37897,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:14.553Z","sequence":37898,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-17c99cfa-7146-43b1-897a-c2a9b2ecb9b2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:14.705Z","sequence":37899,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:14.705Z","sequence":37900,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000204] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:14.711Z","sequence":37901,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:14.711Z","sequence":37902,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:14.714Z","sequence":37903,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f4b52622-0d56-4323-a55d-d7673cfe78ba, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:19.195Z","sequence":37904,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFE371EAD2E5C01]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6d0ab087da908a3d","parentId":"c117be06c3336ea2","traceId":"00000000000000003ac41ce4c1f0df76","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:19.293Z","sequence":37905,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFE371EAD2E5C01]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6d0ab087da908a3d","parentId":"c117be06c3336ea2","traceId":"00000000000000003ac41ce4c1f0df76","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:19.462Z","sequence":37906,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191363]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"df8614a051cf583a","parentId":"177cacd473b783e9","traceId":"00000000000000000e6a02aad52c7787","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:19.501Z","sequence":37907,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191363]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"df8614a051cf583a","parentId":"177cacd473b783e9","traceId":"00000000000000000e6a02aad52c7787","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:20.073Z","sequence":37908,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 5D7111996034]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9b38a7519aa7c2da","parentId":"9b5ffdc2943300c3","traceId":"0000000000000000099c8ccdc09129f1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:20.14Z","sequence":37909,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 5D7111996034, resource-version: f9a5b0a3-cbf6-450c-9974-16a39446b067]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9b38a7519aa7c2da","parentId":"9b5ffdc2943300c3","traceId":"0000000000000000099c8ccdc09129f1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:20.147Z","sequence":37910,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 5D7111996034, resource-version: 5e4ec310-e2b1-4ce1-a829-04f8dca442c6]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9b38a7519aa7c2da","parentId":"9b5ffdc2943300c3","traceId":"0000000000000000099c8ccdc09129f1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:20.156Z","sequence":37911,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 5D7111996034]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b3d7faf20656354c","parentId":"f58b1baf41d5b338","traceId":"0000000000000000099c8ccdc09129f1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:20.331Z","sequence":37912,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 5D7111996034]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b3d7faf20656354c","parentId":"f58b1baf41d5b338","traceId":"0000000000000000099c8ccdc09129f1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:20.897Z","sequence":37913,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF8444A1322A5E4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"40edf853bdaf8879","parentId":"b6be3a50db1a9e31","traceId":"00000000000000001499adc8950ea3c4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:20.938Z","sequence":37914,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF8444A1322A5E4, resource-version: d3eb3d0b-58e2-403f-a88a-44d4379e3093]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"40edf853bdaf8879","parentId":"b6be3a50db1a9e31","traceId":"00000000000000001499adc8950ea3c4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:20.947Z","sequence":37915,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF8444A1322A5E4, resource-version: c9520b6f-d3ac-4e3f-b757-4eefeaac2b58]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"40edf853bdaf8879","parentId":"b6be3a50db1a9e31","traceId":"00000000000000001499adc8950ea3c4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:21.995Z","sequence":37916,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:21.995Z","sequence":37917,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-5D7111996034]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:22.008Z","sequence":37918,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-e1ac7cbf-6ec4-46a3-bf00-86d2b0de7507, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:22.128Z","sequence":37919,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:22.128Z","sequence":37920,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 5D7111996034]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:22.133Z","sequence":37921,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4e537d45-305a-49a6-84b2-94e7537b9606, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:22.137Z","sequence":37922,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:22.137Z","sequence":37923,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF8444A1322A5E4] for gateway [5D7111996034]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:22.142Z","sequence":37924,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:22.142Z","sequence":37925,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:22.356Z","sequence":37926,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-fb675b79-21a7-48a3-9bd4-4b0e2a6b5957, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:32.013Z","sequence":37927,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:32.014Z","sequence":37928,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C02] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:32.044Z","sequence":37929,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:32.044Z","sequence":37930,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:32.054Z","sequence":37931,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b023405a-3919-4177-9725-8e3930e3d7a0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:32.166Z","sequence":37932,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF8444A1322A5E4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fce05b4623c0a17b","parentId":"54aa9cf8c24072d9","traceId":"000000000000000048881c3e15699c50","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:32.199Z","sequence":37933,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF8444A1322A5E4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fce05b4623c0a17b","parentId":"54aa9cf8c24072d9","traceId":"000000000000000048881c3e15699c50","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:32.495Z","sequence":37934,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 5D7111996034]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1a173d2ee88faae0","parentId":"8682f0224f90644c","traceId":"0000000000000000791d97e4e42c4d67","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:32.557Z","sequence":37935,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 5D7111996034]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1a173d2ee88faae0","parentId":"8682f0224f90644c","traceId":"0000000000000000791d97e4e42c4d67","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:35.716Z","sequence":37936,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:35.716Z","sequence":37937,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001F4] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:35.722Z","sequence":37938,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:35.722Z","sequence":37939,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:35.745Z","sequence":37940,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-336e35e7-5656-41a0-82ab-f44ed01538b6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:35.775Z","sequence":37941,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:35.775Z","sequence":37942,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001F4] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:35.78Z","sequence":37943,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:35.78Z","sequence":37944,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:35.782Z","sequence":37945,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a2e102cc-c155-44d5-9d7c-cfcbe8de3837, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:36.161Z","sequence":37946,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/aloxy:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:36.161Z","sequence":37947,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: aloxy, device-id: 0008004A8F68]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:36.189Z","sequence":37948,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0deed180-dc3b-4fcd-bcb4-bef8a0df3bcc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:36.193Z","sequence":37949,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:36.193Z","sequence":37950,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: aloxy]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:36.196Z","sequence":37951,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-9cfbeb08-67cb-4e95-8fe0-6787b10c5c24, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:43.008Z","sequence":37952,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:43.008Z","sequence":37953,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10017A7] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:43.041Z","sequence":37954,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:43.041Z","sequence":37955,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:43.092Z","sequence":37956,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-037b78b5-27db-478c-a1ea-ab7e8c7ce987, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:50.83Z","sequence":37957,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:50.831Z","sequence":37958,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 70B3D57BB1000190] for gateway [0008004BB613]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:50.839Z","sequence":37959,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_lanxess\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:50.839Z","sequence":37960,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_lanxess\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:50.843Z","sequence":37961,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5e9ca881-b9c3-4a2c-b7a8-4450f20dc41f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:55.599Z","sequence":37962,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:55.599Z","sequence":37963,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A34] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:55.616Z","sequence":37964,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:55.616Z","sequence":37965,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:55.689Z","sequence":37966,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:55.689Z","sequence":37967,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BB613]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:55.698Z","sequence":37968,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-31d70895-6ff5-4046-91d8-407b34d3976f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:55.709Z","sequence":37969,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a4f523da-04e0-4194-b102-c888cf8e988a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:57.244Z","sequence":37970,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:57.244Z","sequence":37971,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AFA] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:57.25Z","sequence":37972,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:57.25Z","sequence":37973,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:38:57.255Z","sequence":37974,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ecf0cbb4-f9fa-4269-a176-f98c8f76ba42, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:39:01.566Z","sequence":37975,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:39:01.566Z","sequence":37976,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A25] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:39:01.574Z","sequence":37977,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:39:01.574Z","sequence":37978,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:39:01.594Z","sequence":37979,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-051c92d2-0c27-451b-8c1e-a60cd2c24d5b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:39:10.719Z","sequence":37980,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:39:10.719Z","sequence":37981,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: shell]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:39:10.724Z","sequence":37982,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-48ef1c47-9c2e-4b1d-ac73-40fc80fb5d1c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:39:10.727Z","sequence":37983,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/shell:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:39:10.727Z","sequence":37984,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: shell, type: hashed-password, auth-id: auth-gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:39:10.748Z","sequence":37985,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-61739a9c-758e-4479-998d-282971a00338, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:39:10.87Z","sequence":37986,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:39:10.871Z","sequence":37987,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C12] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:39:10.876Z","sequence":37988,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:39:10.876Z","sequence":37989,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:39:10.897Z","sequence":37990,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2910f5e4-7666-449f-9450-2a751958a0e5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:39:29.792Z","sequence":37991,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:39:29.792Z","sequence":37992,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006A5] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:39:29.799Z","sequence":37993,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:39:29.799Z","sequence":37994,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:39:29.845Z","sequence":37995,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a16d000a-a581-48d2-9539-4c50a4012227, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:39:35.21Z","sequence":37996,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:39:35.211Z","sequence":37997,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A27] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:39:35.216Z","sequence":37998,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:39:35.217Z","sequence":37999,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:39:35.222Z","sequence":38000,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ae72c506-7afd-4c1d-8093-f2b3c724fa98, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:39:35.741Z","sequence":38001,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:39:35.741Z","sequence":38002,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BFD] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:39:35.747Z","sequence":38003,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:39:35.748Z","sequence":38004,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:39:35.754Z","sequence":38005,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-53940905-7386-4c13-bb9f-ce3a67ee85db, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:39:41.249Z","sequence":38006,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:39:41.249Z","sequence":38007,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: flint]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:39:41.29Z","sequence":38008,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-a822661c-565f-4e8a-a430-b4d3e56b3fc5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:39:41.293Z","sequence":38009,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/flint:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:39:41.293Z","sequence":38010,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: flint, type: hashed-password, auth-id: auth-flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:39:41.307Z","sequence":38011,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-29078617-da15-44fc-8f3c-70effa66b9db, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:39:41.428Z","sequence":38012,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:39:41.428Z","sequence":38013,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB100088E] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:39:41.438Z","sequence":38014,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:39:41.438Z","sequence":38015,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:39:41.443Z","sequence":38016,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-879564f1-e165-41ee-8199-03c1d99ae09e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:39:44.358Z","sequence":38017,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/acta:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:39:44.358Z","sequence":38018,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: acta, device-id: 0008004AAAA3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:39:44.364Z","sequence":38019,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-312ea672-045d-4149-a30b-68d73c24c026, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:39:44.367Z","sequence":38020,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:39:44.368Z","sequence":38021,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: acta]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:39:44.374Z","sequence":38022,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-e31b6887-1f02-4b5c-b618-06638f83e26e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:39:47.805Z","sequence":38023,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/repsol:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:39:47.805Z","sequence":38024,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: repsol, device-id: 0008004A37FF]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:39:47.813Z","sequence":38025,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-024f0b95-b9ef-469a-84a0-cc6fc83c6ff8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:39:47.816Z","sequence":38026,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:39:47.816Z","sequence":38027,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: repsol]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:39:47.819Z","sequence":38028,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-b517f6fa-42fe-4abe-bc34-26ea965ec9e2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:39:48.373Z","sequence":38029,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:39:48.373Z","sequence":38030,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000571] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:39:48.378Z","sequence":38031,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:39:48.378Z","sequence":38032,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:39:48.387Z","sequence":38033,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-77015df4-36ce-4dec-9be2-d0bef673c143, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:39:52.28Z","sequence":38034,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:39:52.28Z","sequence":38035,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10018AC] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:39:52.29Z","sequence":38036,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:39:52.29Z","sequence":38037,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:39:52.297Z","sequence":38038,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8ba96da0-0568-4996-8c90-fb3e60718e1d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:39:53.901Z","sequence":38039,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:39:53.901Z","sequence":38040,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BD7] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:39:53.907Z","sequence":38041,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:39:53.907Z","sequence":38042,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:39:53.913Z","sequence":38043,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-328fb5dd-c68c-44b4-a356-c33bf8a81170, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:39:56.862Z","sequence":38044,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:39:56.862Z","sequence":38045,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BA8] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:39:56.868Z","sequence":38046,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:39:56.868Z","sequence":38047,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:39:56.875Z","sequence":38048,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c1ff554d-5a77-438c-865e-f9b52ba98ebb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:39:58.463Z","sequence":38049,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:39:58.464Z","sequence":38050,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001931] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:39:58.47Z","sequence":38051,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:39:58.47Z","sequence":38052,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:39:58.477Z","sequence":38053,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ec7caa6f-60cb-43bb-914d-d256983085dc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:00.312Z","sequence":38054,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:00.313Z","sequence":38055,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A19] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:00.318Z","sequence":38056,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:00.319Z","sequence":38057,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:00.324Z","sequence":38058,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3a80ef56-0901-4da1-8652-00af15581d53, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:02.586Z","sequence":38059,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/repsol:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:02.586Z","sequence":38060,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: repsol, device-id: 70B3D57BB1000229] for gateway [0008004A37FF]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:02.593Z","sequence":38061,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:0.4.1\"\n },\n \"viaGroups\" : [ \"gateways_repsol\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:02.593Z","sequence":38062,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_repsol\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:02.601Z","sequence":38063,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e0b9ff7a-5c75-4211-9502-4b600057fc52, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:04.157Z","sequence":38064,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:04.157Z","sequence":38065,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000200] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:04.162Z","sequence":38066,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:04.163Z","sequence":38067,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:04.166Z","sequence":38068,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b7247dee-9a6d-45bf-a110-b87da5942b48, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:04.197Z","sequence":38069,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191365]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"30232ec61fa11643","parentId":"02d8d130168c7d62","traceId":"00000000000000000bc9fc3d338a4902","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:04.217Z","sequence":38070,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191365, resource-version: 94847277-d7b1-43f1-8207-da3715d323ea]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"30232ec61fa11643","parentId":"02d8d130168c7d62","traceId":"00000000000000000bc9fc3d338a4902","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:04.225Z","sequence":38071,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191365, resource-version: c4f855f3-31d8-4191-8644-2c4fece864ff]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"30232ec61fa11643","parentId":"02d8d130168c7d62","traceId":"00000000000000000bc9fc3d338a4902","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:04.228Z","sequence":38072,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191365]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cedbc4d5dbc3a7e9","parentId":"a0b49297de821aa6","traceId":"00000000000000000bc9fc3d338a4902","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:04.241Z","sequence":38073,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:04.241Z","sequence":38074,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000200] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:04.247Z","sequence":38075,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:04.247Z","sequence":38076,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:04.25Z","sequence":38077,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1bc6eb6c-9757-4143-aabd-0ff90d7df562, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:04.443Z","sequence":38078,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191365]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cedbc4d5dbc3a7e9","parentId":"a0b49297de821aa6","traceId":"00000000000000000bc9fc3d338a4902","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:05.587Z","sequence":38079,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF4E52900269D99]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bd152701af81fab6","parentId":"95b2953c927b5e91","traceId":"000000000000000033f48f138086405e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:05.612Z","sequence":38080,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF4E52900269D99, resource-version: bf1c93aa-6ba1-428c-8e50-c541960003f8]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bd152701af81fab6","parentId":"95b2953c927b5e91","traceId":"000000000000000033f48f138086405e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:05.621Z","sequence":38081,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF4E52900269D99, resource-version: 90dfc002-45e3-4147-8212-ccfc3de586f7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bd152701af81fab6","parentId":"95b2953c927b5e91","traceId":"000000000000000033f48f138086405e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:06.757Z","sequence":38082,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:06.757Z","sequence":38083,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:06.761Z","sequence":38084,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-32b9094c-97a8-47b4-974d-b91b9e1bb802, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:06.764Z","sequence":38085,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:06.765Z","sequence":38086,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191365]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:06.784Z","sequence":38087,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-7cd28f49-a21b-4110-8a44-230322f515d0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:06.915Z","sequence":38088,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:06.915Z","sequence":38089,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF4E52900269D99] for gateway [gateway_integrationtest_network_191365]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:06.916Z","sequence":38090,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:06.917Z","sequence":38091,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191365]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:06.925Z","sequence":38092,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-22797efb-ed71-492b-a8ff-3e8fd0f02ad5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:06.926Z","sequence":38093,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:06.926Z","sequence":38094,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:07.461Z","sequence":38095,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d87f6882-cbfc-4c28-9c0e-6450abc54b11, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:09.721Z","sequence":38096,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:09.722Z","sequence":38097,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: terega]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:09.737Z","sequence":38098,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-2853f22e-0b3a-4e75-8a9a-78b261d3b594, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:09.741Z","sequence":38099,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/terega:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:09.741Z","sequence":38100,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: terega, type: hashed-password, auth-id: auth-gateway_terega_network_27]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:09.75Z","sequence":38101,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-4d81e9c5-2876-47a5-944d-cf7370b389b5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:09.878Z","sequence":38102,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/terega:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:09.879Z","sequence":38103,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: terega, device-id: 70B3D57BB10000A2] for gateway [gateway_terega_network_27]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:09.879Z","sequence":38104,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/terega:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:09.879Z","sequence":38105,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: terega, device-id: gateway_terega_network_27]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:09.885Z","sequence":38106,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f1194924-2efc-40e8-8518-7fbe6e98ed5e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:09.886Z","sequence":38107,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_terega\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:09.886Z","sequence":38108,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_terega\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:09.889Z","sequence":38109,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-bf0f4a8c-3baf-4d55-af30-4b363cb8c69b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:13.285Z","sequence":38110,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:13.285Z","sequence":38111,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 0008004B51D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:13.299Z","sequence":38112,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-cecb36d3-30c7-48c9-8018-27cf110d4665, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:13.302Z","sequence":38113,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:13.302Z","sequence":38114,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: dow]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:13.308Z","sequence":38115,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-4fed8164-bf56-4b5f-9ffa-2eb340dedf53, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:20.852Z","sequence":38116,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF4E52900269D99]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"41dc1d401b2d03ef","parentId":"fd886a8a28044f14","traceId":"0000000000000000975971bb8ef31ba5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:20.87Z","sequence":38117,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF4E52900269D99]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"41dc1d401b2d03ef","parentId":"fd886a8a28044f14","traceId":"0000000000000000975971bb8ef31ba5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:20.999Z","sequence":38118,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191365]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b2a16c11fda87c34","parentId":"7e98ed0e501b144d","traceId":"0000000000000000f1029ef31f161bd5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:21.018Z","sequence":38119,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191365]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b2a16c11fda87c34","parentId":"7e98ed0e501b144d","traceId":"0000000000000000f1029ef31f161bd5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:21.07Z","sequence":38120,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:21.07Z","sequence":38121,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000826] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:21.075Z","sequence":38122,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:21.075Z","sequence":38123,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:21.08Z","sequence":38124,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-108d0d57-6a19-4159-9ba3-4a959df5d0f8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:21.476Z","sequence":38125,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 8DE99EEF341E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"950edb6df7aedfd3","parentId":"e145721bf3e3183a","traceId":"00000000000000000d4423d3b17250e7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:21.495Z","sequence":38126,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 8DE99EEF341E, resource-version: 1ccbc588-eb1c-4263-b3c5-1d934250428d]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"950edb6df7aedfd3","parentId":"e145721bf3e3183a","traceId":"00000000000000000d4423d3b17250e7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:21.505Z","sequence":38127,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 8DE99EEF341E, resource-version: 11a38166-7c82-46d6-9233-e4d1112112ad]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"950edb6df7aedfd3","parentId":"e145721bf3e3183a","traceId":"00000000000000000d4423d3b17250e7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:21.508Z","sequence":38128,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 8DE99EEF341E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4a6fead1e32e3fc3","parentId":"373ec2d4febff5ef","traceId":"00000000000000000d4423d3b17250e7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:21.647Z","sequence":38129,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 8DE99EEF341E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4a6fead1e32e3fc3","parentId":"373ec2d4febff5ef","traceId":"00000000000000000d4423d3b17250e7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:22.194Z","sequence":38130,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFEBC9F37B0F9FB]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bebf43d79c302881","parentId":"45ea06bf27122359","traceId":"00000000000000007bf866e76ef38f58","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:22.212Z","sequence":38131,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFEBC9F37B0F9FB, resource-version: 3061bf81-3ee9-4133-8c41-41f09b8cd004]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bebf43d79c302881","parentId":"45ea06bf27122359","traceId":"00000000000000007bf866e76ef38f58","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:22.219Z","sequence":38132,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFEBC9F37B0F9FB, resource-version: 44b054cd-afe2-4c22-a846-bda4f77dfa7d]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bebf43d79c302881","parentId":"45ea06bf27122359","traceId":"00000000000000007bf866e76ef38f58","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:23.278Z","sequence":38133,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:23.278Z","sequence":38134,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:23.282Z","sequence":38135,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-34dbf54e-2cb6-404c-a725-35a55809a6aa, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:23.286Z","sequence":38136,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:23.286Z","sequence":38137,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-8DE99EEF341E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:23.302Z","sequence":38138,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-6b04d103-461d-49bb-8497-99b9227e123a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:23.427Z","sequence":38139,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:23.427Z","sequence":38140,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 8DE99EEF341E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:23.434Z","sequence":38141,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-93db756f-0bef-4a6c-8e1d-6fd36c6043e1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:23.438Z","sequence":38142,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:23.438Z","sequence":38143,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFEBC9F37B0F9FB] for gateway [8DE99EEF341E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:23.443Z","sequence":38144,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:23.443Z","sequence":38145,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:23.623Z","sequence":38146,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-70dde836-5593-43ad-84ed-ced58280956b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:32.499Z","sequence":38147,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:32.5Z","sequence":38148,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: rigstar]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:32.503Z","sequence":38149,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-f0626bf0-8368-4d30-92f5-57648a8e38f4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:32.505Z","sequence":38150,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/rigstar:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:32.505Z","sequence":38151,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: rigstar, type: hashed-password, auth-id: auth-gateway_rigstar_network_38]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:32.551Z","sequence":38152,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-ba869128-b7b9-4af6-bad8-ef4daafe6b55, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:32.669Z","sequence":38153,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/rigstar:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:32.669Z","sequence":38154,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: rigstar, device-id: 70B3D57BB100094E] for gateway [gateway_rigstar_network_38]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:32.669Z","sequence":38155,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/rigstar:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:32.669Z","sequence":38156,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: rigstar, device-id: gateway_rigstar_network_38]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:32.675Z","sequence":38157,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1ac884f1-9982-4629-8bfe-9994c99fb616, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:32.687Z","sequence":38158,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_rigstar\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:32.688Z","sequence":38159,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_rigstar\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:32.691Z","sequence":38160,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-873eb6cf-c988-46a6-a377-6dfda694892d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:34.549Z","sequence":38161,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:34.549Z","sequence":38162,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000899] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:34.566Z","sequence":38163,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:34.566Z","sequence":38164,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:34.598Z","sequence":38165,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-525f2893-681f-4035-8e6d-ffa9a3d55a4e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:35.543Z","sequence":38166,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:35.543Z","sequence":38167,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A1B] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:35.597Z","sequence":38168,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:35.597Z","sequence":38169,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:35.645Z","sequence":38170,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d9cb52b6-50b4-46c2-a950-fa0e9d12f730, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:36.214Z","sequence":38171,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:36.214Z","sequence":38172,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000179] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:36.221Z","sequence":38173,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:36.222Z","sequence":38174,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:36.225Z","sequence":38175,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b66efa7a-6dc3-4ae4-aba5-8f47ca482e22, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:36.258Z","sequence":38176,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:36.259Z","sequence":38177,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000179] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:36.265Z","sequence":38178,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:36.265Z","sequence":38179,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:36.268Z","sequence":38180,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2d58e658-4f0b-4530-9ed5-5ba85f1db3e1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:37.358Z","sequence":38181,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFEBC9F37B0F9FB]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8e70fa8a96839b82","parentId":"dd2b885d0c906a32","traceId":"0000000000000000b44929969d8ae7b3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:37.4Z","sequence":38182,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFEBC9F37B0F9FB]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8e70fa8a96839b82","parentId":"dd2b885d0c906a32","traceId":"0000000000000000b44929969d8ae7b3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:37.688Z","sequence":38183,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 8DE99EEF341E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"526e2b7bce5f3cdf","parentId":"b9a3fef78944d0d1","traceId":"000000000000000035ac43499c6425e1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:37.742Z","sequence":38184,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 8DE99EEF341E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"526e2b7bce5f3cdf","parentId":"b9a3fef78944d0d1","traceId":"000000000000000035ac43499c6425e1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:38.166Z","sequence":38185,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:38.166Z","sequence":38186,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001929] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:38.172Z","sequence":38187,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:38.172Z","sequence":38188,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:38.178Z","sequence":38189,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-dd961884-3a7f-4077-84ca-069384f76611, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:39.473Z","sequence":38190,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:39.473Z","sequence":38191,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A2F] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:39.48Z","sequence":38192,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:39.48Z","sequence":38193,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:39.486Z","sequence":38194,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0e7d811c-aef0-4aed-b827-6193969e4f3d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:44.034Z","sequence":38195,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:44.034Z","sequence":38196,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006CF] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:44.045Z","sequence":38197,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:44.045Z","sequence":38198,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:44.052Z","sequence":38199,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-37f8e00c-a259-4559-b0db-6c85ae6f7642, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:45.984Z","sequence":38200,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:45.984Z","sequence":38201,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: dow]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:45.987Z","sequence":38202,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-6ce09a14-b2f2-49c9-97c0-c0f45a393633, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:45.99Z","sequence":38203,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/dow:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:45.99Z","sequence":38204,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: dow, type: hashed-password, auth-id: auth-gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:46.001Z","sequence":38205,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-9b54b95d-7b23-4260-90af-884cad15a159, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:46.344Z","sequence":38206,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/conditionall:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:46.344Z","sequence":38207,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: conditionall, device-id: 0008004B512D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:46.349Z","sequence":38208,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4b5117b7-5de4-4678-b102-f1d66f14774f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:46.353Z","sequence":38209,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:46.353Z","sequence":38210,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: conditionall]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:46.36Z","sequence":38211,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-675c5c1f-dc63-4f29-9ad9-657c0c7b2096, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:46.419Z","sequence":38212,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:46.419Z","sequence":38213,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 70B3D57BB1001282] for gateway [gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:46.428Z","sequence":38214,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:46.428Z","sequence":38215,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:46.432Z","sequence":38216,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-91c25b59-7c10-43a7-90cf-22e4def901ba, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:52.446Z","sequence":38217,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:52.446Z","sequence":38218,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB100084F] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:52.453Z","sequence":38219,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:52.453Z","sequence":38220,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:52.457Z","sequence":38221,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-86574b64-830f-4fbf-a65f-87321fd86298, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:56.257Z","sequence":38222,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:56.257Z","sequence":38223,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:56.262Z","sequence":38224,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f89765a7-21fb-4891-8ac0-61466213d6fa, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:56.265Z","sequence":38225,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:56.265Z","sequence":38226,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oci]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:56.269Z","sequence":38227,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-e04de818-d500-4720-9d47-43bfd073af3d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:56.834Z","sequence":38228,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:56.835Z","sequence":38229,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B94] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:56.841Z","sequence":38230,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:56.841Z","sequence":38231,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:56.849Z","sequence":38232,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-df7fc8ae-60f4-462f-8dd0-b95f3d76ec4d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:57.557Z","sequence":38233,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:57.557Z","sequence":38234,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A62] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:57.564Z","sequence":38235,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:57.564Z","sequence":38236,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:57.571Z","sequence":38237,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-548c8fc4-2af4-4b36-a90a-cdf7cc7f2eea, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:57.765Z","sequence":38238,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:57.765Z","sequence":38239,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A57] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:57.771Z","sequence":38240,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:57.771Z","sequence":38241,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:57.781Z","sequence":38242,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0d0bff71-4ac3-4258-a50b-6f700e8b0067, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:57.901Z","sequence":38243,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:57.901Z","sequence":38244,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A26] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:57.907Z","sequence":38245,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:57.907Z","sequence":38246,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:40:57.913Z","sequence":38247,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4d537ae7-2042-44af-830d-489dfa8c4218, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:41:00.935Z","sequence":38248,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:41:00.935Z","sequence":38249,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A28] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:41:00.947Z","sequence":38250,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:41:00.948Z","sequence":38251,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:41:00.958Z","sequence":38252,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d64c0e22-eb75-4ef2-b1fa-5b8ef5c2cd5d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:41:01.117Z","sequence":38253,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:41:01.117Z","sequence":38254,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A1A] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:41:01.123Z","sequence":38255,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:41:01.124Z","sequence":38256,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:41:01.13Z","sequence":38257,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f3645a2a-bdcc-4802-9aff-e9db7aca8284, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:41:01.825Z","sequence":38258,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:41:01.825Z","sequence":38259,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C1B] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:41:01.84Z","sequence":38260,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:41:01.84Z","sequence":38261,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:41:01.861Z","sequence":38262,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3c53d486-4d74-477a-a62a-5afa4d1ef71f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:41:03.076Z","sequence":38263,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:41:03.076Z","sequence":38264,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BF8] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:41:03.086Z","sequence":38265,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:41:03.086Z","sequence":38266,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:41:03.092Z","sequence":38267,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-29e65e8a-b993-460a-a6fa-a0316a185cab, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:41:03.693Z","sequence":38268,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:41:03.693Z","sequence":38269,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A8F] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:41:03.723Z","sequence":38270,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:41:03.723Z","sequence":38271,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:41:03.742Z","sequence":38272,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-040390c4-4c4f-4eea-903c-d92a0a4e6c39, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:41:03.833Z","sequence":38273,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:41:03.833Z","sequence":38274,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A22] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:41:03.848Z","sequence":38275,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:41:03.848Z","sequence":38276,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:41:03.854Z","sequence":38277,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7b56bc58-c2a9-44dd-970a-7f9c1502131d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:41:07.601Z","sequence":38278,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:41:07.601Z","sequence":38279,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000695] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:41:07.611Z","sequence":38280,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:41:07.611Z","sequence":38281,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:41:07.618Z","sequence":38282,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5b471b0f-e0bc-400a-af42-2d0debd7007b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:41:17.633Z","sequence":38283,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:41:17.633Z","sequence":38284,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C08] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:41:17.654Z","sequence":38285,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:41:17.654Z","sequence":38286,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:41:17.665Z","sequence":38287,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-22a336a2-cd02-4e1c-a1b0-70dcb7e0cd26, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:41:23.562Z","sequence":38288,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:41:23.562Z","sequence":38289,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BB84C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:41:23.57Z","sequence":38290,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7cf07c0f-3e91-4187-95ca-6c4830642a16, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:41:23.573Z","sequence":38291,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:41:23.574Z","sequence":38292,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: lanxess]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:41:23.576Z","sequence":38293,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-bab5b685-40c9-4c1f-aa1b-00c49f9c1c1c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:41:24.192Z","sequence":38294,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:41:24.192Z","sequence":38295,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A60] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:41:24.198Z","sequence":38296,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:41:24.198Z","sequence":38297,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:41:24.204Z","sequence":38298,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4760f449-8617-4ca4-81fe-973926b623f4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:41:24.739Z","sequence":38299,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:41:24.74Z","sequence":38300,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 0008004B5135]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:41:24.747Z","sequence":38301,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-fe3cbec2-6da6-45e6-a781-6bffa39419e1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:41:24.752Z","sequence":38302,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:41:24.752Z","sequence":38303,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: ineos]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:41:24.755Z","sequence":38304,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-78c5391a-9697-45ca-9780-930e34870c65, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:41:25.675Z","sequence":38305,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/terega:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:41:25.675Z","sequence":38306,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: terega, device-id: 39383837002C0033] for gateway [gateway_terega_network_27]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:41:25.681Z","sequence":38307,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_terega\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:41:25.681Z","sequence":38308,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_terega\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:41:25.683Z","sequence":38309,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-da188776-82c7-4d08-a4cd-c3e4e06c97a5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:41:28.678Z","sequence":38310,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:41:28.678Z","sequence":38311,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BBD1B]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:41:28.684Z","sequence":38312,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1660dc42-eb45-4a62-a5d7-0ce9eee792de, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:41:33.894Z","sequence":38313,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:41:33.894Z","sequence":38314,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A23] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:41:33.899Z","sequence":38315,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:41:33.899Z","sequence":38316,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:41:33.907Z","sequence":38317,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-483487b0-9e85-48a0-88c1-e1770804284a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:41:36.281Z","sequence":38318,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/arkema:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:41:36.281Z","sequence":38319,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: arkema, device-id: 0008004AE119]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:41:36.286Z","sequence":38320,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f22270e3-05a8-4ef7-9f18-75c3f2ad421c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:41:36.29Z","sequence":38321,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:41:36.29Z","sequence":38322,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: arkema]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:41:36.292Z","sequence":38323,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-594a9e93-7216-498b-b2e2-1c6b96427a48, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:41:40.177Z","sequence":38324,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:41:40.177Z","sequence":38325,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB100081C] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:41:40.184Z","sequence":38326,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:41:40.184Z","sequence":38327,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:41:40.189Z","sequence":38328,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-02b5a337-3f5a-4cc0-86fc-82c129aaf092, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:41:45.939Z","sequence":38329,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:41:45.94Z","sequence":38330,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A6B] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:41:45.956Z","sequence":38331,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:41:45.956Z","sequence":38332,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:41:45.965Z","sequence":38333,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-363b730f-0604-4848-b25c-684245aee0f6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:41:49.668Z","sequence":38334,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:41:49.668Z","sequence":38335,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B5B] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:41:49.673Z","sequence":38336,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:41:49.673Z","sequence":38337,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:41:49.68Z","sequence":38338,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-237d0458-128d-457a-b102-4e0eb39e79d4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:41:57.779Z","sequence":38339,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:41:57.779Z","sequence":38340,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A83] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:41:57.785Z","sequence":38341,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:41:57.785Z","sequence":38342,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:41:57.793Z","sequence":38343,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f82629ae-3099-453e-92c2-17b197baaf2f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:41:58.001Z","sequence":38344,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:41:58.001Z","sequence":38345,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A5C] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:41:58.02Z","sequence":38346,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:41:58.02Z","sequence":38347,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:41:58.037Z","sequence":38348,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c1db88f3-89b3-4e82-bb24-191596566ffa, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:03.494Z","sequence":38349,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:03.494Z","sequence":38350,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10007F7] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:03.495Z","sequence":38351,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:03.5Z","sequence":38352,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:03.517Z","sequence":38353,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:03.517Z","sequence":38354,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:03.517Z","sequence":38355,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b698fc8d-98da-4fcc-ac50-c3b8bde9198d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:03.526Z","sequence":38356,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ed22f8c0-6c48-4cda-9675-18cf80b55c49, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:04.371Z","sequence":38357,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:04.372Z","sequence":38358,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C00] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:04.385Z","sequence":38359,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:04.386Z","sequence":38360,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:04.401Z","sequence":38361,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-67a5f4e3-e07a-4878-8581-ea1471c4ebfa, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:04.457Z","sequence":38362,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191367]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"268fbb23516f7547","parentId":"c299b76de8d1efa8","traceId":"000000000000000085410394d8b73b40","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:04.512Z","sequence":38363,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191367, resource-version: 57d19c86-72c0-493d-805c-e16295dc75cd]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"268fbb23516f7547","parentId":"c299b76de8d1efa8","traceId":"000000000000000085410394d8b73b40","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:04.524Z","sequence":38364,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191367, resource-version: 88b6f849-08b2-42f4-81b6-8c2e8cd42e6c]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"268fbb23516f7547","parentId":"c299b76de8d1efa8","traceId":"000000000000000085410394d8b73b40","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:04.536Z","sequence":38365,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191367]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6a4f3fdd3ceb04e9","parentId":"5a15d925a719e245","traceId":"000000000000000085410394d8b73b40","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:04.937Z","sequence":38366,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191367]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6a4f3fdd3ceb04e9","parentId":"5a15d925a719e245","traceId":"000000000000000085410394d8b73b40","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:06.08Z","sequence":38367,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF1E1264E4D4869]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"247da4fecb15d840","parentId":"850c0560b21511f3","traceId":"000000000000000083348f2510540180","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:06.096Z","sequence":38368,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF1E1264E4D4869, resource-version: b4db6d19-9c0b-48e6-9a11-db98aec8bc33]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"247da4fecb15d840","parentId":"850c0560b21511f3","traceId":"000000000000000083348f2510540180","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:06.105Z","sequence":38369,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF1E1264E4D4869, resource-version: 8f30f522-e513-4387-bda9-a46151e3fad8]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"247da4fecb15d840","parentId":"850c0560b21511f3","traceId":"000000000000000083348f2510540180","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:06.59Z","sequence":38370,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:06.59Z","sequence":38371,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10013F8] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:06.596Z","sequence":38372,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:06.597Z","sequence":38373,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:06.603Z","sequence":38374,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e8ede89f-8bac-4a4f-b38b-5b46c647a94f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:07.312Z","sequence":38375,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:07.312Z","sequence":38376,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191367]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:07.322Z","sequence":38377,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-474e2022-a751-4f59-ac9c-74ce0482586b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:07.457Z","sequence":38378,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:07.458Z","sequence":38379,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF1E1264E4D4869] for gateway [gateway_integrationtest_network_191367]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:07.46Z","sequence":38380,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:07.46Z","sequence":38381,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191367]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:07.479Z","sequence":38382,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:07.479Z","sequence":38383,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:07.48Z","sequence":38384,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-58e51a1f-fb62-477b-9bb6-3274e447eb67, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:07.885Z","sequence":38385,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8b72025d-c2a0-4ce3-b978-471417a6eb38, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:18.316Z","sequence":38386,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF1E1264E4D4869]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"16048c1b3a2af2c1","parentId":"2f5cb209600f3e6e","traceId":"0000000000000000c67075c256e75e4e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:18.342Z","sequence":38387,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF1E1264E4D4869]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"16048c1b3a2af2c1","parentId":"2f5cb209600f3e6e","traceId":"0000000000000000c67075c256e75e4e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:18.773Z","sequence":38388,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191367]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"caf470fa38b272b7","parentId":"4c09dd47a501b4d1","traceId":"00000000000000006103bc142cbea3e9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:18.792Z","sequence":38389,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191367]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"caf470fa38b272b7","parentId":"4c09dd47a501b4d1","traceId":"00000000000000006103bc142cbea3e9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:18.974Z","sequence":38390,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:18.974Z","sequence":38391,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:18.979Z","sequence":38392,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-af806257-df34-46c1-aec4-dfdc1b6b208d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:19.587Z","sequence":38393,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 60FDFE7415AF]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"32d533e9f944a528","parentId":"794633f29a92ee61","traceId":"0000000000000000693e18083802d41d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:19.613Z","sequence":38394,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 60FDFE7415AF, resource-version: 1f705cc2-0fa7-4f80-a44d-fedcb5b57c2d]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"32d533e9f944a528","parentId":"794633f29a92ee61","traceId":"0000000000000000693e18083802d41d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:19.624Z","sequence":38395,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 60FDFE7415AF, resource-version: 7cd7858b-19d9-4531-9cdf-ad5d4f543bb1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"32d533e9f944a528","parentId":"794633f29a92ee61","traceId":"0000000000000000693e18083802d41d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:19.627Z","sequence":38396,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 60FDFE7415AF]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"398ee54d8a4d900c","parentId":"2e676f05d54f7fcc","traceId":"0000000000000000693e18083802d41d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:19.85Z","sequence":38397,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 60FDFE7415AF]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"398ee54d8a4d900c","parentId":"2e676f05d54f7fcc","traceId":"0000000000000000693e18083802d41d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:20.524Z","sequence":38398,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFD006924F0FFB7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6322611f078ad29a","parentId":"39781d95f058c810","traceId":"00000000000000006daad0fa671eba54","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:20.539Z","sequence":38399,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFD006924F0FFB7, resource-version: 8cd3dd65-0114-44de-aa71-55a9c37adc48]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6322611f078ad29a","parentId":"39781d95f058c810","traceId":"00000000000000006daad0fa671eba54","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:20.545Z","sequence":38400,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFD006924F0FFB7, resource-version: 397a4029-b25d-4507-a214-e4117b2897b6]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6322611f078ad29a","parentId":"39781d95f058c810","traceId":"00000000000000006daad0fa671eba54","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:21.595Z","sequence":38401,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:21.596Z","sequence":38402,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-60FDFE7415AF]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:21.615Z","sequence":38403,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-43832b73-04d3-4118-a2e4-55eced30f187, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:21.734Z","sequence":38404,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:21.735Z","sequence":38405,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 60FDFE7415AF]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:21.74Z","sequence":38406,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b2c4a0e6-10be-4535-aaa9-580130625c26, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:21.745Z","sequence":38407,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:21.746Z","sequence":38408,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD006924F0FFB7] for gateway [60FDFE7415AF]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:21.751Z","sequence":38409,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:21.751Z","sequence":38410,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:22.066Z","sequence":38411,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f1e35e0a-e210-4eca-90e3-2c9f38ca394b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:29.991Z","sequence":38412,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:29.992Z","sequence":38413,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000173] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:29.998Z","sequence":38414,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:29.998Z","sequence":38415,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:30.004Z","sequence":38416,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8491f231-9a0b-4e92-9212-7f775f8a5d3e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:30.587Z","sequence":38417,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/conditionall:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:30.587Z","sequence":38418,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: conditionall, device-id: 70B3D57BB1000211] for gateway [0008004B512D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:30.592Z","sequence":38419,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_conditionall\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:30.592Z","sequence":38420,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_conditionall\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:30.595Z","sequence":38421,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4db89cf2-5c32-4213-bb7a-777c5b6b3109, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:30.709Z","sequence":38422,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:30.709Z","sequence":38423,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000173] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:30.716Z","sequence":38424,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:30.716Z","sequence":38425,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:30.719Z","sequence":38426,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f86e0238-1c6b-4ccf-a03e-43e39152420b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:31.328Z","sequence":38427,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFD006924F0FFB7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b90c05600be73178","parentId":"13ff1c17d7cd98c2","traceId":"000000000000000041d31f9a08830a0d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:31.349Z","sequence":38428,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFD006924F0FFB7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b90c05600be73178","parentId":"13ff1c17d7cd98c2","traceId":"000000000000000041d31f9a08830a0d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:31.682Z","sequence":38429,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 60FDFE7415AF]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d005310a5c38fad1","parentId":"a57fd8e58a086dbb","traceId":"000000000000000021022b61bea0f30c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:31.699Z","sequence":38430,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 60FDFE7415AF]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d005310a5c38fad1","parentId":"a57fd8e58a086dbb","traceId":"000000000000000021022b61bea0f30c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:32.544Z","sequence":38431,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:32.544Z","sequence":38432,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: shell]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:32.547Z","sequence":38433,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-d6dd0867-8399-4d48-82bd-8d3d2d264bbb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:32.549Z","sequence":38434,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/shell:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:32.549Z","sequence":38435,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: shell, type: hashed-password, auth-id: auth-gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:32.559Z","sequence":38436,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-c1a26eb4-c2a6-4d81-859b-13c1c094e5df, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:32.683Z","sequence":38437,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:32.683Z","sequence":38438,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10018FD] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:32.688Z","sequence":38439,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:32.688Z","sequence":38440,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:32.695Z","sequence":38441,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8c33f165-4259-4785-a38f-826712bfa8e3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:34.574Z","sequence":38442,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:34.574Z","sequence":38443,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BF6] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:34.579Z","sequence":38444,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:34.579Z","sequence":38445,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:34.587Z","sequence":38446,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1c22d5b8-744f-4f95-854b-b24ac0f592c0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:41.588Z","sequence":38447,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:41.588Z","sequence":38448,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000154] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:41.595Z","sequence":38449,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:41.595Z","sequence":38450,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:41.598Z","sequence":38451,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d7edd7bb-8561-4c70-9fd6-6541a562e00b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:41.644Z","sequence":38452,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:41.644Z","sequence":38453,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000154] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:41.649Z","sequence":38454,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:41.649Z","sequence":38455,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:41.652Z","sequence":38456,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f9746dc4-a1ff-4e53-af1c-91e1acb39395, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:46.437Z","sequence":38457,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:46.437Z","sequence":38458,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000683] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:46.443Z","sequence":38459,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:46.443Z","sequence":38460,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:46.451Z","sequence":38461,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f9bc216f-450b-457f-bdd0-c1dd3c07fbd5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:49.146Z","sequence":38462,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:49.146Z","sequence":38463,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 0008004C80F4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:49.165Z","sequence":38464,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-26462b72-1c84-4794-9512-9c4b3c4bca45, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:49.543Z","sequence":38465,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:49.543Z","sequence":38466,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BBD1C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:49.548Z","sequence":38467,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2ef40bb8-5bd9-4749-8309-784e5d69265f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:54.003Z","sequence":38468,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:54.003Z","sequence":38469,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A51] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:54.004Z","sequence":38470,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:54.004Z","sequence":38471,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:54.009Z","sequence":38472,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:54.009Z","sequence":38473,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:54.01Z","sequence":38474,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1a58d586-542e-47cd-8601-d8b4bbdb621e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:54.016Z","sequence":38475,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1554da59-5c0c-4360-a324-5720840ef65b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:56.003Z","sequence":38476,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:56.003Z","sequence":38477,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10004F9] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:56.011Z","sequence":38478,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:56.011Z","sequence":38479,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:56.018Z","sequence":38480,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-123ee266-3b5d-4d78-91bd-bd13cfc97563, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:57.583Z","sequence":38481,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:57.583Z","sequence":38482,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 70B3D57BB100126F] for gateway [gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:57.584Z","sequence":38483,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:57.584Z","sequence":38484,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:57.596Z","sequence":38485,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9f7aacde-cd6c-4876-b704-3de07df2a640, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:57.596Z","sequence":38486,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:57.596Z","sequence":38487,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:42:57.601Z","sequence":38488,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-907480bc-55a3-4c22-ae1b-6478e45d351e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:43:02.362Z","sequence":38489,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:43:02.362Z","sequence":38490,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:43:02.369Z","sequence":38491,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b39bfe79-7177-4ac4-b551-6c8f8262b976, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:43:06.056Z","sequence":38492,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oiltanking:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:43:06.056Z","sequence":38493,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oiltanking, device-id: 0008004BB60F]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:43:06.064Z","sequence":38494,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5875e672-902f-4053-9dd6-0c5fd35aff1a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:43:06.068Z","sequence":38495,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:43:06.068Z","sequence":38496,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oiltanking]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:43:06.071Z","sequence":38497,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-bdd49a43-1b0e-4fbe-9236-3aa585fc8823, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:43:12.174Z","sequence":38498,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:43:12.174Z","sequence":38499,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100021A] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:43:12.184Z","sequence":38500,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:0.4.1\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:43:12.184Z","sequence":38501,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:43:12.193Z","sequence":38502,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4baee193-5a14-43fc-b23f-f03942dc07fe, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:43:13.226Z","sequence":38503,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:43:13.226Z","sequence":38504,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BA7] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:43:13.231Z","sequence":38505,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:43:13.232Z","sequence":38506,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:43:13.237Z","sequence":38507,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a9ddf6b2-5c2a-4ee0-b579-f6eb36ddfcac, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:43:18.733Z","sequence":38508,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:43:18.733Z","sequence":38509,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BC6] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:43:18.739Z","sequence":38510,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:43:18.739Z","sequence":38511,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:43:18.747Z","sequence":38512,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e80b7e5e-8ed9-4418-8f10-88e46e2688bc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:43:20.518Z","sequence":38513,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:43:20.518Z","sequence":38514,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100067C] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:43:20.535Z","sequence":38515,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:43:20.536Z","sequence":38516,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:43:20.542Z","sequence":38517,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-23458eff-fb6d-40a7-8bd9-b8c56bd5a3de, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:43:21.28Z","sequence":38518,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:43:21.28Z","sequence":38519,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: acta]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:43:21.283Z","sequence":38520,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-acaf0396-24c7-4df7-866d-a8395e915d98, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:43:21.286Z","sequence":38521,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/acta:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:43:21.286Z","sequence":38522,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: acta, device-id: 353438340047002F] for gateway [0008004AAAA3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:43:21.292Z","sequence":38523,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.3.0\"\n },\n \"viaGroups\" : [ \"gateways_acta\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:43:21.292Z","sequence":38524,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_acta\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:43:21.295Z","sequence":38525,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-581285ab-f80b-476b-b1c9-1799062b6caa, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:43:21.599Z","sequence":38526,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:43:21.599Z","sequence":38527,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C0C] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:43:21.607Z","sequence":38528,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:43:21.607Z","sequence":38529,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:43:21.612Z","sequence":38530,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5ce03775-1bd1-45bf-9642-a113042c3641, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:43:29.394Z","sequence":38531,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:43:29.394Z","sequence":38532,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B5C] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:43:29.4Z","sequence":38533,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:43:29.4Z","sequence":38534,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:43:29.407Z","sequence":38535,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-fa301f57-ebf3-496a-a474-1f8de29bdc65, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:43:33.047Z","sequence":38536,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:43:33.047Z","sequence":38537,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C03] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:43:33.053Z","sequence":38538,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:43:33.053Z","sequence":38539,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:43:33.06Z","sequence":38540,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f4b49f9a-adde-4a87-9044-147d42788733, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:43:37.641Z","sequence":38541,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/aloxy:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:43:37.641Z","sequence":38542,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: aloxy, device-id: 0008004A8F68]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:43:37.647Z","sequence":38543,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-fbe1e286-d713-4e1b-a569-fed55c591d69, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:43:37.65Z","sequence":38544,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:43:37.651Z","sequence":38545,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: aloxy]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:43:37.653Z","sequence":38546,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-604d6acd-55fe-4e15-924a-c01ea2638073, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:43:57.532Z","sequence":38547,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:43:57.532Z","sequence":38548,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BB613]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:43:57.544Z","sequence":38549,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3857825c-d053-412d-a8cd-801c731b0a63, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:01.844Z","sequence":38550,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:01.844Z","sequence":38551,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 70B3D57BB10001A5] for gateway [0008004BB84C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:01.856Z","sequence":38552,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:0.4.1\"\n },\n \"viaGroups\" : [ \"gateways_lanxess\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:01.856Z","sequence":38553,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_lanxess\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:01.86Z","sequence":38554,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-25b7935d-45a2-483e-b379-7df96eb9eca0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:04.265Z","sequence":38555,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191369]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"eb6c4a025c0c7742","parentId":"d0dbf37a9e6d4eaf","traceId":"0000000000000000576c3ae5048973eb","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:04.284Z","sequence":38556,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191369, resource-version: ea42848b-b0f9-4f32-b038-ae67b901efce]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"eb6c4a025c0c7742","parentId":"d0dbf37a9e6d4eaf","traceId":"0000000000000000576c3ae5048973eb","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:04.292Z","sequence":38557,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191369, resource-version: 7b32f01f-acf9-48a9-8ba6-037e8847be70]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"eb6c4a025c0c7742","parentId":"d0dbf37a9e6d4eaf","traceId":"0000000000000000576c3ae5048973eb","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:04.297Z","sequence":38558,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191369]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"19f38751a0098cb7","parentId":"98f6f0771f8cb852","traceId":"0000000000000000576c3ae5048973eb","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:04.458Z","sequence":38559,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191369]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"19f38751a0098cb7","parentId":"98f6f0771f8cb852","traceId":"0000000000000000576c3ae5048973eb","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:05.536Z","sequence":38560,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFEEE71CA5429A7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6d41198c933fa623","parentId":"fa1ad1c074430d60","traceId":"0000000000000000afe620f863fa2cbf","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:05.555Z","sequence":38561,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFEEE71CA5429A7, resource-version: 4d3ba27e-9e9c-4630-a19d-36221d42c869]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6d41198c933fa623","parentId":"fa1ad1c074430d60","traceId":"0000000000000000afe620f863fa2cbf","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:05.562Z","sequence":38562,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFEEE71CA5429A7, resource-version: 0f2d0d1e-7518-4dbb-af2c-c07cb0ffded8]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6d41198c933fa623","parentId":"fa1ad1c074430d60","traceId":"0000000000000000afe620f863fa2cbf","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:05.868Z","sequence":38563,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:05.868Z","sequence":38564,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AC7] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:05.878Z","sequence":38565,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:05.878Z","sequence":38566,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:05.888Z","sequence":38567,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-fee135ad-3ac1-4d55-9952-5c541185d543, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:06.649Z","sequence":38568,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:06.649Z","sequence":38569,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:06.666Z","sequence":38570,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-cf5868aa-e111-4e3d-bfb4-3e3ff384a3df, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:06.672Z","sequence":38571,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:06.673Z","sequence":38572,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191369]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:06.691Z","sequence":38573,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-3567cd91-b643-4e5d-ba33-5e2b6ceb438c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:06.81Z","sequence":38574,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:06.811Z","sequence":38575,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFEEE71CA5429A7] for gateway [gateway_integrationtest_network_191369]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:06.812Z","sequence":38576,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:06.812Z","sequence":38577,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191369]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:06.816Z","sequence":38578,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:06.816Z","sequence":38579,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:06.817Z","sequence":38580,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-46133759-4fba-4f6f-8d13-634a05b723f9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:07.193Z","sequence":38581,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8d4d04cb-caf3-42a7-b92c-95f470fa3cfb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:12.172Z","sequence":38582,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:12.173Z","sequence":38583,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BF5] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:12.178Z","sequence":38584,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:12.179Z","sequence":38585,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:12.186Z","sequence":38586,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3ec43da6-73c7-4434-ab76-86648a08fdd3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:19.941Z","sequence":38587,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFEEE71CA5429A7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b8ad75936b187fb9","parentId":"9317e3f056e9ef24","traceId":"0000000000000000318053ced6a8d9a2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:19.962Z","sequence":38588,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFEEE71CA5429A7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b8ad75936b187fb9","parentId":"9317e3f056e9ef24","traceId":"0000000000000000318053ced6a8d9a2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:20.419Z","sequence":38589,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191369]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"79acd009bdb2e64b","parentId":"4dd38089f19c29a8","traceId":"0000000000000000530adc0051cb630e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:20.44Z","sequence":38590,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191369]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"79acd009bdb2e64b","parentId":"4dd38089f19c29a8","traceId":"0000000000000000530adc0051cb630e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:21.027Z","sequence":38591,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 1094A0402CBF]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"771c901d1c88b675","parentId":"29058bbe913dfb92","traceId":"00000000000000000bda4ed0171eba83","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:21.046Z","sequence":38592,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 1094A0402CBF, resource-version: 7b9efe74-5286-4a7d-8807-5ba21551b073]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"771c901d1c88b675","parentId":"29058bbe913dfb92","traceId":"00000000000000000bda4ed0171eba83","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:21.053Z","sequence":38593,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 1094A0402CBF, resource-version: db570fab-f4f2-4148-bd5f-8c4899655628]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"771c901d1c88b675","parentId":"29058bbe913dfb92","traceId":"00000000000000000bda4ed0171eba83","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:21.057Z","sequence":38594,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 1094A0402CBF]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e963a18656d76416","parentId":"05e30d3c5d51f89c","traceId":"00000000000000000bda4ed0171eba83","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:21.183Z","sequence":38595,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 1094A0402CBF]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e963a18656d76416","parentId":"05e30d3c5d51f89c","traceId":"00000000000000000bda4ed0171eba83","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:21.775Z","sequence":38596,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF3F03A7991ED6B]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bf3c1a0718ae1afa","parentId":"ef1d5622f725027d","traceId":"000000000000000096daf2b0183d579e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:21.792Z","sequence":38597,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF3F03A7991ED6B, resource-version: bc4fa369-d1de-4cf8-9de0-e47691d9141c]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bf3c1a0718ae1afa","parentId":"ef1d5622f725027d","traceId":"000000000000000096daf2b0183d579e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:21.8Z","sequence":38598,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF3F03A7991ED6B, resource-version: 77782994-b772-4578-8302-d5f4fab6daf4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bf3c1a0718ae1afa","parentId":"ef1d5622f725027d","traceId":"000000000000000096daf2b0183d579e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:22.846Z","sequence":38599,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:22.846Z","sequence":38600,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:22.849Z","sequence":38601,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-3fdded00-0f22-4a04-9169-32e0a4e013cd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:22.853Z","sequence":38602,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:22.853Z","sequence":38603,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-1094A0402CBF]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:22.862Z","sequence":38604,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-36f63119-95ac-4286-81e2-e8127b8c84ad, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:22.989Z","sequence":38605,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:22.989Z","sequence":38606,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 1094A0402CBF]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:22.995Z","sequence":38607,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8244afd8-6308-4a59-82a7-0a985c5d95e4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:22.999Z","sequence":38608,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:22.999Z","sequence":38609,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF3F03A7991ED6B] for gateway [1094A0402CBF]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:23.009Z","sequence":38610,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:23.009Z","sequence":38611,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:23.191Z","sequence":38612,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a8aa9370-f290-40bc-8d50-840a2b161aa7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:25.667Z","sequence":38613,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:25.667Z","sequence":38614,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oci]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:25.675Z","sequence":38615,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-ea4d7f80-dee1-436f-ae18-6eba273d520e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:25.677Z","sequence":38616,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:25.677Z","sequence":38617,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001C0] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:25.683Z","sequence":38618,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:25.683Z","sequence":38619,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:25.686Z","sequence":38620,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-fb76f2a5-bd28-449d-9748-c896d392f340, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:25.712Z","sequence":38621,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:25.712Z","sequence":38622,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001C0] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:25.717Z","sequence":38623,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:25.718Z","sequence":38624,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:25.722Z","sequence":38625,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3420a475-9515-4f81-9b40-3bd00a554cdd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:31.472Z","sequence":38626,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:31.472Z","sequence":38627,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000169] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:31.478Z","sequence":38628,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:31.478Z","sequence":38629,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:31.481Z","sequence":38630,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e037d0ea-685e-4cf9-92ca-a86955b557e8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:32.014Z","sequence":38631,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:32.014Z","sequence":38632,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000169] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:32.02Z","sequence":38633,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:32.02Z","sequence":38634,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:32.023Z","sequence":38635,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4f283468-bd9d-4a10-8ec3-6d1df3ee7d60, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:32.544Z","sequence":38636,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:32.544Z","sequence":38637,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: flint]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:32.547Z","sequence":38638,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-3c95349c-5c03-4d00-92ef-b4393cba2aca, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:32.553Z","sequence":38639,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/flint:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:32.553Z","sequence":38640,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: flint, type: hashed-password, auth-id: auth-flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:32.565Z","sequence":38641,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-4887c1c4-ea4c-4d5a-8a24-054a08208e68, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:32.686Z","sequence":38642,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:32.687Z","sequence":38643,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000824] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:32.692Z","sequence":38644,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:32.692Z","sequence":38645,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:32.697Z","sequence":38646,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-06283f3d-262c-471c-a3c5-59e2a60f192f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:35.313Z","sequence":38647,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF3F03A7991ED6B]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"20830190a38e7db9","parentId":"0a1f123ba77293c7","traceId":"000000000000000002e6c76d39fa50e9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:35.333Z","sequence":38648,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF3F03A7991ED6B]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"20830190a38e7db9","parentId":"0a1f123ba77293c7","traceId":"000000000000000002e6c76d39fa50e9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:35.641Z","sequence":38649,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 1094A0402CBF]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c6ee55c2dea0128c","parentId":"87c199dd092a62ff","traceId":"00000000000000006c25468f3af3c8d5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:35.658Z","sequence":38650,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 1094A0402CBF]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c6ee55c2dea0128c","parentId":"87c199dd092a62ff","traceId":"00000000000000006c25468f3af3c8d5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:44.678Z","sequence":38651,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:44.679Z","sequence":38652,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A5B] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:44.685Z","sequence":38653,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:44.685Z","sequence":38654,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:44.696Z","sequence":38655,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5d371976-a183-478e-9434-293e48171381, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:47.412Z","sequence":38656,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/acta:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:47.412Z","sequence":38657,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: acta, device-id: 0008004AAAA3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:47.601Z","sequence":38658,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2c4978e4-0976-41e4-8522-9532eeac72e1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:49.53Z","sequence":38659,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/repsol:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:49.53Z","sequence":38660,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: repsol, device-id: 0008004A37FF]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:49.536Z","sequence":38661,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b52b3e5f-b1ed-4825-93f4-db9604d07eb2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:49.54Z","sequence":38662,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:49.54Z","sequence":38663,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: repsol]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:49.543Z","sequence":38664,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-9114c28f-4cb5-46e5-b717-6d74fbd9e4de, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:51.923Z","sequence":38665,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:51.923Z","sequence":38666,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BC2] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:51.93Z","sequence":38667,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:51.93Z","sequence":38668,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:51.937Z","sequence":38669,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a1b25ea3-e01a-480e-8811-49cd61a63b2e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:54.73Z","sequence":38670,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:54.731Z","sequence":38671,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10007FE] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:54.737Z","sequence":38672,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:54.737Z","sequence":38673,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:44:54.741Z","sequence":38674,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c7ccf600-a6dc-4906-9fb1-873ec2849b63, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:45:00.087Z","sequence":38675,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:45:00.087Z","sequence":38676,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006E0] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:45:00.093Z","sequence":38677,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:45:00.093Z","sequence":38678,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:45:00.1Z","sequence":38679,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-fb69c30d-a409-4bd6-9620-c0a67d31a496, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:45:01.138Z","sequence":38680,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:45:01.138Z","sequence":38681,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: lanxess]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:45:01.142Z","sequence":38682,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-a4282ae2-3ad0-4a93-9325-76d9fd46b95a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:45:01.144Z","sequence":38683,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:45:01.144Z","sequence":38684,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 70B3D57BB10001AE] for gateway [0008004BB84C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:45:01.149Z","sequence":38685,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:0.4.0\"\n },\n \"viaGroups\" : [ \"gateways_lanxess\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:45:01.149Z","sequence":38686,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_lanxess\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:45:01.153Z","sequence":38687,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-32233f89-b4eb-45e1-88bb-e279aa2e9a00, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:45:01.37Z","sequence":38688,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:45:01.371Z","sequence":38689,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001E8] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:45:01.381Z","sequence":38690,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:45:01.382Z","sequence":38691,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:45:01.386Z","sequence":38692,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-449a5d64-3485-4661-85e8-e97eca999eaa, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:45:01.399Z","sequence":38693,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:45:01.401Z","sequence":38694,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001E8] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:45:01.409Z","sequence":38695,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:45:01.41Z","sequence":38696,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:45:01.416Z","sequence":38697,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-140056eb-e1f1-420d-a459-0f1ec7f71766, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:45:06.064Z","sequence":38698,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:45:06.064Z","sequence":38699,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B98] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:45:06.072Z","sequence":38700,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:45:06.072Z","sequence":38701,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:45:06.08Z","sequence":38702,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0d3a86ae-53b0-4f43-9cbf-13f09b6adc5a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:45:07.172Z","sequence":38703,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:45:07.172Z","sequence":38704,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000836] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:45:07.178Z","sequence":38705,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.8.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:45:07.178Z","sequence":38706,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:45:07.182Z","sequence":38707,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e262cd8f-1aa5-4eab-affa-7d702df96c9c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:45:09.494Z","sequence":38708,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:45:09.494Z","sequence":38709,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000804] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:45:09.504Z","sequence":38710,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:45:09.504Z","sequence":38711,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:45:09.51Z","sequence":38712,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ac39d1ea-c60d-4b76-bb8f-00e89446c158, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:45:15.151Z","sequence":38713,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:45:15.151Z","sequence":38714,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 0008004B51D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:45:15.159Z","sequence":38715,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9e11fa66-fbe6-47d0-9f41-981e54b53925, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:45:15.165Z","sequence":38716,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:45:15.165Z","sequence":38717,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: dow]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:45:15.17Z","sequence":38718,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-a167715a-ffcf-4177-9fa5-3009e675ed6d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:45:20.936Z","sequence":38719,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:45:20.936Z","sequence":38720,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000579] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:45:20.941Z","sequence":38721,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:45:20.941Z","sequence":38722,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:45:20.948Z","sequence":38723,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-509250d4-c0a9-4264-bb9f-a83bbe6511dd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:45:28.07Z","sequence":38724,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:45:28.07Z","sequence":38725,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB100081B] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:45:28.076Z","sequence":38726,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:45:28.076Z","sequence":38727,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:45:28.08Z","sequence":38728,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-705b13a6-79de-4d26-9f9b-f55cec7931f4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:45:28.203Z","sequence":38729,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:45:28.203Z","sequence":38730,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10009B8] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:45:28.209Z","sequence":38731,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:45:28.209Z","sequence":38732,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:45:28.212Z","sequence":38733,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b5499d0b-3075-4346-8063-363419b0c824, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:45:43.621Z","sequence":38734,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:45:43.621Z","sequence":38735,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: shell]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:45:43.624Z","sequence":38736,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-2c998fa9-df82-452d-8aa2-8541eea0193e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:45:43.628Z","sequence":38737,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/shell:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:45:43.629Z","sequence":38738,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: shell, type: hashed-password, auth-id: auth-gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:45:43.645Z","sequence":38739,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-53db077a-49f1-414a-bde9-9dc4ef273136, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:45:43.785Z","sequence":38740,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:45:43.786Z","sequence":38741,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BA4] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:45:43.793Z","sequence":38742,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:45:43.793Z","sequence":38743,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:45:43.801Z","sequence":38744,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8c8de7a1-2096-45e3-8ac0-9a4a6a94cadb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:45:44.529Z","sequence":38745,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:45:44.53Z","sequence":38746,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B61] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:45:44.539Z","sequence":38747,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:45:44.539Z","sequence":38748,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:45:44.547Z","sequence":38749,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-da12969c-99b9-4678-b073-3d7dade7652c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:45:46.505Z","sequence":38750,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:45:46.505Z","sequence":38751,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BAC] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:45:46.51Z","sequence":38752,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:45:46.51Z","sequence":38753,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:45:46.516Z","sequence":38754,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e1357290-8674-4627-9c11-f5522b6208e6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:45:48.103Z","sequence":38755,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/conditionall:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:45:48.104Z","sequence":38756,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: conditionall, device-id: 0008004B512D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:45:48.111Z","sequence":38757,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7fd6d84c-8874-4551-88d6-0bbac1781c39, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:45:48.114Z","sequence":38758,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:45:48.115Z","sequence":38759,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: conditionall]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:45:48.117Z","sequence":38760,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-d3ea9058-b3c6-4424-ae4b-ad880a56ceaf, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:45:51.89Z","sequence":38761,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:45:51.89Z","sequence":38762,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100069D] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:45:51.896Z","sequence":38763,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:45:51.896Z","sequence":38764,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:45:51.905Z","sequence":38765,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2c6e65d0-8f3a-455e-b0b0-decb6f7dc13b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:45:56.347Z","sequence":38766,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:45:56.348Z","sequence":38767,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000684] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:45:56.353Z","sequence":38768,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:45:56.353Z","sequence":38769,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:45:56.36Z","sequence":38770,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c5e92df2-093a-4c51-8177-735a28ac6478, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:45:58.119Z","sequence":38771,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:45:58.119Z","sequence":38772,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:45:58.125Z","sequence":38773,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c8c09760-39b8-43b9-af67-e0deffa1bdde, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:03.791Z","sequence":38774,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:03.791Z","sequence":38775,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B9A] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:03.797Z","sequence":38776,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:03.797Z","sequence":38777,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:03.805Z","sequence":38778,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1d6742ed-3bcc-4093-afa4-1eb3eb3a5ab8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:04.276Z","sequence":38779,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191371]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e47f040efc781c42","parentId":"3f1219d883981663","traceId":"0000000000000000b386f0f75784ec24","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:04.296Z","sequence":38780,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191371, resource-version: fed52462-3c3c-4818-800e-2b7a1370b057]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e47f040efc781c42","parentId":"3f1219d883981663","traceId":"0000000000000000b386f0f75784ec24","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:04.305Z","sequence":38781,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191371, resource-version: 912af70c-ec42-4c7e-98d3-d290f23d9f50]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e47f040efc781c42","parentId":"3f1219d883981663","traceId":"0000000000000000b386f0f75784ec24","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:04.309Z","sequence":38782,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191371]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c379a5a603e522ac","parentId":"9e40f64c7d9eeada","traceId":"0000000000000000b386f0f75784ec24","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:04.555Z","sequence":38783,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191371]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c379a5a603e522ac","parentId":"9e40f64c7d9eeada","traceId":"0000000000000000b386f0f75784ec24","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:05.651Z","sequence":38784,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF9BAD2DEDC2837]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"397827208107b589","parentId":"6bb3ccd03d253cd8","traceId":"000000000000000074afdc1359ed8bf5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:05.669Z","sequence":38785,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF9BAD2DEDC2837, resource-version: 5b20bf0b-83fc-4d1e-80eb-e6de7a79bdc1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"397827208107b589","parentId":"6bb3ccd03d253cd8","traceId":"000000000000000074afdc1359ed8bf5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:05.678Z","sequence":38786,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF9BAD2DEDC2837, resource-version: 75f51d7d-5129-4db0-864a-3fba49c6ca97]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"397827208107b589","parentId":"6bb3ccd03d253cd8","traceId":"000000000000000074afdc1359ed8bf5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:06.772Z","sequence":38787,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:06.772Z","sequence":38788,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191371]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:06.788Z","sequence":38789,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-b0924ad6-6862-447c-8739-6cfd840cb75a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:06.924Z","sequence":38790,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:06.924Z","sequence":38791,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF9BAD2DEDC2837] for gateway [gateway_integrationtest_network_191371]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:06.925Z","sequence":38792,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:06.925Z","sequence":38793,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191371]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:06.931Z","sequence":38794,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:06.931Z","sequence":38795,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:06.932Z","sequence":38796,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-573037ec-97a1-4317-8a8d-3f4a651daa37, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:07.313Z","sequence":38797,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-dc669c65-5c6e-49fd-af7a-4bf08b1747d5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:14.037Z","sequence":38798,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/acta:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:14.037Z","sequence":38799,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: acta, device-id: 35343834001F0046] for gateway [0008004AAAA3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:14.055Z","sequence":38800,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.3.0\"\n },\n \"viaGroups\" : [ \"gateways_acta\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:14.056Z","sequence":38801,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_acta\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:14.06Z","sequence":38802,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5d6b672f-98fe-4646-ad49-69197002130e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:19.225Z","sequence":38803,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF9BAD2DEDC2837]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a7657aa5daa26fef","parentId":"f52a9b879cfda9b6","traceId":"000000000000000027b4914796a48206","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:19.243Z","sequence":38804,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF9BAD2DEDC2837]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a7657aa5daa26fef","parentId":"f52a9b879cfda9b6","traceId":"000000000000000027b4914796a48206","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:19.572Z","sequence":38805,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191371]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3bed991430466bd7","parentId":"e583681f69805b46","traceId":"0000000000000000b165f9d8471ee073","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:19.593Z","sequence":38806,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191371]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3bed991430466bd7","parentId":"e583681f69805b46","traceId":"0000000000000000b165f9d8471ee073","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:20.292Z","sequence":38807,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 1EFED956908D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5dbfd1e39967fdaf","parentId":"d84b5671054fc183","traceId":"0000000000000000af3071d1cb81e2ad","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:20.319Z","sequence":38808,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 1EFED956908D, resource-version: 62d2d0f1-cd09-4b1e-a6cc-f88b57ee231b]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5dbfd1e39967fdaf","parentId":"d84b5671054fc183","traceId":"0000000000000000af3071d1cb81e2ad","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:20.326Z","sequence":38809,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 1EFED956908D, resource-version: 80b9dd73-5588-43c9-b7af-7411e80d087b]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5dbfd1e39967fdaf","parentId":"d84b5671054fc183","traceId":"0000000000000000af3071d1cb81e2ad","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:20.33Z","sequence":38810,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 1EFED956908D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d015c063ca8a60f4","parentId":"369dfb23b6e2e88d","traceId":"0000000000000000af3071d1cb81e2ad","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:20.455Z","sequence":38811,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 1EFED956908D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d015c063ca8a60f4","parentId":"369dfb23b6e2e88d","traceId":"0000000000000000af3071d1cb81e2ad","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:21.334Z","sequence":38812,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF2759F840EE12D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c3ee9d7843e50c6e","parentId":"3a7d578c34ff35e6","traceId":"00000000000000007db08ed358187164","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:21.351Z","sequence":38813,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF2759F840EE12D, resource-version: 10338ea7-a5d1-409b-a87e-117c0249c319]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c3ee9d7843e50c6e","parentId":"3a7d578c34ff35e6","traceId":"00000000000000007db08ed358187164","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:21.36Z","sequence":38814,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF2759F840EE12D, resource-version: 7a431b08-a1eb-4300-abaa-117a2f4955ff]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c3ee9d7843e50c6e","parentId":"3a7d578c34ff35e6","traceId":"00000000000000007db08ed358187164","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:22.412Z","sequence":38815,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:22.412Z","sequence":38816,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-1EFED956908D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:22.422Z","sequence":38817,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-df6154b0-946d-41f4-a672-eaa5737f7d67, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:22.548Z","sequence":38818,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:22.548Z","sequence":38819,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 1EFED956908D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:22.553Z","sequence":38820,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4b7a93c0-74da-44cd-a975-e892b89eb09b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:22.557Z","sequence":38821,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:22.557Z","sequence":38822,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF2759F840EE12D] for gateway [1EFED956908D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:22.562Z","sequence":38823,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:22.562Z","sequence":38824,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:22.729Z","sequence":38825,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a35cebd0-fea4-4b2e-ba14-13ac6c92c426, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:22.781Z","sequence":38826,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:22.782Z","sequence":38827,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10018BA] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:22.787Z","sequence":38828,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:22.787Z","sequence":38829,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:22.794Z","sequence":38830,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c4540c15-4379-4880-9756-5554fc25ce2a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:25.344Z","sequence":38831,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:25.344Z","sequence":38832,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BB84C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:25.35Z","sequence":38833,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2a8478cc-cc54-4652-812b-dc000b0437be, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:25.703Z","sequence":38834,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:25.703Z","sequence":38835,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000699] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:25.708Z","sequence":38836,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:25.708Z","sequence":38837,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:25.714Z","sequence":38838,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-227071e2-219a-4afa-a0da-5c674a05cd74, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:26.46Z","sequence":38839,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:26.46Z","sequence":38840,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 0008004B5135]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:26.465Z","sequence":38841,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-31c78b22-354a-4380-9caa-0a0fd31fa2d7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:26.469Z","sequence":38842,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:26.469Z","sequence":38843,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: ineos]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:26.472Z","sequence":38844,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-58f263b5-8c79-41d5-b4f9-0c28db4e6462, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:30.433Z","sequence":38845,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:30.433Z","sequence":38846,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BBD1B]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:30.444Z","sequence":38847,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-cddc9bf0-96b4-4192-9c4c-98dfe5c33e29, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:30.844Z","sequence":38848,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:30.844Z","sequence":38849,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AB0] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:30.85Z","sequence":38850,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:30.85Z","sequence":38851,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:30.857Z","sequence":38852,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c9c49eaa-700c-419a-9ae8-97f665a629ab, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:32.421Z","sequence":38853,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:32.421Z","sequence":38854,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006A1] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:32.427Z","sequence":38855,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:32.427Z","sequence":38856,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:32.434Z","sequence":38857,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d31ca397-25fb-4b53-a17f-2f2e5c5d9dcd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:35.984Z","sequence":38858,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF2759F840EE12D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e34ad34cb5643fe9","parentId":"0e400b7eb326efdb","traceId":"0000000000000000856ed7e62b52f3d5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:36.005Z","sequence":38859,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF2759F840EE12D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e34ad34cb5643fe9","parentId":"0e400b7eb326efdb","traceId":"0000000000000000856ed7e62b52f3d5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:36.286Z","sequence":38860,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 1EFED956908D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"901ddabc0698d2d3","parentId":"b571790d3e80ddd5","traceId":"000000000000000066d5a363a41b9bb8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:36.31Z","sequence":38861,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 1EFED956908D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"901ddabc0698d2d3","parentId":"b571790d3e80ddd5","traceId":"000000000000000066d5a363a41b9bb8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:37.748Z","sequence":38862,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:37.748Z","sequence":38863,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C14] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:37.754Z","sequence":38864,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:37.754Z","sequence":38865,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:37.761Z","sequence":38866,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c69358f5-021d-48e1-9948-311d2290d48f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:38.197Z","sequence":38867,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/arkema:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:38.197Z","sequence":38868,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: arkema, device-id: 0008004AE119]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:38.202Z","sequence":38869,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a0881a85-64a8-4b41-a7bd-5a2b4b93e07c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:38.207Z","sequence":38870,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:38.207Z","sequence":38871,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: arkema]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:38.211Z","sequence":38872,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-2d457125-f55b-45f7-bdcc-938288548611, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:45.102Z","sequence":38873,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:45.103Z","sequence":38874,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BB5] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:45.108Z","sequence":38875,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:45.108Z","sequence":38876,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:45.115Z","sequence":38877,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4a3fea01-4ab3-4b52-94bd-0b40c607e0de, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:45.373Z","sequence":38878,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:45.373Z","sequence":38879,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000203] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:45.389Z","sequence":38880,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:45.389Z","sequence":38881,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:45.392Z","sequence":38882,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-70a25afd-4cc1-4975-8e5a-54eb7d151f53, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:45.521Z","sequence":38883,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:45.522Z","sequence":38884,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000203] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:45.542Z","sequence":38885,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:45.543Z","sequence":38886,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:45.549Z","sequence":38887,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7cdb7c3e-7a1e-4212-a51a-21898823e975, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:51.571Z","sequence":38888,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:51.571Z","sequence":38889,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AF9] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:51.58Z","sequence":38890,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:51.58Z","sequence":38891,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:51.586Z","sequence":38892,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-201af8f1-b37d-4e43-a77c-8c1effe9032b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:53.007Z","sequence":38893,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:53.008Z","sequence":38894,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10007F4] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:53.014Z","sequence":38895,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:53.015Z","sequence":38896,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:53.019Z","sequence":38897,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0a0aa1b2-c27f-4ea9-8b28-8ac0c5dba7bc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:57.322Z","sequence":38898,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:57.322Z","sequence":38899,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A39] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:57.328Z","sequence":38900,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:57.328Z","sequence":38901,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:46:57.334Z","sequence":38902,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-34e9cdba-ef2c-4b7d-bf48-c8b6a1d956fd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:47:01.078Z","sequence":38903,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:47:01.079Z","sequence":38904,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: acta]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:47:01.082Z","sequence":38905,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-adf2d016-790f-49f8-a97e-b922e695a6a2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:47:10.314Z","sequence":38906,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:47:10.314Z","sequence":38907,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000159] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:47:10.321Z","sequence":38908,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:47:10.322Z","sequence":38909,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:47:10.323Z","sequence":38910,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:47:10.323Z","sequence":38911,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000159] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:47:10.325Z","sequence":38912,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-921264e3-3d12-48d2-9d13-78b46e31b3fe, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:47:10.328Z","sequence":38913,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:47:10.329Z","sequence":38914,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:47:10.331Z","sequence":38915,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-32e7f83b-908a-41c1-81ba-1631575b764c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:47:12.411Z","sequence":38916,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:47:12.411Z","sequence":38917,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100078B] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:47:12.416Z","sequence":38918,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:47:12.416Z","sequence":38919,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:47:12.422Z","sequence":38920,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3aa31dca-2a9d-4f71-ba7f-e44b288c0e05, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:47:14.865Z","sequence":38921,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:47:14.865Z","sequence":38922,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A4A] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:47:14.896Z","sequence":38923,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:47:14.896Z","sequence":38924,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:47:14.912Z","sequence":38925,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f1e1acb0-2f17-4f8a-a073-a7bf61f992ad, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:47:19.889Z","sequence":38926,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:47:19.889Z","sequence":38927,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BFB] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:47:19.895Z","sequence":38928,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:47:19.895Z","sequence":38929,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:47:19.902Z","sequence":38930,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a65ad5c3-7393-4018-9c79-5cf234683f1d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:47:20.348Z","sequence":38931,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:47:20.348Z","sequence":38932,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AC2] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:47:20.359Z","sequence":38933,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:47:20.359Z","sequence":38934,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:47:20.365Z","sequence":38935,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-198e8fa0-f482-4f69-904b-625810dddc89, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:47:20.917Z","sequence":38936,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:47:20.917Z","sequence":38937,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:47:20.933Z","sequence":38938,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d7ff7ed0-6260-4489-970f-3bf33749804b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:47:30.939Z","sequence":38939,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:47:30.939Z","sequence":38940,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A37] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:47:30.947Z","sequence":38941,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:47:30.947Z","sequence":38942,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:47:30.954Z","sequence":38943,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-edba9a50-bd58-4e23-a0f4-7038cc762299, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:47:34.362Z","sequence":38944,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:47:34.363Z","sequence":38945,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10013EB] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:47:34.37Z","sequence":38946,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:47:34.37Z","sequence":38947,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:47:34.377Z","sequence":38948,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7ca051c3-d5c5-4aa3-b234-6e24a815571e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:47:47.018Z","sequence":38949,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:47:47.019Z","sequence":38950,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A45] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:47:47.027Z","sequence":38951,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:47:47.027Z","sequence":38952,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:47:47.038Z","sequence":38953,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b87aae9b-4514-4816-9cab-953ee15885fe, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:47:50.871Z","sequence":38954,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:47:50.872Z","sequence":38955,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 0008004C80F4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:47:50.896Z","sequence":38956,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a6cf7513-eb25-44a8-8a97-980f9d12c8e2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:47:53.039Z","sequence":38957,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:47:53.04Z","sequence":38958,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BBD1C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:47:53.048Z","sequence":38959,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b305d957-2405-4491-9cf1-0211e785e71e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:47:59.449Z","sequence":38960,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:47:59.449Z","sequence":38961,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: flint]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:47:59.452Z","sequence":38962,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-4e100cfd-7baa-4c15-8c38-101a53e82bfd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:47:59.454Z","sequence":38963,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/flint:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:47:59.454Z","sequence":38964,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: flint, type: hashed-password, auth-id: auth-flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:47:59.464Z","sequence":38965,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-e9079ac2-6544-4be5-afe9-4756a8b48b16, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:47:59.587Z","sequence":38966,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:47:59.588Z","sequence":38967,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10009D7] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:47:59.589Z","sequence":38968,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:47:59.589Z","sequence":38969,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:47:59.593Z","sequence":38970,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:47:59.594Z","sequence":38971,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:47:59.595Z","sequence":38972,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-19b185d1-7f8d-41af-895a-5379b0f1ac4a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:47:59.6Z","sequence":38973,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-cd63162e-d21f-4c4b-a6c7-058cc1f64011, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:47:59.99Z","sequence":38974,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:47:59.99Z","sequence":38975,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006DE] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:47:59.991Z","sequence":38976,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:47:59.991Z","sequence":38977,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:47:59.995Z","sequence":38978,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.8.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:47:59.995Z","sequence":38979,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:47:59.996Z","sequence":38980,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b61fce7f-1916-4f3e-aa02-7cb46aa928c8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:00.001Z","sequence":38981,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0959af6f-2dde-4072-be5d-1a6c648dd3b8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:03.387Z","sequence":38982,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:03.387Z","sequence":38983,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A49] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:03.393Z","sequence":38984,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:03.393Z","sequence":38985,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:03.399Z","sequence":38986,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-11e8da35-8dab-4d70-8253-1ce59b04c3a2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:03.625Z","sequence":38987,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:03.625Z","sequence":38988,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A31] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:03.637Z","sequence":38989,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:03.643Z","sequence":38990,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:03.661Z","sequence":38991,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2bb0bf24-c7fc-4241-9a57-30918dfd1525, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:04.775Z","sequence":38992,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191373]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"787fd7b37ca4c92d","parentId":"7851a10f182c0ee4","traceId":"0000000000000000ebe73c085345d538","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:04.82Z","sequence":38993,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191373, resource-version: 504e1839-8372-4aa6-86c6-032e1f0b6cd8]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"787fd7b37ca4c92d","parentId":"7851a10f182c0ee4","traceId":"0000000000000000ebe73c085345d538","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:04.843Z","sequence":38994,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191373, resource-version: ce53f328-0f98-48ea-b784-5ad6e0822d41]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"787fd7b37ca4c92d","parentId":"7851a10f182c0ee4","traceId":"0000000000000000ebe73c085345d538","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:04.849Z","sequence":38995,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191373]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1948598a5b9b8a97","parentId":"b41e1f2bea41d1fc","traceId":"0000000000000000ebe73c085345d538","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:05.015Z","sequence":38996,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191373]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1948598a5b9b8a97","parentId":"b41e1f2bea41d1fc","traceId":"0000000000000000ebe73c085345d538","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:05.597Z","sequence":38997,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFD1A18496C50AF]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f644364d2979e7ea","parentId":"310d82a360c16e37","traceId":"00000000000000004dc1571a6f60dde7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:05.617Z","sequence":38998,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFD1A18496C50AF, resource-version: 0c5fd1ef-3770-4450-b10c-fedd8b95044d]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f644364d2979e7ea","parentId":"310d82a360c16e37","traceId":"00000000000000004dc1571a6f60dde7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:05.632Z","sequence":38999,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFD1A18496C50AF, resource-version: fac90869-2a23-4936-a6d8-3b4581530530]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f644364d2979e7ea","parentId":"310d82a360c16e37","traceId":"00000000000000004dc1571a6f60dde7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:06.74Z","sequence":39000,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:06.74Z","sequence":39001,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:06.743Z","sequence":39002,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-74fe3b4f-4ef2-4548-9e40-4acc4a9e4b25, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:06.747Z","sequence":39003,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:06.747Z","sequence":39004,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191373]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:06.757Z","sequence":39005,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-8d921404-911d-40ee-b472-2b63fa9e0282, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:06.886Z","sequence":39006,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:06.886Z","sequence":39007,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD1A18496C50AF] for gateway [gateway_integrationtest_network_191373]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:06.888Z","sequence":39008,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:06.888Z","sequence":39009,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191373]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:06.893Z","sequence":39010,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:06.893Z","sequence":39011,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:06.894Z","sequence":39012,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f047bcbf-28d4-489d-be7d-a2aa1a48c310, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:07.277Z","sequence":39013,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3b0fe920-9050-4891-ad84-767a6620e921, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:07.88Z","sequence":39014,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:07.881Z","sequence":39015,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C17] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:07.913Z","sequence":39016,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oiltanking:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:07.913Z","sequence":39017,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oiltanking, device-id: 0008004BB60F]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:07.914Z","sequence":39018,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:07.914Z","sequence":39019,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:07.937Z","sequence":39020,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-fb8f2c80-0b02-4686-b3d6-8794892be190, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:07.938Z","sequence":39021,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-838190cc-4809-40f0-a4a8-c7035c94cb00, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:07.944Z","sequence":39022,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:07.945Z","sequence":39023,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oiltanking]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:07.969Z","sequence":39024,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-68f01c7e-4295-4f60-8e6c-bfaa37a90b07, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:08.114Z","sequence":39025,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:08.115Z","sequence":39026,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB1000A75] for gateway [0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:08.124Z","sequence":39027,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:08.124Z","sequence":39028,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:08.133Z","sequence":39029,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1d62f5d0-0899-4467-a86f-c15f711ada69, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:09.394Z","sequence":39030,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:09.394Z","sequence":39031,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A30] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:09.43Z","sequence":39032,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:09.43Z","sequence":39033,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:09.442Z","sequence":39034,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-bea0db68-9b68-4817-b436-46dcd69bdab4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:15.396Z","sequence":39035,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:15.397Z","sequence":39036,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BC0] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:15.403Z","sequence":39037,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:15.403Z","sequence":39038,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:15.409Z","sequence":39039,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-bae26b58-5fff-4dc2-99f2-90129cfe216d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:16.403Z","sequence":39040,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:16.403Z","sequence":39041,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100067D] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:16.408Z","sequence":39042,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:16.408Z","sequence":39043,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:16.414Z","sequence":39044,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-39f4b7e2-3f43-48d1-bdc6-433392b1baa4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:16.532Z","sequence":39045,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:16.532Z","sequence":39046,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100021F] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:16.538Z","sequence":39047,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:0.4.1\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:16.538Z","sequence":39048,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:16.544Z","sequence":39049,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7056758a-f2df-4a86-8f1c-e59a102838cd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:18.182Z","sequence":39050,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFD1A18496C50AF]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"326e8df1c0785a7a","parentId":"28c0847c900a509e","traceId":"00000000000000002f206b7199cc5d8b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:18.206Z","sequence":39051,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFD1A18496C50AF]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"326e8df1c0785a7a","parentId":"28c0847c900a509e","traceId":"00000000000000002f206b7199cc5d8b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:18.521Z","sequence":39052,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191373]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5039cb076aad0c49","parentId":"9ab6d3e8031f742b","traceId":"00000000000000001615aba1eca666d1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:18.561Z","sequence":39053,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191373]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5039cb076aad0c49","parentId":"9ab6d3e8031f742b","traceId":"00000000000000001615aba1eca666d1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:19.32Z","sequence":39054,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 51D342070F14]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6e016af36b40720f","parentId":"9a92d79fa447b6c8","traceId":"000000000000000001a6666c0eeb7715","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:19.338Z","sequence":39055,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 51D342070F14, resource-version: 2525339f-972d-4134-a6b0-5482eb6d8edb]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6e016af36b40720f","parentId":"9a92d79fa447b6c8","traceId":"000000000000000001a6666c0eeb7715","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:19.348Z","sequence":39056,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 51D342070F14, resource-version: 9de654ad-8d18-4761-b2ac-4dfb88d22f64]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6e016af36b40720f","parentId":"9a92d79fa447b6c8","traceId":"000000000000000001a6666c0eeb7715","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:19.351Z","sequence":39057,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 51D342070F14]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c2eaa63bd70f3ad5","parentId":"03d04980a2c3de16","traceId":"000000000000000001a6666c0eeb7715","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:19.393Z","sequence":39058,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:19.393Z","sequence":39059,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000687] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:19.398Z","sequence":39060,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:19.398Z","sequence":39061,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:19.405Z","sequence":39062,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c5d51a94-1cae-4ea0-8c1b-0e356d491f9c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:19.486Z","sequence":39063,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 51D342070F14]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c2eaa63bd70f3ad5","parentId":"03d04980a2c3de16","traceId":"000000000000000001a6666c0eeb7715","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:20.312Z","sequence":39064,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF64BC1AB5EC0E1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ab7d085bb52c49c7","parentId":"d99ff23c5f838ef6","traceId":"0000000000000000b3426c94c15e93a6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:20.332Z","sequence":39065,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF64BC1AB5EC0E1, resource-version: 80541900-f121-4907-b4eb-4b1dc54691be]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ab7d085bb52c49c7","parentId":"d99ff23c5f838ef6","traceId":"0000000000000000b3426c94c15e93a6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:20.34Z","sequence":39066,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF64BC1AB5EC0E1, resource-version: 0d98a5e2-ba1e-4250-a726-eaef85fcb7f7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ab7d085bb52c49c7","parentId":"d99ff23c5f838ef6","traceId":"0000000000000000b3426c94c15e93a6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:21.399Z","sequence":39067,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:21.4Z","sequence":39068,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:21.404Z","sequence":39069,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-27a95571-dd95-4373-a203-97af9c031641, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:21.408Z","sequence":39070,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:21.409Z","sequence":39071,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-51D342070F14]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:21.426Z","sequence":39072,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-34b7d20a-4918-44f1-97d7-5cc52ae7b790, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:21.556Z","sequence":39073,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:21.557Z","sequence":39074,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 51D342070F14]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:21.562Z","sequence":39075,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6c62d09b-6936-4119-829c-25e2edbc25fc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:21.566Z","sequence":39076,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:21.566Z","sequence":39077,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF64BC1AB5EC0E1] for gateway [51D342070F14]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:21.587Z","sequence":39078,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:21.587Z","sequence":39079,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:22.131Z","sequence":39080,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5e8df064-7b63-47bc-8872-f1a858214130, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:22.165Z","sequence":39081,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:22.165Z","sequence":39082,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BD4] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:22.173Z","sequence":39083,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:22.173Z","sequence":39084,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:22.18Z","sequence":39085,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d8fa97db-9d51-45dc-be01-2fb116440da5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:24.788Z","sequence":39086,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:24.789Z","sequence":39087,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A38] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:24.794Z","sequence":39088,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:24.794Z","sequence":39089,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:24.8Z","sequence":39090,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-73284362-0de5-47f8-bedb-62626ebf9fa4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:31.725Z","sequence":39091,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF64BC1AB5EC0E1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1851036c66ece055","parentId":"7df4c1d1214f09dc","traceId":"0000000000000000dfb23f137e16b0b2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:31.744Z","sequence":39092,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF64BC1AB5EC0E1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1851036c66ece055","parentId":"7df4c1d1214f09dc","traceId":"0000000000000000dfb23f137e16b0b2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:32.028Z","sequence":39093,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 51D342070F14]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f4e5bc3fc3c95359","parentId":"e17a3b1f58bf26c0","traceId":"0000000000000000f926dd48a6e52ecd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:32.046Z","sequence":39094,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 51D342070F14]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f4e5bc3fc3c95359","parentId":"e17a3b1f58bf26c0","traceId":"0000000000000000f926dd48a6e52ecd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:35.076Z","sequence":39095,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:35.076Z","sequence":39096,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BEF] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:35.085Z","sequence":39097,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:35.085Z","sequence":39098,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:35.092Z","sequence":39099,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-90937e53-c922-40bf-923f-dda6733a97e0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:39.596Z","sequence":39100,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/aloxy:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:39.596Z","sequence":39101,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: aloxy, device-id: 0008004A8F68]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:39.604Z","sequence":39102,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9aba3320-c99c-4c74-811c-8543f5de82c7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:39.607Z","sequence":39103,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:39.607Z","sequence":39104,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: aloxy]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:39.609Z","sequence":39105,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-feeed190-1c47-4813-bedb-1b4ee4f5094a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:41.748Z","sequence":39106,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:41.748Z","sequence":39107,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: dow]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:41.751Z","sequence":39108,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-95cfb19a-56d8-41eb-b901-c4bd1e8b4039, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:41.756Z","sequence":39109,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/dow:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:41.757Z","sequence":39110,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: dow, type: hashed-password, auth-id: auth-gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:41.767Z","sequence":39111,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-430b1e38-d54e-430c-87d1-df45c18c1120, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:42.021Z","sequence":39112,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:42.021Z","sequence":39113,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 70B3D57BB100128C] for gateway [gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:42.022Z","sequence":39114,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:42.022Z","sequence":39115,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:42.028Z","sequence":39116,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-bf606d46-a060-4970-ace1-e07d34e68c22, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:42.029Z","sequence":39117,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:42.029Z","sequence":39118,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:42.033Z","sequence":39119,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e61a329f-cac6-459e-89f9-e72a078fc349, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:44.028Z","sequence":39120,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:44.028Z","sequence":39121,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10009C3] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:44.044Z","sequence":39122,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:44.044Z","sequence":39123,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:44.051Z","sequence":39124,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-95da489e-af66-4e98-b7af-67d0de8faa3f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:45.372Z","sequence":39125,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:45.373Z","sequence":39126,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: lanxess]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:45.376Z","sequence":39127,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-0d3e18df-35f0-455d-b2e2-f9635756cc5a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:45.379Z","sequence":39128,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:45.379Z","sequence":39129,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 70B3D57BB1000196] for gateway [0008004BBD1B]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:45.385Z","sequence":39130,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:0.4.1\"\n },\n \"viaGroups\" : [ \"gateways_lanxess\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:45.385Z","sequence":39131,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_lanxess\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:45.389Z","sequence":39132,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-73c75efd-c946-49f8-b3cc-ad854f8c438f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:46.347Z","sequence":39133,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:46.348Z","sequence":39134,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: shell]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:46.351Z","sequence":39135,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-3c069103-ce02-4ec1-a91f-597ae6f2dfa1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:46.353Z","sequence":39136,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/shell:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:46.354Z","sequence":39137,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: shell, type: hashed-password, auth-id: auth-gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:46.365Z","sequence":39138,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-490c7854-f96d-4ae1-ab81-5a34e2b81779, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:46.485Z","sequence":39139,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:46.485Z","sequence":39140,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AC3] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:46.491Z","sequence":39141,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:46.491Z","sequence":39142,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:46.505Z","sequence":39143,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f79f1c12-5789-4557-9d3a-86a4d7eedfa5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:53.443Z","sequence":39144,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:53.444Z","sequence":39145,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AC1] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:53.45Z","sequence":39146,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:53.45Z","sequence":39147,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:53.458Z","sequence":39148,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-54208149-7602-460b-b931-f9739913f8b2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:56.467Z","sequence":39149,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:56.467Z","sequence":39150,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AD2] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:56.481Z","sequence":39151,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:56.481Z","sequence":39152,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:56.496Z","sequence":39153,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-49cf4163-1263-4ef6-8089-d09025265b88, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:59.307Z","sequence":39154,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:59.307Z","sequence":39155,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BB613]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:48:59.314Z","sequence":39156,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-acd348e3-c4f2-437f-92cb-0306fe08519b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:49:03.351Z","sequence":39157,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:49:03.352Z","sequence":39158,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000688] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:49:03.358Z","sequence":39159,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:49:03.358Z","sequence":39160,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:49:03.367Z","sequence":39161,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-588b36c4-cd18-4a08-a2e3-49ef5f8e93a3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:49:08.759Z","sequence":39162,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:49:08.76Z","sequence":39163,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A40] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:49:08.766Z","sequence":39164,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:49:08.766Z","sequence":39165,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:49:08.773Z","sequence":39166,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a07d6861-80f2-4445-aa0d-98972437f038, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:49:10.334Z","sequence":39167,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:49:10.334Z","sequence":39168,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AF2] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:49:10.34Z","sequence":39169,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:49:10.34Z","sequence":39170,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:49:10.346Z","sequence":39171,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-807c4432-cd1a-489d-9de2-232a09a7cd3f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:49:24.536Z","sequence":39172,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:49:24.536Z","sequence":39173,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AD1] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:49:24.542Z","sequence":39174,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:49:24.542Z","sequence":39175,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:49:24.549Z","sequence":39176,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c0d8affa-49d5-4a86-b004-01321b8a6ec2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:49:33.135Z","sequence":39177,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:49:33.135Z","sequence":39178,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10002D7] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:49:33.14Z","sequence":39179,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:49:33.141Z","sequence":39180,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:49:33.146Z","sequence":39181,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-43e391d4-8901-478d-b446-08f2841ca4ab, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:49:33.266Z","sequence":39182,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:49:33.266Z","sequence":39183,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C21] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:49:33.272Z","sequence":39184,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:49:33.272Z","sequence":39185,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:49:33.278Z","sequence":39186,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2c28cf20-256e-4dd5-bb1f-0b4d7134dc4a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:49:40.178Z","sequence":39187,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:49:40.178Z","sequence":39188,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C43] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:49:40.183Z","sequence":39189,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:49:40.183Z","sequence":39190,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:49:40.19Z","sequence":39191,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-090fb8e3-ad29-4337-8861-9b5ea77ddc8e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:49:41.43Z","sequence":39192,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:49:41.43Z","sequence":39193,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001ACF] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:49:41.436Z","sequence":39194,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:49:41.436Z","sequence":39195,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:49:41.442Z","sequence":39196,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-11b50cac-c7b9-4cff-bfda-2076e4ac789e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:49:43.561Z","sequence":39197,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:49:43.561Z","sequence":39198,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:49:43.567Z","sequence":39199,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b20cce8e-5d89-417b-886a-ca2f2fefb588, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:49:43.605Z","sequence":39200,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:49:43.605Z","sequence":39201,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oci]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:49:43.613Z","sequence":39202,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-d6655707-d8ad-4995-bdc3-22cc75096947, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:49:43.657Z","sequence":39203,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:49:43.657Z","sequence":39204,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000524] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:49:43.663Z","sequence":39205,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:49:43.663Z","sequence":39206,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:49:43.669Z","sequence":39207,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8a764bad-5de8-4997-bfd9-81db8c78a45c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:49:45.24Z","sequence":39208,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:49:45.24Z","sequence":39209,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001ACE] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:49:45.246Z","sequence":39210,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:49:45.247Z","sequence":39211,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:49:45.255Z","sequence":39212,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1e53ed5e-1b7b-4ae8-a255-d113d42f8114, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:49:45.445Z","sequence":39213,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:49:45.445Z","sequence":39214,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100069F] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:49:45.453Z","sequence":39215,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:49:45.454Z","sequence":39216,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:49:45.46Z","sequence":39217,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-dca7fee9-dfee-401f-887a-fa31b8f14a27, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:49:47.542Z","sequence":39218,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:49:47.543Z","sequence":39219,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006A9] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:49:47.558Z","sequence":39220,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:49:47.558Z","sequence":39221,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:49:47.566Z","sequence":39222,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f3065265-f8d1-4c53-b08c-5b0d156bc979, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:49:49.038Z","sequence":39223,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:49:49.038Z","sequence":39224,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000F84] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:49:49.049Z","sequence":39225,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:49:49.05Z","sequence":39226,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:49:49.057Z","sequence":39227,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e81c1789-219a-435e-9136-241f8b22f8e9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:49:50.699Z","sequence":39228,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/acta:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:49:50.699Z","sequence":39229,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: acta, device-id: 0008004AAAA3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:49:50.706Z","sequence":39230,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1447b12a-d714-4983-ae6d-a14111e836c9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:49:51.325Z","sequence":39231,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/repsol:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:49:51.325Z","sequence":39232,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: repsol, device-id: 0008004A37FF]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:49:51.331Z","sequence":39233,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6f2fbf51-749a-44fb-967c-9462c70dec71, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:49:51.335Z","sequence":39234,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:49:51.336Z","sequence":39235,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: repsol]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:49:51.338Z","sequence":39236,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-270f325c-dab9-4192-8ee1-2e6db9724e8d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:49:52.224Z","sequence":39237,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:49:52.224Z","sequence":39238,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A2E] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:49:52.232Z","sequence":39239,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:49:52.232Z","sequence":39240,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:49:52.239Z","sequence":39241,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9048fe40-c4bb-40b2-be51-5a2eed75d62c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:49:53.914Z","sequence":39242,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:49:53.914Z","sequence":39243,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006C1] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:49:53.921Z","sequence":39244,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:49:53.922Z","sequence":39245,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:49:53.929Z","sequence":39246,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-73aa8751-ecfc-4222-9882-401ae3e9217b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:49:56.955Z","sequence":39247,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:49:56.955Z","sequence":39248,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10013E2] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:49:56.961Z","sequence":39249,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:49:56.961Z","sequence":39250,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:49:56.967Z","sequence":39251,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6baffd21-6c6d-4ed0-a13b-c78b35c2878a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:49:57.969Z","sequence":39252,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:49:57.97Z","sequence":39253,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000874] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:49:57.976Z","sequence":39254,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:49:57.976Z","sequence":39255,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:49:57.981Z","sequence":39256,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-62956ed7-8de0-4cee-9373-1d5278e13fb4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:00.343Z","sequence":39257,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:00.343Z","sequence":39258,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000ADE] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:00.349Z","sequence":39259,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:00.349Z","sequence":39260,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:00.355Z","sequence":39261,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-fe04b0e2-c29b-4127-b922-9cd4b20f2e45, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:01.43Z","sequence":39262,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:01.431Z","sequence":39263,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001ACC] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:01.445Z","sequence":39264,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:01.445Z","sequence":39265,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:01.457Z","sequence":39266,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f990c608-d5d6-41b0-8644-6051f78f09e7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:04.391Z","sequence":39267,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF41EBD7ADC05D8]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fc625f5cebbc0ed2","parentId":"2202264f62c32871","traceId":"0000000000000000fa4e0aac501e1ec3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:04.411Z","sequence":39268,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF41EBD7ADC05D8]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fc625f5cebbc0ed2","parentId":"2202264f62c32871","traceId":"0000000000000000fa4e0aac501e1ec3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:04.521Z","sequence":39269,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFA4AC3FB435E38]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"05bbec3458f37a46","parentId":"b7af515d17e8a24d","traceId":"000000000000000094d1b6ade2c7cf06","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:04.541Z","sequence":39270,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFA4AC3FB435E38]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"05bbec3458f37a46","parentId":"b7af515d17e8a24d","traceId":"000000000000000094d1b6ade2c7cf06","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:04.743Z","sequence":39271,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:04.744Z","sequence":39272,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100052A] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:04.753Z","sequence":39273,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:04.753Z","sequence":39274,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:04.76Z","sequence":39275,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-fd130914-fde8-4c3e-8ceb-927138509d11, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:04.769Z","sequence":39276,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFD5E5234AE0F00]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ee7e595c8fb3dad7","parentId":"29c2c884fb84964c","traceId":"000000000000000094989b12fadbc2e6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:04.79Z","sequence":39277,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFD5E5234AE0F00]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ee7e595c8fb3dad7","parentId":"29c2c884fb84964c","traceId":"000000000000000094989b12fadbc2e6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:04.871Z","sequence":39278,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF4DB3813BE251E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b29fead91503e87c","parentId":"6b39f7425eaad6c4","traceId":"0000000000000000c9b3ff149fa60e5c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:04.888Z","sequence":39279,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF4DB3813BE251E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b29fead91503e87c","parentId":"6b39f7425eaad6c4","traceId":"0000000000000000c9b3ff149fa60e5c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:05.072Z","sequence":39280,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF4EBD40E1696C3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fee7cce175fefa86","parentId":"1cc006565238e511","traceId":"000000000000000067a99cc6c5d19cee","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:05.09Z","sequence":39281,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF4EBD40E1696C3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fee7cce175fefa86","parentId":"1cc006565238e511","traceId":"000000000000000067a99cc6c5d19cee","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:05.297Z","sequence":39282,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFA2D3A20A1DF95]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"14e30061c7dc75ae","parentId":"1f255174bc5647c4","traceId":"000000000000000030dc2a592d47c564","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:05.321Z","sequence":39283,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFA2D3A20A1DF95]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"14e30061c7dc75ae","parentId":"1f255174bc5647c4","traceId":"000000000000000030dc2a592d47c564","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:05.755Z","sequence":39284,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:05.755Z","sequence":39285,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AD7] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:05.761Z","sequence":39286,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:05.761Z","sequence":39287,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:05.768Z","sequence":39288,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ef0721b2-5b9b-4cbc-8970-91c45b72e4db, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:06.383Z","sequence":39289,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191251]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d88c4a367c375181","parentId":"dc45f9cd1d44e426","traceId":"000000000000000089c9b5c4bce98edb","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:06.429Z","sequence":39290,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191251]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d88c4a367c375181","parentId":"dc45f9cd1d44e426","traceId":"000000000000000089c9b5c4bce98edb","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:07.518Z","sequence":39291,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191317]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c6efca2228883db5","parentId":"ae1a15eb7db40bd1","traceId":"0000000000000000f55783eccd222077","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:07.552Z","sequence":39292,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191317]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c6efca2228883db5","parentId":"ae1a15eb7db40bd1","traceId":"0000000000000000f55783eccd222077","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:10.673Z","sequence":39293,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:10.673Z","sequence":39294,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10007CD] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:10.679Z","sequence":39295,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:10.679Z","sequence":39296,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:10.683Z","sequence":39297,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7c345978-bc7f-4c84-bc42-671b94f622dd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:11.517Z","sequence":39298,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191375]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"03605d5f691f0d41","parentId":"6b18c6784d765ec1","traceId":"00000000000000001ce6704f3fef3e67","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:11.553Z","sequence":39299,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191375, resource-version: 880b1cbe-b563-4d5b-851e-c26647364a16]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"03605d5f691f0d41","parentId":"6b18c6784d765ec1","traceId":"00000000000000001ce6704f3fef3e67","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:11.561Z","sequence":39300,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191375, resource-version: f78cd5f8-a64a-4e7c-9cc2-d73755b1e5a0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"03605d5f691f0d41","parentId":"6b18c6784d765ec1","traceId":"00000000000000001ce6704f3fef3e67","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:11.57Z","sequence":39301,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191375]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b9f66c8d7b3e2507","parentId":"6762e71e7f4b501f","traceId":"00000000000000001ce6704f3fef3e67","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:11.817Z","sequence":39302,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191375]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b9f66c8d7b3e2507","parentId":"6762e71e7f4b501f","traceId":"00000000000000001ce6704f3fef3e67","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:12.682Z","sequence":39303,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF212F28544A53A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"16eaa36a89380998","parentId":"65e3ef1e3a5ec28e","traceId":"000000000000000069299e59542161c1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:12.703Z","sequence":39304,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF212F28544A53A, resource-version: 27e7056f-f10c-49a3-89d8-68ed0612dba9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"16eaa36a89380998","parentId":"65e3ef1e3a5ec28e","traceId":"000000000000000069299e59542161c1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:12.711Z","sequence":39305,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF212F28544A53A, resource-version: 27ccff84-71dc-4f8c-aa98-5df5ce7d6225]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"16eaa36a89380998","parentId":"65e3ef1e3a5ec28e","traceId":"000000000000000069299e59542161c1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:13.313Z","sequence":39306,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF212F28544A53A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"751276d836f93440","parentId":"5a261d176bbb43cc","traceId":"0000000000000000dd18183144e5ad90","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:13.331Z","sequence":39307,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF212F28544A53A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"751276d836f93440","parentId":"5a261d176bbb43cc","traceId":"0000000000000000dd18183144e5ad90","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:13.491Z","sequence":39308,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191375]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1359f314961b4813","parentId":"c3a0aa1bd97b6f4b","traceId":"0000000000000000aea1a8d44e43b90c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:13.51Z","sequence":39309,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191375]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1359f314961b4813","parentId":"c3a0aa1bd97b6f4b","traceId":"0000000000000000aea1a8d44e43b90c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:17.102Z","sequence":39310,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:17.102Z","sequence":39311,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 0008004B51D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:17.113Z","sequence":39312,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-40bc48de-f1a3-4c06-9618-b07d1f4c7415, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:17.116Z","sequence":39313,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:17.116Z","sequence":39314,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: dow]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:17.119Z","sequence":39315,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-bdf51f5e-0d97-4256-a24a-0f66044d15a0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:19.7Z","sequence":39316,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191376]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1f93072dcd649f75","parentId":"2649752e5bdcadbb","traceId":"00000000000000003aebfa628e843cf5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:19.717Z","sequence":39317,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191376, resource-version: 07eefc2a-5cd3-4a44-9a84-3a6a623a1a4b]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1f93072dcd649f75","parentId":"2649752e5bdcadbb","traceId":"00000000000000003aebfa628e843cf5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:19.724Z","sequence":39318,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191376, resource-version: 5478dc15-66a5-41f3-bf54-aee7799941a0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1f93072dcd649f75","parentId":"2649752e5bdcadbb","traceId":"00000000000000003aebfa628e843cf5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:19.728Z","sequence":39319,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191376]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ee38c9760fc1cfa3","parentId":"d8110e2ef07f5181","traceId":"00000000000000003aebfa628e843cf5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:19.85Z","sequence":39320,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191376]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ee38c9760fc1cfa3","parentId":"d8110e2ef07f5181","traceId":"00000000000000003aebfa628e843cf5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:20.652Z","sequence":39321,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF384775250631D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"91bfbdd33be79ace","parentId":"4c5b0e1e07218edb","traceId":"0000000000000000fbe91dbe29f80bc1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:20.668Z","sequence":39322,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF384775250631D, resource-version: 085bfe85-2c51-4caa-adf5-cf7db0851686]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"91bfbdd33be79ace","parentId":"4c5b0e1e07218edb","traceId":"0000000000000000fbe91dbe29f80bc1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:20.676Z","sequence":39323,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF384775250631D, resource-version: 8c47fd74-3469-49df-825c-620228534112]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"91bfbdd33be79ace","parentId":"4c5b0e1e07218edb","traceId":"0000000000000000fbe91dbe29f80bc1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:21.615Z","sequence":39324,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:21.615Z","sequence":39325,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BF9] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:21.644Z","sequence":39326,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:21.645Z","sequence":39327,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:21.657Z","sequence":39328,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6baed2cc-76a6-408d-bc63-362f6afc143f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:21.773Z","sequence":39329,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:21.773Z","sequence":39330,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191376]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:21.789Z","sequence":39331,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-2d726be3-cfcc-4508-bbbb-2f856200c47e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:21.917Z","sequence":39332,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:21.917Z","sequence":39333,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF384775250631D] for gateway [gateway_integrationtest_network_191376]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:21.921Z","sequence":39334,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:21.921Z","sequence":39335,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191376]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:21.929Z","sequence":39336,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:21.929Z","sequence":39337,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:21.93Z","sequence":39338,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-aa5a2292-8fe6-46d5-af55-94cca347f79f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:22.45Z","sequence":39339,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2494ea97-be43-42bd-a07b-464a65548c02, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:22.715Z","sequence":39340,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"retrieving device [tenant: integrationtest, device-id: 0EF384775250631D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cb41c90461f9ef0c","parentId":"f1c26839b3125e7b","traceId":"c3f5faaa9fcd13e51097eda29d199fd9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:24.235Z","sequence":39341,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:24.236Z","sequence":39342,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AC9] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:24.241Z","sequence":39343,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:24.242Z","sequence":39344,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:24.247Z","sequence":39345,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-129a1500-0a44-4daf-ae15-85f76e5f631e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:24.605Z","sequence":39346,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:24.605Z","sequence":39347,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AE1] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:24.613Z","sequence":39348,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:24.613Z","sequence":39349,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:24.621Z","sequence":39350,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f2b01a80-2eef-44a5-b5b5-5d69d9b4e9f0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:25.138Z","sequence":39351,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:25.139Z","sequence":39352,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AC4] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:25.147Z","sequence":39353,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:25.147Z","sequence":39354,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:25.161Z","sequence":39355,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6228950d-4012-46a7-b829-478edaf03275, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:28.121Z","sequence":39356,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:28.122Z","sequence":39357,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000489] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:28.126Z","sequence":39358,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:28.127Z","sequence":39359,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:28.133Z","sequence":39360,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7964eeb6-d686-46c1-9c3f-e9122e976732, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:29.431Z","sequence":39361,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:29.431Z","sequence":39362,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000508] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:29.436Z","sequence":39363,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:29.436Z","sequence":39364,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:29.443Z","sequence":39365,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c9e9cf51-218f-4e61-b3c8-f7e84120aef7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:33.234Z","sequence":39366,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF384775250631D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8f7c35583c19be21","parentId":"8cefbc664790b4fe","traceId":"0000000000000000ccacbe89fdc99b98","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:33.258Z","sequence":39367,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF384775250631D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8f7c35583c19be21","parentId":"8cefbc664790b4fe","traceId":"0000000000000000ccacbe89fdc99b98","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:33.392Z","sequence":39368,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191376]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8e287f076d46c237","parentId":"f00880feb17539a0","traceId":"00000000000000009f3177898263abc6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:33.41Z","sequence":39369,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191376]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8e287f076d46c237","parentId":"f00880feb17539a0","traceId":"00000000000000009f3177898263abc6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:33.872Z","sequence":39370,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: F5C52CDE4929]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cd533b37419abd29","parentId":"9480b2153aa18807","traceId":"00000000000000007d29e157338d08a9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:33.893Z","sequence":39371,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: F5C52CDE4929, resource-version: 0ba19493-c6e4-48e7-bba2-2b91c52f39e9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cd533b37419abd29","parentId":"9480b2153aa18807","traceId":"00000000000000007d29e157338d08a9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:33.898Z","sequence":39372,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: F5C52CDE4929, resource-version: 8d1eeb81-3817-4829-8ad7-8d7987428f5b]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cd533b37419abd29","parentId":"9480b2153aa18807","traceId":"00000000000000007d29e157338d08a9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:33.902Z","sequence":39373,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: F5C52CDE4929]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d365f5a3f30332de","parentId":"d0e87b11498a62fd","traceId":"00000000000000007d29e157338d08a9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:34.048Z","sequence":39374,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: F5C52CDE4929]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d365f5a3f30332de","parentId":"d0e87b11498a62fd","traceId":"00000000000000007d29e157338d08a9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:34.67Z","sequence":39375,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF1F8BB8B218465]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"56f4951a7839bd03","parentId":"c536a40bb41c7d5e","traceId":"00000000000000008840de6b314ea600","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:34.69Z","sequence":39376,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF1F8BB8B218465, resource-version: f0b3a4dc-8297-4628-9def-e6fc34eb54ed]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"56f4951a7839bd03","parentId":"c536a40bb41c7d5e","traceId":"00000000000000008840de6b314ea600","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:34.697Z","sequence":39377,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF1F8BB8B218465, resource-version: 935663ae-b4db-4256-8203-7b47fa4c1aae]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"56f4951a7839bd03","parentId":"c536a40bb41c7d5e","traceId":"00000000000000008840de6b314ea600","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:35.749Z","sequence":39378,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:35.749Z","sequence":39379,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-F5C52CDE4929]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:35.762Z","sequence":39380,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-7b6b6947-cb71-4de1-8767-28bb9b66d3b2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:35.882Z","sequence":39381,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:35.883Z","sequence":39382,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: F5C52CDE4929]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:35.888Z","sequence":39383,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8b513f88-6f3a-4126-884c-d1815c93f67e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:35.893Z","sequence":39384,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:35.893Z","sequence":39385,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF1F8BB8B218465] for gateway [F5C52CDE4929]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:35.899Z","sequence":39386,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:35.899Z","sequence":39387,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:36.062Z","sequence":39388,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8207aa9e-fdd2-4c81-8872-78f1ed3a41b6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:36.52Z","sequence":39389,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:36.52Z","sequence":39390,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: acta]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:36.523Z","sequence":39391,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-f1499075-1a20-47e9-ad8c-652722921ac5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:36.525Z","sequence":39392,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/acta:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:36.526Z","sequence":39393,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: acta, device-id: 39383837002B0047] for gateway [0008004AAAA3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:36.531Z","sequence":39394,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.3.0\"\n },\n \"viaGroups\" : [ \"gateways_acta\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:36.531Z","sequence":39395,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_acta\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:36.533Z","sequence":39396,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-58232758-8456-4277-950c-513f527a93d6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:40.919Z","sequence":39397,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:40.919Z","sequence":39398,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100067A] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:40.926Z","sequence":39399,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:40.926Z","sequence":39400,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:40.936Z","sequence":39401,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c647c0eb-e510-4377-b6b6-a90c415be7a9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:45.977Z","sequence":39402,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:45.977Z","sequence":39403,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A3E] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:45.991Z","sequence":39404,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:45.991Z","sequence":39405,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:46.005Z","sequence":39406,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7ce1a037-3472-49ce-8bb8-4f5f30478d87, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:46.796Z","sequence":39407,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:46.797Z","sequence":39408,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006AD] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:46.806Z","sequence":39409,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:46.806Z","sequence":39410,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:46.815Z","sequence":39411,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b20352fe-2cb6-416e-a4e0-b57fea48a8d5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:47.717Z","sequence":39412,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF1F8BB8B218465]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f45c490db955508a","parentId":"d4c4cab0f92d0d3a","traceId":"0000000000000000ef0d85206dfc952b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:47.748Z","sequence":39413,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF1F8BB8B218465]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f45c490db955508a","parentId":"d4c4cab0f92d0d3a","traceId":"0000000000000000ef0d85206dfc952b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:48.142Z","sequence":39414,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: F5C52CDE4929]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ed779496505899ae","parentId":"eba579cc397dd68f","traceId":"00000000000000007f1f252bc8410e85","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:48.179Z","sequence":39415,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: F5C52CDE4929]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ed779496505899ae","parentId":"eba579cc397dd68f","traceId":"00000000000000007f1f252bc8410e85","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:48.588Z","sequence":39416,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:48.588Z","sequence":39417,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A55] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:48.594Z","sequence":39418,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:48.594Z","sequence":39419,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:48.602Z","sequence":39420,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ef2e15c1-83ba-4085-a13b-c4e6fc221bb1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:49.883Z","sequence":39421,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/conditionall:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:49.883Z","sequence":39422,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: conditionall, device-id: 0008004B512D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:49.888Z","sequence":39423,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2ae32ba7-a4b9-48be-a9fa-8fe27793a316, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:49.891Z","sequence":39424,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:49.891Z","sequence":39425,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: conditionall]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:49.899Z","sequence":39426,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-fb3e34d4-d98d-44c6-a8b9-e8983751cdad, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:49.923Z","sequence":39427,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:49.923Z","sequence":39428,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006C5] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:49.93Z","sequence":39429,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:49.93Z","sequence":39430,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:49.937Z","sequence":39431,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-48a19fb8-6b50-40d5-aac7-3bf815066707, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:52.09Z","sequence":39432,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:52.091Z","sequence":39433,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB100089C] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:52.105Z","sequence":39434,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:52.105Z","sequence":39435,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:52.112Z","sequence":39436,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 1F606431B488]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1d0c921a32b73a2b","parentId":"cf67eb58d13b2b38","traceId":"00000000000000005632dfe9c0da6475","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:52.122Z","sequence":39437,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5fb92eb2-b534-4990-8242-7435329bbb17, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:52.132Z","sequence":39438,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 1F606431B488, resource-version: 521c8e34-9565-48f9-b20f-a214d416d09b]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1d0c921a32b73a2b","parentId":"cf67eb58d13b2b38","traceId":"00000000000000005632dfe9c0da6475","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:52.146Z","sequence":39439,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 1F606431B488, resource-version: 6d76bbc7-abd6-4758-9682-8c71fe56173f]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1d0c921a32b73a2b","parentId":"cf67eb58d13b2b38","traceId":"00000000000000005632dfe9c0da6475","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:52.149Z","sequence":39440,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 1F606431B488]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"552bdf5b776b25dc","parentId":"a857d7bf8b646f49","traceId":"00000000000000005632dfe9c0da6475","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:52.373Z","sequence":39441,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 1F606431B488]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"552bdf5b776b25dc","parentId":"a857d7bf8b646f49","traceId":"00000000000000005632dfe9c0da6475","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:52.413Z","sequence":39442,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:52.413Z","sequence":39443,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10007F2] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:52.421Z","sequence":39444,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:52.421Z","sequence":39445,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:52.429Z","sequence":39446,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ab1f91a4-ca3e-4956-a436-6d32a00ae7fd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:53.369Z","sequence":39447,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFA9DC75A745CD8]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9f6e86bbfe793872","parentId":"2b9810b51c62ec7c","traceId":"00000000000000003f217bde5e2bba06","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:53.396Z","sequence":39448,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFA9DC75A745CD8, resource-version: 6e6d6c62-ca90-4a83-b997-7a6028d13361]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9f6e86bbfe793872","parentId":"2b9810b51c62ec7c","traceId":"00000000000000003f217bde5e2bba06","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:53.412Z","sequence":39449,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFA9DC75A745CD8, resource-version: 57e761df-5fd7-4a37-a758-5a72e8991fe7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9f6e86bbfe793872","parentId":"2b9810b51c62ec7c","traceId":"00000000000000003f217bde5e2bba06","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:54.425Z","sequence":39450,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFA9DC75A745CD8]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fee4d81d9ef1ad2a","parentId":"f3aa8913640711a2","traceId":"0000000000000000accb1a656f0e41d5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:54.448Z","sequence":39451,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFA9DC75A745CD8]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fee4d81d9ef1ad2a","parentId":"f3aa8913640711a2","traceId":"0000000000000000accb1a656f0e41d5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:54.887Z","sequence":39452,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 1F606431B488]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b7e4e00cfed2f950","parentId":"78eb79ea159ec671","traceId":"0000000000000000b7bbd9b66876c37c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:54.914Z","sequence":39453,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 1F606431B488]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b7e4e00cfed2f950","parentId":"78eb79ea159ec671","traceId":"0000000000000000b7bbd9b66876c37c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:58.621Z","sequence":39454,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:58.621Z","sequence":39455,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: chevron]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:58.63Z","sequence":39456,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-ee0c9eae-d852-45eb-874f-29e02bb74f00, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:58.632Z","sequence":39457,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/chevron:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:58.632Z","sequence":39458,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: chevron, type: hashed-password, auth-id: auth-CHEVRON-ORBIWISE-EL-SEGUNDO]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:58.658Z","sequence":39459,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-cd7c4c07-018b-49fe-863f-085a1743f0a1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:58.78Z","sequence":39460,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/chevron:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:58.78Z","sequence":39461,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: chevron, device-id: 70B3D57BB10005BF] for gateway [CHEVRON-ORBIWISE-EL-SEGUNDO]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:58.78Z","sequence":39462,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/chevron:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:58.781Z","sequence":39463,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: chevron, device-id: CHEVRON-ORBIWISE-EL-SEGUNDO]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:58.785Z","sequence":39464,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_chevron\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:58.785Z","sequence":39465,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_chevron\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:58.786Z","sequence":39466,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-53de8ef7-d769-4fcc-9b61-70b9ed2dc843, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:58.793Z","sequence":39467,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-91526b50-6f3c-4f7c-8b95-4b314e3c9041, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:59.367Z","sequence":39468,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:59.367Z","sequence":39469,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001D4] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:59.373Z","sequence":39470,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:59.373Z","sequence":39471,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:59.377Z","sequence":39472,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-58a92a22-4ef5-474e-b117-9fc3bf2b416f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:59.486Z","sequence":39473,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:59.487Z","sequence":39474,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:59.496Z","sequence":39475,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-144dbb46-6e96-4288-8672-9567aa501013, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:59.499Z","sequence":39476,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:59.499Z","sequence":39477,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001D4] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:59.505Z","sequence":39478,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:59.505Z","sequence":39479,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:59.508Z","sequence":39480,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c8d3c73b-ce34-4650-9117-d22d72aa1a3f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:59.57Z","sequence":39481,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:59.57Z","sequence":39482,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: flint]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:59.574Z","sequence":39483,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-8f6b26fa-f165-4be4-8a21-9ef71405e350, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:59.576Z","sequence":39484,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/flint:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:59.576Z","sequence":39485,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: flint, type: hashed-password, auth-id: auth-flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:50:59.593Z","sequence":39486,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-3fc4d7f8-7e02-4bc9-bde4-8487bc774253, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:00.25Z","sequence":39487,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:00.251Z","sequence":39488,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10002AC] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:00.263Z","sequence":39489,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:00.264Z","sequence":39490,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:00.276Z","sequence":39491,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1c934c8a-8154-4aef-a067-5e11e367664e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:01.422Z","sequence":39492,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/conditionall:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:01.423Z","sequence":39493,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: conditionall, device-id: 70B3D57BB10001F0] for gateway [0008004B512D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:01.427Z","sequence":39494,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:01.427Z","sequence":39495,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10013DC] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:01.435Z","sequence":39496,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_conditionall\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:01.435Z","sequence":39497,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_conditionall\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:01.448Z","sequence":39498,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:01.448Z","sequence":39499,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:01.449Z","sequence":39500,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8fcf1901-8eaa-4e91-a7e5-001c7ea5097f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:01.469Z","sequence":39501,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-837ca354-1b51-454d-96a5-cd2b69962418, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:03.306Z","sequence":39502,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: A3E1F04CA2B0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6fb31fc939a8fac8","parentId":"946b74ac91e58e08","traceId":"00000000000000003947de9719b9cd84","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:03.348Z","sequence":39503,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: A3E1F04CA2B0, resource-version: 37dc1578-ec90-4a50-9a89-ed3ab7807431]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6fb31fc939a8fac8","parentId":"946b74ac91e58e08","traceId":"00000000000000003947de9719b9cd84","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:03.357Z","sequence":39504,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: A3E1F04CA2B0, resource-version: dd47ae87-bf25-44aa-a3f4-75c1bcfbf842]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6fb31fc939a8fac8","parentId":"946b74ac91e58e08","traceId":"00000000000000003947de9719b9cd84","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:03.362Z","sequence":39505,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: A3E1F04CA2B0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f534413a7a779389","parentId":"075a6540ae00336d","traceId":"00000000000000003947de9719b9cd84","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:03.527Z","sequence":39506,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: A3E1F04CA2B0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f534413a7a779389","parentId":"075a6540ae00336d","traceId":"00000000000000003947de9719b9cd84","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:04.2Z","sequence":39507,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF24EDFABE62E2E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0c0e5ae3859aaab5","parentId":"09a53c29c72603f1","traceId":"000000000000000055594cd3c01b3239","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:04.268Z","sequence":39508,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF24EDFABE62E2E, resource-version: e573c0f1-791a-4a54-8039-27ef1189e2c5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0c0e5ae3859aaab5","parentId":"09a53c29c72603f1","traceId":"000000000000000055594cd3c01b3239","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:04.282Z","sequence":39509,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF24EDFABE62E2E, resource-version: 5b76e580-01f3-44c6-9e03-6e65a424cdd2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0c0e5ae3859aaab5","parentId":"09a53c29c72603f1","traceId":"000000000000000055594cd3c01b3239","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:05.489Z","sequence":39510,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:05.489Z","sequence":39511,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-A3E1F04CA2B0]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:05.531Z","sequence":39512,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-591c4f01-1932-4a42-95fe-c7b0a19522af, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:05.632Z","sequence":39513,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:05.633Z","sequence":39514,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100069E] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:05.657Z","sequence":39515,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:05.657Z","sequence":39516,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:05.661Z","sequence":39517,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:05.661Z","sequence":39518,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: A3E1F04CA2B0]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:05.688Z","sequence":39519,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6df7eeb4-248f-4e99-8ec5-f6cdd3dd76e1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:05.693Z","sequence":39520,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:05.693Z","sequence":39521,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF24EDFABE62E2E] for gateway [A3E1F04CA2B0]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:05.712Z","sequence":39522,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.5.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:05.712Z","sequence":39523,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:05.714Z","sequence":39524,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-77037ad6-c089-4650-8a7d-90f8c29be2a0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:06.086Z","sequence":39525,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0a85b0d2-3734-4758-b7b3-4e7f915c7cc9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:08.047Z","sequence":39526,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:08.047Z","sequence":39527,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AE0] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:08.057Z","sequence":39528,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:08.057Z","sequence":39529,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:08.065Z","sequence":39530,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-48533058-5c86-43b7-ba06-9edf1d93cc07, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:09.655Z","sequence":39531,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:09.656Z","sequence":39532,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-00GWALP120IT]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:09.676Z","sequence":39533,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-c7c5750d-3d0a-4bd0-bdea-8563af10d839, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:09.812Z","sequence":39534,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:09.812Z","sequence":39535,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 00GWALP120IT]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:09.821Z","sequence":39536,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f50887cf-7f7b-425d-8dd1-40ead5ab89d4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:09.826Z","sequence":39537,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:09.826Z","sequence":39538,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 4A38383700300023] for gateway [00GWALP120IT]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:09.833Z","sequence":39539,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:0.3.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:09.834Z","sequence":39540,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7\",\n \"upstream-message-mapper\" : \"upstream_dash7\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:10.416Z","sequence":39541,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-553b576b-ef28-48f9-aecb-39c1a670ceab, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:11.235Z","sequence":39542,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:11.236Z","sequence":39543,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: ineos]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:11.239Z","sequence":39544,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-8a2b1f30-a622-4013-b340-8f728915e415, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:11.241Z","sequence":39545,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:11.241Z","sequence":39546,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB1000A84] for gateway [0008004B5135]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:11.244Z","sequence":39547,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:11.244Z","sequence":39548,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB1000A84] for gateway [0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:11.246Z","sequence":39549,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:11.246Z","sequence":39550,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:11.249Z","sequence":39551,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-cd7a8f48-694e-460d-b697-8048086ecc0c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:11.25Z","sequence":39552,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:11.25Z","sequence":39553,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:11.253Z","sequence":39554,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3835e99a-e502-4c99-bd14-2b1ddab8da90, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:12.376Z","sequence":39555,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:12.376Z","sequence":39556,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000574] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:12.385Z","sequence":39557,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:12.385Z","sequence":39558,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:12.393Z","sequence":39559,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-99375546-6039-4332-9d35-766a32e52dcd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:14.759Z","sequence":39560,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF24EDFABE62E2E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"17c011bdb495ace3","parentId":"98a290ea6ca3b2e0","traceId":"00000000000000006373a942870263e6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:14.788Z","sequence":39561,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF24EDFABE62E2E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"17c011bdb495ace3","parentId":"98a290ea6ca3b2e0","traceId":"00000000000000006373a942870263e6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:15.212Z","sequence":39562,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: A3E1F04CA2B0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e4edc958aa402567","parentId":"79473e05c47160b4","traceId":"00000000000000007e09ea9baf2a1cdc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:15.228Z","sequence":39563,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: A3E1F04CA2B0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e4edc958aa402567","parentId":"79473e05c47160b4","traceId":"00000000000000007e09ea9baf2a1cdc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:15.743Z","sequence":39564,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:15.747Z","sequence":39565,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 70B3D57BB100018E] for gateway [0008004BB84C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:15.753Z","sequence":39566,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_lanxess\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:15.753Z","sequence":39567,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_lanxess\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:15.757Z","sequence":39568,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6ec462dd-76eb-4805-b50a-f073c0c46e02, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:19.346Z","sequence":39569,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191380]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"87be23f603bb5953","parentId":"a8c1823165c6163a","traceId":"0000000000000000e1c77e27433e40d8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:19.364Z","sequence":39570,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191380, resource-version: a59fe3c8-ba55-4c8f-8a9d-57c9bdf51974]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"87be23f603bb5953","parentId":"a8c1823165c6163a","traceId":"0000000000000000e1c77e27433e40d8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:19.375Z","sequence":39571,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191380, resource-version: cc0117af-67d5-4352-a6d1-503e31943b9d]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"87be23f603bb5953","parentId":"a8c1823165c6163a","traceId":"0000000000000000e1c77e27433e40d8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:19.38Z","sequence":39572,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191380]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4bc7d5fee6cbcb7d","parentId":"5996c62742dbe048","traceId":"0000000000000000e1c77e27433e40d8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:19.543Z","sequence":39573,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191380]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4bc7d5fee6cbcb7d","parentId":"5996c62742dbe048","traceId":"0000000000000000e1c77e27433e40d8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:20.504Z","sequence":39574,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF9FFF748615521]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5d313e920a2376cd","parentId":"df7f71c913745676","traceId":"00000000000000000cb3fe2beac6da0c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:20.524Z","sequence":39575,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF9FFF748615521, resource-version: 6b6057b6-5c75-4b9e-b02e-6545724ab30e]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5d313e920a2376cd","parentId":"df7f71c913745676","traceId":"00000000000000000cb3fe2beac6da0c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:20.529Z","sequence":39576,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF9FFF748615521, resource-version: 5d83f21d-083f-4b39-8c8f-b21572ab7418]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5d313e920a2376cd","parentId":"df7f71c913745676","traceId":"00000000000000000cb3fe2beac6da0c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:21.687Z","sequence":39577,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:21.692Z","sequence":39578,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:21.712Z","sequence":39579,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-05b5cf38-0dda-4c0a-90f5-f9d529ae0d3d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:21.717Z","sequence":39580,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:21.717Z","sequence":39581,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191380]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:21.743Z","sequence":39582,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-91d46120-dec0-4ce6-8b68-2f4ff6f2c295, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:21.893Z","sequence":39583,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:21.893Z","sequence":39584,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF9FFF748615521] for gateway [gateway_integrationtest_network_191380]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:21.894Z","sequence":39585,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:21.894Z","sequence":39586,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191380]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:21.904Z","sequence":39587,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5074db4b-73b4-4483-a30d-2e3709c007cb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:21.904Z","sequence":39588,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.7.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:21.904Z","sequence":39589,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:22.211Z","sequence":39590,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-31fd47c1-b171-42c3-ac2a-bcc4f8cb8bdc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:22.212Z","sequence":39591,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:22.212Z","sequence":39592,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:22.221Z","sequence":39593,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-4562e513-934e-42f7-baf3-55bac22c1e5f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:25.19Z","sequence":39594,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:25.19Z","sequence":39595,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B5D] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:25.201Z","sequence":39596,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:25.201Z","sequence":39597,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:25.209Z","sequence":39598,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-aeacd9c8-d503-411b-98d6-2dec6c0313ea, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:25.315Z","sequence":39599,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:25.315Z","sequence":39600,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A5A] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:25.322Z","sequence":39601,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:25.322Z","sequence":39602,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:25.328Z","sequence":39603,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e08f467d-16db-44f0-8c4f-89f0bea90112, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:27.162Z","sequence":39604,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:27.163Z","sequence":39605,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BB84C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:27.18Z","sequence":39606,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-694df181-18ee-467e-beb0-7961e727e75f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:27.677Z","sequence":39607,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 91BE8D40F6F5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d171dc54b9697d95","parentId":"b018dfedd7b9617f","traceId":"00000000000000007830734a67f0a934","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:27.712Z","sequence":39608,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 91BE8D40F6F5, resource-version: 53b5ccfb-8d36-4c5c-8dd8-b37075fd74cc]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d171dc54b9697d95","parentId":"b018dfedd7b9617f","traceId":"00000000000000007830734a67f0a934","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:27.722Z","sequence":39609,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 91BE8D40F6F5, resource-version: fee5bbdd-1c1d-41d7-8214-79e6e6131225]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d171dc54b9697d95","parentId":"b018dfedd7b9617f","traceId":"00000000000000007830734a67f0a934","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:27.727Z","sequence":39610,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 91BE8D40F6F5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"07ab33768415c3aa","parentId":"12684420959439f1","traceId":"00000000000000007830734a67f0a934","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:27.955Z","sequence":39611,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 91BE8D40F6F5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"07ab33768415c3aa","parentId":"12684420959439f1","traceId":"00000000000000007830734a67f0a934","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:28.216Z","sequence":39612,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:28.216Z","sequence":39613,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 0008004B5135]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:28.221Z","sequence":39614,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ba2bd0b0-8be4-4dab-82c1-73bcc244e545, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:28.583Z","sequence":39615,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFA3D9824FC2E27]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d485d7d3b7678214","parentId":"f6266c592ae9b2d2","traceId":"0000000000000000de1f76647cf5ace5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:28.599Z","sequence":39616,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFA3D9824FC2E27, resource-version: b83a584c-bafc-484f-ad5e-f6247b1cd660]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d485d7d3b7678214","parentId":"f6266c592ae9b2d2","traceId":"0000000000000000de1f76647cf5ace5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:28.608Z","sequence":39617,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFA3D9824FC2E27, resource-version: dda46ea0-c125-492d-909c-0a8110d93bee]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d485d7d3b7678214","parentId":"f6266c592ae9b2d2","traceId":"0000000000000000de1f76647cf5ace5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:29.658Z","sequence":39618,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:29.66Z","sequence":39619,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-91BE8D40F6F5]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:29.669Z","sequence":39620,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-c893ea73-06eb-454b-9f85-28513011e542, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:29.811Z","sequence":39621,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:29.811Z","sequence":39622,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 91BE8D40F6F5]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:29.816Z","sequence":39623,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f9b3d787-e319-4c61-8f8e-9fffe17c83b3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:29.82Z","sequence":39624,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:29.82Z","sequence":39625,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFA3D9824FC2E27] for gateway [91BE8D40F6F5]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:29.826Z","sequence":39626,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.5.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:29.826Z","sequence":39627,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:30.038Z","sequence":39628,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d43a54f2-abf8-4bae-a3b8-fab4b2e275d5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:31.409Z","sequence":39629,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:31.41Z","sequence":39630,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000F82] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:31.416Z","sequence":39631,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:31.416Z","sequence":39632,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:31.426Z","sequence":39633,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ab54a8d0-54aa-4960-8946-1e4b04859ed3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:32.195Z","sequence":39634,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:32.196Z","sequence":39635,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C2F] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:32.201Z","sequence":39636,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:32.201Z","sequence":39637,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:32.208Z","sequence":39638,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:32.208Z","sequence":39639,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BBD1B]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:32.208Z","sequence":39640,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-72ab784c-72db-4e97-8bdf-8d743044a841, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:32.213Z","sequence":39641,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6baab5a6-e416-4eff-849d-fbae947066df, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:34.988Z","sequence":39642,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF9FFF748615521]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"12e3731353e249d6","parentId":"5211c6011ed62b62","traceId":"0000000000000000be29c2da19914800","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:35.009Z","sequence":39643,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF9FFF748615521]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"12e3731353e249d6","parentId":"5211c6011ed62b62","traceId":"0000000000000000be29c2da19914800","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:35.131Z","sequence":39644,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191380]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7e6d7262e8d57d3c","parentId":"866eea02281811d1","traceId":"0000000000000000f55befd6a51c2fae","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:35.149Z","sequence":39645,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191380]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7e6d7262e8d57d3c","parentId":"866eea02281811d1","traceId":"0000000000000000f55befd6a51c2fae","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:35.545Z","sequence":39646,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: F8B0D5FDFE64]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"54551142df21d940","parentId":"aae9640b9d2af29b","traceId":"0000000000000000b14cf02e4f111726","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:35.562Z","sequence":39647,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: F8B0D5FDFE64, resource-version: dc81b134-ae5b-4e1d-8d2e-894eeabb112b]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"54551142df21d940","parentId":"aae9640b9d2af29b","traceId":"0000000000000000b14cf02e4f111726","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:35.568Z","sequence":39648,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: F8B0D5FDFE64, resource-version: e18100bd-c4fb-4c08-8b76-aff8251fe3e1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"54551142df21d940","parentId":"aae9640b9d2af29b","traceId":"0000000000000000b14cf02e4f111726","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:35.571Z","sequence":39649,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: F8B0D5FDFE64]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"65b27bfa85e2fb7a","parentId":"fef32e9376767c26","traceId":"0000000000000000b14cf02e4f111726","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:35.707Z","sequence":39650,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: F8B0D5FDFE64]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"65b27bfa85e2fb7a","parentId":"fef32e9376767c26","traceId":"0000000000000000b14cf02e4f111726","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:36.129Z","sequence":39651,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF87CBF9F273C8D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"96278cf9dd5f8d37","parentId":"9bebdbe9af90ae91","traceId":"0000000000000000a4bcd179c8e2726d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:36.147Z","sequence":39652,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF87CBF9F273C8D, resource-version: 56542098-60fe-41d2-93e6-c9b60efc54d4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"96278cf9dd5f8d37","parentId":"9bebdbe9af90ae91","traceId":"0000000000000000a4bcd179c8e2726d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:36.153Z","sequence":39653,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF87CBF9F273C8D, resource-version: bb7a4290-abcb-482a-a971-3a7640d34d4b]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"96278cf9dd5f8d37","parentId":"9bebdbe9af90ae91","traceId":"0000000000000000a4bcd179c8e2726d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:36.39Z","sequence":39654,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:36.39Z","sequence":39655,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B68] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:36.398Z","sequence":39656,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:36.398Z","sequence":39657,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:36.404Z","sequence":39658,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e62f267b-95e5-4b4d-8798-11ea8c6e89cc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:37.201Z","sequence":39659,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:37.201Z","sequence":39660,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-F8B0D5FDFE64]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:37.213Z","sequence":39661,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-375441fd-5c17-4872-a074-da0aa17de35e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:37.334Z","sequence":39662,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:37.334Z","sequence":39663,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: F8B0D5FDFE64]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:37.341Z","sequence":39664,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-167630e1-f815-40d1-9b36-7834fd4df603, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:37.345Z","sequence":39665,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:37.345Z","sequence":39666,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF87CBF9F273C8D] for gateway [F8B0D5FDFE64]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:37.35Z","sequence":39667,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:37.35Z","sequence":39668,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:37.582Z","sequence":39669,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-24fbc945-6820-445c-8775-7856b559f3cc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:39.863Z","sequence":39670,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/arkema:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:39.863Z","sequence":39671,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: arkema, device-id: 0008004AE119]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:39.877Z","sequence":39672,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-dc31920d-93f0-400a-99f8-8835a4ef87c1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:39.88Z","sequence":39673,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:39.88Z","sequence":39674,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: arkema]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:39.887Z","sequence":39675,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-d15df19b-73e0-4aec-b278-f3204bd96d84, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:43.62Z","sequence":39676,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:43.62Z","sequence":39677,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: indeel]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:43.627Z","sequence":39678,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-5c1dfcd4-460d-4d8a-8af4-ea8d8111adf9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:43.629Z","sequence":39679,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/indeel:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:43.63Z","sequence":39680,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: indeel, type: hashed-password, auth-id: auth-gateway_indeel_network_40884]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:43.646Z","sequence":39681,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-85bad827-412a-4e17-b78d-f69c9807481c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:43.768Z","sequence":39682,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/indeel:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:43.769Z","sequence":39683,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: indeel, device-id: 70B3D57BB1001408] for gateway [gateway_indeel_network_40884]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:43.771Z","sequence":39684,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/indeel:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:43.771Z","sequence":39685,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: indeel, device-id: gateway_indeel_network_40884]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:43.776Z","sequence":39686,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_indeel\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:43.776Z","sequence":39687,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_indeel\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:43.777Z","sequence":39688,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-19782708-4fc1-4a3d-b3c0-9263455bd5da, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:43.779Z","sequence":39689,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e49f9a90-0bd9-49fd-aed7-d9ac2d479e18, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:44.182Z","sequence":39690,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFA3D9824FC2E27]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"eaacc76061abca84","parentId":"b6867882a7bf1a89","traceId":"0000000000000000795c0b89c948eba0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:44.205Z","sequence":39691,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFA3D9824FC2E27]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"eaacc76061abca84","parentId":"b6867882a7bf1a89","traceId":"0000000000000000795c0b89c948eba0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:44.905Z","sequence":39692,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 91BE8D40F6F5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"152c20fcd3a4d1ff","parentId":"bd71cf4180a4e274","traceId":"00000000000000009eb554d0ef6b22f7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:44.944Z","sequence":39693,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 91BE8D40F6F5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"152c20fcd3a4d1ff","parentId":"bd71cf4180a4e274","traceId":"00000000000000009eb554d0ef6b22f7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:45.741Z","sequence":39694,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF87CBF9F273C8D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"40a125cf98faadb0","parentId":"d92b9ecf57eb6945","traceId":"00000000000000002e270c1a2c88a611","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:45.759Z","sequence":39695,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF87CBF9F273C8D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"40a125cf98faadb0","parentId":"d92b9ecf57eb6945","traceId":"00000000000000002e270c1a2c88a611","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:46.049Z","sequence":39696,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: F8B0D5FDFE64]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0de6ca8a1885465d","parentId":"39082248ec35d7ff","traceId":"0000000000000000a4a95aec372fd9f6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:46.066Z","sequence":39697,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: F8B0D5FDFE64]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0de6ca8a1885465d","parentId":"39082248ec35d7ff","traceId":"0000000000000000a4a95aec372fd9f6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:46.571Z","sequence":39698,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191383]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6f9c150bc7b3df7d","parentId":"6d77c21e01fcbc1c","traceId":"00000000000000005f55b62e634940af","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:46.587Z","sequence":39699,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191383, resource-version: 865a817f-b4cc-4be0-8dd6-7d9fb0254661]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6f9c150bc7b3df7d","parentId":"6d77c21e01fcbc1c","traceId":"00000000000000005f55b62e634940af","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:46.593Z","sequence":39700,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191383, resource-version: 1ba18df5-4643-4a4c-bd48-8884222b6e37]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6f9c150bc7b3df7d","parentId":"6d77c21e01fcbc1c","traceId":"00000000000000005f55b62e634940af","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:46.597Z","sequence":39701,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191383]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0ba8e1c905fb1ece","parentId":"7f64269a9c2b85af","traceId":"00000000000000005f55b62e634940af","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:46.774Z","sequence":39702,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191383]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0ba8e1c905fb1ece","parentId":"7f64269a9c2b85af","traceId":"00000000000000005f55b62e634940af","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:47.955Z","sequence":39703,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFACFAFD41D06EF]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"42be25d5f6f51d47","parentId":"f295b66093b3469b","traceId":"000000000000000043f076045df162bb","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:47.975Z","sequence":39704,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFACFAFD41D06EF, resource-version: f055896a-9824-48e1-82ba-b0464614cd69]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"42be25d5f6f51d47","parentId":"f295b66093b3469b","traceId":"000000000000000043f076045df162bb","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:47.983Z","sequence":39705,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFACFAFD41D06EF, resource-version: 8539d8c3-61c1-4075-ab20-8d0d943c2081]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"42be25d5f6f51d47","parentId":"f295b66093b3469b","traceId":"000000000000000043f076045df162bb","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:49.322Z","sequence":39706,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:49.323Z","sequence":39707,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191383]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:49.334Z","sequence":39708,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-e4fd497c-3379-4af8-a73d-186346e13ca8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:49.464Z","sequence":39709,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:49.464Z","sequence":39710,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFACFAFD41D06EF] for gateway [gateway_integrationtest_network_191383]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:49.465Z","sequence":39711,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:49.465Z","sequence":39712,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191383]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:49.475Z","sequence":39713,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:49.476Z","sequence":39714,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:49.477Z","sequence":39715,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d6a2380b-4f72-4615-a2e4-a8534a31461d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:49.845Z","sequence":39716,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1be6c9e5-f962-44ce-8955-fa61a8568428, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:52.629Z","sequence":39717,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:52.629Z","sequence":39718,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: shell]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:52.632Z","sequence":39719,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-4daeef71-2f2d-44cb-a4b0-d60c230999eb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:52.634Z","sequence":39720,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/shell:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:52.634Z","sequence":39721,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: shell, type: hashed-password, auth-id: auth-gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:52.645Z","sequence":39722,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-e8b27929-17ec-4fc3-83f7-58301c198025, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:52.765Z","sequence":39723,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:52.765Z","sequence":39724,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BB0] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:52.77Z","sequence":39725,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:52.77Z","sequence":39726,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:52.777Z","sequence":39727,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7b450f42-041e-452e-a78a-c9b4e836a753, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:53.504Z","sequence":39728,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:53.504Z","sequence":39729,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB100089F] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:53.511Z","sequence":39730,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:53.512Z","sequence":39731,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:53.516Z","sequence":39732,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f7b8afb4-95e0-4705-a88c-8428352014a8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:53.679Z","sequence":39733,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:53.679Z","sequence":39734,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AEE] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:53.687Z","sequence":39735,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:53.688Z","sequence":39736,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:53.694Z","sequence":39737,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-070bd6df-b688-4fda-895a-e54f1d054c18, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:59.519Z","sequence":39738,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFACFAFD41D06EF]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"eb66ad55b3279f6d","parentId":"4961a02f0637864f","traceId":"0000000000000000d16577cf0b5b1c5e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:59.533Z","sequence":39739,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFACFAFD41D06EF]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"eb66ad55b3279f6d","parentId":"4961a02f0637864f","traceId":"0000000000000000d16577cf0b5b1c5e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:59.849Z","sequence":39740,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191383]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"37bab7aae843257f","parentId":"a359e8f02e506613","traceId":"0000000000000000742de46e760c0393","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:51:59.876Z","sequence":39741,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191383]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"37bab7aae843257f","parentId":"a359e8f02e506613","traceId":"0000000000000000742de46e760c0393","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:00.561Z","sequence":39742,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191384]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d14a778f1bd1c69b","parentId":"682decb53b2678a9","traceId":"00000000000000005b31bda27b8da896","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:00.603Z","sequence":39743,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191384, resource-version: a79326e4-da5a-4083-b181-f55cbddcb305]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d14a778f1bd1c69b","parentId":"682decb53b2678a9","traceId":"00000000000000005b31bda27b8da896","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:00.609Z","sequence":39744,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191384, resource-version: 4bb8f1f8-f8a7-46b7-9537-9dec8d969efb]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d14a778f1bd1c69b","parentId":"682decb53b2678a9","traceId":"00000000000000005b31bda27b8da896","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:00.614Z","sequence":39745,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191384]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5a0280eadf3e02f5","parentId":"d2e0c13f0e8112f9","traceId":"00000000000000005b31bda27b8da896","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:00.808Z","sequence":39746,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191384]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5a0280eadf3e02f5","parentId":"d2e0c13f0e8112f9","traceId":"00000000000000005b31bda27b8da896","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:01.796Z","sequence":39747,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF132975B33E091]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"920ba02d98491c28","parentId":"e6cc9979006c7a27","traceId":"00000000000000009fee189a7f200f0a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:01.822Z","sequence":39748,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF132975B33E091, resource-version: 995a5c89-1175-4ba4-b921-113c6e68a587]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"920ba02d98491c28","parentId":"e6cc9979006c7a27","traceId":"00000000000000009fee189a7f200f0a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:01.83Z","sequence":39749,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF132975B33E091, resource-version: 9eb71db4-cbe5-4771-b58e-4d2542318634]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"920ba02d98491c28","parentId":"e6cc9979006c7a27","traceId":"00000000000000009fee189a7f200f0a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:02.062Z","sequence":39750,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:02.062Z","sequence":39751,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: exxon]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:02.066Z","sequence":39752,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-e1d4dbe8-759e-4a9c-a136-21b2105c9a39, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:02.068Z","sequence":39753,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Source{address='credentials/exxon/334cf778-9f38-4d1b-a2c4-d246c3947f14', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:02.069Z","sequence":39754,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-20]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:02.069Z","sequence":39755,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@563a35e2] for replies to [credentials/exxon/334cf778-9f38-4d1b-a2c4-d246c3947f14]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:02.071Z","sequence":39756,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Target{address='credentials/exxon', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:02.071Z","sequence":39757,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-21]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:02.071Z","sequence":39758,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:02.074Z","sequence":39759,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/exxon:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:02.074Z","sequence":39760,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: exxon, type: hashed-password, auth-id: auth-gateway_exxon_network_2559]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:02.086Z","sequence":39761,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-9e2b8e9b-f5ed-40cf-b4c6-c4b148438d4a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:02.216Z","sequence":39762,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] wants to open a link [address: Source{address='registration/exxon/1c5d3ead-aa10-4de5-b064-fcaccc1cd2d9', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:02.216Z","sequence":39763,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-20]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:02.216Z","sequence":39764,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@2b39d368] for replies to [registration/exxon/1c5d3ead-aa10-4de5-b064-fcaccc1cd2d9]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:02.218Z","sequence":39765,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] wants to open a link [address: Target{address='registration/exxon', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:02.218Z","sequence":39766,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-21]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:02.218Z","sequence":39767,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:02.221Z","sequence":39768,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/exxon:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:02.221Z","sequence":39769,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: exxon, device-id: 70B3D57BB10013EC] for gateway [gateway_exxon_network_2559]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:02.221Z","sequence":39770,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/exxon:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:02.222Z","sequence":39771,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: exxon, device-id: gateway_exxon_network_2559]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:02.228Z","sequence":39772,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ed00c598-7430-42bf-84a8-b2c9467612df, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:02.229Z","sequence":39773,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_exxon\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:02.229Z","sequence":39774,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_exxon\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:02.233Z","sequence":39775,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5f5ab439-a597-4481-85dc-af8e5c7076c8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:02.552Z","sequence":39776,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191385]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c74bf704c34b1e17","parentId":"42e8d5c2adfca0bf","traceId":"000000000000000072eed3e746f520d7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:02.59Z","sequence":39777,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191385, resource-version: 19ea3c56-7f44-41bf-88cb-cf0d8359ac6a]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c74bf704c34b1e17","parentId":"42e8d5c2adfca0bf","traceId":"000000000000000072eed3e746f520d7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:02.61Z","sequence":39778,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191385, resource-version: 79baedab-c3cf-4ac0-8387-dddbd5e88eb2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c74bf704c34b1e17","parentId":"42e8d5c2adfca0bf","traceId":"000000000000000072eed3e746f520d7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:02.617Z","sequence":39779,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191385]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"11cf78c0bdcbdecf","parentId":"db994f133f4d9977","traceId":"000000000000000072eed3e746f520d7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:02.901Z","sequence":39780,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:02.901Z","sequence":39781,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191384]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:02.953Z","sequence":39782,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-87f37a7e-36fd-4822-b5cf-12d09720160d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:02.983Z","sequence":39783,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191385]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"11cf78c0bdcbdecf","parentId":"db994f133f4d9977","traceId":"000000000000000072eed3e746f520d7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:03.082Z","sequence":39784,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:03.082Z","sequence":39785,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF132975B33E091] for gateway [gateway_integrationtest_network_191384]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:03.083Z","sequence":39786,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:03.083Z","sequence":39787,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191384]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:03.105Z","sequence":39788,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e050f2fb-6a59-4466-b1ae-ff4b41b16ca4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:03.105Z","sequence":39789,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:connect:0.1.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:03.106Z","sequence":39790,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:03.237Z","sequence":39791,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:03.237Z","sequence":39792,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF132975B33E091] for gateway [gateway_integrationtest_network_191384]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:03.618Z","sequence":39793,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d6ea6e7a-3f01-4158-a2db-addaf16337e9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:03.625Z","sequence":39794,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:connect:0.1.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:03.625Z","sequence":39795,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:03.99Z","sequence":39796,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c9f84c9a-1c33-4e4d-a8da-74a58ee9ae12, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:04.322Z","sequence":39797,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFCC97F1542A39E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d8ba254b9906bc2f","parentId":"0aeb94d714417f40","traceId":"00000000000000002b339809796da433","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:04.339Z","sequence":39798,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFCC97F1542A39E, resource-version: 4563c3a1-06ac-4d3f-afbd-563cda5ab402]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d8ba254b9906bc2f","parentId":"0aeb94d714417f40","traceId":"00000000000000002b339809796da433","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:04.346Z","sequence":39799,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFCC97F1542A39E, resource-version: abe57e04-eef0-4109-b8b3-968922a8181d]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d8ba254b9906bc2f","parentId":"0aeb94d714417f40","traceId":"00000000000000002b339809796da433","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:05.072Z","sequence":39800,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFCC97F1542A39E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"800d972b74b1ee1b","parentId":"abe262df88735c5e","traceId":"0000000000000000d22193f43de5aa68","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:05.086Z","sequence":39801,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFCC97F1542A39E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"800d972b74b1ee1b","parentId":"abe262df88735c5e","traceId":"0000000000000000d22193f43de5aa68","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:05.401Z","sequence":39802,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191385]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9926273ad8de5701","parentId":"d7a03fdbae0048fc","traceId":"00000000000000004e68186bd495011a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:05.417Z","sequence":39803,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191385]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9926273ad8de5701","parentId":"d7a03fdbae0048fc","traceId":"00000000000000004e68186bd495011a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:05.544Z","sequence":39804,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 164A1BD1CD5E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"72509d57005d4cc8","parentId":"081ce0cf21387d2d","traceId":"0000000000000000fc72231c5627b076","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:05.561Z","sequence":39805,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 164A1BD1CD5E, resource-version: 84129a25-0f38-46c6-b738-fd6cb31c7336]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"72509d57005d4cc8","parentId":"081ce0cf21387d2d","traceId":"0000000000000000fc72231c5627b076","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:05.567Z","sequence":39806,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 164A1BD1CD5E, resource-version: 8cbdbf7e-0fe5-44d6-9fbd-d7b9e21a6a47]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"72509d57005d4cc8","parentId":"081ce0cf21387d2d","traceId":"0000000000000000fc72231c5627b076","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:05.572Z","sequence":39807,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 164A1BD1CD5E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4f6b4d5a5da9dba8","parentId":"9dd0d47e9cf711f4","traceId":"0000000000000000fc72231c5627b076","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:05.803Z","sequence":39808,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 164A1BD1CD5E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4f6b4d5a5da9dba8","parentId":"9dd0d47e9cf711f4","traceId":"0000000000000000fc72231c5627b076","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:05.819Z","sequence":39809,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191387]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"398a10f06a0ea723","parentId":"88aafcc497b2a116","traceId":"0000000000000000308ed16f482c5cb9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:05.83Z","sequence":39810,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:05.831Z","sequence":39811,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000680] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:05.841Z","sequence":39812,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191387, resource-version: 0f4962f2-ae98-4e0c-bfaf-202189dc1af5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"398a10f06a0ea723","parentId":"88aafcc497b2a116","traceId":"0000000000000000308ed16f482c5cb9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:05.843Z","sequence":39813,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:05.843Z","sequence":39814,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:05.85Z","sequence":39815,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b9722a42-284f-47f5-9d35-aa8c8ccd6c2d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:05.851Z","sequence":39816,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191387, resource-version: 4d7fb7c2-89b1-4529-920f-4f10f27f65ca]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"398a10f06a0ea723","parentId":"88aafcc497b2a116","traceId":"0000000000000000308ed16f482c5cb9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:05.854Z","sequence":39817,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191387]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"25b1e1072b55d601","parentId":"7f3cd0a8f74d2915","traceId":"0000000000000000308ed16f482c5cb9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:06.033Z","sequence":39818,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191387]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"25b1e1072b55d601","parentId":"7f3cd0a8f74d2915","traceId":"0000000000000000308ed16f482c5cb9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:06.606Z","sequence":39819,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFBA79EA7B56CB7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5748b72320a87344","parentId":"5ff4d09ef1e473e0","traceId":"00000000000000009c74ca31795fe36a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:06.632Z","sequence":39820,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFBA79EA7B56CB7, resource-version: e46d2f42-0477-420a-9491-7ac033a7f3a9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5748b72320a87344","parentId":"5ff4d09ef1e473e0","traceId":"00000000000000009c74ca31795fe36a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:06.652Z","sequence":39821,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFBA79EA7B56CB7, resource-version: a2e458ff-0484-4099-ab62-554473b853cf]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5748b72320a87344","parentId":"5ff4d09ef1e473e0","traceId":"00000000000000009c74ca31795fe36a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:07.11Z","sequence":39822,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF11AA94A07A9A5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"915c217ef3180140","parentId":"d80981862da06064","traceId":"0000000000000000c5dcf16a61d32818","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:07.184Z","sequence":39823,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF11AA94A07A9A5, resource-version: 8fc279d6-e44f-4cf6-a938-8ec4c893de12]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"915c217ef3180140","parentId":"d80981862da06064","traceId":"0000000000000000c5dcf16a61d32818","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:07.197Z","sequence":39824,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF11AA94A07A9A5, resource-version: 78adc453-e398-48c4-94ae-e18e2c333cec]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"915c217ef3180140","parentId":"d80981862da06064","traceId":"0000000000000000c5dcf16a61d32818","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:07.769Z","sequence":39825,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:07.77Z","sequence":39826,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191387]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:07.78Z","sequence":39827,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-2ad8f0f5-0fe0-4a43-a152-4c6fd09cb08a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:07.899Z","sequence":39828,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:07.9Z","sequence":39829,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFBA79EA7B56CB7] for gateway [gateway_integrationtest_network_191387]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:07.9Z","sequence":39830,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:07.9Z","sequence":39831,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191387]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:07.908Z","sequence":39832,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ba5c9b03-f99d-41e9-9461-2f3367ae8c81, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:07.909Z","sequence":39833,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.3.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:07.909Z","sequence":39834,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:08.141Z","sequence":39835,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-10ab4711-ef40-458b-a677-10067131b2f2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:08.337Z","sequence":39836,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:08.337Z","sequence":39837,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-164A1BD1CD5E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:08.377Z","sequence":39838,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-43740e7d-2e55-405d-9275-46dae9f04758, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:08.508Z","sequence":39839,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:08.508Z","sequence":39840,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 164A1BD1CD5E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:08.532Z","sequence":39841,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-49ad0305-40f7-419f-b7e9-4301278ff649, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:08.541Z","sequence":39842,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:08.541Z","sequence":39843,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF11AA94A07A9A5] for gateway [164A1BD1CD5E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:08.583Z","sequence":39844,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:08.583Z","sequence":39845,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:09.332Z","sequence":39846,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f83858fc-eb69-4435-996b-306683243b05, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:09.341Z","sequence":39847,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:09.341Z","sequence":39848,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF11AA94A07A9A5] for gateway [164A1BD1CD5E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:09.381Z","sequence":39849,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:09.381Z","sequence":39850,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:10.209Z","sequence":39851,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f335f531-e196-4a2b-ae93-394dac69abbc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:10.209Z","sequence":39852,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:10.21Z","sequence":39853,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A4B] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:10.211Z","sequence":39854,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/chevron:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:10.211Z","sequence":39855,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: chevron, device-id: 70B3D57BB100065E] for gateway [CHEVRON-ORBIWISE-EL-SEGUNDO]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:10.226Z","sequence":39856,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_chevron\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:10.227Z","sequence":39857,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_chevron\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:10.227Z","sequence":39858,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:10.227Z","sequence":39859,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:10.244Z","sequence":39860,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-98755a08-0e95-463b-98ee-815e1e8babc3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:10.244Z","sequence":39861,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-50ca5361-3231-4aec-84a5-201af3f26f09, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:10.876Z","sequence":39862,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"retrieving device [tenant: chevron, device-id: 70B3D57BB100065E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d16ae91c6fcdc1e6","parentId":"ed7a0e9d92695108","traceId":"e7fc20818e7ecbcf01ceeae1736cfe66","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:15.257Z","sequence":39863,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF132975B33E091]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3a16495334eba89c","parentId":"ed3e4cace9f4d455","traceId":"0000000000000000a893f557d5ca577b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:15.3Z","sequence":39864,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF132975B33E091]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3a16495334eba89c","parentId":"ed3e4cace9f4d455","traceId":"0000000000000000a893f557d5ca577b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:16.174Z","sequence":39865,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191384]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"24a43294372e97af","parentId":"b73135ae9e1eea05","traceId":"0000000000000000ed23c914a24b2404","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:16.19Z","sequence":39866,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191384]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"24a43294372e97af","parentId":"b73135ae9e1eea05","traceId":"0000000000000000ed23c914a24b2404","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:16.841Z","sequence":39867,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:16.842Z","sequence":39868,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BAE] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:16.848Z","sequence":39869,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:16.848Z","sequence":39870,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:16.855Z","sequence":39871,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2258c71a-760d-4ca0-9ae0-6b11e058e777, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:21.171Z","sequence":39872,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:21.172Z","sequence":39873,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A6D] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:21.177Z","sequence":39874,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:21.177Z","sequence":39875,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:21.184Z","sequence":39876,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8200285a-7587-4533-b42a-5b63d6c19bc1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:22.517Z","sequence":39877,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFBA79EA7B56CB7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"009d0dd7cf3d6670","parentId":"97f162da8fe72d0e","traceId":"00000000000000005daaed2f636dedf2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:22.556Z","sequence":39878,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFBA79EA7B56CB7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"009d0dd7cf3d6670","parentId":"97f162da8fe72d0e","traceId":"00000000000000005daaed2f636dedf2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:22.836Z","sequence":39879,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:22.836Z","sequence":39880,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:22.847Z","sequence":39881,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-abf1ea27-7d6b-488e-8d4f-5f9426319272, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:23.013Z","sequence":39882,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191387]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"13c4e170bdfca8ce","parentId":"6f51533386b9c4b2","traceId":"00000000000000003da812b5211c0e06","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:23.033Z","sequence":39883,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191387]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"13c4e170bdfca8ce","parentId":"6f51533386b9c4b2","traceId":"00000000000000003da812b5211c0e06","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:23.044Z","sequence":39884,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:23.045Z","sequence":39885,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-00GWALP120IT]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:23.063Z","sequence":39886,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-e2c66f70-ada8-4eef-8b62-6eaf3bbbb4f9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:23.189Z","sequence":39887,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:23.189Z","sequence":39888,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: C0FFEE2C0DE00000] for gateway [00GWALP120IT]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:23.195Z","sequence":39889,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:0.3.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:23.196Z","sequence":39890,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7\",\n \"upstream-message-mapper\" : \"upstream_dash7\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:23.568Z","sequence":39891,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0a3e1c9e-d9cc-4c3d-86b3-3fe9652e4f2e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:24.049Z","sequence":39892,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: ADBA793FC7BF]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3fa3e1dd9612f002","parentId":"3c2b5aba209a257e","traceId":"000000000000000008d7b92343c427fc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:24.077Z","sequence":39893,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: ADBA793FC7BF, resource-version: e03c9df4-1f65-4e6c-acee-98c3cde67f7e]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3fa3e1dd9612f002","parentId":"3c2b5aba209a257e","traceId":"000000000000000008d7b92343c427fc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:24.101Z","sequence":39894,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: ADBA793FC7BF, resource-version: fa971b69-fed9-4411-8004-3fc628fd68bd]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3fa3e1dd9612f002","parentId":"3c2b5aba209a257e","traceId":"000000000000000008d7b92343c427fc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:24.104Z","sequence":39895,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: ADBA793FC7BF]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f7a511c3f7d9a0e4","parentId":"ba8dc393d5ea2128","traceId":"000000000000000008d7b92343c427fc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:24.339Z","sequence":39896,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: ADBA793FC7BF]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f7a511c3f7d9a0e4","parentId":"ba8dc393d5ea2128","traceId":"000000000000000008d7b92343c427fc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:25.05Z","sequence":39897,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFD15D6B6D31110]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"52da21b89bb8d726","parentId":"b86d20e3b0d66850","traceId":"0000000000000000e2e8ebfea475a2ca","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:25.087Z","sequence":39898,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFD15D6B6D31110, resource-version: 1cbfd630-81eb-4647-a6f0-cd650b68d14a]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"52da21b89bb8d726","parentId":"b86d20e3b0d66850","traceId":"0000000000000000e2e8ebfea475a2ca","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:25.098Z","sequence":39899,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFD15D6B6D31110, resource-version: 03c8265c-7e3c-4dae-a02b-1cd10f8fcf94]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"52da21b89bb8d726","parentId":"b86d20e3b0d66850","traceId":"0000000000000000e2e8ebfea475a2ca","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:25.469Z","sequence":39900,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF11AA94A07A9A5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0c5d9d103d1c7934","parentId":"1efe92f948dedaf0","traceId":"000000000000000048cefee70430f95d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:25.51Z","sequence":39901,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF11AA94A07A9A5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0c5d9d103d1c7934","parentId":"1efe92f948dedaf0","traceId":"000000000000000048cefee70430f95d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:26.171Z","sequence":39902,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:26.171Z","sequence":39903,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-ADBA793FC7BF]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:26.19Z","sequence":39904,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-8e8ead94-2441-4bed-8ad3-f1182fb5af97, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:26.299Z","sequence":39905,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 164A1BD1CD5E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"118ac7735dfb288d","parentId":"d758751edad10ffd","traceId":"0000000000000000e006cb4da429ccb0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:26.314Z","sequence":39906,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:26.314Z","sequence":39907,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: ADBA793FC7BF]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:26.318Z","sequence":39908,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 164A1BD1CD5E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"118ac7735dfb288d","parentId":"d758751edad10ffd","traceId":"0000000000000000e006cb4da429ccb0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:26.325Z","sequence":39909,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8bc4caac-8588-44d1-b067-ed0e9eb968a8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:26.331Z","sequence":39910,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:26.331Z","sequence":39911,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD15D6B6D31110] for gateway [ADBA793FC7BF]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:26.337Z","sequence":39912,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:26.337Z","sequence":39913,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:26.76Z","sequence":39914,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-85564067-b576-46f7-9a54-c554007c1000, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:26.763Z","sequence":39915,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/acta:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:26.763Z","sequence":39916,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: acta, device-id: 35343834003C0033] for gateway [0008004AAAA3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:26.776Z","sequence":39917,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.3.0\"\n },\n \"viaGroups\" : [ \"gateways_acta\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:26.776Z","sequence":39918,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_acta\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:26.79Z","sequence":39919,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-96fe8510-916a-42d6-a522-889de3bea970, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:27.816Z","sequence":39920,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 9A697D1DCF34]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f29dbe011cd8b746","parentId":"30c447c9ecad39ae","traceId":"0000000000000000e0723916b85c8d83","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:27.853Z","sequence":39921,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 9A697D1DCF34, resource-version: 874946c3-59d9-4964-8856-41baa3619864]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f29dbe011cd8b746","parentId":"30c447c9ecad39ae","traceId":"0000000000000000e0723916b85c8d83","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:27.86Z","sequence":39922,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 9A697D1DCF34, resource-version: 6ba35a5f-131b-4b65-82d2-5caf0300590f]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f29dbe011cd8b746","parentId":"30c447c9ecad39ae","traceId":"0000000000000000e0723916b85c8d83","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:27.867Z","sequence":39923,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 9A697D1DCF34]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3096a15681c68476","parentId":"eef7464509d12b3f","traceId":"0000000000000000e0723916b85c8d83","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:28.193Z","sequence":39924,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 9A697D1DCF34]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3096a15681c68476","parentId":"eef7464509d12b3f","traceId":"0000000000000000e0723916b85c8d83","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:28.945Z","sequence":39925,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:28.945Z","sequence":39926,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AEF] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:28.953Z","sequence":39927,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:28.954Z","sequence":39928,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:28.961Z","sequence":39929,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6b8e8b75-8297-4edd-a7c1-9f3f031dc05c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:29.86Z","sequence":39930,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFAB72DFB29E448]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f54c16d18e27b1b6","parentId":"464a9f5d5cbfc83d","traceId":"000000000000000082cbd78e8a548f77","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:29.882Z","sequence":39931,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFAB72DFB29E448, resource-version: 42cf7503-c18a-4ed7-9f2a-91425c85b9db]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f54c16d18e27b1b6","parentId":"464a9f5d5cbfc83d","traceId":"000000000000000082cbd78e8a548f77","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:29.889Z","sequence":39932,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFAB72DFB29E448, resource-version: a5c14f25-3b08-4fe2-8312-219d9bb647c1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f54c16d18e27b1b6","parentId":"464a9f5d5cbfc83d","traceId":"000000000000000082cbd78e8a548f77","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:30.325Z","sequence":39933,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:30.325Z","sequence":39934,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10001DE] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:30.332Z","sequence":39935,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:0.4.1\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:30.332Z","sequence":39936,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:30.339Z","sequence":39937,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-26b538f4-00d0-4c7d-859a-ef33876ded65, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:30.943Z","sequence":39938,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:30.943Z","sequence":39939,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-9A697D1DCF34]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:30.954Z","sequence":39940,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-13ccfb88-5383-452a-bf86-7effc86b0fb9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:31.012Z","sequence":39941,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:31.012Z","sequence":39942,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006B9] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:31.017Z","sequence":39943,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:31.017Z","sequence":39944,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:31.023Z","sequence":39945,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8006eb5c-b1b8-4ce7-b312-f78fbf3e929b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:31.078Z","sequence":39946,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:31.078Z","sequence":39947,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 9A697D1DCF34]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:31.083Z","sequence":39948,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f3e7b3c1-0a66-47a5-b702-789778c48a08, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:31.087Z","sequence":39949,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:31.087Z","sequence":39950,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFAB72DFB29E448] for gateway [9A697D1DCF34]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:31.091Z","sequence":39951,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:31.091Z","sequence":39952,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:31.313Z","sequence":39953,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f749bb36-9b22-4f69-9993-6c0da6e4dc2b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:34.283Z","sequence":39954,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFAB72DFB29E448]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5ac84d1854096954","parentId":"6b5a3da509d55422","traceId":"000000000000000030908a0372725a9f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:34.303Z","sequence":39955,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFAB72DFB29E448]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5ac84d1854096954","parentId":"6b5a3da509d55422","traceId":"000000000000000030908a0372725a9f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:34.676Z","sequence":39956,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 9A697D1DCF34]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"460c10600de8317b","parentId":"f687c3e26ab4f64d","traceId":"00000000000000003728e44fd68da49c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:34.695Z","sequence":39957,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 9A697D1DCF34]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"460c10600de8317b","parentId":"f687c3e26ab4f64d","traceId":"00000000000000003728e44fd68da49c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:35.681Z","sequence":39958,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 778F432A977F]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f38588c6db74a3c4","parentId":"ad30d1a98f0da102","traceId":"00000000000000009e3d5118f0074337","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:35.698Z","sequence":39959,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 778F432A977F, resource-version: 3bece220-6920-4c2b-9226-0631422e2a70]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f38588c6db74a3c4","parentId":"ad30d1a98f0da102","traceId":"00000000000000009e3d5118f0074337","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:35.706Z","sequence":39960,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 778F432A977F, resource-version: a982201f-57b8-4c33-89e3-f33b4ab69d67]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f38588c6db74a3c4","parentId":"ad30d1a98f0da102","traceId":"00000000000000009e3d5118f0074337","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:35.712Z","sequence":39961,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 778F432A977F]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"dee2fec28e6d9642","parentId":"ef5b24de9e7144a7","traceId":"00000000000000009e3d5118f0074337","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:35.841Z","sequence":39962,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 778F432A977F]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"dee2fec28e6d9642","parentId":"ef5b24de9e7144a7","traceId":"00000000000000009e3d5118f0074337","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:36.296Z","sequence":39963,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFE69B0195DD04E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"37ca41adb9e148b8","parentId":"8e0743aea9fe58e3","traceId":"000000000000000091ab6db81d8b5452","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:36.314Z","sequence":39964,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFE69B0195DD04E, resource-version: 8d4ae311-3c68-4602-a319-4a1e714524cc]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"37ca41adb9e148b8","parentId":"8e0743aea9fe58e3","traceId":"000000000000000091ab6db81d8b5452","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:36.321Z","sequence":39965,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFE69B0195DD04E, resource-version: f054dd17-af2f-4e91-80f7-7f06c2f2c9ed]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"37ca41adb9e148b8","parentId":"8e0743aea9fe58e3","traceId":"000000000000000091ab6db81d8b5452","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:37.373Z","sequence":39966,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:37.373Z","sequence":39967,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-778F432A977F]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:37.385Z","sequence":39968,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-6fe87016-cfc5-40bf-a224-fb07a7e272ee, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:37.509Z","sequence":39969,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:37.509Z","sequence":39970,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 778F432A977F]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:37.514Z","sequence":39971,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f2c5071a-ef7b-47b8-a726-1bca193073be, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:37.518Z","sequence":39972,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:37.518Z","sequence":39973,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFE69B0195DD04E] for gateway [778F432A977F]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:37.523Z","sequence":39974,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:37.524Z","sequence":39975,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:37.692Z","sequence":39976,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ce944d16-4be3-45c0-84f9-90c740a7bd17, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:39.49Z","sequence":39977,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191391]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"06962de50489635a","parentId":"51b1e43e9f1604f6","traceId":"0000000000000000022723e2e5ad4e88","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:39.508Z","sequence":39978,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191391, resource-version: ce4c9160-9627-4fbd-94d8-fb7c058afff2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"06962de50489635a","parentId":"51b1e43e9f1604f6","traceId":"0000000000000000022723e2e5ad4e88","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:39.518Z","sequence":39979,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191391, resource-version: e48c583e-172e-4b2e-99b1-f9a9a5023aac]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"06962de50489635a","parentId":"51b1e43e9f1604f6","traceId":"0000000000000000022723e2e5ad4e88","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:39.523Z","sequence":39980,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191391]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8588790f29c32a43","parentId":"6c2c0577ed65e25d","traceId":"0000000000000000022723e2e5ad4e88","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:39.657Z","sequence":39981,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191391]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8588790f29c32a43","parentId":"6c2c0577ed65e25d","traceId":"0000000000000000022723e2e5ad4e88","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:40.343Z","sequence":39982,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF27150F4C67C77]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c850f69211b560a4","parentId":"24ea2226e0ff3a70","traceId":"0000000000000000d9032581b21ae2c4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:40.361Z","sequence":39983,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF27150F4C67C77, resource-version: 8b3baeeb-cc56-4366-a2cd-e913a8bb2d80]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c850f69211b560a4","parentId":"24ea2226e0ff3a70","traceId":"0000000000000000d9032581b21ae2c4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:40.367Z","sequence":39984,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF27150F4C67C77, resource-version: 094adb4f-b062-493f-aae3-e7877095d083]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c850f69211b560a4","parentId":"24ea2226e0ff3a70","traceId":"0000000000000000d9032581b21ae2c4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:41.445Z","sequence":39985,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:41.446Z","sequence":39986,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191391]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:41.458Z","sequence":39987,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-59d9e9a8-6f83-4394-8084-152b0e311df8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:41.587Z","sequence":39988,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:41.587Z","sequence":39989,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF27150F4C67C77] for gateway [gateway_integrationtest_network_191391]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:41.588Z","sequence":39990,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:41.588Z","sequence":39991,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191391]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:41.593Z","sequence":39992,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7dad2098-074f-4b4a-8afb-28147172fdbc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:41.593Z","sequence":39993,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:41.593Z","sequence":39994,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:41.754Z","sequence":39995,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1f285233-dad2-43d0-9b2f-b06cd4b10c41, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:45.383Z","sequence":39996,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFD15D6B6D31110]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"515bddd906978688","parentId":"c998596856a3ebdd","traceId":"0000000000000000e1345c7f9b096447","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:45.4Z","sequence":39997,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFD15D6B6D31110]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"515bddd906978688","parentId":"c998596856a3ebdd","traceId":"0000000000000000e1345c7f9b096447","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:45.573Z","sequence":39998,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:45.573Z","sequence":39999,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AD0] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:45.58Z","sequence":40000,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:45.58Z","sequence":40001,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:45.586Z","sequence":40002,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5ac77878-9bd5-4ce0-9851-0e82b857e8f7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:45.722Z","sequence":40003,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: ADBA793FC7BF]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ee534a4fa3d10f06","parentId":"8eab7bdcfc59cf9e","traceId":"00000000000000004c05a9a064807033","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:45.738Z","sequence":40004,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: ADBA793FC7BF]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ee534a4fa3d10f06","parentId":"8eab7bdcfc59cf9e","traceId":"00000000000000004c05a9a064807033","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:46.981Z","sequence":40005,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:46.981Z","sequence":40006,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C46] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:46.987Z","sequence":40007,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:46.987Z","sequence":40008,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:46.993Z","sequence":40009,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d714e617-461b-4386-a4a8-23a8bc6f7a31, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:49.903Z","sequence":40010,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:49.903Z","sequence":40011,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006A6] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:49.909Z","sequence":40012,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:49.909Z","sequence":40013,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:49.916Z","sequence":40014,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a6b963a5-57b5-4f46-ab56-e6e9d51a0be3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:50.528Z","sequence":40015,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 8B4026CAC82D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0601d0893b6690c8","parentId":"df474ec287e6b3c4","traceId":"0000000000000000388956f94a82c9be","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:50.545Z","sequence":40016,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 8B4026CAC82D, resource-version: 3b86804f-0844-4d20-8f69-121d9d153b6f]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0601d0893b6690c8","parentId":"df474ec287e6b3c4","traceId":"0000000000000000388956f94a82c9be","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:50.551Z","sequence":40017,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 8B4026CAC82D, resource-version: 59b331d3-f659-4753-8243-6fc05a760ff9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0601d0893b6690c8","parentId":"df474ec287e6b3c4","traceId":"0000000000000000388956f94a82c9be","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:50.555Z","sequence":40018,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 8B4026CAC82D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c8f1d843223c42e4","parentId":"d303d69a83b70668","traceId":"0000000000000000388956f94a82c9be","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:50.67Z","sequence":40019,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 8B4026CAC82D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c8f1d843223c42e4","parentId":"d303d69a83b70668","traceId":"0000000000000000388956f94a82c9be","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:51.036Z","sequence":40020,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFD247C372FF2AA]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d9bae84ca58ce5dc","parentId":"a4b1e4d51fc1d9ff","traceId":"0000000000000000535d0e9ff6ee4658","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:51.063Z","sequence":40021,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFD247C372FF2AA, resource-version: 03882d1a-90a5-4cc3-a6c6-9ee1cd4320b2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d9bae84ca58ce5dc","parentId":"a4b1e4d51fc1d9ff","traceId":"0000000000000000535d0e9ff6ee4658","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:51.073Z","sequence":40022,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFD247C372FF2AA, resource-version: 1f7d1a2a-77e7-4a01-ac5f-ec592434ced7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d9bae84ca58ce5dc","parentId":"a4b1e4d51fc1d9ff","traceId":"0000000000000000535d0e9ff6ee4658","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:51.252Z","sequence":40023,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFE69B0195DD04E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"88b0577222b8f1bd","parentId":"36f447c0a959abf5","traceId":"0000000000000000820a68e389c12af9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:51.273Z","sequence":40024,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFE69B0195DD04E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"88b0577222b8f1bd","parentId":"36f447c0a959abf5","traceId":"0000000000000000820a68e389c12af9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:51.997Z","sequence":40025,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 778F432A977F]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"13694847723e59d4","parentId":"a78ef258bf946153","traceId":"0000000000000000f3e1b1fc9f2816aa","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:52.016Z","sequence":40026,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 778F432A977F]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"13694847723e59d4","parentId":"a78ef258bf946153","traceId":"0000000000000000f3e1b1fc9f2816aa","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:52.171Z","sequence":40027,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:52.171Z","sequence":40028,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-8B4026CAC82D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:52.182Z","sequence":40029,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-dbda9c6f-6075-4801-9511-87a30e81242e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:52.303Z","sequence":40030,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:52.303Z","sequence":40031,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 8B4026CAC82D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:52.311Z","sequence":40032,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-20a92549-c694-4307-bd4b-727eca4878a4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:52.316Z","sequence":40033,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:52.316Z","sequence":40034,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD247C372FF2AA] for gateway [8B4026CAC82D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:52.321Z","sequence":40035,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:52.321Z","sequence":40036,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:52.565Z","sequence":40037,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF27150F4C67C77]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e23c6ea7d39ace5a","parentId":"56c46e531a2b4e31","traceId":"000000000000000077e7a242be4928e5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:52.587Z","sequence":40038,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF27150F4C67C77]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e23c6ea7d39ace5a","parentId":"56c46e531a2b4e31","traceId":"000000000000000077e7a242be4928e5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:52.786Z","sequence":40039,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f5802824-24fd-4ddc-81c3-e2ee68c9e520, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:52.786Z","sequence":40040,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:52.787Z","sequence":40041,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 0008004C80F4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:52.803Z","sequence":40042,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d29b725f-190d-4295-87eb-4035062cdb93, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:53.155Z","sequence":40043,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191391]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"39b6f24f9fc2f016","parentId":"4da18f77f5c8a89f","traceId":"0000000000000000d3e9eda02a599e89","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:53.173Z","sequence":40044,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191391]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"39b6f24f9fc2f016","parentId":"4da18f77f5c8a89f","traceId":"0000000000000000d3e9eda02a599e89","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:53.572Z","sequence":40045,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:53.572Z","sequence":40046,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006E4] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:53.581Z","sequence":40047,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.8.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:53.582Z","sequence":40048,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:53.593Z","sequence":40049,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ef44c226-b5da-4fb7-a308-a3bbca692ced, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:57.09Z","sequence":40050,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:57.091Z","sequence":40051,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BBD1C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:57.099Z","sequence":40052,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-66970c14-3a24-498b-8597-2d97937bb96f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:57.102Z","sequence":40053,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:57.102Z","sequence":40054,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: lanxess]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:52:57.105Z","sequence":40055,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-9c845904-8be5-4387-8470-2de735723f0f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:02.252Z","sequence":40056,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:02.252Z","sequence":40057,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BAB] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:02.253Z","sequence":40058,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:02.253Z","sequence":40059,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:02.259Z","sequence":40060,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:02.259Z","sequence":40061,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:02.26Z","sequence":40062,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b2ec0c8c-9e8e-4461-85bd-8aef5be7ecf5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:02.266Z","sequence":40063,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-52db2064-a76e-46e3-919b-8ea04414518e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:05.504Z","sequence":40064,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFD247C372FF2AA]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"51ed8d5333beb197","parentId":"aff3ff7f539a663b","traceId":"00000000000000007c646a1fe9732e75","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:05.524Z","sequence":40065,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFD247C372FF2AA]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"51ed8d5333beb197","parentId":"aff3ff7f539a663b","traceId":"00000000000000007c646a1fe9732e75","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:05.927Z","sequence":40066,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 8B4026CAC82D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6d306dbdcdfbf85d","parentId":"646ece4e6b36f180","traceId":"00000000000000007f0973898fed1d6d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:05.948Z","sequence":40067,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 8B4026CAC82D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6d306dbdcdfbf85d","parentId":"646ece4e6b36f180","traceId":"00000000000000007f0973898fed1d6d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:10.227Z","sequence":40068,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oiltanking:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:10.227Z","sequence":40069,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oiltanking, device-id: 0008004BB60F]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:10.233Z","sequence":40070,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4d1e0f37-e097-4fbe-bcbd-86e15c555b98, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:10.236Z","sequence":40071,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:10.236Z","sequence":40072,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oiltanking]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:10.238Z","sequence":40073,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-55294bba-b75c-4c31-8f21-6717c519cf47, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:10.529Z","sequence":40074,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:10.529Z","sequence":40075,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AF6] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:10.536Z","sequence":40076,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:10.536Z","sequence":40077,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:10.543Z","sequence":40078,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3a7a067e-0ea9-4e16-afc2-c93d00cddc5a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:18.533Z","sequence":40079,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:18.533Z","sequence":40080,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000696] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:18.557Z","sequence":40081,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:18.557Z","sequence":40082,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:18.563Z","sequence":40083,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9a85f5bb-2241-40a1-bb76-b7af7d42a4ec, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:23.014Z","sequence":40084,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:23.014Z","sequence":40085,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006DA] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:23.02Z","sequence":40086,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.8.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:23.02Z","sequence":40087,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:23.027Z","sequence":40088,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b4cc08a6-25f7-41b5-9f72-b0ab02e7f8d5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:24.608Z","sequence":40089,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:24.609Z","sequence":40090,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A5F] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:24.619Z","sequence":40091,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:24.619Z","sequence":40092,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:24.625Z","sequence":40093,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6ceaf32b-1278-4fe2-9d43-2acab0c0fb77, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:26.245Z","sequence":40094,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:26.245Z","sequence":40095,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000691] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:26.253Z","sequence":40096,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:26.253Z","sequence":40097,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:26.259Z","sequence":40098,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d9a9d822-acec-4396-ae82-61148c8afe41, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:26.998Z","sequence":40099,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:26.998Z","sequence":40100,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oci]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:27.002Z","sequence":40101,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-ea6275f5-4551-45ca-80f8-bd298c06a0e5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:27.004Z","sequence":40102,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:27.004Z","sequence":40103,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100016A] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:27.01Z","sequence":40104,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:27.01Z","sequence":40105,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:27.013Z","sequence":40106,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c1456c74-5ec6-4717-b75a-1959101d40e3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:27.017Z","sequence":40107,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:27.017Z","sequence":40108,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100016A] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:27.023Z","sequence":40109,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:27.023Z","sequence":40110,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:27.026Z","sequence":40111,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-735a3433-42d3-4426-913b-3569b2e0097e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:33.905Z","sequence":40112,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:33.905Z","sequence":40113,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000170] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:33.911Z","sequence":40114,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:33.912Z","sequence":40115,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:33.915Z","sequence":40116,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c481f241-409d-49cd-945d-bbd3fdbda416, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:33.919Z","sequence":40117,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:33.919Z","sequence":40118,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000170] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:33.924Z","sequence":40119,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:33.924Z","sequence":40120,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:33.927Z","sequence":40121,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d17fec53-47b0-442a-8b91-e85e6b8bf1f3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:35.224Z","sequence":40122,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:35.225Z","sequence":40123,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AB6] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:35.23Z","sequence":40124,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:35.23Z","sequence":40125,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:35.237Z","sequence":40126,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4a6bd6e7-9cd6-48f2-a80f-acba4d1ed99c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:39.628Z","sequence":40127,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:39.629Z","sequence":40128,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100018D] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:39.639Z","sequence":40129,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:39.639Z","sequence":40130,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:39.642Z","sequence":40131,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9ecfad13-d82d-40a1-a28b-705947130b08, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:39.647Z","sequence":40132,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:39.647Z","sequence":40133,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100018D] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:39.655Z","sequence":40134,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:39.655Z","sequence":40135,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:39.658Z","sequence":40136,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-10adb110-50bc-4c84-a0a0-3136181ee62c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:41.347Z","sequence":40137,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/aloxy:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:41.347Z","sequence":40138,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: aloxy, device-id: 0008004A8F68]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:41.354Z","sequence":40139,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f9517e52-50ec-4ce9-b533-5e2efe0dafc0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:41.357Z","sequence":40140,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:41.357Z","sequence":40141,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: aloxy]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:41.36Z","sequence":40142,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-6ca28ac6-6d09-4866-98b5-4f90b8643d07, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:42.341Z","sequence":40143,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:42.341Z","sequence":40144,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BA9] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:42.348Z","sequence":40145,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:42.348Z","sequence":40146,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:42.355Z","sequence":40147,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e514c136-dafa-4b4d-8f7b-2f7529272d92, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:45.829Z","sequence":40148,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oiltanking:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:45.829Z","sequence":40149,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oiltanking, device-id: 70B3D57BB10013ED] for gateway [0008004BB60F]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:45.835Z","sequence":40150,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_oiltanking\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:45.835Z","sequence":40151,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oiltanking\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:45.838Z","sequence":40152,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5c9cd07b-2ef7-467c-8054-a4cd55b29048, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:49.069Z","sequence":40153,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:49.069Z","sequence":40154,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10007CE] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:49.07Z","sequence":40155,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:49.07Z","sequence":40156,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:49.076Z","sequence":40157,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:49.076Z","sequence":40158,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:49.077Z","sequence":40159,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1ec8072f-6bf0-4b0d-88c3-7fd98b40821d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:49.081Z","sequence":40160,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0f6ba3d2-e3bb-4759-88c8-acf0b13c3ba7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:49.929Z","sequence":40161,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:49.929Z","sequence":40162,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019C6] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:49.939Z","sequence":40163,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:49.939Z","sequence":40164,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:49.946Z","sequence":40165,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-cd225bf8-af79-4206-a2cd-7edda2f163d3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:55.233Z","sequence":40166,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:55.234Z","sequence":40167,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100015F] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:55.244Z","sequence":40168,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:55.244Z","sequence":40169,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:55.247Z","sequence":40170,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ef4efa6d-39d8-4b6a-9bab-c9330a76bc0e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:56.478Z","sequence":40171,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:56.478Z","sequence":40172,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100015F] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:56.503Z","sequence":40173,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:56.504Z","sequence":40174,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:56.521Z","sequence":40175,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9e9adde0-404f-461b-b51a-de36a6e280e2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:56.586Z","sequence":40176,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:56.586Z","sequence":40177,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000575] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:56.597Z","sequence":40178,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:56.597Z","sequence":40179,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:53:56.605Z","sequence":40180,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6e7e0f8e-2199-4c17-813b-d32a0dc01c76, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:54:01.058Z","sequence":40181,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:54:01.058Z","sequence":40182,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BB613]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:54:01.067Z","sequence":40183,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f58ffdb8-3077-47dd-8a1f-e75bbe5c4e75, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:54:03.506Z","sequence":40184,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:54:03.506Z","sequence":40185,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AE7] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:54:03.513Z","sequence":40186,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:54:03.513Z","sequence":40187,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:54:03.519Z","sequence":40188,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b86a148e-b8e4-4076-9f64-3baf1b3df967, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:54:05.054Z","sequence":40189,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 86EE84B22E7F]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"563dc0efe5a3d728","parentId":"30aeea059d7d8466","traceId":"0000000000000000cab160a78c960988","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:54:05.077Z","sequence":40190,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 86EE84B22E7F, resource-version: 4151f9a4-ea01-44b4-9c51-ca1ea0308187]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"563dc0efe5a3d728","parentId":"30aeea059d7d8466","traceId":"0000000000000000cab160a78c960988","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:54:05.083Z","sequence":40191,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 86EE84B22E7F, resource-version: 9c699e8e-314c-4b98-9c92-0d084baaa87f]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"563dc0efe5a3d728","parentId":"30aeea059d7d8466","traceId":"0000000000000000cab160a78c960988","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:54:05.089Z","sequence":40192,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 86EE84B22E7F]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"af67c7634dac1d57","parentId":"88dd4f2b0b40ba35","traceId":"0000000000000000cab160a78c960988","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:54:05.282Z","sequence":40193,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 86EE84B22E7F]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"af67c7634dac1d57","parentId":"88dd4f2b0b40ba35","traceId":"0000000000000000cab160a78c960988","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:54:05.373Z","sequence":40194,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:54:05.376Z","sequence":40195,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB1000AC8] for gateway [0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:54:05.383Z","sequence":40196,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:54:05.384Z","sequence":40197,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:54:05.389Z","sequence":40198,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8a9a412b-3602-4355-ae97-7dc2839c700c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:54:06.033Z","sequence":40199,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF000FBF47428E4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b34a26ce80f8565b","parentId":"b9109037d5bce57a","traceId":"0000000000000000d55bf828d7d8d9c5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:54:06.1Z","sequence":40200,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF000FBF47428E4, resource-version: a4517b65-0f51-4e16-98fc-954e88619874]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b34a26ce80f8565b","parentId":"b9109037d5bce57a","traceId":"0000000000000000d55bf828d7d8d9c5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:54:06.116Z","sequence":40201,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF000FBF47428E4, resource-version: 23ef8a91-fba6-4f55-a272-26056bba8b65]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b34a26ce80f8565b","parentId":"b9109037d5bce57a","traceId":"0000000000000000d55bf828d7d8d9c5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:54:06.291Z","sequence":40202,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:54:06.291Z","sequence":40203,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-86EE84B22E7F]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:54:06.309Z","sequence":40204,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-83a419e4-ca61-4da0-b22b-5c5bda4f2f86, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:54:06.441Z","sequence":40205,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:54:06.441Z","sequence":40206,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 86EE84B22E7F]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:54:06.449Z","sequence":40207,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6af6d3a4-cf7a-44a3-82e4-2d262484c43b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:54:06.454Z","sequence":40208,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [command-router@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:54:06.454Z","sequence":40209,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:54:06.461Z","sequence":40210,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-b33528ef-7f3d-47b0-a220-97f5d0ca6904, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:54:11.184Z","sequence":40211,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:54:11.184Z","sequence":40212,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C1D] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:54:11.194Z","sequence":40213,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:54:11.194Z","sequence":40214,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:54:11.2Z","sequence":40215,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-946b7ced-3429-45c1-a9cb-32d9aa3285cd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:54:31.193Z","sequence":40216,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:54:31.193Z","sequence":40217,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A3D] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:54:31.199Z","sequence":40218,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:54:31.199Z","sequence":40219,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:54:31.207Z","sequence":40220,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8160cc1e-190c-40d0-998d-070195b632c6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:54:34.502Z","sequence":40221,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:54:34.502Z","sequence":40222,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000682] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:54:34.508Z","sequence":40223,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:54:34.508Z","sequence":40224,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:54:34.515Z","sequence":40225,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4473e0a3-b5c6-4ce8-8d12-a3cbc45da953, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:54:41.629Z","sequence":40226,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF000FBF47428E4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3e9b4388794a556c","parentId":"fcd5c008adb51f0f","traceId":"0000000000000000f32d3f5bace9b0e1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:54:41.655Z","sequence":40227,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF000FBF47428E4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3e9b4388794a556c","parentId":"fcd5c008adb51f0f","traceId":"0000000000000000f32d3f5bace9b0e1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:54:44.895Z","sequence":40228,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:54:44.895Z","sequence":40229,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: ineos]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:54:44.916Z","sequence":40230,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-3c44a2df-4c87-41ea-a495-a7418ccb049b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:54:44.925Z","sequence":40231,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:54:44.925Z","sequence":40232,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB1000A6B] for gateway [0008004B5135]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:54:44.953Z","sequence":40233,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:54:44.953Z","sequence":40234,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:54:45.002Z","sequence":40235,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ddcf389a-2f0e-4aef-82df-e4a602d61b7e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:54:45.273Z","sequence":40236,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:54:45.273Z","sequence":40237,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:54:45.313Z","sequence":40238,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e3e38b90-6cf3-45f9-9602-c8d0448eec73, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:54:45.939Z","sequence":40239,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:54:45.939Z","sequence":40240,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A36] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:54:45.946Z","sequence":40241,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:54:45.946Z","sequence":40242,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:54:45.956Z","sequence":40243,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4999eb3f-9a1a-4dcb-a81f-281688fee7cd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:54:49.25Z","sequence":40244,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:54:49.25Z","sequence":40245,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A42] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:54:49.258Z","sequence":40246,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:54:49.258Z","sequence":40247,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:54:49.265Z","sequence":40248,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-cdb3e50b-27d1-49dd-8d46-13032832ac5b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:54:51.819Z","sequence":40249,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:54:51.819Z","sequence":40250,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100015B] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:54:51.831Z","sequence":40251,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:0.4.1\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:54:51.831Z","sequence":40252,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:54:51.838Z","sequence":40253,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-888ecc96-1e34-4beb-ab9a-2887dc82b6bd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:54:53.068Z","sequence":40254,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/repsol:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:54:53.068Z","sequence":40255,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: repsol, device-id: 0008004A37FF]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:54:53.075Z","sequence":40256,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e8909697-decf-4a3d-bfca-e7c202b8da50, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:54:53.079Z","sequence":40257,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:54:53.079Z","sequence":40258,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: repsol]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:54:53.082Z","sequence":40259,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-9e583294-d795-48ab-802a-2ac765698a6d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:54:53.439Z","sequence":40260,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/acta:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:54:53.439Z","sequence":40261,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: acta, device-id: 0008004AAAA3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:54:53.445Z","sequence":40262,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1f0ef2d9-441d-40c7-a2b2-d639eb30bf85, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:54:53.448Z","sequence":40263,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:54:53.449Z","sequence":40264,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: acta]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:54:53.451Z","sequence":40265,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-001c1c3d-65c3-44d6-9b6b-ba0634ece1cf, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:54:55.265Z","sequence":40266,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:54:55.265Z","sequence":40267,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: shell]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:54:55.268Z","sequence":40268,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-29f01f20-c2d4-4fe5-a281-7579ffd66385, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:54:55.271Z","sequence":40269,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/shell:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:54:55.272Z","sequence":40270,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: shell, type: hashed-password, auth-id: auth-gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:54:55.295Z","sequence":40271,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-008ab314-c0ad-4f7e-ab6e-8804d9e36cb2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:54:55.421Z","sequence":40272,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:54:55.421Z","sequence":40273,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006B7] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:54:55.453Z","sequence":40274,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:54:55.454Z","sequence":40275,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:54:55.502Z","sequence":40276,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a6106525-0bfe-4d5e-86ca-9f3741aae47b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:54:58.371Z","sequence":40277,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:54:58.371Z","sequence":40278,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A48] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:54:58.378Z","sequence":40279,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:54:58.378Z","sequence":40280,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:54:58.392Z","sequence":40281,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0ef06470-b834-4680-8b36-304fa0a23de9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:01.42Z","sequence":40282,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:01.42Z","sequence":40283,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019D7] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:01.426Z","sequence":40284,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:01.426Z","sequence":40285,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:01.433Z","sequence":40286,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8c50c8ca-4770-45ae-a081-637170cd961b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:04.017Z","sequence":40287,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:04.017Z","sequence":40288,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:04.029Z","sequence":40289,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-f1d4fe51-b734-4a61-bd9d-2f7bc6f73ed9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:04.17Z","sequence":40290,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191394]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d7f520ca4f22a33b","parentId":"c062005a64bd0995","traceId":"0000000000000000e86e7903600693ba","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:04.241Z","sequence":40291,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191394, resource-version: 5c6f7ad8-50ca-44d7-bd7b-29b9fc6faebb]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d7f520ca4f22a33b","parentId":"c062005a64bd0995","traceId":"0000000000000000e86e7903600693ba","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:04.288Z","sequence":40292,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191394, resource-version: 74d765ef-fc6d-48c4-9bf6-948507cb8965]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d7f520ca4f22a33b","parentId":"c062005a64bd0995","traceId":"0000000000000000e86e7903600693ba","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:04.292Z","sequence":40293,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191394]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6b6055835f9da493","parentId":"5986be10b8b5184c","traceId":"0000000000000000e86e7903600693ba","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:04.443Z","sequence":40294,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191394]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6b6055835f9da493","parentId":"5986be10b8b5184c","traceId":"0000000000000000e86e7903600693ba","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:04.925Z","sequence":40295,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:04.925Z","sequence":40296,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A3A] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:04.93Z","sequence":40297,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:04.931Z","sequence":40298,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:04.937Z","sequence":40299,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d1508503-f175-4009-875b-c02248d2bf80, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:05.157Z","sequence":40300,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:05.158Z","sequence":40301,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006B0] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:05.17Z","sequence":40302,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:05.17Z","sequence":40303,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:05.18Z","sequence":40304,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e61e7ace-b215-449c-9fc6-6fc3fe479411, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:06.991Z","sequence":40305,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:06.991Z","sequence":40306,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001EB] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:07.013Z","sequence":40307,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:07.013Z","sequence":40308,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:07.047Z","sequence":40309,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-bdcc0019-24ea-4e4b-bd4d-f0db8162ccee, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:07.323Z","sequence":40310,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:07.324Z","sequence":40311,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001EB] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:07.357Z","sequence":40312,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:07.357Z","sequence":40313,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:07.361Z","sequence":40314,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b060ae5a-8525-411c-9a2d-5e0ad5eadef4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:07.66Z","sequence":40315,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:07.661Z","sequence":40316,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001934] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:07.669Z","sequence":40317,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:07.669Z","sequence":40318,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:07.676Z","sequence":40319,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-cc17ac74-7098-4b71-9b22-69e1b7817141, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:08.823Z","sequence":40320,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:08.823Z","sequence":40321,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AD0] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:08.862Z","sequence":40322,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:08.862Z","sequence":40323,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:08.87Z","sequence":40324,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d16b76a9-43c5-402d-ab7f-0c9c2023b0c7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:10.055Z","sequence":40325,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:10.056Z","sequence":40326,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B9E] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:10.066Z","sequence":40327,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:10.066Z","sequence":40328,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:10.073Z","sequence":40329,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1a7a2164-2b1c-47b5-be20-cc6bc0699b3c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:11.898Z","sequence":40330,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 86EE84B22E7F]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d77d58d69ce9ef12","parentId":"95c9608ae3088f9d","traceId":"0000000000000000ec2e854643d7f3ff","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:11.92Z","sequence":40331,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 86EE84B22E7F]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d77d58d69ce9ef12","parentId":"95c9608ae3088f9d","traceId":"0000000000000000ec2e854643d7f3ff","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:12.14Z","sequence":40332,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:12.14Z","sequence":40333,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100068D] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:12.147Z","sequence":40334,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:12.147Z","sequence":40335,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:12.154Z","sequence":40336,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ed026f76-6228-4378-a45c-1bc115998837, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:13.313Z","sequence":40337,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:13.313Z","sequence":40338,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006D0] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:13.321Z","sequence":40339,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:13.321Z","sequence":40340,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:13.328Z","sequence":40341,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e7951192-eac6-40c6-8563-c2e7fe14a301, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:13.51Z","sequence":40342,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF014E8E522950D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5d176a5c5e2dd32a","parentId":"5e6b6b63b7585487","traceId":"0000000000000000044d97c5507b1e63","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:13.531Z","sequence":40343,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF014E8E522950D, resource-version: f2c1db6e-e037-4d0b-9d6c-281fe17795b1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5d176a5c5e2dd32a","parentId":"5e6b6b63b7585487","traceId":"0000000000000000044d97c5507b1e63","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:13.557Z","sequence":40344,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF014E8E522950D, resource-version: 6e32e51f-cc5c-4510-be3a-67f0359e4b8a]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5d176a5c5e2dd32a","parentId":"5e6b6b63b7585487","traceId":"0000000000000000044d97c5507b1e63","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:14.481Z","sequence":40345,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191395]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0b9c182f02caa26c","parentId":"c999543da1994562","traceId":"0000000000000000202ad41b036574cb","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:14.498Z","sequence":40346,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191395, resource-version: 5d09451a-7251-413a-b80a-3fdc8d8653e7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0b9c182f02caa26c","parentId":"c999543da1994562","traceId":"0000000000000000202ad41b036574cb","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:14.507Z","sequence":40347,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191395, resource-version: 0d235ec7-a252-4023-b3e4-7cda8af21752]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0b9c182f02caa26c","parentId":"c999543da1994562","traceId":"0000000000000000202ad41b036574cb","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:14.512Z","sequence":40348,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191395]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bb78ab4cc16fdaa6","parentId":"7c55b64b84706b5f","traceId":"0000000000000000202ad41b036574cb","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:14.592Z","sequence":40349,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:14.592Z","sequence":40350,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100016D] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:14.601Z","sequence":40351,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:14.601Z","sequence":40352,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:14.604Z","sequence":40353,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d9b7e5e8-fe5e-4a46-9280-4a4d71ccfd63, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:14.63Z","sequence":40354,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:14.631Z","sequence":40355,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100016D] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:14.647Z","sequence":40356,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:14.647Z","sequence":40357,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:14.653Z","sequence":40358,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f52ae392-85fb-461b-b3ce-5546e719fb88, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:14.728Z","sequence":40359,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:14.728Z","sequence":40360,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: flint]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:14.732Z","sequence":40361,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-936a7d17-3e34-461c-ab48-58144e7b0291, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:14.734Z","sequence":40362,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/flint:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:14.734Z","sequence":40363,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: flint, type: hashed-password, auth-id: auth-flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:14.762Z","sequence":40364,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-e5771bb2-70a9-43ca-ad70-19527e56bde0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:14.9Z","sequence":40365,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:14.9Z","sequence":40366,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000833] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:14.936Z","sequence":40367,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:14.936Z","sequence":40368,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:14.942Z","sequence":40369,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191395]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bb78ab4cc16fdaa6","parentId":"7c55b64b84706b5f","traceId":"0000000000000000202ad41b036574cb","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:14.943Z","sequence":40370,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-52ac3969-e3a7-45b4-bb9c-9bfbe38a42a6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:14.952Z","sequence":40371,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:14.953Z","sequence":40372,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:14.963Z","sequence":40373,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-3cfbf8ce-25ea-49a0-998b-7e6197f01a3c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:14.966Z","sequence":40374,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:14.967Z","sequence":40375,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191394]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:14.989Z","sequence":40376,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-b6e07b3e-883b-4eb2-8d60-8e4209a4cd0b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:15.119Z","sequence":40377,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:15.119Z","sequence":40378,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF014E8E522950D] for gateway [gateway_integrationtest_network_191394]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:15.12Z","sequence":40379,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:15.12Z","sequence":40380,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191394]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:15.14Z","sequence":40381,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-cdc8aaee-0540-43f8-bd95-5417ce4d833a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:15.14Z","sequence":40382,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:15.14Z","sequence":40383,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:16.032Z","sequence":40384,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-33a18461-c7ac-4ebe-b19b-ac554a7c49ec, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:16.582Z","sequence":40385,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF4CAF0F0919786]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"80d51b47be8f7706","parentId":"331416789687b6e3","traceId":"00000000000000000b0244c426c4ce11","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:16.647Z","sequence":40386,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF4CAF0F0919786, resource-version: 536ef6f8-79f5-4d91-9333-a5f735a061c2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"80d51b47be8f7706","parentId":"331416789687b6e3","traceId":"00000000000000000b0244c426c4ce11","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:16.665Z","sequence":40387,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF4CAF0F0919786, resource-version: e5d62876-e34e-4142-91b9-c019f3ff0e17]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"80d51b47be8f7706","parentId":"331416789687b6e3","traceId":"00000000000000000b0244c426c4ce11","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:17.664Z","sequence":40388,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:17.664Z","sequence":40389,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A32] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:17.728Z","sequence":40390,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:17.728Z","sequence":40391,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:17.751Z","sequence":40392,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2eabcf70-c543-4de4-9de3-48c99523b292, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:17.877Z","sequence":40393,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:17.877Z","sequence":40394,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191395]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:17.944Z","sequence":40395,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-2bdea227-23a4-4de9-b846-d2dac292f433, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:18.069Z","sequence":40396,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:18.069Z","sequence":40397,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF4CAF0F0919786] for gateway [gateway_integrationtest_network_191395]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:18.069Z","sequence":40398,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:18.069Z","sequence":40399,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191395]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:18.085Z","sequence":40400,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:18.085Z","sequence":40401,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:18.086Z","sequence":40402,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-bf6d1241-afd0-4bf2-b33a-e53848fa7c37, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:18.864Z","sequence":40403,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-151fa363-b0b2-4752-879f-d9c346bf776a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:18.979Z","sequence":40404,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:18.979Z","sequence":40405,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 0008004B51D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:19.029Z","sequence":40406,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c4292dd8-2c46-4753-afb2-d55515e8e037, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:19.033Z","sequence":40407,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:19.033Z","sequence":40408,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: dow]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:19.039Z","sequence":40409,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-324e9fea-0f58-4cd2-99b9-9d75906f69a1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:20.51Z","sequence":40410,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:20.51Z","sequence":40411,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001939] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:20.518Z","sequence":40412,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:20.518Z","sequence":40413,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:20.524Z","sequence":40414,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-97c43ddc-7b30-48e6-b848-4dccc4bc1cea, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:25.901Z","sequence":40415,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF014E8E522950D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5b8522b600c93b47","parentId":"68a16046e00378ac","traceId":"00000000000000007690e5fb14b01dee","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:25.955Z","sequence":40416,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF014E8E522950D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5b8522b600c93b47","parentId":"68a16046e00378ac","traceId":"00000000000000007690e5fb14b01dee","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:26.145Z","sequence":40417,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191394]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0fba4335ab5a4bda","parentId":"cbc6d029958dce32","traceId":"0000000000000000eb0248c084deac0f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:26.193Z","sequence":40418,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191394]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0fba4335ab5a4bda","parentId":"cbc6d029958dce32","traceId":"0000000000000000eb0248c084deac0f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:26.315Z","sequence":40419,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191396]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d226c2fe4b831460","parentId":"7d34f5fa9c87d58b","traceId":"0000000000000000d6eaae70cc9acaa4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:26.354Z","sequence":40420,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191396, resource-version: c45f9035-0718-4486-8def-fa9206ec9d58]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d226c2fe4b831460","parentId":"7d34f5fa9c87d58b","traceId":"0000000000000000d6eaae70cc9acaa4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:26.392Z","sequence":40421,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191396, resource-version: e022b8db-0a42-4ed9-bb32-0dc1f308b12e]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d226c2fe4b831460","parentId":"7d34f5fa9c87d58b","traceId":"0000000000000000d6eaae70cc9acaa4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:26.395Z","sequence":40422,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191396]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"992e10ae8987d508","parentId":"c59c0dee5a53b124","traceId":"0000000000000000d6eaae70cc9acaa4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:26.538Z","sequence":40423,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191396]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"992e10ae8987d508","parentId":"c59c0dee5a53b124","traceId":"0000000000000000d6eaae70cc9acaa4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:27.066Z","sequence":40424,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFCFBC4281EA8BA]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5dc7e4b5074c9837","parentId":"56682213ba8bcf12","traceId":"0000000000000000661798856130e110","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:27.087Z","sequence":40425,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFCFBC4281EA8BA, resource-version: dcfc3ce5-a471-4429-bb40-ffbf7e71e59c]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5dc7e4b5074c9837","parentId":"56682213ba8bcf12","traceId":"0000000000000000661798856130e110","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:27.095Z","sequence":40426,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFCFBC4281EA8BA, resource-version: c1b65122-467a-47b0-bcb6-0a5a6ca06893]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5dc7e4b5074c9837","parentId":"56682213ba8bcf12","traceId":"0000000000000000661798856130e110","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:28.159Z","sequence":40427,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:28.16Z","sequence":40428,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191396]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:28.168Z","sequence":40429,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-06b53387-f410-40f2-8589-5f6993fcb2d4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:28.29Z","sequence":40430,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:28.29Z","sequence":40431,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCFBC4281EA8BA] for gateway [gateway_integrationtest_network_191396]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:28.291Z","sequence":40432,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:28.291Z","sequence":40433,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191396]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:28.295Z","sequence":40434,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:28.295Z","sequence":40435,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:28.296Z","sequence":40436,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a29c0a38-77bf-42b3-820b-d38b7e66d907, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:28.494Z","sequence":40437,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-db5560cf-6e88-408c-8cd6-e26fac99efd6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:28.933Z","sequence":40438,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:28.933Z","sequence":40439,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000828] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:28.94Z","sequence":40440,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:28.94Z","sequence":40441,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:28.948Z","sequence":40442,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d985a08a-d0c4-4175-93e2-98a05d4a309f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:29.59Z","sequence":40443,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:29.591Z","sequence":40444,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB1000A7B] for gateway [0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:29.601Z","sequence":40445,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:29.604Z","sequence":40446,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:29.612Z","sequence":40447,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-979e41b7-9c14-4dbb-9707-816c136081c9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:29.946Z","sequence":40448,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF4CAF0F0919786]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a8df082460a4a915","parentId":"b1c50ef9a0fb0a77","traceId":"0000000000000000cb728797419332dc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:29.997Z","sequence":40449,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF4CAF0F0919786]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a8df082460a4a915","parentId":"b1c50ef9a0fb0a77","traceId":"0000000000000000cb728797419332dc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:30.169Z","sequence":40450,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191395]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"24fe3464f5911f1a","parentId":"802c570d7d0fceef","traceId":"00000000000000009ee07d197e129c89","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:30.195Z","sequence":40451,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191395]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"24fe3464f5911f1a","parentId":"802c570d7d0fceef","traceId":"00000000000000009ee07d197e129c89","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:30.313Z","sequence":40452,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191397]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"95bf0f13dd86511b","parentId":"024f77ea8faac7e1","traceId":"0000000000000000894be9d77015ae3e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:30.345Z","sequence":40453,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191397, resource-version: ad0e2a7e-8db9-4526-b683-0bec836dedce]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"95bf0f13dd86511b","parentId":"024f77ea8faac7e1","traceId":"0000000000000000894be9d77015ae3e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:30.351Z","sequence":40454,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191397, resource-version: 160090c4-e467-4356-b0d4-88fe2c86be85]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"95bf0f13dd86511b","parentId":"024f77ea8faac7e1","traceId":"0000000000000000894be9d77015ae3e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:30.354Z","sequence":40455,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191397]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"08d9a786cd84fa6f","parentId":"47c75d161aab5dce","traceId":"0000000000000000894be9d77015ae3e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:30.487Z","sequence":40456,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191397]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"08d9a786cd84fa6f","parentId":"47c75d161aab5dce","traceId":"0000000000000000894be9d77015ae3e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:31.083Z","sequence":40457,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF8DEABC85E388F]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6981f03442e7c700","parentId":"30383660690a5714","traceId":"0000000000000000ee4cb7cc98487fc4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:31.143Z","sequence":40458,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF8DEABC85E388F, resource-version: 840ba446-df58-461b-9e63-c719750d6b56]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6981f03442e7c700","parentId":"30383660690a5714","traceId":"0000000000000000ee4cb7cc98487fc4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:31.2Z","sequence":40459,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF8DEABC85E388F, resource-version: 96fb6f92-989c-4ffb-b5b4-0c0e3ad9f954]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6981f03442e7c700","parentId":"30383660690a5714","traceId":"0000000000000000ee4cb7cc98487fc4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:32.268Z","sequence":40460,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:32.268Z","sequence":40461,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191397]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:32.281Z","sequence":40462,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-8658a917-e51f-442e-a6da-b9d98e83c7ac, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:32.427Z","sequence":40463,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:32.427Z","sequence":40464,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF8DEABC85E388F] for gateway [gateway_integrationtest_network_191397]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:32.429Z","sequence":40465,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:32.429Z","sequence":40466,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191397]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:32.435Z","sequence":40467,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.3.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:32.435Z","sequence":40468,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:32.436Z","sequence":40469,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c537e1e6-9608-4bd0-ae04-bc2ca33c4bb2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:32.639Z","sequence":40470,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d5c9abf2-9434-4079-8e3c-61ac69449864, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:33.566Z","sequence":40471,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:33.566Z","sequence":40472,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B84] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:33.598Z","sequence":40473,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:33.598Z","sequence":40474,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:33.645Z","sequence":40475,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c00bc594-1441-4f2f-b9cf-aadf25807294, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:40.703Z","sequence":40476,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF8DEABC85E388F]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7c1feb1d5af7d3c4","parentId":"c441b2cb03b33f93","traceId":"0000000000000000549175a4d759602c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:40.801Z","sequence":40477,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF8DEABC85E388F]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7c1feb1d5af7d3c4","parentId":"c441b2cb03b33f93","traceId":"0000000000000000549175a4d759602c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:40.917Z","sequence":40478,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191397]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f7417327ca174028","parentId":"b9a3f85d5c406b16","traceId":"00000000000000004486c51633722868","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:40.989Z","sequence":40479,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191397]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f7417327ca174028","parentId":"b9a3f85d5c406b16","traceId":"00000000000000004486c51633722868","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:41.245Z","sequence":40480,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFCFBC4281EA8BA]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3e20e33c45e595c3","parentId":"262e0cd2e21a74ab","traceId":"0000000000000000d6b7775a703a2e8b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:41.337Z","sequence":40481,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFCFBC4281EA8BA]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3e20e33c45e595c3","parentId":"262e0cd2e21a74ab","traceId":"0000000000000000d6b7775a703a2e8b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:41.455Z","sequence":40482,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191396]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0385adf2cc182028","parentId":"59d962f4dafcd5b4","traceId":"0000000000000000b51e2c6a8cca2a60","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:41.5Z","sequence":40483,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191396]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0385adf2cc182028","parentId":"59d962f4dafcd5b4","traceId":"0000000000000000b51e2c6a8cca2a60","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:41.914Z","sequence":40484,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191398]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"459329d595e32839","parentId":"3954e747de993bcb","traceId":"000000000000000043fc8b870e9485f5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:41.941Z","sequence":40485,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191398, resource-version: af2e20ac-969d-4af2-8d2b-4f4d1c6e5326]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"459329d595e32839","parentId":"3954e747de993bcb","traceId":"000000000000000043fc8b870e9485f5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:42.001Z","sequence":40486,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191398, resource-version: 80cb9801-c2bd-4f97-99f8-075b6f8a8051]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"459329d595e32839","parentId":"3954e747de993bcb","traceId":"000000000000000043fc8b870e9485f5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:42.005Z","sequence":40487,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191398]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"153695582635d632","parentId":"5e0ddf64b0c42c1e","traceId":"000000000000000043fc8b870e9485f5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:42.307Z","sequence":40488,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:42.307Z","sequence":40489,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A43] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:42.346Z","sequence":40490,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191398]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"153695582635d632","parentId":"5e0ddf64b0c42c1e","traceId":"000000000000000043fc8b870e9485f5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:42.349Z","sequence":40491,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:42.349Z","sequence":40492,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:42.4Z","sequence":40493,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-577c6ff0-977c-459f-b33f-f995a2d25208, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:42.593Z","sequence":40494,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:42.593Z","sequence":40495,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AF3] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:42.6Z","sequence":40496,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:42.6Z","sequence":40497,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:42.605Z","sequence":40498,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-04cb5a7b-3910-45f5-bb04-64b5055a1920, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:43.357Z","sequence":40499,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF272942A78B97B]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3b656fa58147a578","parentId":"545e4aa72a364a71","traceId":"0000000000000000593b998aeb4917a7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:43.461Z","sequence":40500,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF272942A78B97B, resource-version: 96448c23-d4d2-4473-950e-e2a4fb15734a]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3b656fa58147a578","parentId":"545e4aa72a364a71","traceId":"0000000000000000593b998aeb4917a7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:43.513Z","sequence":40501,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF272942A78B97B, resource-version: a440c544-8708-46e4-8f49-37e1302a2d95]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3b656fa58147a578","parentId":"545e4aa72a364a71","traceId":"0000000000000000593b998aeb4917a7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:44.204Z","sequence":40502,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:44.204Z","sequence":40503,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100193A] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:44.212Z","sequence":40504,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:44.213Z","sequence":40505,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:44.218Z","sequence":40506,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-fa784477-b39b-4f19-a003-4cc1e7da91b0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:45.024Z","sequence":40507,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:45.024Z","sequence":40508,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191398]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:45.082Z","sequence":40509,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-9b0f4fca-163d-43a6-83e2-6e5238d0ab33, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:45.203Z","sequence":40510,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:45.204Z","sequence":40511,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF272942A78B97B] for gateway [gateway_integrationtest_network_191398]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:45.204Z","sequence":40512,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:45.205Z","sequence":40513,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191398]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:45.218Z","sequence":40514,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ade90be1-d50e-4479-8b75-a9eabf96f261, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:45.219Z","sequence":40515,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:45.219Z","sequence":40516,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:45.74Z","sequence":40517,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4308af51-677c-47af-a2ac-3310517e4922, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:46.458Z","sequence":40518,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191399]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"376dde646a6cd5d2","parentId":"87ab969b4ea16e00","traceId":"0000000000000000bbc097aa9df503f6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:46.499Z","sequence":40519,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191399, resource-version: e0766a70-ff4f-411c-8778-2a53f21df312]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"376dde646a6cd5d2","parentId":"87ab969b4ea16e00","traceId":"0000000000000000bbc097aa9df503f6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:46.507Z","sequence":40520,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191399, resource-version: d613b1c8-04db-4488-a5ab-857dce36959a]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"376dde646a6cd5d2","parentId":"87ab969b4ea16e00","traceId":"0000000000000000bbc097aa9df503f6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:46.511Z","sequence":40521,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191399]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fc24d8d444a42151","parentId":"feb2c41f09f619ae","traceId":"0000000000000000bbc097aa9df503f6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:46.813Z","sequence":40522,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191399]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fc24d8d444a42151","parentId":"feb2c41f09f619ae","traceId":"0000000000000000bbc097aa9df503f6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:48.253Z","sequence":40523,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFFB15B23818CA1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f2783ae17a660ace","parentId":"ab17b90e282f954e","traceId":"0000000000000000b99fb826912705e8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:48.283Z","sequence":40524,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFFB15B23818CA1, resource-version: b5004be5-4355-425b-a4bc-325116327aa2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f2783ae17a660ace","parentId":"ab17b90e282f954e","traceId":"0000000000000000b99fb826912705e8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:48.289Z","sequence":40525,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFFB15B23818CA1, resource-version: 22a94ceb-9b42-48a3-b440-2cd877a1b9bb]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f2783ae17a660ace","parentId":"ab17b90e282f954e","traceId":"0000000000000000b99fb826912705e8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:49.157Z","sequence":40526,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF272942A78B97B]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"19d666fb33cddcc0","parentId":"e4d08d0148e187d3","traceId":"0000000000000000d46b3e936a2bfc62","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:49.176Z","sequence":40527,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF272942A78B97B]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"19d666fb33cddcc0","parentId":"e4d08d0148e187d3","traceId":"0000000000000000d46b3e936a2bfc62","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:49.431Z","sequence":40528,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFFB15B23818CA1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"502c70f254de8fa2","parentId":"b78142b24b0dcf6f","traceId":"00000000000000001bc4c6ad40d7558c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:49.443Z","sequence":40529,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191398]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a13b8206d35bc142","parentId":"9b27e85963628be9","traceId":"0000000000000000aa9135a25e51795a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:49.449Z","sequence":40530,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFFB15B23818CA1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"502c70f254de8fa2","parentId":"b78142b24b0dcf6f","traceId":"00000000000000001bc4c6ad40d7558c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:49.457Z","sequence":40531,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191398]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a13b8206d35bc142","parentId":"9b27e85963628be9","traceId":"0000000000000000aa9135a25e51795a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:49.832Z","sequence":40532,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0F2039C92BCC]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"daccd5edacd4e07e","parentId":"3950677c77b503b7","traceId":"000000000000000068d10b4928f12d35","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:49.852Z","sequence":40533,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0F2039C92BCC, resource-version: 62262cce-e80b-4ec6-868d-14b4d9d2a2fc]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"daccd5edacd4e07e","parentId":"3950677c77b503b7","traceId":"000000000000000068d10b4928f12d35","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:49.859Z","sequence":40534,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0F2039C92BCC, resource-version: 1785a7d9-8571-4ab9-98c5-3807b0de1b27]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"daccd5edacd4e07e","parentId":"3950677c77b503b7","traceId":"000000000000000068d10b4928f12d35","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:49.872Z","sequence":40535,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 0F2039C92BCC]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"30968da04c1ed300","parentId":"d215200c8f900f1b","traceId":"000000000000000068d10b4928f12d35","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:50.092Z","sequence":40536,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 0F2039C92BCC]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"30968da04c1ed300","parentId":"d215200c8f900f1b","traceId":"000000000000000068d10b4928f12d35","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:50.195Z","sequence":40537,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191399]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ba10565e938110b7","parentId":"f205c3d7d779783e","traceId":"000000000000000093a4edef3e88c9f6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:50.214Z","sequence":40538,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191399]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ba10565e938110b7","parentId":"f205c3d7d779783e","traceId":"000000000000000093a4edef3e88c9f6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:50.868Z","sequence":40539,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191401]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"391583a3c40dcae1","parentId":"45ea9a6f756d0d94","traceId":"0000000000000000ced0f8e213ee4f78","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:50.889Z","sequence":40540,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191401, resource-version: 618c5bde-f9fc-4c7d-8abb-2db6ea3fbad3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"391583a3c40dcae1","parentId":"45ea9a6f756d0d94","traceId":"0000000000000000ced0f8e213ee4f78","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:50.896Z","sequence":40541,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191401, resource-version: 0ef3fdcb-261b-49b8-9ed7-8cb00546977f]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"391583a3c40dcae1","parentId":"45ea9a6f756d0d94","traceId":"0000000000000000ced0f8e213ee4f78","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:50.901Z","sequence":40542,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191401]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2ae28f906227d09a","parentId":"62507b34e6b87c03","traceId":"0000000000000000ced0f8e213ee4f78","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:51.099Z","sequence":40543,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFBDCB5F48FD96A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"494b53e1707ebdbe","parentId":"8f17da3202f38ed4","traceId":"00000000000000002c6a2f7ea3b74e06","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:51.142Z","sequence":40544,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFBDCB5F48FD96A, resource-version: 88713d72-c091-427e-b9a3-f3450fa265eb]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"494b53e1707ebdbe","parentId":"8f17da3202f38ed4","traceId":"00000000000000002c6a2f7ea3b74e06","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:51.143Z","sequence":40545,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191401]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2ae28f906227d09a","parentId":"62507b34e6b87c03","traceId":"0000000000000000ced0f8e213ee4f78","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:51.151Z","sequence":40546,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFBDCB5F48FD96A, resource-version: ca8f7cf0-b26a-427d-9f87-770ccfa650c7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"494b53e1707ebdbe","parentId":"8f17da3202f38ed4","traceId":"00000000000000002c6a2f7ea3b74e06","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:51.522Z","sequence":40547,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:51.523Z","sequence":40548,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-0F2039C92BCC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:51.533Z","sequence":40549,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-6026d3c4-89a5-41ac-aecb-d8e4da4d1be0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:51.584Z","sequence":40550,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/conditionall:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:51.585Z","sequence":40551,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: conditionall, device-id: 0008004B512D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:51.6Z","sequence":40552,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8cef8382-c6d2-4446-b924-a9f728be7037, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:51.603Z","sequence":40553,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:51.603Z","sequence":40554,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: conditionall]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:51.609Z","sequence":40555,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-5e458c0f-c4e0-46b8-ba0e-db07d107ff73, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:51.653Z","sequence":40556,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:51.653Z","sequence":40557,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0F2039C92BCC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:51.658Z","sequence":40558,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-09526649-ba32-4166-bea7-7d711e0c2881, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:51.763Z","sequence":40559,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF9D43ED55D5C0F]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"aba456fd03b21b53","parentId":"e029666f4e987c60","traceId":"0000000000000000fc1eefa600223bfa","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:51.78Z","sequence":40560,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF9D43ED55D5C0F, resource-version: 46105d23-df80-4c0b-a2e8-137d9cc48255]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"aba456fd03b21b53","parentId":"e029666f4e987c60","traceId":"0000000000000000fc1eefa600223bfa","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:51.786Z","sequence":40561,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF9D43ED55D5C0F, resource-version: cd47f423-701b-47ac-86a9-59a260bb21e2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"aba456fd03b21b53","parentId":"e029666f4e987c60","traceId":"0000000000000000fc1eefa600223bfa","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:52.852Z","sequence":40562,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:52.853Z","sequence":40563,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191401]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:52.865Z","sequence":40564,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-8412cf9e-8731-44c3-bc1e-8e3e3f985459, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:52.984Z","sequence":40565,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:52.984Z","sequence":40566,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF9D43ED55D5C0F] for gateway [gateway_integrationtest_network_191401]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:52.985Z","sequence":40567,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:52.985Z","sequence":40568,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191401]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:52.991Z","sequence":40569,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-63c9eaed-5373-4cb3-ac83-41273161d6aa, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:52.991Z","sequence":40570,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:52.992Z","sequence":40571,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:53.476Z","sequence":40572,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1a6cb568-97cc-410b-b580-c040eeb094f6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:55.752Z","sequence":40573,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:55.753Z","sequence":40574,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100022B] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:55.762Z","sequence":40575,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:55.762Z","sequence":40576,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:55.789Z","sequence":40577,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-85164c54-8833-44b2-9adc-267456bf05bc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:57.547Z","sequence":40578,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:57.547Z","sequence":40579,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100193F] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:57.553Z","sequence":40580,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:57.553Z","sequence":40581,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:57.56Z","sequence":40582,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f70f815e-b68a-4259-b3cf-75976db98890, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:57.605Z","sequence":40583,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono service-command-router-Device Registration-6b43a4ef-0980-4edd-b8fb-ab7a8b085811] wants to open a link [address: Source{address='registration/integrationtest/6f5fbabf-ddb1-4ac6-8828-cfd5fa492ffe', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:57.605Z","sequence":40584,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-0]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:57.605Z","sequence":40585,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@4128b218] for replies to [registration/integrationtest/6f5fbabf-ddb1-4ac6-8828-cfd5fa492ffe]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:57.607Z","sequence":40586,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono service-command-router-Device Registration-6b43a4ef-0980-4edd-b8fb-ab7a8b085811] wants to open a link [address: Target{address='registration/integrationtest', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:57.607Z","sequence":40587,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-1]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:57.607Z","sequence":40588,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:57.609Z","sequence":40589,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [command-router@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:57.609Z","sequence":40590,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0F2039C92BCC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:55:57.614Z","sequence":40591,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-cdc7a67c-9be5-4839-a39a-cf84a6649704, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:01.14Z","sequence":40592,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:01.14Z","sequence":40593,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AE6] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:01.15Z","sequence":40594,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:01.15Z","sequence":40595,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:01.158Z","sequence":40596,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-45f94848-0e61-4edc-a685-ae3a01023754, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:01.813Z","sequence":40597,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:01.813Z","sequence":40598,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:01.839Z","sequence":40599,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-fbec8bd5-f632-4c02-aef6-eae101c03a53, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:03.551Z","sequence":40600,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:03.552Z","sequence":40601,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BFA] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:03.561Z","sequence":40602,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:03.561Z","sequence":40603,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:03.568Z","sequence":40604,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-fb77fd11-5602-4592-9ff8-2bddd131bfc2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:04.091Z","sequence":40605,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:04.092Z","sequence":40606,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AF7] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:04.102Z","sequence":40607,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:04.102Z","sequence":40608,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:04.109Z","sequence":40609,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-aa9334f9-940b-4954-89af-2146fdb8a1b3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:04.785Z","sequence":40610,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF9D43ED55D5C0F]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f06306688b01ab66","parentId":"f7bff93d7296b5e2","traceId":"000000000000000048f9ce48bc5456d7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:04.849Z","sequence":40611,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF9D43ED55D5C0F]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f06306688b01ab66","parentId":"f7bff93d7296b5e2","traceId":"000000000000000048f9ce48bc5456d7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:05.493Z","sequence":40612,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191402]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4992f2e867fa9d5a","parentId":"7f744e1a9661ad2f","traceId":"0000000000000000eb8296fb4fe13c11","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:05.54Z","sequence":40613,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191402, resource-version: dd4490c1-cc4c-4540-a84e-c561aa4b86aa]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4992f2e867fa9d5a","parentId":"7f744e1a9661ad2f","traceId":"0000000000000000eb8296fb4fe13c11","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:05.56Z","sequence":40614,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191402, resource-version: 2c7a85d9-1229-4183-bece-322e75b7c191]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4992f2e867fa9d5a","parentId":"7f744e1a9661ad2f","traceId":"0000000000000000eb8296fb4fe13c11","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:05.566Z","sequence":40615,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191402]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fe6e00895b38807e","parentId":"3c3f70b92ad14bfe","traceId":"0000000000000000eb8296fb4fe13c11","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:05.685Z","sequence":40616,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:05.685Z","sequence":40617,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A2D] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:05.691Z","sequence":40618,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:05.692Z","sequence":40619,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:05.706Z","sequence":40620,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191402]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fe6e00895b38807e","parentId":"3c3f70b92ad14bfe","traceId":"0000000000000000eb8296fb4fe13c11","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:05.706Z","sequence":40621,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-52021930-28ba-479a-ba3d-437683ebbe89, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:05.779Z","sequence":40622,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191401]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fc496914cc26deac","parentId":"977a94f85e98e444","traceId":"00000000000000003ae595aaba4585e4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:05.801Z","sequence":40623,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191401]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fc496914cc26deac","parentId":"977a94f85e98e444","traceId":"00000000000000003ae595aaba4585e4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:06.138Z","sequence":40624,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:06.138Z","sequence":40625,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100192E] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:06.157Z","sequence":40626,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:06.157Z","sequence":40627,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:06.168Z","sequence":40628,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-16639ae5-9505-47dd-a204-1595d66f6519, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:06.434Z","sequence":40629,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFB1AE39756A7BE]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ee0a4e56de788109","parentId":"811ffb1a57a729e5","traceId":"00000000000000003e6f3d8518fd8c24","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:06.492Z","sequence":40630,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFB1AE39756A7BE, resource-version: c34de00c-3804-42a7-99aa-ce5b6998e0ba]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ee0a4e56de788109","parentId":"811ffb1a57a729e5","traceId":"00000000000000003e6f3d8518fd8c24","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:06.538Z","sequence":40631,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFB1AE39756A7BE, resource-version: ffa60e1d-53e8-4a4e-bd62-d9bb675bcf85]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ee0a4e56de788109","parentId":"811ffb1a57a729e5","traceId":"00000000000000003e6f3d8518fd8c24","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:07.913Z","sequence":40632,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFB1AE39756A7BE]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b6999185864cf757","parentId":"2ea341a593e932f0","traceId":"0000000000000000414a188f3177155f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:07.987Z","sequence":40633,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFB1AE39756A7BE]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b6999185864cf757","parentId":"2ea341a593e932f0","traceId":"0000000000000000414a188f3177155f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:08.165Z","sequence":40634,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191402]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a1f80a96bc7b56d3","parentId":"6f4915aab0b2b90d","traceId":"00000000000000005f69d920fb653581","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:08.202Z","sequence":40635,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191402]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a1f80a96bc7b56d3","parentId":"6f4915aab0b2b90d","traceId":"00000000000000005f69d920fb653581","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:08.527Z","sequence":40636,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 024E6A347AB0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0980f1255893db3a","parentId":"58c25efcf0d2f7c6","traceId":"0000000000000000d872cc3566e3faf3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:08.543Z","sequence":40637,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 024E6A347AB0, resource-version: 9b687bd0-9adf-4aed-96d8-6b9f15e7e9b1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0980f1255893db3a","parentId":"58c25efcf0d2f7c6","traceId":"0000000000000000d872cc3566e3faf3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:08.553Z","sequence":40638,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 024E6A347AB0, resource-version: a0df379b-3e63-42f8-a7a9-dc92756b151a]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0980f1255893db3a","parentId":"58c25efcf0d2f7c6","traceId":"0000000000000000d872cc3566e3faf3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:08.557Z","sequence":40639,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 024E6A347AB0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"be38ea4f38d14516","parentId":"f63fc1f7b81638a6","traceId":"0000000000000000d872cc3566e3faf3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:08.753Z","sequence":40640,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 024E6A347AB0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"be38ea4f38d14516","parentId":"f63fc1f7b81638a6","traceId":"0000000000000000d872cc3566e3faf3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:09.014Z","sequence":40641,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF04C3C103FFDF0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7227a244c6ac254b","parentId":"b57dfee8666e6af9","traceId":"0000000000000000f08dbf88bbb563be","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:09.05Z","sequence":40642,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF04C3C103FFDF0, resource-version: 4d901082-e53b-4fe9-b5a7-6afa3cc134be]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7227a244c6ac254b","parentId":"b57dfee8666e6af9","traceId":"0000000000000000f08dbf88bbb563be","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:09.061Z","sequence":40643,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF04C3C103FFDF0, resource-version: 71d7dd3c-6e90-49c1-92ca-172e425aae96]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7227a244c6ac254b","parentId":"b57dfee8666e6af9","traceId":"0000000000000000f08dbf88bbb563be","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:09.32Z","sequence":40644,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: DA328B9992CA]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9fc885d998a1ea10","parentId":"7ee14ccc696dad1f","traceId":"00000000000000002df12c5ef07f9be7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:09.348Z","sequence":40645,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: DA328B9992CA, resource-version: c2cc7d3e-df4f-4646-9d20-91fd3fbbf6cc]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9fc885d998a1ea10","parentId":"7ee14ccc696dad1f","traceId":"00000000000000002df12c5ef07f9be7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:09.357Z","sequence":40646,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: DA328B9992CA, resource-version: 9d2ac304-2b8a-4763-8ded-25ed459ab0b4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9fc885d998a1ea10","parentId":"7ee14ccc696dad1f","traceId":"00000000000000002df12c5ef07f9be7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:09.361Z","sequence":40647,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: DA328B9992CA]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0af057dde406938e","parentId":"81402b9b31ee5683","traceId":"00000000000000002df12c5ef07f9be7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:09.653Z","sequence":40648,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: DA328B9992CA]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0af057dde406938e","parentId":"81402b9b31ee5683","traceId":"00000000000000002df12c5ef07f9be7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:10.692Z","sequence":40649,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:10.692Z","sequence":40650,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-024E6A347AB0]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:10.703Z","sequence":40651,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-2a27ebd2-40b7-486d-a9ba-df4d5fb61b89, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:10.848Z","sequence":40652,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:10.848Z","sequence":40653,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 024E6A347AB0]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:10.868Z","sequence":40654,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-dd540622-d93f-44c4-839f-45868bf8e61e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:10.873Z","sequence":40655,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:10.873Z","sequence":40656,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF04C3C103FFDF0] for gateway [024E6A347AB0]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:10.879Z","sequence":40657,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:10.879Z","sequence":40658,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:11.381Z","sequence":40659,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d3934738-37a9-4cbe-ba01-1868bac47df4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:12.087Z","sequence":40660,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:12.087Z","sequence":40661,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000690] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:12.153Z","sequence":40662,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:12.153Z","sequence":40663,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:12.161Z","sequence":40664,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c2e7ff91-7ad6-42c4-8457-e4d6b4631d88, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:13.616Z","sequence":40665,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFDB1657BBB81C9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fd6e87ce99d5e331","parentId":"fd154307dc5a4040","traceId":"0000000000000000b675c3dff00cbc05","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:13.651Z","sequence":40666,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFDB1657BBB81C9, resource-version: 2528878e-d60c-4ac6-b6c7-1cbe2acd9be6]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fd6e87ce99d5e331","parentId":"fd154307dc5a4040","traceId":"0000000000000000b675c3dff00cbc05","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:13.659Z","sequence":40667,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFDB1657BBB81C9, resource-version: 6099f484-2052-4a21-ab3b-cade1bbc5c61]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fd6e87ce99d5e331","parentId":"fd154307dc5a4040","traceId":"0000000000000000b675c3dff00cbc05","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:14.731Z","sequence":40668,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:14.731Z","sequence":40669,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-DA328B9992CA]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:14.742Z","sequence":40670,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-c1783c1a-3123-4319-895a-b8e4276163c9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:14.864Z","sequence":40671,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:14.864Z","sequence":40672,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: DA328B9992CA]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:14.87Z","sequence":40673,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8628d23a-e6c8-43e7-8ab9-fe2963f79c84, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:14.875Z","sequence":40674,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:14.875Z","sequence":40675,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDB1657BBB81C9] for gateway [DA328B9992CA]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:14.885Z","sequence":40676,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.7.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:14.885Z","sequence":40677,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:15.403Z","sequence":40678,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8b022de6-d69e-4c72-968c-c4dd88f2c19d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:15.493Z","sequence":40679,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191405]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2285e31a5eb94247","parentId":"a9fa908730609e04","traceId":"000000000000000086535664fe4b1809","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:15.604Z","sequence":40680,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191405, resource-version: 763c5bbb-d358-4e68-8f41-df4607233ebc]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2285e31a5eb94247","parentId":"a9fa908730609e04","traceId":"000000000000000086535664fe4b1809","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:15.62Z","sequence":40681,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191405, resource-version: 22b96b47-4a85-438c-905d-40bac0e03fc9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2285e31a5eb94247","parentId":"a9fa908730609e04","traceId":"000000000000000086535664fe4b1809","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:15.625Z","sequence":40682,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191405]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"eb1d70f95af27539","parentId":"03b0d5ccccfada37","traceId":"000000000000000086535664fe4b1809","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:16.1Z","sequence":40683,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191405]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"eb1d70f95af27539","parentId":"03b0d5ccccfada37","traceId":"000000000000000086535664fe4b1809","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:18.037Z","sequence":40684,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFD6ABBC3CF9798]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"aea9fcd8857efde6","parentId":"c7ddd12283f9cb34","traceId":"00000000000000000723a8fc00d96b4f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:18.161Z","sequence":40685,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFD6ABBC3CF9798, resource-version: f790f80b-aecb-4c6b-8404-05bb1a58cdfb]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"aea9fcd8857efde6","parentId":"c7ddd12283f9cb34","traceId":"00000000000000000723a8fc00d96b4f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:18.2Z","sequence":40686,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFD6ABBC3CF9798, resource-version: 14dfa74b-ec5c-45d7-8c0f-13ea3a88953c]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"aea9fcd8857efde6","parentId":"c7ddd12283f9cb34","traceId":"00000000000000000723a8fc00d96b4f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:19.449Z","sequence":40687,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:19.449Z","sequence":40688,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191405]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:19.489Z","sequence":40689,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-86fd90bc-cc58-447b-9409-dae39ebc6f80, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:19.609Z","sequence":40690,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:19.61Z","sequence":40691,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD6ABBC3CF9798] for gateway [gateway_integrationtest_network_191405]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:19.61Z","sequence":40692,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:19.61Z","sequence":40693,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191405]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:19.618Z","sequence":40694,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:19.618Z","sequence":40695,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:19.619Z","sequence":40696,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-dd052a5e-0ca2-4a6e-99e4-4550d5003b22, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:19.929Z","sequence":40697,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFDB1657BBB81C9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3ba5cb08c6923f1c","parentId":"527d2cb55dcba198","traceId":"0000000000000000968950ad64585af2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:19.96Z","sequence":40698,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFDB1657BBB81C9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3ba5cb08c6923f1c","parentId":"527d2cb55dcba198","traceId":"0000000000000000968950ad64585af2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:19.982Z","sequence":40699,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5d6131c1-1afa-4727-8f22-7591d36be7b8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:20.543Z","sequence":40700,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: DA328B9992CA]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0007c94a8efeaad6","parentId":"805665cb1d0b25a3","traceId":"00000000000000002493ba493b4338d1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:20.572Z","sequence":40701,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: DA328B9992CA]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0007c94a8efeaad6","parentId":"805665cb1d0b25a3","traceId":"00000000000000002493ba493b4338d1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:21.438Z","sequence":40702,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191406]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f87ef64be7bb4539","parentId":"f4fc2c72a46fbaec","traceId":"0000000000000000132960e47ea6d366","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:21.466Z","sequence":40703,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191406, resource-version: 976ac3fa-1dde-418b-a233-aca794b3a4df]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f87ef64be7bb4539","parentId":"f4fc2c72a46fbaec","traceId":"0000000000000000132960e47ea6d366","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:21.497Z","sequence":40704,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191406, resource-version: 72827399-4a91-409a-8d58-5ca6c51e817f]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f87ef64be7bb4539","parentId":"f4fc2c72a46fbaec","traceId":"0000000000000000132960e47ea6d366","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:21.503Z","sequence":40705,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191406]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4496bc4e8146b5c4","parentId":"6e2282be8c2e43c9","traceId":"0000000000000000132960e47ea6d366","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:21.695Z","sequence":40706,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191406]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4496bc4e8146b5c4","parentId":"6e2282be8c2e43c9","traceId":"0000000000000000132960e47ea6d366","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:22.197Z","sequence":40707,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFFC35F3AE1469C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"547d0c3ee505e6de","parentId":"3a39fa023d2232f8","traceId":"000000000000000043c8224bc6872454","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:22.249Z","sequence":40708,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFFC35F3AE1469C, resource-version: 509df408-320e-4e7f-a1a8-dcb7bc3aff6e]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"547d0c3ee505e6de","parentId":"3a39fa023d2232f8","traceId":"000000000000000043c8224bc6872454","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:22.257Z","sequence":40709,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF04C3C103FFDF0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"be039a38e53f3985","parentId":"679fd40b0813874b","traceId":"00000000000000005ef25e97dcc0eaec","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:22.257Z","sequence":40710,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFFC35F3AE1469C, resource-version: f8cf3cc2-9e4f-4e42-865d-dbf595d288da]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"547d0c3ee505e6de","parentId":"3a39fa023d2232f8","traceId":"000000000000000043c8224bc6872454","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:22.274Z","sequence":40711,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF04C3C103FFDF0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"be039a38e53f3985","parentId":"679fd40b0813874b","traceId":"00000000000000005ef25e97dcc0eaec","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:22.516Z","sequence":40712,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 024E6A347AB0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ddf43381fb407999","parentId":"72f18bd77d1c41ad","traceId":"0000000000000000e2498557cbf15b2a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:22.568Z","sequence":40713,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 024E6A347AB0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ddf43381fb407999","parentId":"72f18bd77d1c41ad","traceId":"0000000000000000e2498557cbf15b2a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:22.672Z","sequence":40714,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFFC35F3AE1469C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4e9676ac2b668f87","parentId":"2ecd97a7c594c55d","traceId":"0000000000000000df73be62a3102a6a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:22.69Z","sequence":40715,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFFC35F3AE1469C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4e9676ac2b668f87","parentId":"2ecd97a7c594c55d","traceId":"0000000000000000df73be62a3102a6a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:22.917Z","sequence":40716,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191406]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a8184a79ef2ebfee","parentId":"08d6cdda594bdb7b","traceId":"000000000000000092d4024b58e92172","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:22.95Z","sequence":40717,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191406]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a8184a79ef2ebfee","parentId":"08d6cdda594bdb7b","traceId":"000000000000000092d4024b58e92172","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:23.04Z","sequence":40718,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:23.04Z","sequence":40719,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: terega]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:23.093Z","sequence":40720,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-81c81781-669e-4861-a488-70684b48d5de, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:23.095Z","sequence":40721,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/terega:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:23.096Z","sequence":40722,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: terega, type: hashed-password, auth-id: auth-gateway_terega_network_27]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:23.107Z","sequence":40723,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-3fced1df-2185-4980-a7bd-60badfc59169, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:23.245Z","sequence":40724,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/terega:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:23.245Z","sequence":40725,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: terega, device-id: 39383837002F003F] for gateway [gateway_terega_network_27]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:23.246Z","sequence":40726,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/terega:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:23.248Z","sequence":40727,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: terega, device-id: gateway_terega_network_27]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:23.287Z","sequence":40728,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6d002b41-29b0-4c0a-b223-e9da598258ff, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:23.288Z","sequence":40729,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_terega\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:23.288Z","sequence":40730,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_terega\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:23.293Z","sequence":40731,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d8f1a38d-4ebf-4c76-809a-728a96119208, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:27.469Z","sequence":40732,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 2D7D80DE961E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"39fa154f8e7a8877","parentId":"cc4888a3408d2800","traceId":"00000000000000004e8cb6fa2c6e6382","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:27.505Z","sequence":40733,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 2D7D80DE961E, resource-version: 9b526aa4-a367-4064-873b-21e9d0e728f4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"39fa154f8e7a8877","parentId":"cc4888a3408d2800","traceId":"00000000000000004e8cb6fa2c6e6382","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:27.539Z","sequence":40734,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 2D7D80DE961E, resource-version: f5eff83a-c660-4f57-bd2e-094fc2ed7b8c]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"39fa154f8e7a8877","parentId":"cc4888a3408d2800","traceId":"00000000000000004e8cb6fa2c6e6382","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:27.542Z","sequence":40735,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 2D7D80DE961E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0b1249bcc2536f83","parentId":"a980d54faaa411b6","traceId":"00000000000000004e8cb6fa2c6e6382","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:27.695Z","sequence":40736,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 2D7D80DE961E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0b1249bcc2536f83","parentId":"a980d54faaa411b6","traceId":"00000000000000004e8cb6fa2c6e6382","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:27.953Z","sequence":40737,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF72E473343BAF5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"49ae589b041cf205","parentId":"bc9ce02b93c1681a","traceId":"00000000000000002f095d4aba0da08e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:28.001Z","sequence":40738,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF72E473343BAF5, resource-version: 88ff4f64-2659-4840-bddf-0800742c535c]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"49ae589b041cf205","parentId":"bc9ce02b93c1681a","traceId":"00000000000000002f095d4aba0da08e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:28.007Z","sequence":40739,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF72E473343BAF5, resource-version: 2c99556e-6d8e-4e22-b3bb-ba44d8f532da]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"49ae589b041cf205","parentId":"bc9ce02b93c1681a","traceId":"00000000000000002f095d4aba0da08e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:28.35Z","sequence":40740,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF72E473343BAF5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"acaca0ba076996e0","parentId":"660332371f103d43","traceId":"00000000000000003d215982f23e933c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:28.398Z","sequence":40741,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF72E473343BAF5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"acaca0ba076996e0","parentId":"660332371f103d43","traceId":"00000000000000003d215982f23e933c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:28.692Z","sequence":40742,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 2D7D80DE961E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d3ac4c5aebd74ba0","parentId":"4bcd6ecb0ae51403","traceId":"0000000000000000dae5a2b96e5d6656","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:28.746Z","sequence":40743,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 2D7D80DE961E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d3ac4c5aebd74ba0","parentId":"4bcd6ecb0ae51403","traceId":"0000000000000000dae5a2b96e5d6656","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:28.937Z","sequence":40744,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:28.937Z","sequence":40745,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BB84C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:28.949Z","sequence":40746,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6b126fed-1f49-40c5-b406-40751904d9d7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:28.952Z","sequence":40747,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:28.952Z","sequence":40748,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: lanxess]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:28.961Z","sequence":40749,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-f432bbff-9242-4cfc-a8fb-6d47eb1c03e5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:29.551Z","sequence":40750,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFD6ABBC3CF9798]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d436f29e250f8d8e","parentId":"792769b20dcc9544","traceId":"0000000000000000acc94d1fd1727fe7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:29.603Z","sequence":40751,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFD6ABBC3CF9798]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d436f29e250f8d8e","parentId":"792769b20dcc9544","traceId":"0000000000000000acc94d1fd1727fe7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:29.691Z","sequence":40752,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 51886946C361]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"20cb18a2d5a93847","parentId":"99078bd40d67655e","traceId":"00000000000000009351383da43be0e8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:29.746Z","sequence":40753,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191405]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cf9ddaa19ac99d4b","parentId":"5cfbbfe98af2d926","traceId":"0000000000000000426a5599fa0f0afd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:29.749Z","sequence":40754,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 51886946C361, resource-version: cb6e6102-e025-4543-836b-039e69e9cde3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"20cb18a2d5a93847","parentId":"99078bd40d67655e","traceId":"00000000000000009351383da43be0e8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:29.758Z","sequence":40755,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 51886946C361, resource-version: a5bbe158-c20e-4524-b916-69235a4b871e]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"20cb18a2d5a93847","parentId":"99078bd40d67655e","traceId":"00000000000000009351383da43be0e8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:29.761Z","sequence":40756,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 51886946C361]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8272c5c87ba998b9","parentId":"c19473d3dfcf71fd","traceId":"00000000000000009351383da43be0e8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:29.763Z","sequence":40757,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191405]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cf9ddaa19ac99d4b","parentId":"5cfbbfe98af2d926","traceId":"0000000000000000426a5599fa0f0afd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:29.945Z","sequence":40758,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 51886946C361]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8272c5c87ba998b9","parentId":"c19473d3dfcf71fd","traceId":"00000000000000009351383da43be0e8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:29.965Z","sequence":40759,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:29.965Z","sequence":40760,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001935] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:29.989Z","sequence":40761,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:29.989Z","sequence":40762,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:30.039Z","sequence":40763,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ef738d79-d9a4-47d6-b00f-308e64e9e87c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:30.099Z","sequence":40764,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:30.099Z","sequence":40765,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 0008004B5135]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:30.106Z","sequence":40766,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-da2d8bb2-4cb9-4b9d-96f1-c239ce9f55d2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:30.66Z","sequence":40767,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 57921D1350F5A61E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0bcf1a8f6ae54dda","parentId":"c1df454b6bdaad73","traceId":"000000000000000062de242c6399678e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:30.701Z","sequence":40768,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 57921D1350F5A61E, resource-version: 6ea6368b-980f-4262-b24d-74b6a552da3a]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0bcf1a8f6ae54dda","parentId":"c1df454b6bdaad73","traceId":"000000000000000062de242c6399678e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:30.712Z","sequence":40769,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 57921D1350F5A61E, resource-version: 1693077a-6df1-4278-a1e5-c1937dfec5f3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0bcf1a8f6ae54dda","parentId":"c1df454b6bdaad73","traceId":"000000000000000062de242c6399678e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:32.386Z","sequence":40770,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:32.386Z","sequence":40771,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-00GWALP120IT]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:32.413Z","sequence":40772,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-d3f0c85d-ac1f-4f19-a45d-42b8e9de3ccd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:32.552Z","sequence":40773,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:32.552Z","sequence":40774,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 00GWALP120IT]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:32.562Z","sequence":40775,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ec3cdc86-60a1-4be6-af4a-978a2f3435d6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:33.978Z","sequence":40776,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:33.978Z","sequence":40777,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BBD1B]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:34.002Z","sequence":40778,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-341cfe45-dbee-4c0d-b2e5-336ba4d09f2c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:35.305Z","sequence":40779,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191409]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"afafd708087fd3d9","parentId":"ea22b713ff67e40c","traceId":"00000000000000006c8f773a3f27dad3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:35.347Z","sequence":40780,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191409, resource-version: 1dd188a1-e71c-4541-8a49-dd0be9972e6a]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"afafd708087fd3d9","parentId":"ea22b713ff67e40c","traceId":"00000000000000006c8f773a3f27dad3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:35.355Z","sequence":40781,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191409, resource-version: 07b74659-8d76-4ad0-84d6-b21b55bdda2f]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"afafd708087fd3d9","parentId":"ea22b713ff67e40c","traceId":"00000000000000006c8f773a3f27dad3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:35.358Z","sequence":40782,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191409]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3bf882d12cff033f","parentId":"f1dca8e498737457","traceId":"00000000000000006c8f773a3f27dad3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:35.491Z","sequence":40783,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191409]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3bf882d12cff033f","parentId":"f1dca8e498737457","traceId":"00000000000000006c8f773a3f27dad3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:36.417Z","sequence":40784,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF92B05874C3E58]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"82dacfe37ebbd461","parentId":"4de6d860db676666","traceId":"00000000000000002cb758420ffc2001","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:36.442Z","sequence":40785,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF92B05874C3E58, resource-version: f7c95474-bdca-4e54-a77b-f813817c322e]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"82dacfe37ebbd461","parentId":"4de6d860db676666","traceId":"00000000000000002cb758420ffc2001","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:36.486Z","sequence":40786,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF92B05874C3E58, resource-version: 765054cf-e912-4fd2-b4db-7f0184de03d1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"82dacfe37ebbd461","parentId":"4de6d860db676666","traceId":"00000000000000002cb758420ffc2001","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:37.552Z","sequence":40787,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:37.552Z","sequence":40788,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191409]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:37.564Z","sequence":40789,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-d98070ad-78f6-4a4a-a3e3-8154356cff02, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:37.687Z","sequence":40790,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:37.687Z","sequence":40791,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF92B05874C3E58] for gateway [gateway_integrationtest_network_191409]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:37.688Z","sequence":40792,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:37.688Z","sequence":40793,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191409]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:37.694Z","sequence":40794,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-61e9d183-f9f7-4be0-aa01-b76a12a9b5ea, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:37.694Z","sequence":40795,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:37.694Z","sequence":40796,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:37.865Z","sequence":40797,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8eb676db-b1a7-4534-b99c-0224b0378b64, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:37.866Z","sequence":40798,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:37.866Z","sequence":40799,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001ACD] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:37.872Z","sequence":40800,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:37.872Z","sequence":40801,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:37.879Z","sequence":40802,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-20a64f6f-0761-4521-a94c-7536e6ee2d48, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:38.38Z","sequence":40803,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:38.38Z","sequence":40804,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-51886946C361]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:38.381Z","sequence":40805,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:38.381Z","sequence":40806,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-51886946C361]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:38.392Z","sequence":40807,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-149d12ea-8377-4e77-ae5b-dc777582826b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:38.393Z","sequence":40808,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-d76fc2ce-c31f-400a-b48a-00881d7950ca, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:38.682Z","sequence":40809,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:38.683Z","sequence":40810,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 51886946C361]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:38.684Z","sequence":40811,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:38.685Z","sequence":40812,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 51886946C361]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:38.686Z","sequence":40813,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:38.687Z","sequence":40814,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10008BC] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:38.689Z","sequence":40815,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7d5e93b7-38bd-47b5-b26a-b4c6a55a671f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:38.691Z","sequence":40816,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2c34e8d8-0164-49b7-81d3-b18f2dccdf51, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:38.692Z","sequence":40817,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:38.692Z","sequence":40818,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:38.693Z","sequence":40819,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:38.693Z","sequence":40820,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 57921D1350F5A61E] for gateway [51886946C361]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:38.694Z","sequence":40821,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:38.694Z","sequence":40822,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 57921D1350F5A61E] for gateway [51886946C361]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:38.699Z","sequence":40823,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-416a17b4-385c-4ef6-9124-09a6629507c5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:38.703Z","sequence":40824,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:connect:0.1.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:38.703Z","sequence":40825,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:38.704Z","sequence":40826,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:connect:0.1.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:38.704Z","sequence":40827,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:39.061Z","sequence":40828,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6bdb856f-30f6-4301-90a2-c60a5b28ff62, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:39.457Z","sequence":40829,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-36c3dca3-04b8-4ba0-aa3a-8dfdb5a1cc92, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:41.011Z","sequence":40830,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/repsol:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:41.011Z","sequence":40831,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: repsol, device-id: 70B3D57BB1000207] for gateway [0008004A37FF]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:41.018Z","sequence":40832,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:0.4.1\"\n },\n \"viaGroups\" : [ \"gateways_repsol\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:41.018Z","sequence":40833,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_repsol\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:41.021Z","sequence":40834,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-82747b01-4b14-4683-b354-273da3b9023f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:41.72Z","sequence":40835,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/arkema:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:41.72Z","sequence":40836,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: arkema, device-id: 0008004AE119]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:41.728Z","sequence":40837,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9831e81b-d08d-4919-9788-4e36294bcc62, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:41.733Z","sequence":40838,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:41.733Z","sequence":40839,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: arkema]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:41.736Z","sequence":40840,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-071b5329-4cfd-4a66-9280-2921bc8c9047, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:42.906Z","sequence":40841,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:42.906Z","sequence":40842,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000500] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:42.911Z","sequence":40843,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:42.911Z","sequence":40844,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:42.917Z","sequence":40845,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-759845f6-1e07-4551-8223-dcbf8aaa49af, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:45.069Z","sequence":40846,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:45.069Z","sequence":40847,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB100080A] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:45.095Z","sequence":40848,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:45.095Z","sequence":40849,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:45.105Z","sequence":40850,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c33af15a-348a-430e-b6e5-ae932db10b1d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:48.414Z","sequence":40851,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF92B05874C3E58]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"51796ed66376d138","parentId":"632105ef3f55a043","traceId":"00000000000000009cf34b16312d53e4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:48.489Z","sequence":40852,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF92B05874C3E58]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"51796ed66376d138","parentId":"632105ef3f55a043","traceId":"00000000000000009cf34b16312d53e4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:48.537Z","sequence":40853,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:48.537Z","sequence":40854,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100192A] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:48.555Z","sequence":40855,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:48.555Z","sequence":40856,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:48.565Z","sequence":40857,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c8b2360f-c9ab-4f42-b10b-980498b1cb18, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:49.723Z","sequence":40858,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:49.723Z","sequence":40859,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000821] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:49.726Z","sequence":40860,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191409]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a7bda4afb35003de","parentId":"3a777412d672194e","traceId":"0000000000000000ea9bdef547ae715e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:49.728Z","sequence":40861,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:49.728Z","sequence":40862,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:49.732Z","sequence":40863,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1751ef6b-34ac-4d71-a720-f5519e4a72f0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:49.769Z","sequence":40864,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191409]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a7bda4afb35003de","parentId":"3a777412d672194e","traceId":"0000000000000000ea9bdef547ae715e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:50.096Z","sequence":40865,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 638CCD8D3F41]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cb3d50f175f9b441","parentId":"77daa1dd9750a0bb","traceId":"000000000000000002abb689a8016ae6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:50.116Z","sequence":40866,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 638CCD8D3F41, resource-version: cd0442cc-d11c-478e-bfe4-0bbe1ed271ee]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cb3d50f175f9b441","parentId":"77daa1dd9750a0bb","traceId":"000000000000000002abb689a8016ae6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:50.123Z","sequence":40867,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 638CCD8D3F41, resource-version: b7437532-8542-4317-91e5-d618a62bb7a9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cb3d50f175f9b441","parentId":"77daa1dd9750a0bb","traceId":"000000000000000002abb689a8016ae6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:50.127Z","sequence":40868,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 638CCD8D3F41]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0a7902c80c8b00a2","parentId":"93c3fe906d14f2ae","traceId":"000000000000000002abb689a8016ae6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:50.244Z","sequence":40869,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 638CCD8D3F41]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0a7902c80c8b00a2","parentId":"93c3fe906d14f2ae","traceId":"000000000000000002abb689a8016ae6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:50.781Z","sequence":40870,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF899A5C9ECBDE5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1eb0a49f34c32248","parentId":"62bca0324bbea02c","traceId":"0000000000000000caf5e632d2d8bca2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:50.808Z","sequence":40871,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF899A5C9ECBDE5, resource-version: 3904810e-3925-4e7d-9439-b06e31cfd9ca]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1eb0a49f34c32248","parentId":"62bca0324bbea02c","traceId":"0000000000000000caf5e632d2d8bca2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:50.82Z","sequence":40872,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF899A5C9ECBDE5, resource-version: 38c8f9b5-7bbd-42b8-9d8a-766e035d4adc]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1eb0a49f34c32248","parentId":"62bca0324bbea02c","traceId":"0000000000000000caf5e632d2d8bca2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:51.126Z","sequence":40873,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:51.126Z","sequence":40874,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oci]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:51.131Z","sequence":40875,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-29754610-70c9-4f9a-87aa-2a4ff0af01de, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:51.137Z","sequence":40876,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:51.137Z","sequence":40877,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001C1] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:51.151Z","sequence":40878,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:51.151Z","sequence":40879,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:51.155Z","sequence":40880,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a5e85e42-d649-4ce9-a256-7601ab5589bd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:51.171Z","sequence":40881,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:51.171Z","sequence":40882,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001C1] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:51.18Z","sequence":40883,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:51.181Z","sequence":40884,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:51.197Z","sequence":40885,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ea7b87bb-730b-4ff3-9252-f23795f09959, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:51.889Z","sequence":40886,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:51.889Z","sequence":40887,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-638CCD8D3F41]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:51.911Z","sequence":40888,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-1a677ae7-9a31-40d7-b65b-d2351b5a7943, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:52.032Z","sequence":40889,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:52.032Z","sequence":40890,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 638CCD8D3F41]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:52.038Z","sequence":40891,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8abc031f-a37c-4f64-8569-27b57ff343a8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:52.042Z","sequence":40892,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:52.042Z","sequence":40893,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF899A5C9ECBDE5] for gateway [638CCD8D3F41]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:52.047Z","sequence":40894,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:52.048Z","sequence":40895,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:52.679Z","sequence":40896,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-de233d4e-dbe9-4ecf-9703-7b363add5e35, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:56.301Z","sequence":40897,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:56.301Z","sequence":40898,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B80] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:56.31Z","sequence":40899,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:56.31Z","sequence":40900,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:56.35Z","sequence":40901,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6a18fd4b-3049-4ada-be4b-d0881a6529d3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:57.924Z","sequence":40902,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 57921D1350F5A61E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"596e2e339bd3d6e1","parentId":"5ba83a840bf5a241","traceId":"000000000000000048fb1fd45d9534cb","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:57.947Z","sequence":40903,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 57921D1350F5A61E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"596e2e339bd3d6e1","parentId":"5ba83a840bf5a241","traceId":"000000000000000048fb1fd45d9534cb","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:58.066Z","sequence":40904,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 51886946C361]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b483d57c89852b63","parentId":"662ab96edb547fc1","traceId":"0000000000000000c6b5699df6aaed7a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:58.098Z","sequence":40905,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 51886946C361]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b483d57c89852b63","parentId":"662ab96edb547fc1","traceId":"0000000000000000c6b5699df6aaed7a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:59.188Z","sequence":40906,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:59.189Z","sequence":40907,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100056E] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:59.195Z","sequence":40908,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:59.195Z","sequence":40909,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:56:59.211Z","sequence":40910,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-024ebaa7-53c0-4959-be49-d3cf5a44787c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:01.538Z","sequence":40911,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:01.538Z","sequence":40912,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006D4] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:01.544Z","sequence":40913,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:01.544Z","sequence":40914,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:01.551Z","sequence":40915,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ffcd98e7-819f-4f1b-8306-468f1de40e0b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:02.882Z","sequence":40916,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 028DDE73ED9A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e9593becc5ba0e74","parentId":"ad213ae09941114d","traceId":"0000000000000000cc9923b2f9fa25c9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:02.904Z","sequence":40917,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 028DDE73ED9A, resource-version: 4b3d5f50-747c-4c77-9b2a-4f863e301708]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e9593becc5ba0e74","parentId":"ad213ae09941114d","traceId":"0000000000000000cc9923b2f9fa25c9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:02.911Z","sequence":40918,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 028DDE73ED9A, resource-version: f8959345-176f-4e6b-800c-a9d1bba183e6]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e9593becc5ba0e74","parentId":"ad213ae09941114d","traceId":"0000000000000000cc9923b2f9fa25c9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:02.916Z","sequence":40919,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 028DDE73ED9A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0499305c4beb7501","parentId":"17d5b0131685aafc","traceId":"0000000000000000cc9923b2f9fa25c9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:03.025Z","sequence":40920,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 028DDE73ED9A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0499305c4beb7501","parentId":"17d5b0131685aafc","traceId":"0000000000000000cc9923b2f9fa25c9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:03.357Z","sequence":40921,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191412]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0084ccf238cad321","parentId":"ccd24844a08eb641","traceId":"000000000000000096d01c9e6e6245ac","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:03.402Z","sequence":40922,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191412, resource-version: 1b50bf84-26f5-4414-a079-175247d90d60]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0084ccf238cad321","parentId":"ccd24844a08eb641","traceId":"000000000000000096d01c9e6e6245ac","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:03.41Z","sequence":40923,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191412, resource-version: c4e4d2bc-4185-41e4-a012-149c86935cb1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0084ccf238cad321","parentId":"ccd24844a08eb641","traceId":"000000000000000096d01c9e6e6245ac","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:03.415Z","sequence":40924,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191412]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e986470b608308f7","parentId":"91fc57e5397e54dd","traceId":"000000000000000096d01c9e6e6245ac","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:03.601Z","sequence":40925,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191412]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e986470b608308f7","parentId":"91fc57e5397e54dd","traceId":"000000000000000096d01c9e6e6245ac","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:03.91Z","sequence":40926,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF6D5062E0F3C04]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"44940b22a2d4eda8","parentId":"a563fbb5b831daa8","traceId":"0000000000000000255b3f4eed11913c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:03.945Z","sequence":40927,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF6D5062E0F3C04, resource-version: 77b23f82-d446-41fb-8ee8-d3b8454b48cf]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"44940b22a2d4eda8","parentId":"a563fbb5b831daa8","traceId":"0000000000000000255b3f4eed11913c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:03.952Z","sequence":40928,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF6D5062E0F3C04, resource-version: 128ebc6e-a174-4768-84da-0a4a55bf202c]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"44940b22a2d4eda8","parentId":"a563fbb5b831daa8","traceId":"0000000000000000255b3f4eed11913c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:04.206Z","sequence":40929,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF5A5DF4F986C26]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f289d2af977ee24a","parentId":"d4b1dd2024b60380","traceId":"00000000000000006ad9310277489665","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:04.227Z","sequence":40930,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF5A5DF4F986C26, resource-version: f5349a62-70af-4cec-b4bc-12fce048b81c]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f289d2af977ee24a","parentId":"d4b1dd2024b60380","traceId":"00000000000000006ad9310277489665","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:04.252Z","sequence":40931,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF5A5DF4F986C26, resource-version: 4b24ac8f-82f8-4bbc-9230-b960d06a9c72]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f289d2af977ee24a","parentId":"d4b1dd2024b60380","traceId":"00000000000000006ad9310277489665","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:04.943Z","sequence":40932,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF899A5C9ECBDE5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"388c93966d118a21","parentId":"ec91cade49f3e0bb","traceId":"0000000000000000c9a5ef5279d44d8a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:04.96Z","sequence":40933,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF899A5C9ECBDE5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"388c93966d118a21","parentId":"ec91cade49f3e0bb","traceId":"0000000000000000c9a5ef5279d44d8a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:05.033Z","sequence":40934,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:05.033Z","sequence":40935,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191412]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:05.046Z","sequence":40936,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-0239a520-477e-4c35-9802-ca8b9b34797a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:05.168Z","sequence":40937,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:05.169Z","sequence":40938,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF6D5062E0F3C04] for gateway [gateway_integrationtest_network_191412]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:05.169Z","sequence":40939,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:05.17Z","sequence":40940,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191412]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:05.176Z","sequence":40941,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9a174918-b623-4912-bf3b-9712e9cd71a6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:05.177Z","sequence":40942,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.3.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:05.177Z","sequence":40943,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:05.534Z","sequence":40944,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0fa93535-f66a-4d80-afc7-3cfbdcb6a7ff, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:05.535Z","sequence":40945,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:05.536Z","sequence":40946,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-028DDE73ED9A]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:05.537Z","sequence":40947,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:05.537Z","sequence":40948,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AD4] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:05.543Z","sequence":40949,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:05.544Z","sequence":40950,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:05.545Z","sequence":40951,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-cd284db7-d622-4229-a288-6ea87e9e5b66, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:05.55Z","sequence":40952,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4fc16d72-3d73-414b-a460-87e6c27c4623, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:05.666Z","sequence":40953,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:05.667Z","sequence":40954,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 028DDE73ED9A]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:05.672Z","sequence":40955,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-eec5f887-98ec-425d-8557-15ee9b437a0f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:05.677Z","sequence":40956,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:05.677Z","sequence":40957,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF5A5DF4F986C26] for gateway [028DDE73ED9A]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:05.682Z","sequence":40958,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:05.682Z","sequence":40959,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:06.028Z","sequence":40960,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c9a2da18-ef65-4918-915e-03ed54eea29d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:06.344Z","sequence":40961,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 638CCD8D3F41]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f052a580d40dd455","parentId":"d0c8c95929e1ee13","traceId":"0000000000000000ffc0a576702c8d9f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:06.363Z","sequence":40962,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 638CCD8D3F41]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f052a580d40dd455","parentId":"d0c8c95929e1ee13","traceId":"0000000000000000ffc0a576702c8d9f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:11.024Z","sequence":40963,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF6D5062E0F3C04]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"97e79818508612cf","parentId":"be5fe91646993d7c","traceId":"000000000000000003b1160253e69cb5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:11.109Z","sequence":40964,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF6D5062E0F3C04]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"97e79818508612cf","parentId":"be5fe91646993d7c","traceId":"000000000000000003b1160253e69cb5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:11.574Z","sequence":40965,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF5A5DF4F986C26]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cfd67ec01114d92f","parentId":"7527f8844f9c4559","traceId":"0000000000000000594d70bc0d7907a8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:11.641Z","sequence":40966,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF5A5DF4F986C26]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cfd67ec01114d92f","parentId":"7527f8844f9c4559","traceId":"0000000000000000594d70bc0d7907a8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:11.768Z","sequence":40967,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191412]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5bb6a1657ab1e5d6","parentId":"6fb0d546c7ad903f","traceId":"000000000000000039f2adcdae6bb095","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:11.843Z","sequence":40968,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191412]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5bb6a1657ab1e5d6","parentId":"6fb0d546c7ad903f","traceId":"000000000000000039f2adcdae6bb095","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:12.012Z","sequence":40969,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:12.012Z","sequence":40970,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10002D2] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:12.028Z","sequence":40971,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:12.028Z","sequence":40972,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:12.036Z","sequence":40973,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7b9709d2-1f17-4951-aa73-721b4cd33eab, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:12.693Z","sequence":40974,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 028DDE73ED9A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"08e8f394fefdd51f","parentId":"675ab1930096dade","traceId":"0000000000000000718a9fb809d612cf","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:12.796Z","sequence":40975,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 028DDE73ED9A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"08e8f394fefdd51f","parentId":"675ab1930096dade","traceId":"0000000000000000718a9fb809d612cf","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:13.924Z","sequence":40976,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 68863D6E5A45]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"eacae49acd3ceee4","parentId":"5fd712bc8daf7c96","traceId":"0000000000000000a9fe67fd42bf1299","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:13.997Z","sequence":40977,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 68863D6E5A45, resource-version: ee16e44b-f192-49dd-bbe6-94576b9ade64]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"eacae49acd3ceee4","parentId":"5fd712bc8daf7c96","traceId":"0000000000000000a9fe67fd42bf1299","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:14.01Z","sequence":40978,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 68863D6E5A45, resource-version: 8a83088f-c9df-4a9f-9828-731de450480e]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"eacae49acd3ceee4","parentId":"5fd712bc8daf7c96","traceId":"0000000000000000a9fe67fd42bf1299","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:14.018Z","sequence":40979,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 68863D6E5A45]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6a114489de1f215c","parentId":"3e021a33232c7888","traceId":"0000000000000000a9fe67fd42bf1299","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:14.4Z","sequence":40980,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 68863D6E5A45]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6a114489de1f215c","parentId":"3e021a33232c7888","traceId":"0000000000000000a9fe67fd42bf1299","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:15.209Z","sequence":40981,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: A418C6797218]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c684c703259811e3","parentId":"f911749df1824d19","traceId":"00000000000000000b31314a8b382e4d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:15.278Z","sequence":40982,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191415]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e04c8176a2f1c002","parentId":"8f28847bfaa80529","traceId":"00000000000000003e11353e08882907","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:15.298Z","sequence":40983,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191415, resource-version: e461d2f9-cae4-46ac-be9b-fece5b477415]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e04c8176a2f1c002","parentId":"8f28847bfaa80529","traceId":"00000000000000003e11353e08882907","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:15.298Z","sequence":40984,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: A418C6797218, resource-version: b0e1b0fa-5dde-4404-875f-1ec565a4a9d3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c684c703259811e3","parentId":"f911749df1824d19","traceId":"00000000000000000b31314a8b382e4d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:15.34Z","sequence":40985,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191415, resource-version: 649f67c0-39d1-4b07-84b6-a520266af0e0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e04c8176a2f1c002","parentId":"8f28847bfaa80529","traceId":"00000000000000003e11353e08882907","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:15.344Z","sequence":40986,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191415]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"15ee9af3c13b0133","parentId":"866df8132dc18be6","traceId":"00000000000000003e11353e08882907","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:15.345Z","sequence":40987,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: A418C6797218, resource-version: 889a7b34-da84-4087-81f7-0e5df23c5f8f]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c684c703259811e3","parentId":"f911749df1824d19","traceId":"00000000000000000b31314a8b382e4d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:15.348Z","sequence":40988,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: A418C6797218]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ece2fcd3ef0289c6","parentId":"d9296567c4447fee","traceId":"00000000000000000b31314a8b382e4d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:15.547Z","sequence":40989,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191415]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"15ee9af3c13b0133","parentId":"866df8132dc18be6","traceId":"00000000000000003e11353e08882907","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:15.793Z","sequence":40990,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: A418C6797218]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ece2fcd3ef0289c6","parentId":"d9296567c4447fee","traceId":"00000000000000000b31314a8b382e4d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:15.875Z","sequence":40991,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:15.875Z","sequence":40992,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000883] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:15.883Z","sequence":40993,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:15.883Z","sequence":40994,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:15.887Z","sequence":40995,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-79066192-e490-4f2f-bc70-d4392aba1a02, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:16.193Z","sequence":40996,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFC497D2D954090]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"64f98d4f291ddb12","parentId":"70df37b0da755e51","traceId":"000000000000000062f718713edf7815","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:16.212Z","sequence":40997,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFC497D2D954090, resource-version: 64b5d006-7258-4eb9-860b-8daa718c7374]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"64f98d4f291ddb12","parentId":"70df37b0da755e51","traceId":"000000000000000062f718713edf7815","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:16.224Z","sequence":40998,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFC497D2D954090, resource-version: 736a4bf9-7ec7-4104-a2f2-dfc7ba1567fe]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"64f98d4f291ddb12","parentId":"70df37b0da755e51","traceId":"000000000000000062f718713edf7815","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:16.616Z","sequence":40999,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF23125E90FCA1B]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b2874de3e6ad5416","parentId":"bc6ee2f14b6690d4","traceId":"0000000000000000705eabbe4f563311","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:16.664Z","sequence":41000,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF23125E90FCA1B, resource-version: ee87b776-c620-4c59-8f7d-5488b3624551]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b2874de3e6ad5416","parentId":"bc6ee2f14b6690d4","traceId":"0000000000000000705eabbe4f563311","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:16.707Z","sequence":41001,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF23125E90FCA1B, resource-version: 00d8d79b-0789-4635-947d-4340fb078704]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b2874de3e6ad5416","parentId":"bc6ee2f14b6690d4","traceId":"0000000000000000705eabbe4f563311","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:16.946Z","sequence":41002,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:16.947Z","sequence":41003,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-68863D6E5A45]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:16.977Z","sequence":41004,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-6f95a136-2821-419c-a386-73b781fb79ea, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:17.101Z","sequence":41005,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:17.101Z","sequence":41006,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 68863D6E5A45]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:17.11Z","sequence":41007,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-dcb9a277-c2aa-48c3-ae25-539df612c7d7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:17.119Z","sequence":41008,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [command-router@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:17.119Z","sequence":41009,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:17.122Z","sequence":41010,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-6bf7de0f-30be-48d4-83c1-5e43b2711773, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:17.237Z","sequence":41011,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF305D276EA37F0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2436174e38857b4c","parentId":"c76dc4278a246e97","traceId":"0000000000000000c116cb513d33af28","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:17.257Z","sequence":41012,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF305D276EA37F0, resource-version: 1d830e71-e22e-4a2b-bb79-7328115206e4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2436174e38857b4c","parentId":"c76dc4278a246e97","traceId":"0000000000000000c116cb513d33af28","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:17.265Z","sequence":41013,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF305D276EA37F0, resource-version: 48c03f79-330f-4a8e-b83e-3a788ae75c43]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2436174e38857b4c","parentId":"c76dc4278a246e97","traceId":"0000000000000000c116cb513d33af28","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:17.434Z","sequence":41014,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:17.434Z","sequence":41015,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AD6] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:17.449Z","sequence":41016,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:17.45Z","sequence":41017,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:17.497Z","sequence":41018,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7859dde2-ce49-45c6-821d-63d33c92bf4a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:17.59Z","sequence":41019,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:17.59Z","sequence":41020,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006C7] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:17.625Z","sequence":41021,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:17.625Z","sequence":41022,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:17.641Z","sequence":41023,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-99986359-c05f-40bd-9fb3-7c9d929cdb6d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:17.94Z","sequence":41024,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:17.941Z","sequence":41025,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-A418C6797218]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:17.986Z","sequence":41026,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-cf8dfee3-9134-4603-8acc-678dc1c4c868, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:18.118Z","sequence":41027,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:18.119Z","sequence":41028,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: A418C6797218]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:18.137Z","sequence":41029,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-13c5a706-fe67-4d58-921e-da8afc54b2fa, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:18.143Z","sequence":41030,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:18.144Z","sequence":41031,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF23125E90FCA1B] for gateway [A418C6797218]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:18.157Z","sequence":41032,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:18.157Z","sequence":41033,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:18.743Z","sequence":41034,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e555c7c5-aef0-4a52-b6b3-74b0b027c38d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:18.744Z","sequence":41035,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:18.744Z","sequence":41036,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191415]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:18.765Z","sequence":41037,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-e933d362-c289-4c05-ad21-741723117030, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:18.893Z","sequence":41038,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:18.893Z","sequence":41039,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF305D276EA37F0] for gateway [gateway_integrationtest_network_191415]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:18.894Z","sequence":41040,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:18.896Z","sequence":41041,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191415]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:18.912Z","sequence":41042,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:18.913Z","sequence":41043,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:18.914Z","sequence":41044,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9cd7cc06-bf18-4eb3-89cb-d571fe637730, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:19.657Z","sequence":41045,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-10a36997-d5c5-4b3b-9cee-ad584ee393c3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:20.36Z","sequence":41046,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:20.36Z","sequence":41047,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AC8] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:20.389Z","sequence":41048,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:20.389Z","sequence":41049,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:20.407Z","sequence":41050,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-96158c3b-f406-488c-acd2-a36844d550c1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:20.761Z","sequence":41051,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:20.761Z","sequence":41052,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB100087A] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:20.767Z","sequence":41053,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:20.767Z","sequence":41054,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:20.771Z","sequence":41055,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-bf211eee-b630-4b64-ab35-1e6e2df4c769, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:20.802Z","sequence":41056,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:20.802Z","sequence":41057,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A47] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:20.809Z","sequence":41058,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:20.809Z","sequence":41059,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:20.816Z","sequence":41060,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b511ecf8-6ad3-4171-95ae-f378e2c23d67, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:24.775Z","sequence":41061,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:24.775Z","sequence":41062,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:24.781Z","sequence":41063,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-16de251c-d781-48c1-a939-f1ae0430d193, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:25.821Z","sequence":41064,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:25.821Z","sequence":41065,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10008A1] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:25.829Z","sequence":41066,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:25.829Z","sequence":41067,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:25.836Z","sequence":41068,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0b86b8a0-e376-4749-b580-424730be20c1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:26.878Z","sequence":41069,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:26.879Z","sequence":41070,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A41] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:26.89Z","sequence":41071,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:26.89Z","sequence":41072,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:26.897Z","sequence":41073,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9c0cfaee-5ca0-44f1-81ab-dd69f01d6bac, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:28.883Z","sequence":41074,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF23125E90FCA1B]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8c0d2460f6d15321","parentId":"ffeae546403e6d8e","traceId":"000000000000000087edb89a9799d043","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:28.9Z","sequence":41075,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF23125E90FCA1B]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8c0d2460f6d15321","parentId":"ffeae546403e6d8e","traceId":"000000000000000087edb89a9799d043","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:30.854Z","sequence":41076,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF305D276EA37F0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"66e2804099735eb5","parentId":"68a66d83094f0202","traceId":"00000000000000008e0f72a00b4b3c13","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:30.875Z","sequence":41077,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF305D276EA37F0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"66e2804099735eb5","parentId":"68a66d83094f0202","traceId":"00000000000000008e0f72a00b4b3c13","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:31.381Z","sequence":41078,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:31.382Z","sequence":41079,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C05] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:31.387Z","sequence":41080,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:31.387Z","sequence":41081,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:31.393Z","sequence":41082,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0b29067e-7311-4cc1-91ae-7cc79962048a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:34.253Z","sequence":41083,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:34.253Z","sequence":41084,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100192D] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:34.259Z","sequence":41085,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:34.26Z","sequence":41086,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:34.266Z","sequence":41087,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2e1d570d-3590-41fb-a8ba-0f4b10a5362d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:36.077Z","sequence":41088,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:36.077Z","sequence":41089,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: chevron]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:36.081Z","sequence":41090,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-1babafe9-0586-4bdd-921c-dde6a5fcfa11, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:36.083Z","sequence":41091,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/chevron:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:36.083Z","sequence":41092,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: chevron, type: hashed-password, auth-id: auth-CHEVRON-ORBIWISE-EL-SEGUNDO]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:36.097Z","sequence":41093,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-25efd4b6-fbd3-4cad-b2e8-69c549d9bd95, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:36.215Z","sequence":41094,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/chevron:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:36.215Z","sequence":41095,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: chevron, device-id: 70B3D57BB100025E] for gateway [CHEVRON-ORBIWISE-EL-SEGUNDO]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:36.216Z","sequence":41096,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/chevron:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:36.216Z","sequence":41097,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: chevron, device-id: CHEVRON-ORBIWISE-EL-SEGUNDO]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:36.22Z","sequence":41098,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_chevron\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:36.22Z","sequence":41099,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_chevron\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:36.221Z","sequence":41100,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0a58cc98-4a00-4621-9c28-e007ebc42ceb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:36.224Z","sequence":41101,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3b097fb4-e3a2-4e2c-81d3-0ea436a75358, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:37.784Z","sequence":41102,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:37.784Z","sequence":41103,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100015E] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:37.79Z","sequence":41104,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:37.79Z","sequence":41105,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:37.794Z","sequence":41106,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-626762c7-9778-4eb3-8af3-2e6cc4d52ccb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:37.876Z","sequence":41107,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:37.876Z","sequence":41108,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100015E] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:37.882Z","sequence":41109,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:37.882Z","sequence":41110,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:37.885Z","sequence":41111,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e0514601-c6b0-4aa0-a48e-9c65df5417bc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:40.9Z","sequence":41112,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:40.9Z","sequence":41113,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AC5] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:40.906Z","sequence":41114,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:40.906Z","sequence":41115,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:40.913Z","sequence":41116,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3fa88fde-bb01-485d-87af-71b13ac64afa, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:45.177Z","sequence":41117,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:45.177Z","sequence":41118,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006AF] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:45.184Z","sequence":41119,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:45.185Z","sequence":41120,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:45.193Z","sequence":41121,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ea364b9d-d1c3-4d8c-8d83-82301aaada3f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:52.186Z","sequence":41122,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:52.186Z","sequence":41123,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006A8] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:52.193Z","sequence":41124,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:52.193Z","sequence":41125,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:52.2Z","sequence":41126,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-72ed1953-d79c-4ca1-8f15-f72139ba5756, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:54.431Z","sequence":41127,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:54.432Z","sequence":41128,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 0008004C80F4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:54.445Z","sequence":41129,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-acce8180-5342-4df5-9f0b-40a740c85685, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:55.04Z","sequence":41130,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:55.042Z","sequence":41131,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oiltanking]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:55.045Z","sequence":41132,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-045aba1b-e3b3-459a-a594-0120a4d91808, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:55.049Z","sequence":41133,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oiltanking:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:55.05Z","sequence":41134,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oiltanking, device-id: 35363335002D0043] for gateway [0008004BB60F]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:55.056Z","sequence":41135,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.8.0\"\n },\n \"viaGroups\" : [ \"gateways_oiltanking\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:55.056Z","sequence":41136,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oiltanking\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:55.059Z","sequence":41137,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-209796a9-a772-4dd2-84ff-d640e4515829, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:58.781Z","sequence":41138,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: A418C6797218]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"14805dec6ec57fc9","parentId":"d741dd3a9670acd1","traceId":"00000000000000008b3d326bf2f72fdd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:57:58.801Z","sequence":41139,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: A418C6797218]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"14805dec6ec57fc9","parentId":"d741dd3a9670acd1","traceId":"00000000000000008b3d326bf2f72fdd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:00.455Z","sequence":41140,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:00.455Z","sequence":41141,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BBD1C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:00.462Z","sequence":41142,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0d3dd46f-0d9d-417f-afcc-271ab44cb5ce, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:02.436Z","sequence":41143,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:02.436Z","sequence":41144,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: shell]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:02.44Z","sequence":41145,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-d72d05c7-79ce-4671-870b-a3c6ac905df9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:02.442Z","sequence":41146,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/shell:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:02.442Z","sequence":41147,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: shell, type: hashed-password, auth-id: auth-gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:02.452Z","sequence":41148,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-41be8407-bfbc-4b9f-a125-bfa31a81722d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:02.59Z","sequence":41149,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:02.591Z","sequence":41150,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AFC] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:02.591Z","sequence":41151,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:02.591Z","sequence":41152,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:02.596Z","sequence":41153,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:02.596Z","sequence":41154,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:02.597Z","sequence":41155,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-99448428-3e57-4a07-b5a1-86b3481f1139, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:02.607Z","sequence":41156,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-761638b4-bd50-4e85-ae29-6cd05c96eb35, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:04.239Z","sequence":41157,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191417]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f48afbe7c3a97fd0","parentId":"b278a9d4506f24fc","traceId":"000000000000000056b5f3a14b12e2e7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:04.257Z","sequence":41158,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191417, resource-version: a7f48d57-f9c3-404d-a778-fcbc7e42cfcb]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f48afbe7c3a97fd0","parentId":"b278a9d4506f24fc","traceId":"000000000000000056b5f3a14b12e2e7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:04.265Z","sequence":41159,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191417, resource-version: 470402db-b0cc-4313-9185-1b43b203d0c9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f48afbe7c3a97fd0","parentId":"b278a9d4506f24fc","traceId":"000000000000000056b5f3a14b12e2e7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:04.27Z","sequence":41160,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191417]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a348e89b5602c572","parentId":"4fe145aacc6e3231","traceId":"000000000000000056b5f3a14b12e2e7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:04.418Z","sequence":41161,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191417]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a348e89b5602c572","parentId":"4fe145aacc6e3231","traceId":"000000000000000056b5f3a14b12e2e7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:12.32Z","sequence":41162,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oiltanking:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:12.32Z","sequence":41163,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oiltanking, device-id: 0008004BB60F]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:12.325Z","sequence":41164,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-98af582b-b459-4b06-96ab-7b532f370945, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:19.24Z","sequence":41165,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:19.241Z","sequence":41166,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001ACB] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:19.25Z","sequence":41167,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:19.25Z","sequence":41168,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:19.257Z","sequence":41169,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7ac69cba-c819-41eb-970e-92f127d4dad3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:23.485Z","sequence":41170,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191415]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5a8644dde5fb653b","parentId":"cf750e73a154827c","traceId":"00000000000000001d547dc972467fb5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:23.504Z","sequence":41171,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191415]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5a8644dde5fb653b","parentId":"cf750e73a154827c","traceId":"00000000000000001d547dc972467fb5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:23.621Z","sequence":41172,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 1D4542D9E3BB]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a4efd95c3619ee67","parentId":"5035b6f8fc60192e","traceId":"0000000000000000f5696bc91b47dc3d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:23.64Z","sequence":41173,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 1D4542D9E3BB, resource-version: 8f3eee7f-2436-4114-8846-166470796bac]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a4efd95c3619ee67","parentId":"5035b6f8fc60192e","traceId":"0000000000000000f5696bc91b47dc3d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:23.648Z","sequence":41174,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 1D4542D9E3BB, resource-version: 50cdcaa7-78ea-419d-addf-7a2b696ec6c6]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a4efd95c3619ee67","parentId":"5035b6f8fc60192e","traceId":"0000000000000000f5696bc91b47dc3d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:23.653Z","sequence":41175,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 1D4542D9E3BB]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e46b35a63c92a100","parentId":"392a7eaaa327b635","traceId":"0000000000000000f5696bc91b47dc3d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:23.79Z","sequence":41176,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 1D4542D9E3BB]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e46b35a63c92a100","parentId":"392a7eaaa327b635","traceId":"0000000000000000f5696bc91b47dc3d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:23.836Z","sequence":41177,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF1E6F6756C5457]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b2460bbff4d1fdca","parentId":"81ae1feca3c0f421","traceId":"0000000000000000a64b2d6dd1f81490","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:23.856Z","sequence":41178,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF1E6F6756C5457, resource-version: 7f970662-cc93-4b5f-889b-c5a8042788cb]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b2460bbff4d1fdca","parentId":"81ae1feca3c0f421","traceId":"0000000000000000a64b2d6dd1f81490","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:23.862Z","sequence":41179,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF1E6F6756C5457, resource-version: dc0e2d06-3699-4312-bcdc-fb44bd8afa05]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b2460bbff4d1fdca","parentId":"81ae1feca3c0f421","traceId":"0000000000000000a64b2d6dd1f81490","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:23.965Z","sequence":41180,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:23.965Z","sequence":41181,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:23.973Z","sequence":41182,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-93636605-2477-4f50-a0b0-c3efc61f8713, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:23.976Z","sequence":41183,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:23.976Z","sequence":41184,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191417]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:23.977Z","sequence":41185,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:23.977Z","sequence":41186,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191417]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:23.989Z","sequence":41187,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-33810093-86be-4d5c-9059-c73de955f831, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:23.99Z","sequence":41188,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-60961fc4-d4ad-46a7-a9ef-0327f0bb70c3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:24.475Z","sequence":41189,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:24.475Z","sequence":41190,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF1E6F6756C5457] for gateway [gateway_integrationtest_network_191417]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:24.476Z","sequence":41191,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:24.476Z","sequence":41192,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191417]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:24.478Z","sequence":41193,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:24.478Z","sequence":41194,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF1E6F6756C5457] for gateway [gateway_integrationtest_network_191417]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:24.479Z","sequence":41195,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:24.479Z","sequence":41196,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191417]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:24.482Z","sequence":41197,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-16546cdd-7dbf-43ea-a6fa-e7b18aa8e50a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:24.483Z","sequence":41198,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:24.483Z","sequence":41199,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:24.484Z","sequence":41200,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:24.484Z","sequence":41201,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:24.487Z","sequence":41202,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-dc2886b1-4937-4f01-9a24-2769c7e7bc9e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:24.499Z","sequence":41203,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:24.499Z","sequence":41204,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF1E6F6756C5457] for gateway [gateway_integrationtest_network_191417]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:24.518Z","sequence":41205,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:24.518Z","sequence":41206,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:24.699Z","sequence":41207,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF97177813C2D37]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"82858665f0e91260","parentId":"b6209741be4a3fda","traceId":"00000000000000003c7f7264e765f204","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:24.715Z","sequence":41208,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF97177813C2D37, resource-version: b5bd76a9-db39-4f7c-8a11-a977c6b7e47c]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"82858665f0e91260","parentId":"b6209741be4a3fda","traceId":"00000000000000003c7f7264e765f204","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:24.723Z","sequence":41209,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF97177813C2D37, resource-version: 2b4fb908-13c8-4494-a6c8-8b32373c8c77]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"82858665f0e91260","parentId":"b6209741be4a3fda","traceId":"00000000000000003c7f7264e765f204","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:24.802Z","sequence":41210,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e0a6a66f-9e9d-466d-876e-066dfbf8a8fc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:25.093Z","sequence":41211,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-cdc786d6-6d00-4965-bf91-25b68cb21106, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:25.521Z","sequence":41212,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-165ebb8d-2263-4b2c-b30b-87077728974f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:25.526Z","sequence":41213,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:25.526Z","sequence":41214,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF1E6F6756C5457] for gateway [gateway_integrationtest_network_191417]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:25.561Z","sequence":41215,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:25.561Z","sequence":41216,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:26.135Z","sequence":41217,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6a5b8bd4-ef2d-4af3-9cda-589f12a75e9a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:26.135Z","sequence":41218,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:26.136Z","sequence":41219,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:26.14Z","sequence":41220,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-48633b7d-559f-42cc-9c34-73588ca29b27, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:26.143Z","sequence":41221,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:26.143Z","sequence":41222,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-1D4542D9E3BB]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:26.154Z","sequence":41223,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-32c39f6c-3af3-4197-977a-5c791137e01b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:26.291Z","sequence":41224,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:26.291Z","sequence":41225,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 1D4542D9E3BB]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:26.305Z","sequence":41226,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3b38346d-675a-469b-b3c9-7882e12a4e95, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:26.31Z","sequence":41227,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:26.31Z","sequence":41228,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF97177813C2D37] for gateway [1D4542D9E3BB]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:26.323Z","sequence":41229,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:26.323Z","sequence":41230,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:26.664Z","sequence":41231,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2a6aa5e6-2ac8-4e40-adfe-93678a1060e2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:28.402Z","sequence":41232,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:28.403Z","sequence":41233,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C1C] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:28.411Z","sequence":41234,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:28.412Z","sequence":41235,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:28.42Z","sequence":41236,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f2ef131b-2f40-4642-8e02-bf6a01da0763, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:28.641Z","sequence":41237,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191419]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f3ed013aa12bce1b","parentId":"eeafca7a295287d3","traceId":"0000000000000000ec1f43e3a6d855c1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:28.667Z","sequence":41238,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191419, resource-version: c352a2b5-4d98-4977-b963-09de8fe05736]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f3ed013aa12bce1b","parentId":"eeafca7a295287d3","traceId":"0000000000000000ec1f43e3a6d855c1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:28.674Z","sequence":41239,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191419, resource-version: 4576e588-75bc-4b88-a152-8bfc68d8622c]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f3ed013aa12bce1b","parentId":"eeafca7a295287d3","traceId":"0000000000000000ec1f43e3a6d855c1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:28.679Z","sequence":41240,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191419]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5acfa78948215929","parentId":"052cf5feae6aec00","traceId":"0000000000000000ec1f43e3a6d855c1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:28.848Z","sequence":41241,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191419]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5acfa78948215929","parentId":"052cf5feae6aec00","traceId":"0000000000000000ec1f43e3a6d855c1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:29.203Z","sequence":41242,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF117773F65C117]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"142190c29a37d585","parentId":"97143ef5da3c3a4e","traceId":"0000000000000000b3fa98a0f9660e2e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:29.219Z","sequence":41243,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF117773F65C117, resource-version: 4e0f109c-602d-4a47-8221-9e2f9d836e74]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"142190c29a37d585","parentId":"97143ef5da3c3a4e","traceId":"0000000000000000b3fa98a0f9660e2e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:29.225Z","sequence":41244,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF117773F65C117, resource-version: 171274ae-de3b-4956-866e-1382d6a5022c]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"142190c29a37d585","parentId":"97143ef5da3c3a4e","traceId":"0000000000000000b3fa98a0f9660e2e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:30.347Z","sequence":41245,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:30.348Z","sequence":41246,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191419]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:30.365Z","sequence":41247,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-ce7ae10b-1940-4c30-b3ea-183aed2eb2f2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:30.769Z","sequence":41248,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:30.769Z","sequence":41249,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF117773F65C117] for gateway [gateway_integrationtest_network_191419]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:30.77Z","sequence":41250,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:30.77Z","sequence":41251,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191419]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:30.78Z","sequence":41252,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:30.78Z","sequence":41253,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:30.781Z","sequence":41254,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-70ded2a4-2936-4369-aebe-2094ffe901b2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:31.076Z","sequence":41255,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-413953ac-9b09-4aa3-b903-0f683b0e10c7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:32.823Z","sequence":41256,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191420]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1685e1d6ec4099b8","parentId":"454ab50c6b9e2184","traceId":"0000000000000000d9458015682a9181","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:32.845Z","sequence":41257,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191420, resource-version: 01d23418-57bf-4def-a447-4efc04c816c1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1685e1d6ec4099b8","parentId":"454ab50c6b9e2184","traceId":"0000000000000000d9458015682a9181","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:32.852Z","sequence":41258,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191420, resource-version: 78fc3143-5453-450d-8982-12f5e76ede6d]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1685e1d6ec4099b8","parentId":"454ab50c6b9e2184","traceId":"0000000000000000d9458015682a9181","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:32.855Z","sequence":41259,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191420]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cae0cd59ff05c05a","parentId":"b850aa88f3661eef","traceId":"0000000000000000d9458015682a9181","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:33.021Z","sequence":41260,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191420]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cae0cd59ff05c05a","parentId":"b850aa88f3661eef","traceId":"0000000000000000d9458015682a9181","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:33.755Z","sequence":41261,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF4CA3601083751]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f8de29c251ce1ab8","parentId":"da3146b51c981ce2","traceId":"0000000000000000e3d3e88257b9a19a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:33.773Z","sequence":41262,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF4CA3601083751, resource-version: f73808ad-8765-4be7-b13d-088b09cc2392]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f8de29c251ce1ab8","parentId":"da3146b51c981ce2","traceId":"0000000000000000e3d3e88257b9a19a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:33.779Z","sequence":41263,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF4CA3601083751, resource-version: 7e60982f-8093-4a05-9568-6e1d2439ae47]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f8de29c251ce1ab8","parentId":"da3146b51c981ce2","traceId":"0000000000000000e3d3e88257b9a19a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:34.127Z","sequence":41264,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF97177813C2D37]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"26e20042f1134ebc","parentId":"9f9c876c069b639e","traceId":"00000000000000001c3ee64181a6ce4c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:34.147Z","sequence":41265,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF97177813C2D37]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"26e20042f1134ebc","parentId":"9f9c876c069b639e","traceId":"00000000000000001c3ee64181a6ce4c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:34.427Z","sequence":41266,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF4CA3601083751]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2170770bbe460c02","parentId":"10ce9ed3bfd4dd8b","traceId":"000000000000000008a91727b3c7bf3b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:34.476Z","sequence":41267,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF4CA3601083751]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2170770bbe460c02","parentId":"10ce9ed3bfd4dd8b","traceId":"000000000000000008a91727b3c7bf3b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:34.649Z","sequence":41268,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191420]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7fc48feebe3784c5","parentId":"003a1472bf98369a","traceId":"0000000000000000ebda1fa77c1fd22f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:34.679Z","sequence":41269,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191420]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7fc48feebe3784c5","parentId":"003a1472bf98369a","traceId":"0000000000000000ebda1fa77c1fd22f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:35.645Z","sequence":41270,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 1D4542D9E3BB]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2a1b68f37c1eeac0","parentId":"acc230d30697ef66","traceId":"00000000000000002ced90e4196e9c25","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:35.668Z","sequence":41271,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 1D4542D9E3BB]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2a1b68f37c1eeac0","parentId":"acc230d30697ef66","traceId":"00000000000000002ced90e4196e9c25","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:35.979Z","sequence":41272,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: CB194B4AB1E8]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5674729822b3aa82","parentId":"78d29e72315f7d21","traceId":"0000000000000000119c31ea34a03b2c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:36.002Z","sequence":41273,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: CB194B4AB1E8, resource-version: a9e91ced-ffa6-4eb0-9f8f-212e0c36e897]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5674729822b3aa82","parentId":"78d29e72315f7d21","traceId":"0000000000000000119c31ea34a03b2c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:36.012Z","sequence":41274,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: CB194B4AB1E8, resource-version: a8686e79-f31b-4d3b-95cb-6a675916443b]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5674729822b3aa82","parentId":"78d29e72315f7d21","traceId":"0000000000000000119c31ea34a03b2c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:36.016Z","sequence":41275,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: CB194B4AB1E8]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3220e33e3794f117","parentId":"c78b61d8ed3e8a6f","traceId":"0000000000000000119c31ea34a03b2c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:36.183Z","sequence":41276,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: CB194B4AB1E8]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3220e33e3794f117","parentId":"c78b61d8ed3e8a6f","traceId":"0000000000000000119c31ea34a03b2c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:36.573Z","sequence":41277,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191422]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bdc7de88712568c2","parentId":"5068d7a189654b98","traceId":"0000000000000000130d4976bdc65ee8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:36.591Z","sequence":41278,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191422, resource-version: cafcc7e7-bc21-40bb-86b8-298eb450e5cc]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bdc7de88712568c2","parentId":"5068d7a189654b98","traceId":"0000000000000000130d4976bdc65ee8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:36.601Z","sequence":41279,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191422, resource-version: 0c52f6e1-4471-417b-bddf-a858eba10d9c]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bdc7de88712568c2","parentId":"5068d7a189654b98","traceId":"0000000000000000130d4976bdc65ee8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:36.605Z","sequence":41280,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191422]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5a5acd75b4e60b49","parentId":"3c594f111d157f3c","traceId":"0000000000000000130d4976bdc65ee8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:36.81Z","sequence":41281,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191422]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5a5acd75b4e60b49","parentId":"3c594f111d157f3c","traceId":"0000000000000000130d4976bdc65ee8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:36.938Z","sequence":41282,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF2079B3BAD8DFE]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5d4e7d03b544f851","parentId":"38922045ce72df54","traceId":"0000000000000000fad5c56eaf0480e4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:36.954Z","sequence":41283,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF2079B3BAD8DFE, resource-version: 0ac8d24c-74fe-4b56-bf37-8a8a71b406ae]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5d4e7d03b544f851","parentId":"38922045ce72df54","traceId":"0000000000000000fad5c56eaf0480e4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:36.963Z","sequence":41284,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF2079B3BAD8DFE, resource-version: c2049529-9977-46fb-9a0a-8e9d862a5af0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5d4e7d03b544f851","parentId":"38922045ce72df54","traceId":"0000000000000000fad5c56eaf0480e4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:37.037Z","sequence":41285,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:37.037Z","sequence":41286,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-CB194B4AB1E8]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:37.053Z","sequence":41287,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-2c74e56b-42af-4401-9bb2-bec138a8c9ad, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:37.207Z","sequence":41288,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:37.207Z","sequence":41289,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: CB194B4AB1E8]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:37.216Z","sequence":41290,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6dbec412-2334-4e20-8a6b-cb8504531877, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:37.739Z","sequence":41291,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF29EB8CBF8E7F5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ae8dadd9a13c9139","parentId":"afdfae14c831db43","traceId":"0000000000000000eb0760f0f97bba2b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:37.755Z","sequence":41292,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF29EB8CBF8E7F5, resource-version: 24564c9d-99a9-4b88-93d6-a093c51bd3d6]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ae8dadd9a13c9139","parentId":"afdfae14c831db43","traceId":"0000000000000000eb0760f0f97bba2b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:37.762Z","sequence":41293,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF29EB8CBF8E7F5, resource-version: b450aa68-bf13-4f2c-b451-d4a0e5e350ab]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ae8dadd9a13c9139","parentId":"afdfae14c831db43","traceId":"0000000000000000eb0760f0f97bba2b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:38.863Z","sequence":41294,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:38.864Z","sequence":41295,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191422]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:38.907Z","sequence":41296,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-c2406d41-57b5-44ec-bd66-ea729844dabf, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:39.882Z","sequence":41297,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:39.883Z","sequence":41298,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AC0] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:39.883Z","sequence":41299,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:39.884Z","sequence":41300,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF29EB8CBF8E7F5] for gateway [gateway_integrationtest_network_191422]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:39.886Z","sequence":41301,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:39.886Z","sequence":41302,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191422]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:39.891Z","sequence":41303,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:39.892Z","sequence":41304,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:39.892Z","sequence":41305,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.8.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:39.893Z","sequence":41306,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:39.894Z","sequence":41307,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1b4e3af0-eed5-422e-9e41-617b18598258, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:39.898Z","sequence":41308,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-647f09f5-4da5-4212-808b-5b49b6467c04, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:40.267Z","sequence":41309,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-325ac05c-fcbd-4352-81c7-629ccdef8704, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:42.561Z","sequence":41310,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/aloxy:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:42.561Z","sequence":41311,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: aloxy, device-id: 0008004A8F68]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:42.575Z","sequence":41312,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-84d8b5b1-d53e-440e-ae4d-5e18bc9ea5f1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:42.579Z","sequence":41313,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:42.579Z","sequence":41314,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: aloxy]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:42.591Z","sequence":41315,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-e81fa54a-f8a7-47b0-80e2-cc9f79362db5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:43.088Z","sequence":41316,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [command-router@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:43.088Z","sequence":41317,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF2079B3BAD8DFE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:43.688Z","sequence":41318,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d7eb0248-b8f2-4a64-9eef-1845698335a8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:45.975Z","sequence":41319,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF117773F65C117]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3a13675443b12220","parentId":"85a95fe1fbcaaded","traceId":"0000000000000000ba6bf0548f7ecb5b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:45.997Z","sequence":41320,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF117773F65C117]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3a13675443b12220","parentId":"85a95fe1fbcaaded","traceId":"0000000000000000ba6bf0548f7ecb5b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:46.848Z","sequence":41321,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191419]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"18642358dfac8d26","parentId":"f1c90a46df34a3a0","traceId":"00000000000000008777683dfa3f0393","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:46.868Z","sequence":41322,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191419]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"18642358dfac8d26","parentId":"f1c90a46df34a3a0","traceId":"00000000000000008777683dfa3f0393","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:47.603Z","sequence":41323,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:47.604Z","sequence":41324,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BFF] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:47.613Z","sequence":41325,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:47.613Z","sequence":41326,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:47.631Z","sequence":41327,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3d0bf0dd-ddbc-48f2-a3ea-7e4be6b7601b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:47.972Z","sequence":41328,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191423]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b14de555923f4b59","parentId":"d2f00aa000239f3f","traceId":"00000000000000008b59e602a924788e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:48.014Z","sequence":41329,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191423, resource-version: a24717e3-3341-4a26-8083-c38145881e54]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b14de555923f4b59","parentId":"d2f00aa000239f3f","traceId":"00000000000000008b59e602a924788e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:48.02Z","sequence":41330,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191423, resource-version: 34c7ad0d-f848-4594-9409-b33b6b827858]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b14de555923f4b59","parentId":"d2f00aa000239f3f","traceId":"00000000000000008b59e602a924788e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:48.028Z","sequence":41331,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191423]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3dad49a3920d36a8","parentId":"3d5fe662fd00e449","traceId":"00000000000000008b59e602a924788e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:48.269Z","sequence":41332,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191423]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3dad49a3920d36a8","parentId":"3d5fe662fd00e449","traceId":"00000000000000008b59e602a924788e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:48.733Z","sequence":41333,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:48.733Z","sequence":41334,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AC7] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:48.741Z","sequence":41335,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:48.741Z","sequence":41336,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:48.749Z","sequence":41337,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e8d596be-7edc-4cfe-b27b-c3d68b49537c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:49.188Z","sequence":41338,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF1E6F6756C5457]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6ce490b6a44eee89","parentId":"14a9c118a3ec48d9","traceId":"0000000000000000c45daa94285e6e9b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:49.208Z","sequence":41339,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF1E6F6756C5457]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6ce490b6a44eee89","parentId":"14a9c118a3ec48d9","traceId":"0000000000000000c45daa94285e6e9b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:49.24Z","sequence":41340,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF4780D2A18E038]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5837b400bc767fc4","parentId":"b606fcd87d7bc4d4","traceId":"00000000000000000314e5f40c0fb5ad","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:49.265Z","sequence":41341,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF4780D2A18E038, resource-version: 0365e985-7820-4c7b-88e0-900af1cd7451]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5837b400bc767fc4","parentId":"b606fcd87d7bc4d4","traceId":"00000000000000000314e5f40c0fb5ad","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:49.273Z","sequence":41342,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF4780D2A18E038, resource-version: f2e31ea8-33fb-4b2d-915d-15c5b3e8aeca]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5837b400bc767fc4","parentId":"b606fcd87d7bc4d4","traceId":"00000000000000000314e5f40c0fb5ad","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:49.995Z","sequence":41343,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191417]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"82b7b0c284c17de6","parentId":"dae7ae33b2ddbd8b","traceId":"000000000000000045bba1beb1b3f104","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:50.041Z","sequence":41344,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191417]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"82b7b0c284c17de6","parentId":"dae7ae33b2ddbd8b","traceId":"000000000000000045bba1beb1b3f104","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:50.412Z","sequence":41345,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:50.412Z","sequence":41346,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191423]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:50.425Z","sequence":41347,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-3b59f120-1aa6-4c93-a247-b0b568af7045, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:50.572Z","sequence":41348,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:50.573Z","sequence":41349,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000697] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:50.586Z","sequence":41350,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:50.587Z","sequence":41351,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:50.594Z","sequence":41352,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0e6609c4-bb09-468e-84ee-fa4416cc4420, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:50.621Z","sequence":41353,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:50.621Z","sequence":41354,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF4780D2A18E038] for gateway [gateway_integrationtest_network_191423]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:50.622Z","sequence":41355,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:50.622Z","sequence":41356,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191423]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:50.639Z","sequence":41357,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:50.639Z","sequence":41358,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:50.64Z","sequence":41359,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-70eaf2bc-dfc9-4ad9-bfbe-09df9f389d38, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:51.171Z","sequence":41360,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5cdf4767-68c0-4c42-8c26-bfb4c1be5c01, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:51.959Z","sequence":41361,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:51.959Z","sequence":41362,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006D9] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:51.997Z","sequence":41363,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:51.997Z","sequence":41364,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:52.017Z","sequence":41365,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-249d01f2-ef04-41d0-8eef-810ba6592054, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:54.183Z","sequence":41366,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:54.183Z","sequence":41367,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF2079B3BAD8DFE] for gateway [CB194B4AB1E8]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:54.194Z","sequence":41368,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:54.195Z","sequence":41369,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:54.458Z","sequence":41370,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF29EB8CBF8E7F5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0c846edcca23ff12","parentId":"19939d42d0d00d45","traceId":"000000000000000025db30df45fbf6d0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:54.547Z","sequence":41371,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF29EB8CBF8E7F5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0c846edcca23ff12","parentId":"19939d42d0d00d45","traceId":"000000000000000025db30df45fbf6d0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:54.727Z","sequence":41372,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1e8ed23b-f955-49d7-975a-021f7d7f2d14, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:54.972Z","sequence":41373,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:54.972Z","sequence":41374,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100017A] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:54.987Z","sequence":41375,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:54.987Z","sequence":41376,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:54.997Z","sequence":41377,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-04a99fa8-b453-4d48-a8c6-f30c70a933d4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:55.193Z","sequence":41378,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:55.193Z","sequence":41379,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100017A] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:55.212Z","sequence":41380,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:55.213Z","sequence":41381,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:55.223Z","sequence":41382,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2d0d570f-d300-4da5-b473-59f1e32aa155, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:55.364Z","sequence":41383,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191422]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ac107ee98ef33722","parentId":"9fd78d7ad8347a15","traceId":"000000000000000030e44ccaa0f3292e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:55.448Z","sequence":41384,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191422]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ac107ee98ef33722","parentId":"9fd78d7ad8347a15","traceId":"000000000000000030e44ccaa0f3292e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:56.669Z","sequence":41385,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:56.669Z","sequence":41386,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: flint]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:56.68Z","sequence":41387,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-e7d13105-a752-4099-9dd9-e12bfe75fc4b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:56.684Z","sequence":41388,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/flint:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:56.685Z","sequence":41389,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: flint, type: hashed-password, auth-id: auth-flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:56.721Z","sequence":41390,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-99b456f1-ead2-40be-8399-ab8a5c5a4e8e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:56.857Z","sequence":41391,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:56.857Z","sequence":41392,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000844] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:56.857Z","sequence":41393,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:56.858Z","sequence":41394,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:56.885Z","sequence":41395,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:56.885Z","sequence":41396,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:56.885Z","sequence":41397,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9daf866b-a8ec-4953-ab32-f3ea0b9d6267, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:56.901Z","sequence":41398,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6b6c36ff-1334-48fc-99cf-ffac27ff9870, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:57.693Z","sequence":41399,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:57.693Z","sequence":41400,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001ACA] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:57.709Z","sequence":41401,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:57.712Z","sequence":41402,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:57.737Z","sequence":41403,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c50204bd-2b4f-483f-b7ba-1b50cca9262f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:58.072Z","sequence":41404,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 22C29227DABE]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4574b3df05e777da","parentId":"2013c8467efd3be1","traceId":"00000000000000008e59707677999605","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:58.125Z","sequence":41405,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 22C29227DABE, resource-version: 8b6675bf-793f-43b6-be33-7fe444d4c884]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4574b3df05e777da","parentId":"2013c8467efd3be1","traceId":"00000000000000008e59707677999605","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:58.139Z","sequence":41406,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 22C29227DABE, resource-version: a390bb12-fcda-466c-831d-78b9deb7e09d]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4574b3df05e777da","parentId":"2013c8467efd3be1","traceId":"00000000000000008e59707677999605","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:58.149Z","sequence":41407,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 22C29227DABE]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cb3cce811cd54db1","parentId":"097432a92ff82ea6","traceId":"00000000000000008e59707677999605","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:58.255Z","sequence":41408,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:58.255Z","sequence":41409,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: shelldev]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:58.259Z","sequence":41410,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-db8386ae-2c70-4d15-9d20-7ad00f1ce93b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:58.261Z","sequence":41411,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/shelldev:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:58.261Z","sequence":41412,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: shelldev, type: hashed-password, auth-id: auth-AZUREFUNCTION-DEV]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:58.275Z","sequence":41413,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-bc1b332e-7ba6-4ead-ba05-a7c3383dfa41, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:58.404Z","sequence":41414,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 22C29227DABE]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cb3cce811cd54db1","parentId":"097432a92ff82ea6","traceId":"00000000000000008e59707677999605","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:58.413Z","sequence":41415,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shelldev:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:58.413Z","sequence":41416,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shelldev, device-id: 70B3D57BB10014B3] for gateway [AZUREFUNCTION-DEV]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:58.414Z","sequence":41417,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shelldev:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:58.414Z","sequence":41418,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shelldev, device-id: AZUREFUNCTION-DEV]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:58.43Z","sequence":41419,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5a2ba5e7-e5d7-4ffd-abe2-579f87c481d6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:58.432Z","sequence":41420,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDao","level":"DEBUG","message":"error retrieving device [tenantId: shelldev, deviceId: 70B3D57BB10014B3]: org.eclipse.hono.client.ClientErrorException: device not found","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:58.432Z","sequence":41421,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"no such device","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:58.432Z","sequence":41422,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b5561f41-efe3-48c0-a70b-ac4a4c898858, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:59.405Z","sequence":41423,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF6AAF3121445E9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ce873d830f8a632a","parentId":"bcc1e8f88588199c","traceId":"0000000000000000e5f6581d363b19e2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:59.476Z","sequence":41424,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF6AAF3121445E9, resource-version: 652d62c8-a5c2-4567-9e8d-e556c6f28b9d]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ce873d830f8a632a","parentId":"bcc1e8f88588199c","traceId":"0000000000000000e5f6581d363b19e2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:58:59.496Z","sequence":41425,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF6AAF3121445E9, resource-version: fcaf3c17-2670-4017-a157-f307a6bc0fbf]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ce873d830f8a632a","parentId":"bcc1e8f88588199c","traceId":"0000000000000000e5f6581d363b19e2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:00.042Z","sequence":41426,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:00.043Z","sequence":41427,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B8A] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:00.077Z","sequence":41428,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:00.077Z","sequence":41429,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:00.086Z","sequence":41430,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-89fc4d39-de02-4937-bca9-1485532fcd58, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:00.157Z","sequence":41431,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 6D583C594AED]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8c22b6786b0f80cd","parentId":"50cb45df3b7599e3","traceId":"0000000000000000d1a8e058b3120105","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:00.183Z","sequence":41432,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 6D583C594AED, resource-version: 97ad8c2a-6821-481f-9f04-684bd57dccf8]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8c22b6786b0f80cd","parentId":"50cb45df3b7599e3","traceId":"0000000000000000d1a8e058b3120105","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:00.193Z","sequence":41433,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 6D583C594AED, resource-version: cb940c6e-6200-471a-be0f-1fb33923c1f5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8c22b6786b0f80cd","parentId":"50cb45df3b7599e3","traceId":"0000000000000000d1a8e058b3120105","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:00.659Z","sequence":41434,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 6D583C594AED]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b5950db235dcb357","parentId":"19dc96e8f2d93d93","traceId":"0000000000000000d1a8e058b3120105","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:00.86Z","sequence":41435,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 6D583C594AED]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b5950db235dcb357","parentId":"19dc96e8f2d93d93","traceId":"0000000000000000d1a8e058b3120105","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:00.903Z","sequence":41436,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF4780D2A18E038]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5879e25aed729061","parentId":"09eadd0f96ccaabe","traceId":"00000000000000008c308465d023cc33","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:00.921Z","sequence":41437,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF4780D2A18E038]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5879e25aed729061","parentId":"09eadd0f96ccaabe","traceId":"00000000000000008c308465d023cc33","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:01.209Z","sequence":41438,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF6AAF3121445E9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"dc44652ea6432ef1","parentId":"010fd6eabcbeb668","traceId":"0000000000000000437cfc4d588eba8d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:01.246Z","sequence":41439,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF6AAF3121445E9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"dc44652ea6432ef1","parentId":"010fd6eabcbeb668","traceId":"0000000000000000437cfc4d588eba8d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:01.329Z","sequence":41440,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191423]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d369409ee1ff0b45","parentId":"6dca9e8561009bb6","traceId":"0000000000000000ccc458a99a88eedb","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:01.365Z","sequence":41441,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFE7D914ED5ED1C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"109739a7d51940d0","parentId":"f3eef602ee40e2f1","traceId":"0000000000000000bda7dd4ba3ad0424","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:01.365Z","sequence":41442,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191423]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d369409ee1ff0b45","parentId":"6dca9e8561009bb6","traceId":"0000000000000000ccc458a99a88eedb","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:01.412Z","sequence":41443,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFE7D914ED5ED1C, resource-version: ae5a4e18-6b93-424a-922a-49e66bc75e03]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"109739a7d51940d0","parentId":"f3eef602ee40e2f1","traceId":"0000000000000000bda7dd4ba3ad0424","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:01.44Z","sequence":41444,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFE7D914ED5ED1C, resource-version: 7d2813a0-a662-486b-8ef7-a7d1e940c210]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"109739a7d51940d0","parentId":"f3eef602ee40e2f1","traceId":"0000000000000000bda7dd4ba3ad0424","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:02.566Z","sequence":41445,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:02.566Z","sequence":41446,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10001CF] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:02.578Z","sequence":41447,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:02.578Z","sequence":41448,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:02.587Z","sequence":41449,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7627d6ce-ded5-4e51-8c63-e0ca86fff3f7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:02.627Z","sequence":41450,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 22C29227DABE]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"608bebdbc5b713e9","parentId":"62a004ee966dab95","traceId":"0000000000000000648363e8a68225a7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:02.649Z","sequence":41451,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 22C29227DABE]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"608bebdbc5b713e9","parentId":"62a004ee966dab95","traceId":"0000000000000000648363e8a68225a7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:02.829Z","sequence":41452,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:02.829Z","sequence":41453,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BB613]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:02.841Z","sequence":41454,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-27a1e423-c5e4-456e-a702-de54ed13c3fa, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:03.255Z","sequence":41455,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:03.255Z","sequence":41456,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001FA] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:03.261Z","sequence":41457,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:03.261Z","sequence":41458,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:03.266Z","sequence":41459,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-bf62d4d1-83e8-49df-93c7-aaaf25315f72, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:03.268Z","sequence":41460,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:03.268Z","sequence":41461,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001FA] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:03.273Z","sequence":41462,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:03.273Z","sequence":41463,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:03.276Z","sequence":41464,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1d73f7cc-e815-413a-842b-50d189ba3014, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:03.485Z","sequence":41465,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:03.485Z","sequence":41466,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10007B4] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:03.495Z","sequence":41467,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:03.495Z","sequence":41468,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:03.501Z","sequence":41469,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-abce898b-26ba-4c85-8828-9efd1d237d39, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:03.843Z","sequence":41470,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 818EB840347E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"19b36b7f82d12eba","parentId":"daf23c274a7091e7","traceId":"000000000000000027e85cd4bb3a42b2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:03.869Z","sequence":41471,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 818EB840347E, resource-version: 234fe00d-a43b-4583-8322-3fb763095126]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"19b36b7f82d12eba","parentId":"daf23c274a7091e7","traceId":"000000000000000027e85cd4bb3a42b2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:03.877Z","sequence":41472,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 818EB840347E, resource-version: be15c150-32f8-40fb-9b34-a8bd1e1a4a96]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"19b36b7f82d12eba","parentId":"daf23c274a7091e7","traceId":"000000000000000027e85cd4bb3a42b2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:03.886Z","sequence":41473,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 818EB840347E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"86ca3d360cf3add6","parentId":"b86adff0b788b368","traceId":"000000000000000027e85cd4bb3a42b2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:04.161Z","sequence":41474,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 818EB840347E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"86ca3d360cf3add6","parentId":"b86adff0b788b368","traceId":"000000000000000027e85cd4bb3a42b2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:05.197Z","sequence":41475,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191427]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a099530477ef94c0","parentId":"e4bcb36ab78e855e","traceId":"0000000000000000f63206bd042ea99c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:05.219Z","sequence":41476,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191427, resource-version: c9c6f568-2333-4d23-8e3d-b8e2ab77224a]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a099530477ef94c0","parentId":"e4bcb36ab78e855e","traceId":"0000000000000000f63206bd042ea99c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:05.227Z","sequence":41477,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191427, resource-version: 113b5c21-53dc-409e-954c-ce784a86f8c8]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a099530477ef94c0","parentId":"e4bcb36ab78e855e","traceId":"0000000000000000f63206bd042ea99c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:05.231Z","sequence":41478,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191427]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5f5bfe9800121742","parentId":"7159c14849f42956","traceId":"0000000000000000f63206bd042ea99c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:05.291Z","sequence":41479,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF9D24963AFE618]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2230b412c1aea9f3","parentId":"d1cb27b19c602991","traceId":"00000000000000004f39805d4f761c68","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:05.31Z","sequence":41480,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF9D24963AFE618, resource-version: 19b1be65-b993-4c1e-be92-2c2100a682cd]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2230b412c1aea9f3","parentId":"d1cb27b19c602991","traceId":"00000000000000004f39805d4f761c68","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:05.321Z","sequence":41481,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF9D24963AFE618, resource-version: 0ee4e0b1-6c48-40fb-a550-2a434caed8cd]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2230b412c1aea9f3","parentId":"d1cb27b19c602991","traceId":"00000000000000004f39805d4f761c68","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:05.398Z","sequence":41482,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFE7D914ED5ED1C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3a0773ee12d4b840","parentId":"70c914b2afe9fa3a","traceId":"0000000000000000495ef91337448abd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:05.425Z","sequence":41483,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFE7D914ED5ED1C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3a0773ee12d4b840","parentId":"70c914b2afe9fa3a","traceId":"0000000000000000495ef91337448abd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:05.558Z","sequence":41484,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191427]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5f5bfe9800121742","parentId":"7159c14849f42956","traceId":"0000000000000000f63206bd042ea99c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:05.743Z","sequence":41485,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 6D583C594AED]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"26c676c2845985b3","parentId":"9fda69c21f1e007f","traceId":"00000000000000003dd47b5c06acae5b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:05.765Z","sequence":41486,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 6D583C594AED]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"26c676c2845985b3","parentId":"9fda69c21f1e007f","traceId":"00000000000000003dd47b5c06acae5b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:06.431Z","sequence":41487,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:06.431Z","sequence":41488,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-818EB840347E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:06.517Z","sequence":41489,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-dab38a0f-ae61-4774-9829-d2c10d9aea2a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:06.638Z","sequence":41490,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:06.638Z","sequence":41491,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 818EB840347E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:06.693Z","sequence":41492,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ee19b27a-7562-4f5b-8236-490e3fe28799, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:06.701Z","sequence":41493,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:06.701Z","sequence":41494,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF9D24963AFE618] for gateway [818EB840347E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:06.735Z","sequence":41495,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.3.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:06.735Z","sequence":41496,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:07.044Z","sequence":41497,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF76D28505568B7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e5fb5d43cb38b00b","parentId":"220785ddff4690d2","traceId":"0000000000000000ce6a706ce719aadc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:07.152Z","sequence":41498,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF76D28505568B7, resource-version: 1cafc549-1999-437d-945b-d69420dfed05]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e5fb5d43cb38b00b","parentId":"220785ddff4690d2","traceId":"0000000000000000ce6a706ce719aadc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:07.178Z","sequence":41499,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF76D28505568B7, resource-version: 214dc732-0e95-4291-b6e6-bcc4746ea9bc]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e5fb5d43cb38b00b","parentId":"220785ddff4690d2","traceId":"0000000000000000ce6a706ce719aadc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:07.498Z","sequence":41500,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-77076af4-21fe-4ca5-a433-9b7bbdfefdcb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:07.509Z","sequence":41501,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:07.509Z","sequence":41502,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF9D24963AFE618] for gateway [818EB840347E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:07.536Z","sequence":41503,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.3.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:07.536Z","sequence":41504,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:07.621Z","sequence":41505,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF76D28505568B7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2ff9e29bcac4da30","parentId":"fd07fd3b11d80a18","traceId":"0000000000000000b3aef87fb010f22b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:07.671Z","sequence":41506,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF76D28505568B7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2ff9e29bcac4da30","parentId":"fd07fd3b11d80a18","traceId":"0000000000000000b3aef87fb010f22b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:08.09Z","sequence":41507,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191428]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a123916fd2782077","parentId":"f06a1c08bf8726e0","traceId":"0000000000000000256ec7449ec376bb","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:08.185Z","sequence":41508,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191428, resource-version: 5cb1715e-8c3f-48ef-919c-9192f14a5129]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a123916fd2782077","parentId":"f06a1c08bf8726e0","traceId":"0000000000000000256ec7449ec376bb","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:08.212Z","sequence":41509,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191428, resource-version: 3843129f-e2d0-44b4-888d-c9508a4fb00a]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a123916fd2782077","parentId":"f06a1c08bf8726e0","traceId":"0000000000000000256ec7449ec376bb","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:08.216Z","sequence":41510,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191428]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e16aa5674fc4fc82","parentId":"86625fe35eb0c0f2","traceId":"0000000000000000256ec7449ec376bb","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:08.245Z","sequence":41511,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d3b5f2f3-f1d1-4280-b072-71d27013bbe2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:08.6Z","sequence":41512,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191428]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e16aa5674fc4fc82","parentId":"86625fe35eb0c0f2","traceId":"0000000000000000256ec7449ec376bb","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:08.635Z","sequence":41513,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shelldev:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:08.635Z","sequence":41514,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shelldev, device-id: 70B3D57BB10014B3] for gateway [AZUREFUNCTION-DEV]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:08.646Z","sequence":41515,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDao","level":"DEBUG","message":"error retrieving device [tenantId: shelldev, deviceId: 70B3D57BB10014B3]: org.eclipse.hono.client.ClientErrorException: device not found","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:08.647Z","sequence":41516,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"no such device","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:08.647Z","sequence":41517,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f0c3927d-70fa-4535-abd6-a57dfa8ea6b6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:09.323Z","sequence":41518,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191427]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b9995ba304a15efd","parentId":"8a2adb04256591ae","traceId":"0000000000000000ac9ed8ca1a4bfff7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:09.368Z","sequence":41519,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191427]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b9995ba304a15efd","parentId":"8a2adb04256591ae","traceId":"0000000000000000ac9ed8ca1a4bfff7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:09.78Z","sequence":41520,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:09.78Z","sequence":41521,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-00GWALP120IT]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:09.809Z","sequence":41522,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-11c0599e-4dd3-48ee-b333-046e420df5a4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:09.947Z","sequence":41523,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:09.947Z","sequence":41524,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 4A38383700300023] for gateway [00GWALP120IT]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:09.956Z","sequence":41525,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:0.3.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:09.957Z","sequence":41526,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7\",\n \"upstream-message-mapper\" : \"upstream_dash7\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:10.565Z","sequence":41527,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c86bd2bc-b8c5-493e-9004-15018520100d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:12.253Z","sequence":41528,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF11CAA0D50BB85]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9197e172b1b16048","parentId":"50205022797138c9","traceId":"00000000000000008afdde2fad093c59","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:12.314Z","sequence":41529,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF11CAA0D50BB85, resource-version: 68448d7f-7146-4e18-a775-3e789b715c84]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9197e172b1b16048","parentId":"50205022797138c9","traceId":"00000000000000008afdde2fad093c59","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:12.324Z","sequence":41530,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF11CAA0D50BB85, resource-version: b7743e43-4b90-4b37-ae9a-1ded298d603d]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9197e172b1b16048","parentId":"50205022797138c9","traceId":"00000000000000008afdde2fad093c59","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:12.426Z","sequence":41531,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF9D24963AFE618]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b70d12922767b28d","parentId":"b4e255c0414e619f","traceId":"0000000000000000482e67b5d83a8336","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:12.446Z","sequence":41532,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF9D24963AFE618]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b70d12922767b28d","parentId":"b4e255c0414e619f","traceId":"0000000000000000482e67b5d83a8336","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:12.602Z","sequence":41533,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191429]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d67cb07874f206ff","parentId":"7b329c00a8dbb1ab","traceId":"00000000000000002fa5d24fa831620e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:12.633Z","sequence":41534,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191429, resource-version: 28da02a2-ef1b-440a-9c0d-1d150ee6b6e2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d67cb07874f206ff","parentId":"7b329c00a8dbb1ab","traceId":"00000000000000002fa5d24fa831620e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:12.641Z","sequence":41535,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191429, resource-version: acd48e61-1ea7-4e30-8cd5-4538d071fab7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d67cb07874f206ff","parentId":"7b329c00a8dbb1ab","traceId":"00000000000000002fa5d24fa831620e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:12.645Z","sequence":41536,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191429]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9becf7b2882ca8ea","parentId":"b2356754a4a251b5","traceId":"00000000000000002fa5d24fa831620e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:12.912Z","sequence":41537,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191429]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9becf7b2882ca8ea","parentId":"b2356754a4a251b5","traceId":"00000000000000002fa5d24fa831620e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:13.339Z","sequence":41538,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 818EB840347E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0b5678321b9a52de","parentId":"50ab949c535f7a33","traceId":"0000000000000000db5b3c8f30b33b94","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:13.356Z","sequence":41539,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 818EB840347E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0b5678321b9a52de","parentId":"50ab949c535f7a33","traceId":"0000000000000000db5b3c8f30b33b94","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:13.512Z","sequence":41540,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:13.513Z","sequence":41541,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191428]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:13.529Z","sequence":41542,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-04c79462-0474-455c-affc-3d00c3b34e23, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:13.665Z","sequence":41543,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:13.665Z","sequence":41544,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF11CAA0D50BB85] for gateway [gateway_integrationtest_network_191428]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:13.666Z","sequence":41545,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:13.666Z","sequence":41546,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191428]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:13.676Z","sequence":41547,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7d888f50-3102-4450-b103-99b6af14f93c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:13.681Z","sequence":41548,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.7.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:13.681Z","sequence":41549,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:13.821Z","sequence":41550,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFBA57281C1568F]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ed30c5e8a0769f0d","parentId":"24aa976211cb7c33","traceId":"000000000000000010e02800a0a392c2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:13.845Z","sequence":41551,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFBA57281C1568F, resource-version: b99f7215-91e7-4058-89a4-e8741d28ec17]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ed30c5e8a0769f0d","parentId":"24aa976211cb7c33","traceId":"000000000000000010e02800a0a392c2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:13.853Z","sequence":41552,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFBA57281C1568F, resource-version: 7ae2b607-f50d-444d-bb28-7db9c1a6ad4e]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ed30c5e8a0769f0d","parentId":"24aa976211cb7c33","traceId":"000000000000000010e02800a0a392c2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:14.415Z","sequence":41553,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-45b07160-7629-4842-a0e3-8628464d4ff0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:15.184Z","sequence":41554,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:15.184Z","sequence":41555,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191429]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:15.194Z","sequence":41556,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-e1c6d2bc-d78f-42cf-b1c6-37c77b29f2f2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:15.315Z","sequence":41557,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:15.316Z","sequence":41558,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFBA57281C1568F] for gateway [gateway_integrationtest_network_191429]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:15.317Z","sequence":41559,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:15.318Z","sequence":41560,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191429]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:15.325Z","sequence":41561,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.5.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:15.326Z","sequence":41562,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:15.327Z","sequence":41563,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-906f578c-d976-4d2d-bb33-c2f95829ad01, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:16.094Z","sequence":41564,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-cee38c7e-6a6a-4984-9c78-f2e443e6dc6f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:17.045Z","sequence":41565,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:17.045Z","sequence":41566,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BF3] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:17.052Z","sequence":41567,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:17.056Z","sequence":41568,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:17.065Z","sequence":41569,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-25681ebf-aea4-40fa-9419-b31e7d20277e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:17.185Z","sequence":41570,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191430]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"339fa7ea98ee91cb","parentId":"4f5df5963c8e2bea","traceId":"0000000000000000f26aaeafd8586196","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:17.213Z","sequence":41571,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191430, resource-version: fc60937b-00c3-41a7-865d-235e4a7bb4e4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"339fa7ea98ee91cb","parentId":"4f5df5963c8e2bea","traceId":"0000000000000000f26aaeafd8586196","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:17.219Z","sequence":41572,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191430, resource-version: c303362d-815a-4444-b64d-e99fd22a766b]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"339fa7ea98ee91cb","parentId":"4f5df5963c8e2bea","traceId":"0000000000000000f26aaeafd8586196","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:17.225Z","sequence":41573,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191430]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8d0b7e6fcb7f05b4","parentId":"2430fc9e6ffab17b","traceId":"0000000000000000f26aaeafd8586196","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:17.498Z","sequence":41574,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:17.498Z","sequence":41575,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10008C5] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:17.549Z","sequence":41576,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191430]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8d0b7e6fcb7f05b4","parentId":"2430fc9e6ffab17b","traceId":"0000000000000000f26aaeafd8586196","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:17.55Z","sequence":41577,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:17.555Z","sequence":41578,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:17.565Z","sequence":41579,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-bb805c13-6e14-408c-af22-84ad879ad193, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:18.393Z","sequence":41580,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF94A3661EBC3B0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fc025cd853e2a98a","parentId":"201946d7af1e7ebd","traceId":"00000000000000003130056d7fffac6d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:18.441Z","sequence":41581,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF94A3661EBC3B0, resource-version: ec03f4c4-cedf-4194-bd17-32f526fa1146]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fc025cd853e2a98a","parentId":"201946d7af1e7ebd","traceId":"00000000000000003130056d7fffac6d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:18.449Z","sequence":41582,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF94A3661EBC3B0, resource-version: d2f63a91-b027-4f42-8e41-03e76aae1cab]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fc025cd853e2a98a","parentId":"201946d7af1e7ebd","traceId":"00000000000000003130056d7fffac6d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:18.829Z","sequence":41583,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shelldev:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:18.83Z","sequence":41584,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shelldev, device-id: 70B3D57BB10014B3] for gateway [AZUREFUNCTION-DEV]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:18.84Z","sequence":41585,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDao","level":"DEBUG","message":"error retrieving device [tenantId: shelldev, deviceId: 70B3D57BB10014B3]: org.eclipse.hono.client.ClientErrorException: device not found","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:18.84Z","sequence":41586,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"no such device","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:18.84Z","sequence":41587,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-80c904ec-3005-4976-a96e-9ead44708b89, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:19.747Z","sequence":41588,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:19.749Z","sequence":41589,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191430]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:19.761Z","sequence":41590,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-9d099f6a-cb06-4937-9a02-7c4df8b1c63f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:19.882Z","sequence":41591,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:19.882Z","sequence":41592,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF94A3661EBC3B0] for gateway [gateway_integrationtest_network_191430]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:19.883Z","sequence":41593,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:19.883Z","sequence":41594,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191430]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:19.892Z","sequence":41595,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4a821183-ed40-45c7-bc2c-1ee173808104, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:19.893Z","sequence":41596,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:19.893Z","sequence":41597,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:20.052Z","sequence":41598,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF11CAA0D50BB85]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ecd942a98042fa04","parentId":"1e989848de2e21ec","traceId":"000000000000000069ebce2356fbdc9e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:20.105Z","sequence":41599,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF11CAA0D50BB85]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ecd942a98042fa04","parentId":"1e989848de2e21ec","traceId":"000000000000000069ebce2356fbdc9e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:20.474Z","sequence":41600,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-39247523-a17d-4eb6-ac68-02ca0d0a36fc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:21.579Z","sequence":41601,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191428]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"abce9a49f62b48d3","parentId":"ece3166b29d1e05a","traceId":"000000000000000088c650c844ca96ae","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:21.601Z","sequence":41602,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191428]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"abce9a49f62b48d3","parentId":"ece3166b29d1e05a","traceId":"000000000000000088c650c844ca96ae","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:22.664Z","sequence":41603,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:22.665Z","sequence":41604,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: ineos]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:22.669Z","sequence":41605,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-62177c90-4264-4494-a723-5833decbd34d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:22.672Z","sequence":41606,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:22.673Z","sequence":41607,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB1000A78] for gateway [0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:22.68Z","sequence":41608,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:22.68Z","sequence":41609,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:22.685Z","sequence":41610,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-190759f5-25b1-474d-a105-ae1ad68424c0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:23.115Z","sequence":41611,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191431]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ae9ae7618a6c35a1","parentId":"15b08c5444ef67c1","traceId":"0000000000000000c1264bfb8ecaa0cc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:23.207Z","sequence":41612,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191431, resource-version: dc646f35-7517-41d1-92b7-80c1c09efd06]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ae9ae7618a6c35a1","parentId":"15b08c5444ef67c1","traceId":"0000000000000000c1264bfb8ecaa0cc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:23.232Z","sequence":41613,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191431, resource-version: 53d4255d-21b2-49e7-b87e-2162b25f90c8]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ae9ae7618a6c35a1","parentId":"15b08c5444ef67c1","traceId":"0000000000000000c1264bfb8ecaa0cc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:23.237Z","sequence":41614,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191431]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3ef8632c3d38657b","parentId":"9d21617f30b8ce4b","traceId":"0000000000000000c1264bfb8ecaa0cc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:23.6Z","sequence":41615,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191431]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3ef8632c3d38657b","parentId":"9d21617f30b8ce4b","traceId":"0000000000000000c1264bfb8ecaa0cc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:25.954Z","sequence":41616,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:25.955Z","sequence":41617,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006CD] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:25.972Z","sequence":41618,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:25.973Z","sequence":41619,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:25.979Z","sequence":41620,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-457dd14a-bd72-407a-97d1-f2579b9bb194, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:26.325Z","sequence":41621,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:26.325Z","sequence":41622,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BE3] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:26.339Z","sequence":41623,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:26.339Z","sequence":41624,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:26.349Z","sequence":41625,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-19bef97a-e430-4bb9-8cb3-5dfb1dddccdd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:26.477Z","sequence":41626,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF77276501C7BA6]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"453163ce5abd6fde","parentId":"217748541be860f9","traceId":"000000000000000007b8fa26b363f5f5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:26.572Z","sequence":41627,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF77276501C7BA6, resource-version: b28dc7be-769e-491e-9519-74a58549ad30]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"453163ce5abd6fde","parentId":"217748541be860f9","traceId":"000000000000000007b8fa26b363f5f5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:26.601Z","sequence":41628,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF77276501C7BA6, resource-version: 70ce09a7-9b65-42c1-8441-f845f5ad64bc]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"453163ce5abd6fde","parentId":"217748541be860f9","traceId":"000000000000000007b8fa26b363f5f5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:27.281Z","sequence":41629,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFBA57281C1568F]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4167d816d8df6803","parentId":"6898dfe76c116302","traceId":"0000000000000000cae4661761784597","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:27.313Z","sequence":41630,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFBA57281C1568F]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4167d816d8df6803","parentId":"6898dfe76c116302","traceId":"0000000000000000cae4661761784597","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:27.801Z","sequence":41631,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:27.801Z","sequence":41632,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191431]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:27.839Z","sequence":41633,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-8f6e77d6-2c22-4eb0-854e-6325a7bc8566, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:28Z","sequence":41634,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:28.001Z","sequence":41635,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF77276501C7BA6] for gateway [gateway_integrationtest_network_191431]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:28.001Z","sequence":41636,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:28.004Z","sequence":41637,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191431]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:28.013Z","sequence":41638,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.3.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:28.013Z","sequence":41639,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:28.017Z","sequence":41640,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-db8af38e-a6c8-4e0e-b64c-119be433cf38, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:28.183Z","sequence":41641,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191429]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3bf8087a42d5220c","parentId":"6ab2607fb46ce2e4","traceId":"00000000000000003317cff15e5782ce","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:28.284Z","sequence":41642,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191429]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3bf8087a42d5220c","parentId":"6ab2607fb46ce2e4","traceId":"00000000000000003317cff15e5782ce","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:28.647Z","sequence":41643,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7ab11590-876d-42a8-a56a-6b75dea010b6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:29.065Z","sequence":41644,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shelldev:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:29.065Z","sequence":41645,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shelldev, device-id: 70B3D57BB10014B3] for gateway [AZUREFUNCTION-DEV]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:29.085Z","sequence":41646,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDao","level":"DEBUG","message":"error retrieving device [tenantId: shelldev, deviceId: 70B3D57BB10014B3]: org.eclipse.hono.client.ClientErrorException: device not found","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:29.085Z","sequence":41647,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"no such device","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:29.085Z","sequence":41648,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7739bc48-ba6f-4b00-ab51-24356721a8bc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:30.578Z","sequence":41649,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF94A3661EBC3B0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f8dbc0d4ae26353e","parentId":"f4dd5d7378d43175","traceId":"0000000000000000db63cae09cebb6cf","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:30.613Z","sequence":41650,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF94A3661EBC3B0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f8dbc0d4ae26353e","parentId":"f4dd5d7378d43175","traceId":"0000000000000000db63cae09cebb6cf","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:31.327Z","sequence":41651,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:31.327Z","sequence":41652,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001ABB] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:31.337Z","sequence":41653,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:31.34Z","sequence":41654,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:31.347Z","sequence":41655,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a0b70c7c-9fe1-4f81-af79-6b8b19108524, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:33.733Z","sequence":41656,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191430]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7ffb335f5d93fa5e","parentId":"82c80753001d4d88","traceId":"00000000000000002f7562a585a8032d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:33.753Z","sequence":41657,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191430]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7ffb335f5d93fa5e","parentId":"82c80753001d4d88","traceId":"00000000000000002f7562a585a8032d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:33.895Z","sequence":41658,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF77276501C7BA6]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d1627171fc83ba0e","parentId":"a893f91c49a83bba","traceId":"0000000000000000cad1475da09a428d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:33.911Z","sequence":41659,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF77276501C7BA6]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d1627171fc83ba0e","parentId":"a893f91c49a83bba","traceId":"0000000000000000cad1475da09a428d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:34.585Z","sequence":41660,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191431]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0d8001393811836f","parentId":"03764d095c726914","traceId":"00000000000000005734e86f8c34ea83","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:34.603Z","sequence":41661,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191431]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0d8001393811836f","parentId":"03764d095c726914","traceId":"00000000000000005734e86f8c34ea83","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:37.059Z","sequence":41662,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: F4D76BCA1268]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"06a70f0d999f90e4","parentId":"978ec76ef7880c1b","traceId":"00000000000000006e240502566ce37e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:37.065Z","sequence":41663,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191433]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"50300e925045753e","parentId":"6902b6a03051e840","traceId":"000000000000000069bbb9da894ad25a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:37.112Z","sequence":41664,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: F4D76BCA1268, resource-version: 37150c40-facf-4d6f-a812-aaf9e06524be]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"06a70f0d999f90e4","parentId":"978ec76ef7880c1b","traceId":"00000000000000006e240502566ce37e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:37.113Z","sequence":41665,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191433, resource-version: 67f5aa20-72ef-42b7-af36-f8f626e880ae]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"50300e925045753e","parentId":"6902b6a03051e840","traceId":"000000000000000069bbb9da894ad25a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:37.122Z","sequence":41666,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191433, resource-version: 7c732dac-8ac9-47d4-96f4-6a858141b4d7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"50300e925045753e","parentId":"6902b6a03051e840","traceId":"000000000000000069bbb9da894ad25a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:37.123Z","sequence":41667,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: F4D76BCA1268, resource-version: 332eadad-3038-4919-8280-9966c02809d6]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"06a70f0d999f90e4","parentId":"978ec76ef7880c1b","traceId":"00000000000000006e240502566ce37e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:37.133Z","sequence":41668,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191433]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1b9f357ad7f1549e","parentId":"e54d0bc0c88d01e8","traceId":"000000000000000069bbb9da894ad25a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:37.137Z","sequence":41669,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: F4D76BCA1268]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2ecb0ce682d2a068","parentId":"a1fae220aead61e4","traceId":"00000000000000006e240502566ce37e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:37.501Z","sequence":41670,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191433]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1b9f357ad7f1549e","parentId":"e54d0bc0c88d01e8","traceId":"000000000000000069bbb9da894ad25a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:37.729Z","sequence":41671,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: F4D76BCA1268]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2ecb0ce682d2a068","parentId":"a1fae220aead61e4","traceId":"00000000000000006e240502566ce37e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:39.442Z","sequence":41672,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF3B6C20758E6CD]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1e65da8443437a32","parentId":"1880335ce7589d7c","traceId":"0000000000000000a933b324359f4047","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:39.465Z","sequence":41673,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF3B6C20758E6CD, resource-version: 327b9677-b847-49b6-a51b-dd3628ffceac]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1e65da8443437a32","parentId":"1880335ce7589d7c","traceId":"0000000000000000a933b324359f4047","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:39.473Z","sequence":41674,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF3B6C20758E6CD, resource-version: 7a7b1e77-3ad7-4aad-9c08-a80781825a55]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1e65da8443437a32","parentId":"1880335ce7589d7c","traceId":"0000000000000000a933b324359f4047","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:39.811Z","sequence":41675,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF64C2041E1A763]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"790938064afee2b0","parentId":"f4f3d3b1ef48ac88","traceId":"0000000000000000c92d91e036fa4df8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:39.839Z","sequence":41676,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF64C2041E1A763, resource-version: f8f85d8e-47d8-4e57-9940-3185f380d590]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"790938064afee2b0","parentId":"f4f3d3b1ef48ac88","traceId":"0000000000000000c92d91e036fa4df8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:39.848Z","sequence":41677,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF64C2041E1A763, resource-version: 67b30ffe-c178-4f50-b564-991009439a5c]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"790938064afee2b0","parentId":"f4f3d3b1ef48ac88","traceId":"0000000000000000c92d91e036fa4df8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:40.716Z","sequence":41678,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:40.717Z","sequence":41679,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191433]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:40.732Z","sequence":41680,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-80b1a658-5ddc-40a1-a932-fa63a8ec215d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:40.857Z","sequence":41681,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:40.857Z","sequence":41682,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF3B6C20758E6CD] for gateway [gateway_integrationtest_network_191433]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:40.857Z","sequence":41683,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:40.858Z","sequence":41684,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191433]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:40.869Z","sequence":41685,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:40.87Z","sequence":41686,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:40.871Z","sequence":41687,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7cf9942c-6e45-430b-84fd-1301d7ca57b0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:41.289Z","sequence":41688,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF64C2041E1A763]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"aea54ffd5fdb5a31","parentId":"605376d71540ef19","traceId":"0000000000000000282d59506996d9f9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:41.317Z","sequence":41689,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF64C2041E1A763]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"aea54ffd5fdb5a31","parentId":"605376d71540ef19","traceId":"0000000000000000282d59506996d9f9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:41.518Z","sequence":41690,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a67ab5be-bc91-47f5-bd4d-ae996e31a14a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:41.746Z","sequence":41691,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: CEA65111BCE2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5112b312419ff546","parentId":"f6f4170d3b179b0e","traceId":"0000000000000000d4286dd60b3c8fd5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:41.765Z","sequence":41692,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: CEA65111BCE2, resource-version: f046e087-4d3c-4ebc-8698-ce7a4cfb2bed]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5112b312419ff546","parentId":"f6f4170d3b179b0e","traceId":"0000000000000000d4286dd60b3c8fd5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:41.773Z","sequence":41693,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: CEA65111BCE2, resource-version: e23f96e5-e4f5-4b3f-a9fe-7738d80ab447]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5112b312419ff546","parentId":"f6f4170d3b179b0e","traceId":"0000000000000000d4286dd60b3c8fd5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:41.776Z","sequence":41694,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: CEA65111BCE2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7ddec8cc6b0d4573","parentId":"12642f483b52ddaf","traceId":"0000000000000000d4286dd60b3c8fd5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:41.974Z","sequence":41695,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: CEA65111BCE2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7ddec8cc6b0d4573","parentId":"12642f483b52ddaf","traceId":"0000000000000000d4286dd60b3c8fd5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:42.196Z","sequence":41696,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191435]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"dc7245336e0c350d","parentId":"1351c0e395a6c6b9","traceId":"0000000000000000832fe1b1aae3c9d7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:42.222Z","sequence":41697,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191435, resource-version: ae8cf159-f65f-4550-a443-00121af05d0b]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"dc7245336e0c350d","parentId":"1351c0e395a6c6b9","traceId":"0000000000000000832fe1b1aae3c9d7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:42.229Z","sequence":41698,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191435, resource-version: 73f09d1d-ee82-4b63-8ed6-189594ce7023]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"dc7245336e0c350d","parentId":"1351c0e395a6c6b9","traceId":"0000000000000000832fe1b1aae3c9d7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:42.232Z","sequence":41699,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191435]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ce84db7b9bfaab74","parentId":"d6bca9638b7a1850","traceId":"0000000000000000832fe1b1aae3c9d7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:42.399Z","sequence":41700,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: F4D76BCA1268]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c2bfa7957d931dc0","parentId":"586d8ff1488dde3e","traceId":"0000000000000000a030cef03496a395","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:42.404Z","sequence":41701,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191435]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ce84db7b9bfaab74","parentId":"d6bca9638b7a1850","traceId":"0000000000000000832fe1b1aae3c9d7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:42.421Z","sequence":41702,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: F4D76BCA1268]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c2bfa7957d931dc0","parentId":"586d8ff1488dde3e","traceId":"0000000000000000a030cef03496a395","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:42.487Z","sequence":41703,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFD7B78A4F4DC6B]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bebf7b0660addfc4","parentId":"226de2de87934b70","traceId":"00000000000000000301dc07e0538019","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:42.528Z","sequence":41704,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFD7B78A4F4DC6B, resource-version: b31cdf6f-6e37-409c-9b73-d6381016ce19]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bebf7b0660addfc4","parentId":"226de2de87934b70","traceId":"00000000000000000301dc07e0538019","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:42.538Z","sequence":41705,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFD7B78A4F4DC6B, resource-version: 4f2c5a70-4ab6-4889-9452-cc9ca483590f]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bebf7b0660addfc4","parentId":"226de2de87934b70","traceId":"00000000000000000301dc07e0538019","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:43.502Z","sequence":41706,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF89D82F79A84E8]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6cc769134ca84b77","parentId":"4c2dee6d0e25ad13","traceId":"0000000000000000b2ccde733ac1501a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:43.522Z","sequence":41707,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF89D82F79A84E8, resource-version: e2e5317b-4edf-4410-90d2-b074ad219941]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6cc769134ca84b77","parentId":"4c2dee6d0e25ad13","traceId":"0000000000000000b2ccde733ac1501a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:43.528Z","sequence":41708,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF89D82F79A84E8, resource-version: 0fedab0c-b763-4870-9e13-a9fe2eb715ef]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6cc769134ca84b77","parentId":"4c2dee6d0e25ad13","traceId":"0000000000000000b2ccde733ac1501a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:43.599Z","sequence":41709,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:43.599Z","sequence":41710,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-CEA65111BCE2]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:43.6Z","sequence":41711,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: B6658D9C5F4C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"492550030f52c586","parentId":"b42133bc3c633e63","traceId":"0000000000000000b4a9e7a9f293c928","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:43.619Z","sequence":41712,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-4c5de9d1-6053-4da8-b4fe-8f5a3c38fa3a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:43.626Z","sequence":41713,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: B6658D9C5F4C, resource-version: 40d349c8-fd16-452a-bf96-8b9c4209b58d]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"492550030f52c586","parentId":"b42133bc3c633e63","traceId":"0000000000000000b4a9e7a9f293c928","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:43.64Z","sequence":41714,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: B6658D9C5F4C, resource-version: cc96f788-9369-4b0c-a502-c84e0f3fedff]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"492550030f52c586","parentId":"b42133bc3c633e63","traceId":"0000000000000000b4a9e7a9f293c928","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:43.644Z","sequence":41715,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: B6658D9C5F4C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4433dfceebbfe76e","parentId":"944493d89be33519","traceId":"0000000000000000b4a9e7a9f293c928","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:43.741Z","sequence":41716,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:43.741Z","sequence":41717,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: CEA65111BCE2]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:43.753Z","sequence":41718,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3ad415d2-b5dc-4dde-a968-c3135a5dde2f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:43.757Z","sequence":41719,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:43.757Z","sequence":41720,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD7B78A4F4DC6B] for gateway [CEA65111BCE2]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:43.762Z","sequence":41721,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:43.763Z","sequence":41722,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:43.844Z","sequence":41723,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: B6658D9C5F4C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4433dfceebbfe76e","parentId":"944493d89be33519","traceId":"0000000000000000b4a9e7a9f293c928","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:44.194Z","sequence":41724,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-631e8fd2-50de-4b98-9e69-6a446ef7b1a5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:44.595Z","sequence":41725,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:44.595Z","sequence":41726,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191435]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:44.637Z","sequence":41727,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-425b98f7-2ecf-4755-8265-fad64d214d05, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:44.766Z","sequence":41728,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:44.767Z","sequence":41729,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF89D82F79A84E8] for gateway [gateway_integrationtest_network_191435]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:44.767Z","sequence":41730,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:44.767Z","sequence":41731,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191435]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:44.785Z","sequence":41732,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-87f390f3-3e60-4e90-90e0-642ade319651, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:44.785Z","sequence":41733,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:44.785Z","sequence":41734,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:44.909Z","sequence":41735,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFC74D49F1266E7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"faa9e82ba01c3f54","parentId":"784179769b6a86d8","traceId":"0000000000000000a9b6161aa0599cc2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:44.926Z","sequence":41736,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFC74D49F1266E7, resource-version: f8cef43c-b60b-4473-b19f-41778e89375a]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"faa9e82ba01c3f54","parentId":"784179769b6a86d8","traceId":"0000000000000000a9b6161aa0599cc2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:44.933Z","sequence":41737,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFC74D49F1266E7, resource-version: 2fd7f4cc-ca15-434b-ad1d-5cc8f7509cea]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"faa9e82ba01c3f54","parentId":"784179769b6a86d8","traceId":"0000000000000000a9b6161aa0599cc2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:45.089Z","sequence":41738,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3e98ce81-2640-4fb0-b171-32181ec9bf45, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:45.09Z","sequence":41739,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client's [mqtt-adapter@HONO] access token has expired, closing connection","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:45.16Z","sequence":41740,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"initializing SASL authenticator","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:45.161Z","sequence":41741,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client provided an empty list of SASL mechanisms [hostname: null, state: PN_SASL_IDLE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:45.163Z","sequence":41742,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client wants to authenticate using SASL [mechanism: PLAIN, host: null, state: PN_SASL_STEP]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:45.164Z","sequence":41743,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"received authentication request [mechanism: PLAIN]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ee5509b920c9b7a1","traceId":"8524df249fbb8091c9402cbb0770ee45","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:45.164Z","sequence":41744,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"processing PLAIN authentication request [authzid: , authcid: mqtt-adapter@HONO, pwd: *****]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ee5509b920c9b7a1","traceId":"8524df249fbb8091c9402cbb0770ee45","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:45.165Z","sequence":41745,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"OpenSSL [available: false, supports KeyManagerFactory: false]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ee5509b920c9b7a1","traceId":"8524df249fbb8091c9402cbb0770ee45","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:45.165Z","sequence":41746,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"using JVM's default SSL engine","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ee5509b920c9b7a1","traceId":"8524df249fbb8091c9402cbb0770ee45","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:45.165Z","sequence":41747,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ee5509b920c9b7a1","traceId":"8524df249fbb8091c9402cbb0770ee45","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:45.165Z","sequence":41748,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ee5509b920c9b7a1","traceId":"8524df249fbb8091c9402cbb0770ee45","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:45.165Z","sequence":41749,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connecting to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ee5509b920c9b7a1","traceId":"8524df249fbb8091c9402cbb0770ee45","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:45.25Z","sequence":41750,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connected to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server], opening connection ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ee5509b920c9b7a1","traceId":"8524df249fbb8091c9402cbb0770ee45","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:45.252Z","sequence":41751,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connection to container [hono-auth-0.0.0.0:5671] at [amqps://aloxy-hono-service-auth:5671, role: Authentication Server] open","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ee5509b920c9b7a1","traceId":"8524df249fbb8091c9402cbb0770ee45","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:45.255Z","sequence":41752,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"opened receiver link to Authentication service, waiting for token ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ee5509b920c9b7a1","traceId":"8524df249fbb8091c9402cbb0770ee45","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:45.255Z","sequence":41753,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"successfully retrieved token from Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ee5509b920c9b7a1","traceId":"8524df249fbb8091c9402cbb0770ee45","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:45.255Z","sequence":41754,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"closing connection to Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ee5509b920c9b7a1","traceId":"8524df249fbb8091c9402cbb0770ee45","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:45.255Z","sequence":41755,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.EventBusAuthenticationService","level":"DEBUG","message":"received token [length: 969] in response to authentication request","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:45.256Z","sequence":41756,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.JjwtBasedAuthTokenValidator","level":"DEBUG","message":"using key [id: 984e3639028b1e7d0b7d97f8f3de6a82638af0ed7d06ce7d9e038a1c4c634169] to validate signature (alg: RS256]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:45.257Z","sequence":41757,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"authentication of client [authorization ID: mqtt-adapter@HONO] succeeded","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:45.257Z","sequence":41758,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"finishing SASL handshake with outcome PN_SASL_OK","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:45.257Z","sequence":41759,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"received connection request from client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:45.26Z","sequence":41760,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"processing open frame from client container [Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:45.26Z","sequence":41761,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"INFO","message":"client connected [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af, user: mqtt-adapter@HONO, token valid until: 2023-07-25T06:59:45Z]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:45.262Z","sequence":41762,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"opening new session with client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:46.005Z","sequence":41763,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:46.006Z","sequence":41764,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-B6658D9C5F4C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:46.021Z","sequence":41765,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-8581bfcf-4928-4609-b6d4-9c2d17c34b8a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:46.141Z","sequence":41766,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af] wants to open a link [address: Source{address='registration/integrationtest/a8a5044f-26d0-40fe-a88d-a2f0c37c93d1', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:46.142Z","sequence":41767,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-0]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:46.142Z","sequence":41768,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@5add2ba7] for replies to [registration/integrationtest/a8a5044f-26d0-40fe-a88d-a2f0c37c93d1]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:46.144Z","sequence":41769,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af] wants to open a link [address: Target{address='registration/integrationtest', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:46.144Z","sequence":41770,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-1]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:46.144Z","sequence":41771,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:46.147Z","sequence":41772,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:46.147Z","sequence":41773,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: B6658D9C5F4C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:46.155Z","sequence":41774,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-952d23ee-0547-47f0-a1f3-0594e269e531, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:46.159Z","sequence":41775,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:46.159Z","sequence":41776,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFC74D49F1266E7] for gateway [B6658D9C5F4C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:46.164Z","sequence":41777,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.7.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:46.164Z","sequence":41778,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:46.456Z","sequence":41779,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d3e006ed-484d-40e9-ae2e-ab92ac0f5467, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:46.98Z","sequence":41780,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af] wants to open a link [address: Source{address='registration/oci/b6e6524e-3ce4-4f7a-a7fa-ae9a0e0ca28d', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:46.98Z","sequence":41781,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-2]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:46.98Z","sequence":41782,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@170c063c] for replies to [registration/oci/b6e6524e-3ce4-4f7a-a7fa-ae9a0e0ca28d]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:46.984Z","sequence":41783,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af] wants to open a link [address: Target{address='registration/oci', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:46.985Z","sequence":41784,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:46.985Z","sequence":41785,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:46.987Z","sequence":41786,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:46.987Z","sequence":41787,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:46.992Z","sequence":41788,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-728f94c1-64d2-4e6f-9d72-2c308c97b57c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:49.113Z","sequence":41789,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:49.113Z","sequence":41790,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006B3] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:49.12Z","sequence":41791,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:49.12Z","sequence":41792,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:49.126Z","sequence":41793,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6c5b783f-0652-4aee-872f-16609357aa32, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:49.183Z","sequence":41794,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:49.183Z","sequence":41795,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: terega]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:49.186Z","sequence":41796,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-d7bdab39-a534-4639-ba20-af8afdbce17c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:49.189Z","sequence":41797,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/terega:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:49.189Z","sequence":41798,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: terega, type: hashed-password, auth-id: auth-gateway_terega_network_27]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:49.212Z","sequence":41799,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-2e3cbc7a-fcda-4284-a291-bede2c21ba8b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:49.279Z","sequence":41800,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"retrieving device [tenant: shell, device-id: 70B3D57BB10006B3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1936aa201eb4450f","parentId":"aa843d7348a33616","traceId":"ba1782c6668740e13425b824ac950d61","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:49.338Z","sequence":41801,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/terega:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:49.338Z","sequence":41802,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: terega, device-id: 70B3D57BB1000DF6] for gateway [gateway_terega_network_27]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:49.347Z","sequence":41803,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_terega\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:49.347Z","sequence":41804,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_terega\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:49.35Z","sequence":41805,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f49e76d4-0431-4804-822e-478d72bf0f18, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:52.727Z","sequence":41806,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF3B6C20758E6CD]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"021f7e917e1c91a5","parentId":"054e1a650193ded7","traceId":"0000000000000000533edb54b7c0463d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:52.748Z","sequence":41807,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF3B6C20758E6CD]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"021f7e917e1c91a5","parentId":"054e1a650193ded7","traceId":"0000000000000000533edb54b7c0463d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:52.875Z","sequence":41808,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191433]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5e812a677538a5a7","parentId":"e310378a2297512a","traceId":"0000000000000000bb18c9b0f4f4461e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:52.89Z","sequence":41809,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191433]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5e812a677538a5a7","parentId":"e310378a2297512a","traceId":"0000000000000000bb18c9b0f4f4461e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:53.023Z","sequence":41810,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF89D82F79A84E8]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"168b6930bf6ec989","parentId":"065436c5fa0563f9","traceId":"0000000000000000dfe4d5394f5adb46","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:53.042Z","sequence":41811,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF89D82F79A84E8]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"168b6930bf6ec989","parentId":"065436c5fa0563f9","traceId":"0000000000000000dfe4d5394f5adb46","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:53.199Z","sequence":41812,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191435]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"aca9c08baffa4ffb","parentId":"c965af852faa9f79","traceId":"0000000000000000f758f7efafbc2fe9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:53.216Z","sequence":41813,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191435]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"aca9c08baffa4ffb","parentId":"c965af852faa9f79","traceId":"0000000000000000f758f7efafbc2fe9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:53.353Z","sequence":41814,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFD7B78A4F4DC6B]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"44ecaf0975bdcfd2","parentId":"1a154eeac8d44eec","traceId":"000000000000000061399abd0f3f9bfc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:53.37Z","sequence":41815,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFD7B78A4F4DC6B]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"44ecaf0975bdcfd2","parentId":"1a154eeac8d44eec","traceId":"000000000000000061399abd0f3f9bfc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:53.748Z","sequence":41816,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: CEA65111BCE2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6fc3a06d1bd8e57a","parentId":"f351c9f7941c5133","traceId":"000000000000000019da76a9fb602f28","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:53.768Z","sequence":41817,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: CEA65111BCE2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6fc3a06d1bd8e57a","parentId":"f351c9f7941c5133","traceId":"000000000000000019da76a9fb602f28","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:54.739Z","sequence":41818,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af] wants to open a link [address: Source{address='registration/repsol/e220931a-aa08-45f4-a1f0-d77a0d967160', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:54.739Z","sequence":41819,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:54.739Z","sequence":41820,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@3b0a0ba2] for replies to [registration/repsol/e220931a-aa08-45f4-a1f0-d77a0d967160]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:54.742Z","sequence":41821,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af] wants to open a link [address: Target{address='registration/repsol', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:54.742Z","sequence":41822,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-5]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:54.742Z","sequence":41823,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:54.744Z","sequence":41824,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/repsol:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:54.744Z","sequence":41825,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: repsol, device-id: 0008004A37FF]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:54.75Z","sequence":41826,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-da89c764-65a4-40a5-a8e4-7500ba032a61, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:54.754Z","sequence":41827,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:54.754Z","sequence":41828,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: repsol]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:54.757Z","sequence":41829,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-fcecdfc9-76ad-4a06-8e7a-0fb7bcbd0f7d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:56.658Z","sequence":41830,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af] wants to open a link [address: Source{address='registration/acta/a7644a39-f58a-42ba-ad9e-ec0b1b2b10ab', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:56.658Z","sequence":41831,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-6]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:56.658Z","sequence":41832,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@66b7ab7b] for replies to [registration/acta/a7644a39-f58a-42ba-ad9e-ec0b1b2b10ab]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:56.66Z","sequence":41833,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af] wants to open a link [address: Target{address='registration/acta', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:56.661Z","sequence":41834,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-7]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:56.661Z","sequence":41835,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:56.663Z","sequence":41836,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/acta:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:56.663Z","sequence":41837,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: acta, device-id: 0008004AAAA3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:56.67Z","sequence":41838,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-80d94b66-3eda-47ad-869f-a0ad770e3338, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:56.673Z","sequence":41839,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:56.673Z","sequence":41840,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: acta]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:56.676Z","sequence":41841,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-63cbca33-b2af-417a-a5ec-3d8f21c7ea6b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:59.683Z","sequence":41842,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFC74D49F1266E7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"048825d4ba52e2a2","parentId":"de434d15af5a3853","traceId":"0000000000000000f1a1b6cc1ee79c13","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T05:59:59.699Z","sequence":41843,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFC74D49F1266E7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"048825d4ba52e2a2","parentId":"de434d15af5a3853","traceId":"0000000000000000f1a1b6cc1ee79c13","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:00.006Z","sequence":41844,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: B6658D9C5F4C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"20c2c9a4c29981d8","parentId":"722d4ed3dd79ef1d","traceId":"0000000000000000bc05588f88f218cd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:00.027Z","sequence":41845,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: B6658D9C5F4C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"20c2c9a4c29981d8","parentId":"722d4ed3dd79ef1d","traceId":"0000000000000000bc05588f88f218cd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:00.146Z","sequence":41846,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:00.147Z","sequence":41847,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: lanxess]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:00.15Z","sequence":41848,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-e59dd9a2-de29-44b5-b2b3-118e553d850b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:00.152Z","sequence":41849,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af] wants to open a link [address: Source{address='registration/lanxess/caefa156-a76f-4de1-89d0-a1d74279b75b', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:00.152Z","sequence":41850,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-8]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:00.152Z","sequence":41851,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@2d940a71] for replies to [registration/lanxess/caefa156-a76f-4de1-89d0-a1d74279b75b]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:00.154Z","sequence":41852,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af] wants to open a link [address: Target{address='registration/lanxess', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:00.154Z","sequence":41853,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-9]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:00.154Z","sequence":41854,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:00.157Z","sequence":41855,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:00.157Z","sequence":41856,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 70B3D57BB10001B5] for gateway [0008004BB84C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:00.162Z","sequence":41857,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_lanxess\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:00.163Z","sequence":41858,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_lanxess\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:00.166Z","sequence":41859,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-afaaa0b4-4f53-4abd-a2e5-54c3924ed6f8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:00.336Z","sequence":41860,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:00.337Z","sequence":41861,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000567] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:00.342Z","sequence":41862,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:00.342Z","sequence":41863,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:00.351Z","sequence":41864,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-900d09dc-7b32-4f60-8c8c-035887930de1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:01.171Z","sequence":41865,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 918D566890C0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d74ee5b8aebd6bef","parentId":"42eeb5fe4ad0b085","traceId":"0000000000000000842a1de3b00347d0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:01.186Z","sequence":41866,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 918D566890C0, resource-version: ef9a12e4-2abf-4989-96f9-54f5e16a863c]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d74ee5b8aebd6bef","parentId":"42eeb5fe4ad0b085","traceId":"0000000000000000842a1de3b00347d0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:01.194Z","sequence":41867,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 918D566890C0, resource-version: 1841de38-9112-46ab-aa23-68737c4c7811]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d74ee5b8aebd6bef","parentId":"42eeb5fe4ad0b085","traceId":"0000000000000000842a1de3b00347d0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:01.197Z","sequence":41868,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 918D566890C0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"10c27b6f21c72f5e","parentId":"4bbda9924f56f15b","traceId":"0000000000000000842a1de3b00347d0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:01.323Z","sequence":41869,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 918D566890C0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"10c27b6f21c72f5e","parentId":"4bbda9924f56f15b","traceId":"0000000000000000842a1de3b00347d0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:01.702Z","sequence":41870,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF81A752C76AA36]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8259e01d5981de28","parentId":"8192c2fcaebc1ba0","traceId":"00000000000000006fb542f7c60c7763","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:01.719Z","sequence":41871,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF81A752C76AA36, resource-version: d6f02189-65e4-4efd-8783-cb96b71be930]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8259e01d5981de28","parentId":"8192c2fcaebc1ba0","traceId":"00000000000000006fb542f7c60c7763","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:01.725Z","sequence":41872,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF81A752C76AA36, resource-version: 853af540-b37c-4061-a3e6-2c68a872bc86]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8259e01d5981de28","parentId":"8192c2fcaebc1ba0","traceId":"00000000000000006fb542f7c60c7763","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:02.769Z","sequence":41873,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:02.769Z","sequence":41874,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-918D566890C0]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:02.778Z","sequence":41875,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-35999bf2-9d37-482a-8cc0-465cbe827e2c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:02.901Z","sequence":41876,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:02.901Z","sequence":41877,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 918D566890C0]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:02.908Z","sequence":41878,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-532e1900-8d66-4d79-ae6f-0720c4d9d7b8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:02.913Z","sequence":41879,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:02.913Z","sequence":41880,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF81A752C76AA36] for gateway [918D566890C0]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:02.917Z","sequence":41881,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:02.917Z","sequence":41882,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:03.085Z","sequence":41883,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c1dcc1c5-3152-437f-9a28-4fd86ffced25, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:03.086Z","sequence":41884,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:03.086Z","sequence":41885,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A4D] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:03.091Z","sequence":41886,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:03.091Z","sequence":41887,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:03.098Z","sequence":41888,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2b3d081f-99d4-4255-a343-8d5046946302, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:04.188Z","sequence":41889,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191438]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6a532ce0812f747b","parentId":"0973427d3e61a735","traceId":"00000000000000004dec00bb5c88553a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:04.21Z","sequence":41890,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191438, resource-version: e8a2376f-9d68-4bef-805a-1dbadf97ce2b]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6a532ce0812f747b","parentId":"0973427d3e61a735","traceId":"00000000000000004dec00bb5c88553a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:04.219Z","sequence":41891,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191438, resource-version: c0aedae0-297c-4635-a0b3-d4563ae103a0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6a532ce0812f747b","parentId":"0973427d3e61a735","traceId":"00000000000000004dec00bb5c88553a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:04.225Z","sequence":41892,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191438]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f191a8dd24f19235","parentId":"076307f8ba554bbe","traceId":"00000000000000004dec00bb5c88553a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:04.365Z","sequence":41893,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191438]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f191a8dd24f19235","parentId":"076307f8ba554bbe","traceId":"00000000000000004dec00bb5c88553a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:04.772Z","sequence":41894,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:04.772Z","sequence":41895,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-918D566890C0]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:04.783Z","sequence":41896,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-39062335-320c-4ad6-aa12-0aa085d3d576, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:04.821Z","sequence":41897,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF9BFE97B94FE2B]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e0619413c1617569","parentId":"051dbd832658df34","traceId":"00000000000000008f5145284563cd8c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:04.838Z","sequence":41898,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF9BFE97B94FE2B, resource-version: b8ae5f35-36ba-4edb-8aa3-78feec215177]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e0619413c1617569","parentId":"051dbd832658df34","traceId":"00000000000000008f5145284563cd8c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:04.845Z","sequence":41899,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF9BFE97B94FE2B, resource-version: 53687c2f-8d1c-48c9-80d4-1e21a8b8a45d]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e0619413c1617569","parentId":"051dbd832658df34","traceId":"00000000000000008f5145284563cd8c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:05.882Z","sequence":41900,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:05.882Z","sequence":41901,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191438]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:05.893Z","sequence":41902,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-0e9d7ce4-f16d-4cf8-bdfe-1c9d7a35a36d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:06.011Z","sequence":41903,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:06.011Z","sequence":41904,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF9BFE97B94FE2B] for gateway [gateway_integrationtest_network_191438]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:06.012Z","sequence":41905,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:06.012Z","sequence":41906,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191438]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:06.016Z","sequence":41907,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:06.017Z","sequence":41908,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:06.018Z","sequence":41909,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-02dd02c5-3595-4a93-b110-e7635d9110a1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:06.223Z","sequence":41910,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c76f94f6-4912-4da2-b953-06bf9a7dab2a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:07.129Z","sequence":41911,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF81A752C76AA36]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e6aafb82481d761f","parentId":"9e7b8fed709e9098","traceId":"00000000000000007284b7a0700509d1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:07.147Z","sequence":41912,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF81A752C76AA36]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e6aafb82481d761f","parentId":"9e7b8fed709e9098","traceId":"00000000000000007284b7a0700509d1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:07.509Z","sequence":41913,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 918D566890C0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bc61ae63d888d068","parentId":"38c35bb0a5618adf","traceId":"00000000000000003979a1047f764942","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:07.53Z","sequence":41914,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 918D566890C0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bc61ae63d888d068","parentId":"38c35bb0a5618adf","traceId":"00000000000000003979a1047f764942","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:08.169Z","sequence":41915,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 5553C38AB1DB]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ca06bbe25a6d887d","parentId":"b5034aca9f78f63e","traceId":"000000000000000078bc4805245ac348","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:08.186Z","sequence":41916,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 5553C38AB1DB, resource-version: 3f16474e-ed50-4191-a05f-21f4e6462ebd]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ca06bbe25a6d887d","parentId":"b5034aca9f78f63e","traceId":"000000000000000078bc4805245ac348","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:08.193Z","sequence":41917,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 5553C38AB1DB, resource-version: 3d77640e-ebc7-4b77-aa0b-ae43c44a9cae]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ca06bbe25a6d887d","parentId":"b5034aca9f78f63e","traceId":"000000000000000078bc4805245ac348","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:08.199Z","sequence":41918,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 5553C38AB1DB]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"707fda3617b7c353","parentId":"0a136ec8c6edd7b5","traceId":"000000000000000078bc4805245ac348","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:08.352Z","sequence":41919,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 5553C38AB1DB]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"707fda3617b7c353","parentId":"0a136ec8c6edd7b5","traceId":"000000000000000078bc4805245ac348","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:09.437Z","sequence":41920,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFDD45FDB871ACC]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bb9878970d0e9109","parentId":"6713deb222067f28","traceId":"00000000000000007d09a78f7ac6db2a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:09.454Z","sequence":41921,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFDD45FDB871ACC, resource-version: 50b95d16-8eb5-4ca0-92b1-491a32d05582]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bb9878970d0e9109","parentId":"6713deb222067f28","traceId":"00000000000000007d09a78f7ac6db2a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:09.46Z","sequence":41922,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFDD45FDB871ACC, resource-version: 11746a94-cdf3-4017-81f3-21158b9a4cbc]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bb9878970d0e9109","parentId":"6713deb222067f28","traceId":"00000000000000007d09a78f7ac6db2a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:09.507Z","sequence":41923,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:09.508Z","sequence":41924,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-5553C38AB1DB]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:09.517Z","sequence":41925,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-8edfd740-9d8d-431c-a035-8c9a42b355a3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:09.67Z","sequence":41926,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:09.671Z","sequence":41927,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 5553C38AB1DB]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:09.676Z","sequence":41928,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-791f5246-766a-4f6b-8725-fcb1d3257cf0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:14.382Z","sequence":41929,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:14.382Z","sequence":41930,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: exxon]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:14.385Z","sequence":41931,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-0e1804d2-909c-4788-84dc-bfe506bdf1a5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:14.389Z","sequence":41932,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/exxon:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:14.389Z","sequence":41933,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: exxon, type: hashed-password, auth-id: auth-gateway_exxon_network_2559]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:14.398Z","sequence":41934,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-4377898c-22f0-4d54-87cf-8de57da19169, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:14.526Z","sequence":41935,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/exxon:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:14.526Z","sequence":41936,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: exxon, device-id: 70B3D57BB1000B43] for gateway [gateway_exxon_network_2559]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:14.527Z","sequence":41937,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/exxon:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:14.527Z","sequence":41938,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: exxon, device-id: gateway_exxon_network_2559]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:14.534Z","sequence":41939,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_exxon\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:14.534Z","sequence":41940,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_exxon\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:14.535Z","sequence":41941,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-bcfa48c5-3d09-4297-a7ac-6d956687002f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:14.537Z","sequence":41942,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-53420dcb-99ad-4d98-bd8e-82ed4fdbf707, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:15.859Z","sequence":41943,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF9BFE97B94FE2B]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"23461df85212d60e","parentId":"33ff2db40b9e177e","traceId":"00000000000000002cc812c111839f3e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:15.878Z","sequence":41944,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF9BFE97B94FE2B]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"23461df85212d60e","parentId":"33ff2db40b9e177e","traceId":"00000000000000002cc812c111839f3e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:20.842Z","sequence":41945,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af] wants to open a link [address: Source{address='registration/dow/0c2a3e17-5e06-40f6-bbd8-7c213fd0258a', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:20.842Z","sequence":41946,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:20.842Z","sequence":41947,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@d15daa3] for replies to [registration/dow/0c2a3e17-5e06-40f6-bbd8-7c213fd0258a]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:20.844Z","sequence":41948,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af] wants to open a link [address: Target{address='registration/dow', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:20.844Z","sequence":41949,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-11]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:20.844Z","sequence":41950,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:20.847Z","sequence":41951,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:20.847Z","sequence":41952,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 0008004B51D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:20.853Z","sequence":41953,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-978017e6-9ac6-4774-a059-4fc9a51fa888, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:20.857Z","sequence":41954,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:20.857Z","sequence":41955,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: dow]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:20.859Z","sequence":41956,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-2c1c7c96-a03d-415c-90b8-faf8ab5fe994, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:21.51Z","sequence":41957,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:21.51Z","sequence":41958,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100140B] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:21.518Z","sequence":41959,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:21.518Z","sequence":41960,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:21.525Z","sequence":41961,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8d7f130c-276d-4e5d-8a4a-1fb6c4714884, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:21.97Z","sequence":41962,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:21.971Z","sequence":41963,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B60] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:21.977Z","sequence":41964,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:21.977Z","sequence":41965,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:21.984Z","sequence":41966,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d3234b47-96b8-4aea-a6ec-12a5decbab09, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:23.809Z","sequence":41967,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:23.81Z","sequence":41968,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 70B3D57BB100017F] for gateway [0008004BB84C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:23.816Z","sequence":41969,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_lanxess\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:23.817Z","sequence":41970,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_lanxess\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:23.82Z","sequence":41971,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5a381f2e-9bc4-4d21-b1b9-89251c4e9940, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:24.057Z","sequence":41972,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:24.057Z","sequence":41973,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000694] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:24.112Z","sequence":41974,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:24.112Z","sequence":41975,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:24.127Z","sequence":41976,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7a2bf87b-42ae-470a-8575-59a378993fa8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:25.443Z","sequence":41977,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:25.443Z","sequence":41978,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: dow]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:25.447Z","sequence":41979,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-9e2bc4e2-cc4b-4bd6-b195-1d968b892ee4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:25.454Z","sequence":41980,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/dow:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:25.454Z","sequence":41981,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: dow, type: hashed-password, auth-id: auth-gateway_dow_network_39199]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:25.455Z","sequence":41982,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/dow:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:25.455Z","sequence":41983,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: dow, type: hashed-password, auth-id: auth-gateway_dow_network_39199]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:25.465Z","sequence":41984,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-ae697405-2de3-41ad-9c18-2c4458bff5c6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:25.466Z","sequence":41985,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-753b006f-e074-447e-820c-65eaee15509e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:25.686Z","sequence":41986,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:25.687Z","sequence":41987,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 70B3D57BB10014F7] for gateway [gateway_dow_network_39199]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:25.687Z","sequence":41988,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:25.687Z","sequence":41989,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: gateway_dow_network_39199]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:25.693Z","sequence":41990,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-24a89254-a361-49fd-b99d-034afc8cf333, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:25.694Z","sequence":41991,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:25.694Z","sequence":41992,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:25.699Z","sequence":41993,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d3d49c8f-93cf-4bd5-af68-206d79a1da6b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:30.846Z","sequence":41994,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:30.847Z","sequence":41995,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10001D5] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:30.854Z","sequence":41996,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:0.4.1\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:30.854Z","sequence":41997,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:30.86Z","sequence":41998,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ba972f9d-dd92-402d-932d-c21ab5defa2b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:32.408Z","sequence":41999,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:32.408Z","sequence":42000,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10008A2] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:32.416Z","sequence":42001,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:32.416Z","sequence":42002,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:32.421Z","sequence":42003,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9f174f09-2b57-489a-9fcd-04ce6ba31909, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:34.112Z","sequence":42004,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/dow:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:34.112Z","sequence":42005,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: dow, type: hashed-password, auth-id: auth-gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:34.122Z","sequence":42006,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-390254df-ccb7-4a6c-b67e-f4fa04648b39, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:34.378Z","sequence":42007,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:34.378Z","sequence":42008,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 70B3D57BB100125F] for gateway [gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:34.379Z","sequence":42009,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:34.379Z","sequence":42010,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:34.383Z","sequence":42011,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:34.383Z","sequence":42012,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:34.384Z","sequence":42013,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9244f8c1-9bbc-44fb-9d89-071a2fcebc36, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:34.387Z","sequence":42014,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-81ab31f1-716a-43eb-812c-e1352d77dba4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:34.754Z","sequence":42015,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:34.754Z","sequence":42016,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AD5] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:34.76Z","sequence":42017,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:34.76Z","sequence":42018,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:34.768Z","sequence":42019,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-55ecad96-b8f9-4b00-a266-9802624b2eeb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:39.096Z","sequence":42020,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:39.096Z","sequence":42021,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A72] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:39.102Z","sequence":42022,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:39.103Z","sequence":42023,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:39.109Z","sequence":42024,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-81a762b9-51c1-415c-95be-c7138061843e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:43.033Z","sequence":42025,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:43.033Z","sequence":42026,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006AB] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:43.039Z","sequence":42027,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:43.039Z","sequence":42028,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:43.045Z","sequence":42029,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6ced472c-2180-41ca-9560-4782bd0f3c35, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:45.303Z","sequence":42030,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFDD45FDB871ACC]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7612a57287cd081b","parentId":"3173eec292a1c512","traceId":"0000000000000000d724078dcdb30d7e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:45.323Z","sequence":42031,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFDD45FDB871ACC]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7612a57287cd081b","parentId":"3173eec292a1c512","traceId":"0000000000000000d724078dcdb30d7e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:53.325Z","sequence":42032,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af] wants to open a link [address: Source{address='registration/conditionall/83ce3977-dd3f-4930-b793-d346f6289cf9', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:53.325Z","sequence":42033,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-12]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:53.325Z","sequence":42034,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@516661d4] for replies to [registration/conditionall/83ce3977-dd3f-4930-b793-d346f6289cf9]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:53.327Z","sequence":42035,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af] wants to open a link [address: Target{address='registration/conditionall', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:53.327Z","sequence":42036,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-13]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:53.327Z","sequence":42037,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:53.329Z","sequence":42038,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/conditionall:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:53.329Z","sequence":42039,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: conditionall, device-id: 0008004B512D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:53.335Z","sequence":42040,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9a384e30-7845-4849-aa36-8b517cb694f2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:53.338Z","sequence":42041,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:53.338Z","sequence":42042,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: conditionall]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:53.341Z","sequence":42043,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-e26946fb-0be6-4dd7-8d5e-dee261ff0a69, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:55.012Z","sequence":42044,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/acta:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:55.012Z","sequence":42045,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: acta, device-id: 3534383400470039] for gateway [0008004AAAA3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:55.019Z","sequence":42046,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.3.0\"\n },\n \"viaGroups\" : [ \"gateways_acta\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:55.019Z","sequence":42047,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_acta\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:55.023Z","sequence":42048,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9570271c-5cd0-4e5b-b403-a3e6a8645eea, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:58.221Z","sequence":42049,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:58.221Z","sequence":42050,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A52] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:58.24Z","sequence":42051,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:58.241Z","sequence":42052,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:00:58.251Z","sequence":42053,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5042f309-bb31-4b4e-af0a-7851213e42bf, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:03.642Z","sequence":42054,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:03.642Z","sequence":42055,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:03.652Z","sequence":42056,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d89d185f-183d-4462-a8b2-c2f18e2851da, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:03.655Z","sequence":42057,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:03.655Z","sequence":42058,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oci]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:03.658Z","sequence":42059,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-7fd9eee3-141f-4a5a-be19-648038d1ad3e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:04.035Z","sequence":42060,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [command-router@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:04.035Z","sequence":42061,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:04.047Z","sequence":42062,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-8a1913ad-4d40-4d31-afba-e6e7595509b2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:04.248Z","sequence":42063,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191440]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bb54731255fbb093","parentId":"415ede02975f6f74","traceId":"00000000000000007e82542f0ef9273f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:04.266Z","sequence":42064,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191440, resource-version: c76acaaf-0600-460d-80d6-db01e9c6cee1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bb54731255fbb093","parentId":"415ede02975f6f74","traceId":"00000000000000007e82542f0ef9273f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:04.272Z","sequence":42065,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191440, resource-version: e3f77a2a-5b17-4baa-8df9-0693ebc8564d]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bb54731255fbb093","parentId":"415ede02975f6f74","traceId":"00000000000000007e82542f0ef9273f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:04.277Z","sequence":42066,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191440]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7ef1c82ff149c8d5","parentId":"53bb721b7a6b0567","traceId":"00000000000000007e82542f0ef9273f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:04.423Z","sequence":42067,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191440]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7ef1c82ff149c8d5","parentId":"53bb721b7a6b0567","traceId":"00000000000000007e82542f0ef9273f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:15.489Z","sequence":42068,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 5553C38AB1DB]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c1dac69d6fb2c0f1","parentId":"8de941767ac8601a","traceId":"000000000000000060b5b49c82bb3040","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:15.507Z","sequence":42069,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 5553C38AB1DB]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c1dac69d6fb2c0f1","parentId":"8de941767ac8601a","traceId":"000000000000000060b5b49c82bb3040","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:15.561Z","sequence":42070,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191438]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7be7c5ff8fcae459","parentId":"ba2952399f53d3de","traceId":"00000000000000007c3397ec72a0d8e3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:15.591Z","sequence":42071,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191438]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7be7c5ff8fcae459","parentId":"ba2952399f53d3de","traceId":"00000000000000007c3397ec72a0d8e3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:15.792Z","sequence":42072,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191441]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"899ff2bc5e63b533","parentId":"201c334e8cd20aac","traceId":"000000000000000025a49732ad8c3f20","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:15.82Z","sequence":42073,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191441, resource-version: 9d3c68cd-d6fa-4211-8a84-079676f79345]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"899ff2bc5e63b533","parentId":"201c334e8cd20aac","traceId":"000000000000000025a49732ad8c3f20","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:15.827Z","sequence":42074,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191441, resource-version: 07e3a637-dfe4-4c80-9e31-8bff8e9e03bc]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"899ff2bc5e63b533","parentId":"201c334e8cd20aac","traceId":"000000000000000025a49732ad8c3f20","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:15.833Z","sequence":42075,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191441]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"385065f961a06898","parentId":"00f409a8c8437dbf","traceId":"000000000000000025a49732ad8c3f20","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:16.027Z","sequence":42076,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191441]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"385065f961a06898","parentId":"00f409a8c8437dbf","traceId":"000000000000000025a49732ad8c3f20","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:16.383Z","sequence":42077,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF0D20C62E80050]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1848c1a1afd160c9","parentId":"22657af5e83e0361","traceId":"00000000000000007c105a05c8f3af25","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:16.415Z","sequence":42078,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF0D20C62E80050, resource-version: eea2c231-52c1-43e6-847f-81838ddf810a]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1848c1a1afd160c9","parentId":"22657af5e83e0361","traceId":"00000000000000007c105a05c8f3af25","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:16.424Z","sequence":42079,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF0D20C62E80050, resource-version: 5ec806c8-1cb6-422e-972a-b13793e6e005]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1848c1a1afd160c9","parentId":"22657af5e83e0361","traceId":"00000000000000007c105a05c8f3af25","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:16.445Z","sequence":42080,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191442]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3721a32d41b34e80","parentId":"75a1612a322c039c","traceId":"0000000000000000a6a8729af1f7363d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:16.469Z","sequence":42081,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191442, resource-version: 84949253-b261-4f8d-87a1-5fd4f191bfef]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3721a32d41b34e80","parentId":"75a1612a322c039c","traceId":"0000000000000000a6a8729af1f7363d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:16.477Z","sequence":42082,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF623DEA3629E13]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ff2316d1920ca7a9","parentId":"f6c5bad359b43110","traceId":"0000000000000000d0f04cd3b7c2bbde","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:16.48Z","sequence":42083,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191442, resource-version: 4128c6cf-5040-4ee3-8874-0fdd46874c17]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3721a32d41b34e80","parentId":"75a1612a322c039c","traceId":"0000000000000000a6a8729af1f7363d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:16.484Z","sequence":42084,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191442]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0bc2ca0b7b3e20a4","parentId":"db70fcf97f4d5f68","traceId":"0000000000000000a6a8729af1f7363d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:16.541Z","sequence":42085,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF623DEA3629E13, resource-version: 18c78d74-6fcc-45e3-a10f-546e608fc0fc]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ff2316d1920ca7a9","parentId":"f6c5bad359b43110","traceId":"0000000000000000d0f04cd3b7c2bbde","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:16.56Z","sequence":42086,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF623DEA3629E13, resource-version: 03f13e4f-338c-404a-bcb4-ee341c531abb]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ff2316d1920ca7a9","parentId":"f6c5bad359b43110","traceId":"0000000000000000d0f04cd3b7c2bbde","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:16.76Z","sequence":42087,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191442]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0bc2ca0b7b3e20a4","parentId":"db70fcf97f4d5f68","traceId":"0000000000000000a6a8729af1f7363d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:17.557Z","sequence":42088,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 333522EC7991A996]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"52df4d1958d4cb04","parentId":"d1b71b19f8c0f426","traceId":"000000000000000007b31cf216205a4c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:17.575Z","sequence":42089,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 333522EC7991A996, resource-version: a9a9593d-6b76-4a39-9d00-50ec23e13bbb]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"52df4d1958d4cb04","parentId":"d1b71b19f8c0f426","traceId":"000000000000000007b31cf216205a4c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:17.584Z","sequence":42090,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 333522EC7991A996, resource-version: b772d079-4f4a-402a-8afd-cccb121be60a]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"52df4d1958d4cb04","parentId":"d1b71b19f8c0f426","traceId":"000000000000000007b31cf216205a4c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:17.752Z","sequence":42091,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:17.752Z","sequence":42092,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191440]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:17.762Z","sequence":42093,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-245cef28-e876-4ec8-86e5-36f1c4f11201, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:17.849Z","sequence":42094,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:17.85Z","sequence":42095,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191441]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:17.86Z","sequence":42096,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-84a7a96f-87b3-48b8-98ba-6114a6c0e2c5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:17.902Z","sequence":42097,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:17.904Z","sequence":42098,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF623DEA3629E13] for gateway [gateway_integrationtest_network_191440]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:17.905Z","sequence":42099,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:17.905Z","sequence":42100,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191440]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:17.914Z","sequence":42101,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.5.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:17.914Z","sequence":42102,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:17.915Z","sequence":42103,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-15e8c7c7-619d-478d-88c5-7d4e0c77bdab, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:18.25Z","sequence":42104,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-521db7f9-74db-43a7-8814-148ba3b66625, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:18.251Z","sequence":42105,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:18.251Z","sequence":42106,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF0D20C62E80050] for gateway [gateway_integrationtest_network_191441]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:18.251Z","sequence":42107,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:18.251Z","sequence":42108,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191441]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:18.26Z","sequence":42109,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e43ab0a5-61ea-4027-9650-39e7f232cded, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:18.26Z","sequence":42110,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:18.26Z","sequence":42111,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:18.729Z","sequence":42112,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-930e2d92-e9e4-42e6-98dd-22da8f099e22, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:18.729Z","sequence":42113,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:18.732Z","sequence":42114,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191442]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:18.781Z","sequence":42115,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-35219e31-4d62-45a7-b173-33c699f00898, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:19.073Z","sequence":42116,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:19.073Z","sequence":42117,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 333522EC7991A996] for gateway [gateway_integrationtest_network_191442]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:19.074Z","sequence":42118,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:19.074Z","sequence":42119,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191442]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:19.081Z","sequence":42120,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:raw:1.0.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:19.082Z","sequence":42121,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:19.084Z","sequence":42122,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2d0ba0d7-e399-4795-bbf2-2a5904344221, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:19.483Z","sequence":42123,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-17d47df7-d828-4b95-b3eb-2cfcd038f402, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:20.773Z","sequence":42124,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:20.773Z","sequence":42125,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: shell]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:20.777Z","sequence":42126,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-b715d98c-a5f9-4ae1-8963-16dc41103f0d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:20.779Z","sequence":42127,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/shell:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:20.78Z","sequence":42128,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: shell, type: hashed-password, auth-id: auth-gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:20.795Z","sequence":42129,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-3c79cbef-6fdf-4838-a4a7-a4cc19f22495, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:20.919Z","sequence":42130,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:20.92Z","sequence":42131,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A76] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:20.925Z","sequence":42132,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:20.925Z","sequence":42133,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:20.931Z","sequence":42134,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5c5c4c74-ef3f-4a8c-8449-7859e49768a3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:24.184Z","sequence":42135,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:24.184Z","sequence":42136,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BEA] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:24.192Z","sequence":42137,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:24.192Z","sequence":42138,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:24.198Z","sequence":42139,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2b9f0e10-7774-477f-b8bb-8746db410b60, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:24.822Z","sequence":42140,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:24.822Z","sequence":42141,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:24.827Z","sequence":42142,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-de2bf845-d434-44ea-b1f0-eed4e1bd81ff, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:26.132Z","sequence":42143,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF623DEA3629E13]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2862eae470d10441","parentId":"fca500fb9322cc28","traceId":"0000000000000000dac8115a706ae601","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:26.151Z","sequence":42144,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF623DEA3629E13]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2862eae470d10441","parentId":"fca500fb9322cc28","traceId":"0000000000000000dac8115a706ae601","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:26.266Z","sequence":42145,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191440]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"02ba97a5d26a9ea2","parentId":"2c873e4a69293bb8","traceId":"00000000000000008ba4b9ed42344123","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:26.282Z","sequence":42146,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191440]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"02ba97a5d26a9ea2","parentId":"2c873e4a69293bb8","traceId":"00000000000000008ba4b9ed42344123","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:26.688Z","sequence":42147,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: CD9778584E0D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"024dbe8a8b3347f4","parentId":"794dc69c19cea9bf","traceId":"00000000000000008c4831d72908628f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:26.706Z","sequence":42148,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: CD9778584E0D, resource-version: 76aa781b-8be1-469e-95a5-c640087131ad]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"024dbe8a8b3347f4","parentId":"794dc69c19cea9bf","traceId":"00000000000000008c4831d72908628f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:26.713Z","sequence":42149,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: CD9778584E0D, resource-version: f7d02801-9e5e-4833-8f8a-9d67fa139027]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"024dbe8a8b3347f4","parentId":"794dc69c19cea9bf","traceId":"00000000000000008c4831d72908628f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:26.717Z","sequence":42150,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: CD9778584E0D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8113750644f136a2","parentId":"4717aecc3f227a1c","traceId":"00000000000000008c4831d72908628f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:26.867Z","sequence":42151,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: CD9778584E0D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8113750644f136a2","parentId":"4717aecc3f227a1c","traceId":"00000000000000008c4831d72908628f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:27.606Z","sequence":42152,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF50311E42918C9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f05c3e799770b19c","parentId":"e65d74f84d658e0c","traceId":"00000000000000000bd36f6d08fb9ba1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:27.623Z","sequence":42153,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF50311E42918C9, resource-version: 0b631a16-2938-45a4-863c-7209b2535add]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f05c3e799770b19c","parentId":"e65d74f84d658e0c","traceId":"00000000000000000bd36f6d08fb9ba1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:27.63Z","sequence":42154,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF50311E42918C9, resource-version: 673ec456-aba6-4a0f-9d53-659c33cef570]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f05c3e799770b19c","parentId":"e65d74f84d658e0c","traceId":"00000000000000000bd36f6d08fb9ba1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:28.253Z","sequence":42155,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 333522EC7991A996]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7c77fec9638ae8a6","parentId":"48116d2c107d0712","traceId":"000000000000000059fc6f8a97aca779","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:28.271Z","sequence":42156,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 333522EC7991A996]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7c77fec9638ae8a6","parentId":"48116d2c107d0712","traceId":"000000000000000059fc6f8a97aca779","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:28.388Z","sequence":42157,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191442]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e399c21b6ebc8163","parentId":"4978c06f19d61202","traceId":"0000000000000000abf47eb1df92b3f5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:28.403Z","sequence":42158,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191442]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e399c21b6ebc8163","parentId":"4978c06f19d61202","traceId":"0000000000000000abf47eb1df92b3f5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:28.68Z","sequence":42159,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:28.68Z","sequence":42160,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:28.683Z","sequence":42161,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-6d0646c3-71e7-43e0-8b91-9b4902dea81f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:28.685Z","sequence":42162,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:28.686Z","sequence":42163,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-CD9778584E0D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:28.694Z","sequence":42164,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-f60461ee-9752-4d07-9601-5990dec37843, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:28.806Z","sequence":42165,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: B595C077D148]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"87b7b2d370488505","parentId":"60d08d163c4e8d14","traceId":"0000000000000000f2abd4c52aea27ba","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:28.817Z","sequence":42166,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:28.817Z","sequence":42167,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: CD9778584E0D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:28.821Z","sequence":42168,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: B595C077D148, resource-version: d7ce1015-a18b-4033-98f2-d4424d2d9246]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"87b7b2d370488505","parentId":"60d08d163c4e8d14","traceId":"0000000000000000f2abd4c52aea27ba","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:28.822Z","sequence":42169,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4c453a66-79ec-4187-a40a-3c57189d2546, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:28.826Z","sequence":42170,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:28.826Z","sequence":42171,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF50311E42918C9] for gateway [CD9778584E0D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:28.827Z","sequence":42172,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: B595C077D148, resource-version: 59ff9148-02aa-4624-af33-9a01e5a5de07]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"87b7b2d370488505","parentId":"60d08d163c4e8d14","traceId":"0000000000000000f2abd4c52aea27ba","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:28.829Z","sequence":42173,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: B595C077D148]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"858425cac80393b3","parentId":"f6df0b903c8696f7","traceId":"0000000000000000f2abd4c52aea27ba","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:28.83Z","sequence":42174,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.5.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:28.83Z","sequence":42175,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:29.068Z","sequence":42176,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: B595C077D148]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"858425cac80393b3","parentId":"f6df0b903c8696f7","traceId":"0000000000000000f2abd4c52aea27ba","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:29.181Z","sequence":42177,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8a42eeb8-89cc-4df0-972a-76c257b7a0e7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:29.602Z","sequence":42178,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF5CFCF55277CD5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bbe45c2c8fffac40","parentId":"f37071dfe6d50e75","traceId":"000000000000000089754bab8eff0d09","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:29.623Z","sequence":42179,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF5CFCF55277CD5, resource-version: f301e312-7144-4c66-8a91-7240eb074cd8]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bbe45c2c8fffac40","parentId":"f37071dfe6d50e75","traceId":"000000000000000089754bab8eff0d09","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:29.628Z","sequence":42180,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF5CFCF55277CD5, resource-version: 597172b2-e676-4d31-9209-b679770f9599]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bbe45c2c8fffac40","parentId":"f37071dfe6d50e75","traceId":"000000000000000089754bab8eff0d09","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:30.69Z","sequence":42181,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:30.691Z","sequence":42182,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-B595C077D148]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:30.708Z","sequence":42183,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-aab925bb-823f-47f8-92c3-df7b34e5f736, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:30.732Z","sequence":42184,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:30.732Z","sequence":42185,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BB84C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:30.74Z","sequence":42186,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5b5bee66-f6da-41dd-9401-8410855b108d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:30.846Z","sequence":42187,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:30.846Z","sequence":42188,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: B595C077D148]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:30.853Z","sequence":42189,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d4e4209c-8cb5-4268-bf4c-c9f5a2e31098, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:30.86Z","sequence":42190,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:30.861Z","sequence":42191,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF5CFCF55277CD5] for gateway [B595C077D148]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:30.867Z","sequence":42192,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.8.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:30.867Z","sequence":42193,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:31.183Z","sequence":42194,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-54e5d7b8-464b-4962-9532-2cbc32d9fce3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:31.456Z","sequence":42195,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF0D20C62E80050]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f39811211defa24b","parentId":"400fba46d4250983","traceId":"0000000000000000f76f19299f3a3e5f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:31.48Z","sequence":42196,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF0D20C62E80050]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f39811211defa24b","parentId":"400fba46d4250983","traceId":"0000000000000000f76f19299f3a3e5f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:31.671Z","sequence":42197,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:31.671Z","sequence":42198,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 70B3D57BB100126C] for gateway [gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:31.677Z","sequence":42199,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:31.677Z","sequence":42200,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:31.681Z","sequence":42201,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-bba1d144-db05-44f7-aa88-6fc165d4dcbf, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:31.853Z","sequence":42202,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af] wants to open a link [address: Source{address='registration/ineos/d3e0ea5d-5048-4728-b78c-d138e3dc6692', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:31.853Z","sequence":42203,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-14]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:31.853Z","sequence":42204,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@5aacd0fe] for replies to [registration/ineos/d3e0ea5d-5048-4728-b78c-d138e3dc6692]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:31.855Z","sequence":42205,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af] wants to open a link [address: Target{address='registration/ineos', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:31.855Z","sequence":42206,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-15]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:31.856Z","sequence":42207,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:31.858Z","sequence":42208,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:31.858Z","sequence":42209,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 0008004B5135]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:31.864Z","sequence":42210,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-eefe2bf0-3224-4d25-bab6-2e2ed8ef766a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:31.977Z","sequence":42211,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191441]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"faf2fe355c0fb3cf","parentId":"63be90f55ca5ffe6","traceId":"000000000000000042d1fbfc38d13fa3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:31.993Z","sequence":42212,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191441]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"faf2fe355c0fb3cf","parentId":"63be90f55ca5ffe6","traceId":"000000000000000042d1fbfc38d13fa3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:32.466Z","sequence":42213,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: B12454100B3E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1ab08b72f6087c9a","parentId":"55afa504a1d79678","traceId":"0000000000000000a2f8645b3d706798","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:32.485Z","sequence":42214,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: B12454100B3E, resource-version: 235608c7-2cbd-45a4-89b1-8e686dcafe07]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1ab08b72f6087c9a","parentId":"55afa504a1d79678","traceId":"0000000000000000a2f8645b3d706798","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:32.498Z","sequence":42215,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: B12454100B3E, resource-version: 281bc727-ea14-435e-8f25-7f437455b229]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1ab08b72f6087c9a","parentId":"55afa504a1d79678","traceId":"0000000000000000a2f8645b3d706798","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:32.505Z","sequence":42216,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: B12454100B3E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fa52c32668e08e58","parentId":"1e4472742d3dc826","traceId":"0000000000000000a2f8645b3d706798","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:32.719Z","sequence":42217,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: B12454100B3E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fa52c32668e08e58","parentId":"1e4472742d3dc826","traceId":"0000000000000000a2f8645b3d706798","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:32.828Z","sequence":42218,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF50311E42918C9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"30dabd9a59d4f391","parentId":"cb681cd2f0039753","traceId":"0000000000000000037feeeba4e43803","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:32.849Z","sequence":42219,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF50311E42918C9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"30dabd9a59d4f391","parentId":"cb681cd2f0039753","traceId":"0000000000000000037feeeba4e43803","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:32.935Z","sequence":42220,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: CD9778584E0D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9e1c6bc08f59a510","parentId":"f993e6cc9a3344b4","traceId":"0000000000000000a1d9a7e0f740a30c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:32.954Z","sequence":42221,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: CD9778584E0D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9e1c6bc08f59a510","parentId":"f993e6cc9a3344b4","traceId":"0000000000000000a1d9a7e0f740a30c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:33.38Z","sequence":42222,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF9781EFB1AD369]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7d1a529f08134500","parentId":"94e42e51ebb58838","traceId":"000000000000000040d5e7a3e2e29572","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:33.397Z","sequence":42223,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF9781EFB1AD369, resource-version: 1706fdea-0173-4c47-a77a-12c54bff9e1d]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7d1a529f08134500","parentId":"94e42e51ebb58838","traceId":"000000000000000040d5e7a3e2e29572","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:33.403Z","sequence":42224,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF9781EFB1AD369, resource-version: ca3aa26b-56c8-42e8-b1fd-e81bbdd3b7b7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7d1a529f08134500","parentId":"94e42e51ebb58838","traceId":"000000000000000040d5e7a3e2e29572","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:34.081Z","sequence":42225,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: C5E7D94BCA97]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3882fba72a1a8cd8","parentId":"20b88c4caecc1bbc","traceId":"000000000000000002473d7a3820620b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:34.105Z","sequence":42226,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: C5E7D94BCA97, resource-version: 347fd625-e287-491c-9c63-0dfbdf88a8ce]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3882fba72a1a8cd8","parentId":"20b88c4caecc1bbc","traceId":"000000000000000002473d7a3820620b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:34.115Z","sequence":42227,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: C5E7D94BCA97, resource-version: 151ea585-3f26-45f8-9f35-7b59593b19e6]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3882fba72a1a8cd8","parentId":"20b88c4caecc1bbc","traceId":"000000000000000002473d7a3820620b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:34.12Z","sequence":42228,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: C5E7D94BCA97]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"77de556923424cb8","parentId":"899d66863ca3f2e2","traceId":"000000000000000002473d7a3820620b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:34.308Z","sequence":42229,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: C5E7D94BCA97]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"77de556923424cb8","parentId":"899d66863ca3f2e2","traceId":"000000000000000002473d7a3820620b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:34.456Z","sequence":42230,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:34.457Z","sequence":42231,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-B12454100B3E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:34.468Z","sequence":42232,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-0d324ab7-cba4-40e9-844d-5cc1675f58d4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:34.597Z","sequence":42233,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:34.597Z","sequence":42234,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: B12454100B3E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:34.603Z","sequence":42235,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-201505e4-04a4-441f-85e3-24313b2145ca, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:34.607Z","sequence":42236,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:34.607Z","sequence":42237,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF9781EFB1AD369] for gateway [B12454100B3E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:34.613Z","sequence":42238,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:34.613Z","sequence":42239,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:34.853Z","sequence":42240,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF31D88353F7316]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0ea600be045f9ce9","parentId":"9e1d409d65045ebd","traceId":"00000000000000002fa84950a8885670","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:34.885Z","sequence":42241,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF31D88353F7316, resource-version: 2a35cb28-454b-4575-b184-6631374a87cc]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0ea600be045f9ce9","parentId":"9e1d409d65045ebd","traceId":"00000000000000002fa84950a8885670","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:34.897Z","sequence":42242,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF31D88353F7316, resource-version: 975c16e7-956c-4de8-9ae7-193f2d4d9397]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0ea600be045f9ce9","parentId":"9e1d409d65045ebd","traceId":"00000000000000002fa84950a8885670","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:34.998Z","sequence":42243,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-998002ef-cd6f-4448-811f-67e6b38666a0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:34.999Z","sequence":42244,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:34.999Z","sequence":42245,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB100082D] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:35.016Z","sequence":42246,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:35.017Z","sequence":42247,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:35.021Z","sequence":42248,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:35.021Z","sequence":42249,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: chevron]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:35.022Z","sequence":42250,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-81b311ef-39c9-4167-a3a4-c0c2d6824309, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:35.024Z","sequence":42251,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-3fb32a2b-9bb9-4258-b220-14db4c7ff1df, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:35.027Z","sequence":42252,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/chevron:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:35.028Z","sequence":42253,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: chevron, type: hashed-password, auth-id: auth-CHEVRON-ORBIWISE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:35.038Z","sequence":42254,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-8c726410-633c-4223-9d83-a012d8453151, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:35.174Z","sequence":42255,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/chevron:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:35.175Z","sequence":42256,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: chevron, device-id: 70B3D57BB100025B] for gateway [CHEVRON-ORBIWISE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:35.176Z","sequence":42257,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/chevron:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:35.176Z","sequence":42258,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: chevron, device-id: CHEVRON-ORBIWISE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:35.18Z","sequence":42259,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_chevron\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:35.181Z","sequence":42260,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_chevron\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:35.182Z","sequence":42261,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-337dcf7e-81b2-4c39-9a4c-ec2c46eb2412, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:35.184Z","sequence":42262,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-56fa8b9c-78b1-45d2-9884-83255cc3086d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:35.325Z","sequence":42263,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF5CFCF55277CD5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5e0a643641da2a97","parentId":"2a093b4c70ab27bc","traceId":"00000000000000002db3886fe72774af","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:35.342Z","sequence":42264,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF5CFCF55277CD5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5e0a643641da2a97","parentId":"2a093b4c70ab27bc","traceId":"00000000000000002db3886fe72774af","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:35.73Z","sequence":42265,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: B595C077D148]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"36747e7556a9b68c","parentId":"933455fdd04f922c","traceId":"0000000000000000d0990af4bab152ac","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:35.747Z","sequence":42266,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: B595C077D148]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"36747e7556a9b68c","parentId":"933455fdd04f922c","traceId":"0000000000000000d0990af4bab152ac","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:35.754Z","sequence":42267,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:35.754Z","sequence":42268,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BBD1B]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:35.76Z","sequence":42269,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5441db0e-12f5-4e0f-8554-16e34a8cd0e5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:36.053Z","sequence":42270,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:36.053Z","sequence":42271,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-C5E7D94BCA97]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:36.064Z","sequence":42272,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-fa0ff735-1594-45f4-a65d-4a2408a3bb49, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:36.19Z","sequence":42273,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:36.19Z","sequence":42274,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: C5E7D94BCA97]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:36.199Z","sequence":42275,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d42f72bc-3cd2-4ac9-a504-ae14176d32c4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:36.203Z","sequence":42276,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:36.203Z","sequence":42277,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF31D88353F7316] for gateway [C5E7D94BCA97]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:36.208Z","sequence":42278,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:36.208Z","sequence":42279,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:36.386Z","sequence":42280,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4a9aafd4-4ae7-420b-85bd-fcd1d63b2117, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:36.739Z","sequence":42281,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: FEF9326AA779]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ea25149e982a32e1","parentId":"344f54880b398019","traceId":"00000000000000009b97feb0a2ee0d72","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:36.76Z","sequence":42282,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: FEF9326AA779, resource-version: 76d17a04-a2b5-48b8-b25c-17f3b2d1a2d4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ea25149e982a32e1","parentId":"344f54880b398019","traceId":"00000000000000009b97feb0a2ee0d72","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:36.768Z","sequence":42283,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: FEF9326AA779, resource-version: 83f7a3b7-93b1-4de9-8151-698398bc2fad]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ea25149e982a32e1","parentId":"344f54880b398019","traceId":"00000000000000009b97feb0a2ee0d72","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:36.771Z","sequence":42284,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: FEF9326AA779]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0cb04622add996f3","parentId":"34bea4d81675a118","traceId":"00000000000000009b97feb0a2ee0d72","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:36.926Z","sequence":42285,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: FEF9326AA779]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0cb04622add996f3","parentId":"34bea4d81675a118","traceId":"00000000000000009b97feb0a2ee0d72","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:37.475Z","sequence":42286,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFDAD91BC5B0B68]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e3084080794110a1","parentId":"2f212a46d28b3366","traceId":"0000000000000000e59f18d98d912dd0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:37.495Z","sequence":42287,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFDAD91BC5B0B68, resource-version: 064a8bd5-a471-49af-967d-bc3c60ceed3c]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e3084080794110a1","parentId":"2f212a46d28b3366","traceId":"0000000000000000e59f18d98d912dd0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:37.502Z","sequence":42288,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFDAD91BC5B0B68, resource-version: 4dabaa8d-932d-4652-a277-2b2920ddcd1f]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e3084080794110a1","parentId":"2f212a46d28b3366","traceId":"0000000000000000e59f18d98d912dd0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:38.559Z","sequence":42289,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:38.559Z","sequence":42290,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-FEF9326AA779]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:38.569Z","sequence":42291,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-19446420-cac1-4c8c-a209-b7641e912dc3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:38.706Z","sequence":42292,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:38.706Z","sequence":42293,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: FEF9326AA779]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:38.711Z","sequence":42294,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-123aec29-fb6a-4b7f-875a-71249ae1e910, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:38.715Z","sequence":42295,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:38.715Z","sequence":42296,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDAD91BC5B0B68] for gateway [FEF9326AA779]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:38.72Z","sequence":42297,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:38.72Z","sequence":42298,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:38.894Z","sequence":42299,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-88676c16-2a38-4a99-b4bb-8c41b2f06d60, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:43.494Z","sequence":42300,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af] wants to open a link [address: Source{address='registration/arkema/e0699190-ddb5-4f6e-894d-e69c8a39e212', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:43.494Z","sequence":42301,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-16]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:43.494Z","sequence":42302,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@2d66e57] for replies to [registration/arkema/e0699190-ddb5-4f6e-894d-e69c8a39e212]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:43.497Z","sequence":42303,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af] wants to open a link [address: Target{address='registration/arkema', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:43.498Z","sequence":42304,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-17]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:43.498Z","sequence":42305,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:43.5Z","sequence":42306,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/arkema:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:43.5Z","sequence":42307,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: arkema, device-id: 0008004AE119]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:43.513Z","sequence":42308,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e3843f16-d590-4dfc-9ddb-d49161880bcc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:43.516Z","sequence":42309,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:43.517Z","sequence":42310,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: arkema]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:43.523Z","sequence":42311,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-6acdbf50-7eb6-4584-8ff6-054ed8f42bf0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:44.458Z","sequence":42312,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF9781EFB1AD369]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5e4cb2de776a7100","parentId":"c52c30053356b238","traceId":"0000000000000000a6e98aa20b45b2b8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:44.481Z","sequence":42313,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF9781EFB1AD369]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5e4cb2de776a7100","parentId":"c52c30053356b238","traceId":"0000000000000000a6e98aa20b45b2b8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:45.269Z","sequence":42314,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: B12454100B3E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8bb9d66cb6082ad7","parentId":"7d752bfd17c4bd36","traceId":"0000000000000000c02053f8f6205cf8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:45.296Z","sequence":42315,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: B12454100B3E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8bb9d66cb6082ad7","parentId":"7d752bfd17c4bd36","traceId":"0000000000000000c02053f8f6205cf8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:47.132Z","sequence":42316,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:47.132Z","sequence":42317,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B83] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:47.148Z","sequence":42318,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:47.148Z","sequence":42319,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:47.154Z","sequence":42320,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-34095e76-be54-4153-abe8-716a8df0bf56, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:52.428Z","sequence":42321,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 2BECE64A797C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a98ac8d49694871a","parentId":"e55bc7cf4836036d","traceId":"0000000000000000519fb71a63d1cc16","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:52.448Z","sequence":42322,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 2BECE64A797C, resource-version: c8dfc17d-18f9-454c-ad77-73235404b52a]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a98ac8d49694871a","parentId":"e55bc7cf4836036d","traceId":"0000000000000000519fb71a63d1cc16","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:52.455Z","sequence":42323,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 2BECE64A797C, resource-version: 86048a98-96b0-4f1b-93ad-b91d8cc2efd9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a98ac8d49694871a","parentId":"e55bc7cf4836036d","traceId":"0000000000000000519fb71a63d1cc16","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:52.46Z","sequence":42324,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 2BECE64A797C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c34217669d737340","parentId":"bf122c772a6d39d0","traceId":"0000000000000000519fb71a63d1cc16","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:52.709Z","sequence":42325,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 2BECE64A797C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c34217669d737340","parentId":"bf122c772a6d39d0","traceId":"0000000000000000519fb71a63d1cc16","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:52.734Z","sequence":42326,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFDAD91BC5B0B68]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"99e45756b888fb83","parentId":"86d4a0e9469fc34a","traceId":"00000000000000009e5f8a9fc1998575","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:52.764Z","sequence":42327,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFDAD91BC5B0B68]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"99e45756b888fb83","parentId":"86d4a0e9469fc34a","traceId":"00000000000000009e5f8a9fc1998575","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:52.911Z","sequence":42328,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: FEF9326AA779]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2716f78744224a0f","parentId":"c0ef4aaa0d1deb7b","traceId":"0000000000000000cdc1a63cd08ae200","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:52.928Z","sequence":42329,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: FEF9326AA779]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2716f78744224a0f","parentId":"c0ef4aaa0d1deb7b","traceId":"0000000000000000cdc1a63cd08ae200","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:53.519Z","sequence":42330,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFD06CFB29FB85E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"acb4d6bb1e25e614","parentId":"6920b7afa293ad7c","traceId":"0000000000000000ad4e8614d85ba920","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:53.537Z","sequence":42331,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFD06CFB29FB85E, resource-version: 8bbfd255-86b4-4d0a-9200-b4fc69fcc22f]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"acb4d6bb1e25e614","parentId":"6920b7afa293ad7c","traceId":"0000000000000000ad4e8614d85ba920","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:53.544Z","sequence":42332,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFD06CFB29FB85E, resource-version: 3a212c5f-e4de-46a0-8e26-496584d8af91]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"acb4d6bb1e25e614","parentId":"6920b7afa293ad7c","traceId":"0000000000000000ad4e8614d85ba920","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:53.646Z","sequence":42333,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/conditionall:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:53.646Z","sequence":42334,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: conditionall, device-id: 70B3D57BB1000226] for gateway [0008004B512D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:53.651Z","sequence":42335,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_conditionall\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:53.651Z","sequence":42336,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_conditionall\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:53.657Z","sequence":42337,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6afb6855-d249-43bd-851f-38462b85c393, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:54.088Z","sequence":42338,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFD06CFB29FB85E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"30c30fb8613ee356","parentId":"b8bf4867cfe89d97","traceId":"0000000000000000a9f77a79be4cd4fd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:54.14Z","sequence":42339,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFD06CFB29FB85E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"30c30fb8613ee356","parentId":"b8bf4867cfe89d97","traceId":"0000000000000000a9f77a79be4cd4fd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:56.044Z","sequence":42340,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 2BECE64A797C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"66d33596c3ef38b5","parentId":"9297bb2f380f6086","traceId":"0000000000000000db63f9f81fb319f1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:56.049Z","sequence":42341,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF31D88353F7316]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2afc42fd50370910","parentId":"1e330e5a4154d9bb","traceId":"0000000000000000a2311133fd976d6b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:56.064Z","sequence":42342,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 2BECE64A797C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"66d33596c3ef38b5","parentId":"9297bb2f380f6086","traceId":"0000000000000000db63f9f81fb319f1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:56.066Z","sequence":42343,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF31D88353F7316]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2afc42fd50370910","parentId":"1e330e5a4154d9bb","traceId":"0000000000000000a2311133fd976d6b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:56.23Z","sequence":42344,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: C5E7D94BCA97]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3bbac1d2e9d10bab","parentId":"af11f2b585860bab","traceId":"0000000000000000d34c61f86be49842","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:56.248Z","sequence":42345,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: C5E7D94BCA97]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3bbac1d2e9d10bab","parentId":"af11f2b585860bab","traceId":"0000000000000000d34c61f86be49842","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:56.894Z","sequence":42346,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191449]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a2b06c30cd28e94d","parentId":"941f9d457fab0aea","traceId":"00000000000000005247c61a77a85237","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:56.924Z","sequence":42347,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191449, resource-version: f886820c-50fc-4359-991a-012b81b81e2d]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a2b06c30cd28e94d","parentId":"941f9d457fab0aea","traceId":"00000000000000005247c61a77a85237","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:56.933Z","sequence":42348,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191449, resource-version: 6a4d4143-e67a-47ba-ae6f-70b3e201db44]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a2b06c30cd28e94d","parentId":"941f9d457fab0aea","traceId":"00000000000000005247c61a77a85237","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:56.936Z","sequence":42349,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191449]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ffb86a88125345f4","parentId":"834cb77462aee1f3","traceId":"00000000000000005247c61a77a85237","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:57.114Z","sequence":42350,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191449]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ffb86a88125345f4","parentId":"834cb77462aee1f3","traceId":"00000000000000005247c61a77a85237","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:57.153Z","sequence":42351,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191450]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"16ac58d7a7f3afcb","parentId":"a54b7470f51dd68c","traceId":"00000000000000008fb9786f369e130f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:57.192Z","sequence":42352,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191450, resource-version: 72f53070-ce5a-4d85-8243-d3b721a49eec]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"16ac58d7a7f3afcb","parentId":"a54b7470f51dd68c","traceId":"00000000000000008fb9786f369e130f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:57.199Z","sequence":42353,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191450, resource-version: 3ad209f8-ad54-4467-8655-64be23730a2f]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"16ac58d7a7f3afcb","parentId":"a54b7470f51dd68c","traceId":"00000000000000008fb9786f369e130f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:57.205Z","sequence":42354,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191450]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2c35c9e4c30e24ee","parentId":"5e10c6fcd7cdf59b","traceId":"00000000000000008fb9786f369e130f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:57.388Z","sequence":42355,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191450]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2c35c9e4c30e24ee","parentId":"5e10c6fcd7cdf59b","traceId":"00000000000000008fb9786f369e130f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:57.412Z","sequence":42356,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF0A0A169E632FD]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8ffe42c4a2386241","parentId":"1cadcdde3f8c8308","traceId":"0000000000000000f532ea40d5f48012","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:57.43Z","sequence":42357,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF0A0A169E632FD, resource-version: 4a253b4d-8569-4239-9400-68c30f03d2f5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8ffe42c4a2386241","parentId":"1cadcdde3f8c8308","traceId":"0000000000000000f532ea40d5f48012","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:57.437Z","sequence":42358,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF0A0A169E632FD, resource-version: 65209111-6e60-4361-8637-b99432a5d21a]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8ffe42c4a2386241","parentId":"1cadcdde3f8c8308","traceId":"0000000000000000f532ea40d5f48012","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:57.72Z","sequence":42359,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF24366AE61219E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0048888fc4657548","parentId":"ae6caf3b809b5c07","traceId":"00000000000000005474f407b3739f2a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:57.737Z","sequence":42360,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF24366AE61219E, resource-version: fe76c448-d282-4f5a-95a5-7a595dd836a3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0048888fc4657548","parentId":"ae6caf3b809b5c07","traceId":"00000000000000005474f407b3739f2a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:57.765Z","sequence":42361,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF24366AE61219E, resource-version: ea93ad11-e4aa-4e10-b12e-d9be37fab12f]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0048888fc4657548","parentId":"ae6caf3b809b5c07","traceId":"00000000000000005474f407b3739f2a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:58.669Z","sequence":42362,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:58.669Z","sequence":42363,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191449]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:58.68Z","sequence":42364,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-23ef7715-662c-4f3c-8a70-95988fb5b180, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:58.807Z","sequence":42365,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:58.807Z","sequence":42366,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF0A0A169E632FD] for gateway [gateway_integrationtest_network_191449]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:58.808Z","sequence":42367,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:58.808Z","sequence":42368,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191449]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:58.814Z","sequence":42369,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c45c9f94-86e6-416b-a4dc-e0c7756064fc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:58.815Z","sequence":42370,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:58.815Z","sequence":42371,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:58.838Z","sequence":42372,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:58.838Z","sequence":42373,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191450]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:59.16Z","sequence":42374,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-45998e39-f7de-4c4d-8f77-391c6db9a28b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:59.165Z","sequence":42375,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-26bf9516-ce20-4053-930b-26d817e97c21, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:59.303Z","sequence":42376,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:59.303Z","sequence":42377,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF24366AE61219E] for gateway [gateway_integrationtest_network_191450]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:59.304Z","sequence":42378,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:59.304Z","sequence":42379,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191450]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:59.321Z","sequence":42380,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.8.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:59.321Z","sequence":42381,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:59.322Z","sequence":42382,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-44622a0b-3fcd-4406-9e19-c57384e04f04, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:01:59.724Z","sequence":42383,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f1c9f5ec-03fc-4e70-a6f0-d89c07e5e1aa, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:02.053Z","sequence":42384,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:02.053Z","sequence":42385,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001E1] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:02.069Z","sequence":42386,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:02.069Z","sequence":42387,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001E1] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:02.087Z","sequence":42388,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:02.087Z","sequence":42389,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:02.097Z","sequence":42390,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:02.097Z","sequence":42391,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:02.109Z","sequence":42392,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-82b56810-333d-4f21-b960-c2d9b028533b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:02.117Z","sequence":42393,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ffa4b0b1-a6e7-4f1c-97de-21b34277f2c8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:03.093Z","sequence":42394,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/terega:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:03.093Z","sequence":42395,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: terega, device-id: 70B3D57BB1000091] for gateway [gateway_terega_network_27]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:03.097Z","sequence":42396,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/terega:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:03.097Z","sequence":42397,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: terega, device-id: gateway_terega_network_27]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:03.109Z","sequence":42398,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9b27c9c6-ff31-4817-bde7-07707a1a2513, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:03.109Z","sequence":42399,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_terega\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:03.109Z","sequence":42400,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_terega\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:03.12Z","sequence":42401,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5af81239-1452-4e42-b4ce-4d0f1e77d4a6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:03.277Z","sequence":42402,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF0A0A169E632FD]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"76b3bfa04ae0e3f3","parentId":"8c9cbf47de867d5d","traceId":"00000000000000004bcf9ab5eed66f14","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:03.297Z","sequence":42403,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF0A0A169E632FD]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"76b3bfa04ae0e3f3","parentId":"8c9cbf47de867d5d","traceId":"00000000000000004bcf9ab5eed66f14","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:03.743Z","sequence":42404,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191449]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c1f821247a5e52fa","parentId":"83a180002472ab8d","traceId":"0000000000000000a775cba0d4bffc6e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:03.765Z","sequence":42405,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191449]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c1f821247a5e52fa","parentId":"83a180002472ab8d","traceId":"0000000000000000a775cba0d4bffc6e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:05.204Z","sequence":42406,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 00EDD0C2C87A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0d1c8e68be22274e","parentId":"e34d414d47d10499","traceId":"0000000000000000dc282d2312950335","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:05.229Z","sequence":42407,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 00EDD0C2C87A, resource-version: da2752ac-6a58-418a-bed1-f28f7e0fcc47]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0d1c8e68be22274e","parentId":"e34d414d47d10499","traceId":"0000000000000000dc282d2312950335","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:05.237Z","sequence":42408,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 00EDD0C2C87A, resource-version: 048cd234-a02d-4655-8574-e56580d171fe]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0d1c8e68be22274e","parentId":"e34d414d47d10499","traceId":"0000000000000000dc282d2312950335","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:05.241Z","sequence":42409,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 00EDD0C2C87A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f2d4e47e8142ebde","parentId":"087ccb240f636ad5","traceId":"0000000000000000dc282d2312950335","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:05.26Z","sequence":42410,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191452]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"72c3a08d124865dd","parentId":"bca9a96b90463fa8","traceId":"00000000000000009401f56f33021693","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:05.308Z","sequence":42411,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191452, resource-version: 425ed477-ef98-4c1e-bf21-62fd4c2b9393]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"72c3a08d124865dd","parentId":"bca9a96b90463fa8","traceId":"00000000000000009401f56f33021693","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:05.329Z","sequence":42412,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191452, resource-version: 8e65bb05-7447-446c-9613-1d7a67434d52]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"72c3a08d124865dd","parentId":"bca9a96b90463fa8","traceId":"00000000000000009401f56f33021693","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:05.34Z","sequence":42413,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191452]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e6762a5484d057d1","parentId":"8d167ca11e90ca83","traceId":"00000000000000009401f56f33021693","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:05.482Z","sequence":42414,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 00EDD0C2C87A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f2d4e47e8142ebde","parentId":"087ccb240f636ad5","traceId":"0000000000000000dc282d2312950335","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:05.666Z","sequence":42415,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191452]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e6762a5484d057d1","parentId":"8d167ca11e90ca83","traceId":"00000000000000009401f56f33021693","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:06.327Z","sequence":42416,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF791B5CB0F1814]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"36a4a09dc61e91bd","parentId":"e2a47597b41d0d77","traceId":"0000000000000000e6e0bdac72b94046","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:06.346Z","sequence":42417,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF791B5CB0F1814, resource-version: e0c81eb2-0c30-4817-a0d4-b82d468dccd1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"36a4a09dc61e91bd","parentId":"e2a47597b41d0d77","traceId":"0000000000000000e6e0bdac72b94046","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:06.354Z","sequence":42418,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF791B5CB0F1814, resource-version: 84dac972-6257-4f96-bf89-ba2fd16a34b4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"36a4a09dc61e91bd","parentId":"e2a47597b41d0d77","traceId":"0000000000000000e6e0bdac72b94046","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:06.519Z","sequence":42419,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF791B5CB0F1814]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9ec31fc497edc30b","parentId":"dbd1fdb07f1c2db0","traceId":"00000000000000006530c97edf54e87b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:06.538Z","sequence":42420,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF791B5CB0F1814]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"9ec31fc497edc30b","parentId":"dbd1fdb07f1c2db0","traceId":"00000000000000006530c97edf54e87b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:06.716Z","sequence":42421,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFCCC7627959EB2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"85bc8f9d7182b07e","parentId":"d26bb793d3e5e2b8","traceId":"00000000000000008cff028a9e8781bc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:06.746Z","sequence":42422,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFCCC7627959EB2, resource-version: cbb51cd1-7863-45a2-8f33-b37f99b626b7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"85bc8f9d7182b07e","parentId":"d26bb793d3e5e2b8","traceId":"00000000000000008cff028a9e8781bc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:06.754Z","sequence":42423,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFCCC7627959EB2, resource-version: ad69f9bd-6188-4ce1-af84-4f4a656676ab]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"85bc8f9d7182b07e","parentId":"d26bb793d3e5e2b8","traceId":"00000000000000008cff028a9e8781bc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:07.042Z","sequence":42424,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191453]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"144e05694e9408d6","parentId":"c963cfa089698175","traceId":"00000000000000009fb3cf010215c402","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:07.064Z","sequence":42425,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191453, resource-version: 34499f6c-7d3e-439a-87de-f33b8d5e5e43]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"144e05694e9408d6","parentId":"c963cfa089698175","traceId":"00000000000000009fb3cf010215c402","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:07.071Z","sequence":42426,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191453, resource-version: e550815c-67cc-4ee2-bce7-9c80bf4f2875]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"144e05694e9408d6","parentId":"c963cfa089698175","traceId":"00000000000000009fb3cf010215c402","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:07.076Z","sequence":42427,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191453]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c349bdcc274651b5","parentId":"913f862c098b7d0e","traceId":"00000000000000009fb3cf010215c402","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:07.311Z","sequence":42428,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 00EDD0C2C87A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d7d9f5c447bf769e","parentId":"a4be7bb895a84535","traceId":"0000000000000000d13dd7d2e60a6fe8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:07.351Z","sequence":42429,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 00EDD0C2C87A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d7d9f5c447bf769e","parentId":"a4be7bb895a84535","traceId":"0000000000000000d13dd7d2e60a6fe8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:07.356Z","sequence":42430,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191453]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c349bdcc274651b5","parentId":"913f862c098b7d0e","traceId":"00000000000000009fb3cf010215c402","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:07.821Z","sequence":42431,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:07.821Z","sequence":42432,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191452]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:07.832Z","sequence":42433,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-6158cdb7-88a3-4d7a-9a77-f2c7f00d8787, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:07.955Z","sequence":42434,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:07.955Z","sequence":42435,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCCC7627959EB2] for gateway [gateway_integrationtest_network_191452]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:07.956Z","sequence":42436,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:07.956Z","sequence":42437,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191452]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:07.964Z","sequence":42438,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:07.964Z","sequence":42439,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:07.964Z","sequence":42440,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-fb048035-686b-4ae3-b823-d0ee975aad69, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:07.969Z","sequence":42441,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFB7DB2F26D8AD8]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"69636471979c4b39","parentId":"14fd20e55ac4a1f8","traceId":"00000000000000000fa6f5da9e2323b6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:08.024Z","sequence":42442,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFB7DB2F26D8AD8, resource-version: 622a53cf-9989-4d1d-9468-09ea41550d37]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"69636471979c4b39","parentId":"14fd20e55ac4a1f8","traceId":"00000000000000000fa6f5da9e2323b6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:08.036Z","sequence":42443,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFB7DB2F26D8AD8, resource-version: 5ce1ce90-45bc-4844-b661-46b2b27f23a6]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"69636471979c4b39","parentId":"14fd20e55ac4a1f8","traceId":"00000000000000000fa6f5da9e2323b6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:08.413Z","sequence":42444,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-bfd328a2-279f-48c3-8bd9-754967893926, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:08.448Z","sequence":42445,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:08.448Z","sequence":42446,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A78] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:08.463Z","sequence":42447,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:08.463Z","sequence":42448,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:08.469Z","sequence":42449,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8f13aefc-0798-4d24-b243-84da538aed96, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:09.399Z","sequence":42450,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:09.399Z","sequence":42451,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191453]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:09.409Z","sequence":42452,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-87ad7d0c-0fb6-465c-9485-5aef858ef147, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:09.559Z","sequence":42453,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:09.559Z","sequence":42454,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFB7DB2F26D8AD8] for gateway [gateway_integrationtest_network_191453]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:09.56Z","sequence":42455,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:09.56Z","sequence":42456,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191453]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:09.565Z","sequence":42457,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:09.565Z","sequence":42458,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:09.566Z","sequence":42459,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8fb17249-6f72-456c-80f4-a8124b52ad57, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:10.166Z","sequence":42460,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4ef8d1db-7d5a-4f81-9519-e77730fab4bd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:10.167Z","sequence":42461,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:10.167Z","sequence":42462,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100016B] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:10.168Z","sequence":42463,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:10.168Z","sequence":42464,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100016B] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:10.173Z","sequence":42465,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:10.173Z","sequence":42466,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:10.174Z","sequence":42467,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:10.174Z","sequence":42468,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:10.176Z","sequence":42469,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0a707478-8210-44e9-b71b-ce32df44133b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:10.177Z","sequence":42470,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-712c0b58-e56f-4f93-8052-edb1720bbbe0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:10.27Z","sequence":42471,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF24366AE61219E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"96028f66bf015b0b","parentId":"109bfc570c28dd98","traceId":"0000000000000000eb8703d89a2ca6bc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:10.308Z","sequence":42472,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF24366AE61219E]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"96028f66bf015b0b","parentId":"109bfc570c28dd98","traceId":"0000000000000000eb8703d89a2ca6bc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:11.235Z","sequence":42473,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191450]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2ec2d061691a13b6","parentId":"a7caac882e0e2861","traceId":"000000000000000052a879be3754fb3d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:11.253Z","sequence":42474,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191450]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2ec2d061691a13b6","parentId":"a7caac882e0e2861","traceId":"000000000000000052a879be3754fb3d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:12.115Z","sequence":42475,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191454]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"09c1ba2222fcf379","parentId":"c0905f3ff422d9db","traceId":"0000000000000000646d3ac269f4fa48","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:12.131Z","sequence":42476,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191454, resource-version: 288c2ae4-634a-4d7b-962a-d8ea56ccace7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"09c1ba2222fcf379","parentId":"c0905f3ff422d9db","traceId":"0000000000000000646d3ac269f4fa48","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:12.138Z","sequence":42477,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191454, resource-version: 40dfde97-2b29-4155-9fca-f04a79e4b1d7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"09c1ba2222fcf379","parentId":"c0905f3ff422d9db","traceId":"0000000000000000646d3ac269f4fa48","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:12.141Z","sequence":42478,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191454]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ee7851ef4e7da0df","parentId":"f91f5d1e3b019ee2","traceId":"0000000000000000646d3ac269f4fa48","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:12.298Z","sequence":42479,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191454]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ee7851ef4e7da0df","parentId":"f91f5d1e3b019ee2","traceId":"0000000000000000646d3ac269f4fa48","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:12.909Z","sequence":42480,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 3B7BA7B97891]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"090b52ffe91d4f78","parentId":"37f44605b87dc27e","traceId":"0000000000000000c51ceb8c29a38cdd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:12.925Z","sequence":42481,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 3B7BA7B97891, resource-version: f786d740-8d54-4a6e-a5cc-3cdbd0242961]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"090b52ffe91d4f78","parentId":"37f44605b87dc27e","traceId":"0000000000000000c51ceb8c29a38cdd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:12.931Z","sequence":42482,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 3B7BA7B97891, resource-version: b0f6802a-08a9-47b7-9847-7ce099944981]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"090b52ffe91d4f78","parentId":"37f44605b87dc27e","traceId":"0000000000000000c51ceb8c29a38cdd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:12.934Z","sequence":42483,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 3B7BA7B97891]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cb07128875dd5f69","parentId":"d3cf4c9ac29278c7","traceId":"0000000000000000c51ceb8c29a38cdd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:13.142Z","sequence":42484,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 3B7BA7B97891]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cb07128875dd5f69","parentId":"d3cf4c9ac29278c7","traceId":"0000000000000000c51ceb8c29a38cdd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:13.453Z","sequence":42485,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF39B9144DA928B]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"15be7e5ce99d74e0","parentId":"5164d006a3072851","traceId":"0000000000000000833e969b4df8d417","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:13.472Z","sequence":42486,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF39B9144DA928B, resource-version: e0d37dbf-64a8-4020-879e-8f3ef7988983]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"15be7e5ce99d74e0","parentId":"5164d006a3072851","traceId":"0000000000000000833e969b4df8d417","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:13.478Z","sequence":42487,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF39B9144DA928B, resource-version: 9dc9c3d7-beee-49ea-b64d-637166f613b2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"15be7e5ce99d74e0","parentId":"5164d006a3072851","traceId":"0000000000000000833e969b4df8d417","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:13.837Z","sequence":42488,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF37AD3BF052830]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"eedba7466b8f60f1","parentId":"4250d2fc0206e8ff","traceId":"000000000000000000e3949a3d7b595b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:13.855Z","sequence":42489,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF37AD3BF052830, resource-version: 2f271856-e120-416e-9a8a-59ccdff25a6a]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"eedba7466b8f60f1","parentId":"4250d2fc0206e8ff","traceId":"000000000000000000e3949a3d7b595b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:13.86Z","sequence":42490,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF37AD3BF052830, resource-version: 63738236-f0ea-4495-9c64-3d2a0baa7fbe]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"eedba7466b8f60f1","parentId":"4250d2fc0206e8ff","traceId":"000000000000000000e3949a3d7b595b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:14.367Z","sequence":42491,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:14.367Z","sequence":42492,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: flint]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:14.376Z","sequence":42493,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-59443e9c-0875-4696-82a4-c0c4440cabf6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:14.381Z","sequence":42494,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/flint:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:14.381Z","sequence":42495,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: flint, type: hashed-password, auth-id: auth-flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:14.389Z","sequence":42496,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/flint:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:14.39Z","sequence":42497,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: flint, type: hashed-password, auth-id: auth-flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:14.393Z","sequence":42498,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-c429bb56-4186-472b-9f44-f046e6e69799, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:14.4Z","sequence":42499,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-f4b1183e-a82e-4575-9567-7327d35e5303, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:14.626Z","sequence":42500,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:14.627Z","sequence":42501,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191454]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:14.64Z","sequence":42502,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-23f0c939-bd65-4aa3-91cf-421a4f4b6861, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:14.697Z","sequence":42503,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:14.697Z","sequence":42504,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10007D3] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:14.705Z","sequence":42505,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:14.705Z","sequence":42506,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:14.709Z","sequence":42507,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ed8c1214-168e-40e5-a00f-d5b33401f50a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:14.861Z","sequence":42508,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:14.861Z","sequence":42509,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF39B9144DA928B] for gateway [gateway_integrationtest_network_191454]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:14.862Z","sequence":42510,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:14.862Z","sequence":42511,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191454]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:14.875Z","sequence":42512,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1c6958e9-7a31-4f9e-9a41-0bceb6cee674, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:14.876Z","sequence":42513,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:14.876Z","sequence":42514,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:14.92Z","sequence":42515,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:14.921Z","sequence":42516,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-3B7BA7B97891]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:15.346Z","sequence":42517,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-28217e58-23c6-490e-8655-3640b686bbf7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:15.365Z","sequence":42518,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-ea08e599-0cde-4990-885c-c069ec8a265d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:15.513Z","sequence":42519,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:15.513Z","sequence":42520,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 3B7BA7B97891]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:15.529Z","sequence":42521,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b8d1c724-ee9c-4fff-981b-383ad0a52dd2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:15.536Z","sequence":42522,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:15.537Z","sequence":42523,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF37AD3BF052830] for gateway [3B7BA7B97891]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:15.553Z","sequence":42524,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.5.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:15.553Z","sequence":42525,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:16.296Z","sequence":42526,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-abcde3a6-90b7-4995-b65a-d07059bf683b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:16.305Z","sequence":42527,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:16.305Z","sequence":42528,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF37AD3BF052830] for gateway [3B7BA7B97891]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:16.325Z","sequence":42529,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.5.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:16.325Z","sequence":42530,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:16.97Z","sequence":42531,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ca14f1e5-a2bf-4dba-a781-8a844e01c651, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:20.526Z","sequence":42532,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFB7DB2F26D8AD8]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ea3bdfabf42d0d8e","parentId":"9e641abe6e1753d0","traceId":"00000000000000009cd9790742dd0d80","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:20.561Z","sequence":42533,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFB7DB2F26D8AD8]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ea3bdfabf42d0d8e","parentId":"9e641abe6e1753d0","traceId":"00000000000000009cd9790742dd0d80","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:20.573Z","sequence":42534,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFCCC7627959EB2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4cd88f4296a98cc4","parentId":"31872dc005d5e12b","traceId":"0000000000000000548f36e2f9e14ae7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:20.625Z","sequence":42535,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFCCC7627959EB2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4cd88f4296a98cc4","parentId":"31872dc005d5e12b","traceId":"0000000000000000548f36e2f9e14ae7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:21.449Z","sequence":42536,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191452]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"32080a4ba0b6b783","parentId":"1c97b91627e7b52f","traceId":"0000000000000000129844b17cc9df0d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:21.471Z","sequence":42537,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191452]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"32080a4ba0b6b783","parentId":"1c97b91627e7b52f","traceId":"0000000000000000129844b17cc9df0d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:21.717Z","sequence":42538,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191453]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"665ce4fe417f24ce","parentId":"d9804d5ac1028757","traceId":"00000000000000006584f404b9409dc1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:21.735Z","sequence":42539,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191453]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"665ce4fe417f24ce","parentId":"d9804d5ac1028757","traceId":"00000000000000006584f404b9409dc1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:21.997Z","sequence":42540,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 6D0E067D7C27]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4712dbae6b8f4844","parentId":"80d1a822bd2b761a","traceId":"0000000000000000deb4501664d35ba8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:22.019Z","sequence":42541,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 6D0E067D7C27, resource-version: 699f1aa8-1f3b-4733-8a45-6f817d366ad1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4712dbae6b8f4844","parentId":"80d1a822bd2b761a","traceId":"0000000000000000deb4501664d35ba8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:22.026Z","sequence":42542,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 6D0E067D7C27, resource-version: 9f6d0be2-412b-4823-a867-f28db5364cc4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4712dbae6b8f4844","parentId":"80d1a822bd2b761a","traceId":"0000000000000000deb4501664d35ba8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:22.031Z","sequence":42543,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 6D0E067D7C27]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"14988cb01bc6c1d3","parentId":"a272c3d4e9d3d353","traceId":"0000000000000000deb4501664d35ba8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:22.24Z","sequence":42544,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 6D0E067D7C27]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"14988cb01bc6c1d3","parentId":"a272c3d4e9d3d353","traceId":"0000000000000000deb4501664d35ba8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:22.333Z","sequence":42545,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 9E5D37C23150]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d521e75ca80b1540","parentId":"91b840d149ae36a1","traceId":"0000000000000000cd5a9b3916010a45","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:22.351Z","sequence":42546,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 9E5D37C23150, resource-version: 60a1ad4e-b1d0-49e6-a3ce-fc604568296a]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d521e75ca80b1540","parentId":"91b840d149ae36a1","traceId":"0000000000000000cd5a9b3916010a45","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:22.358Z","sequence":42547,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 9E5D37C23150, resource-version: 57f8db2f-9bfc-4976-af8f-9c7e96e9b678]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d521e75ca80b1540","parentId":"91b840d149ae36a1","traceId":"0000000000000000cd5a9b3916010a45","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:22.361Z","sequence":42548,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 9E5D37C23150]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"83bbb12618a43ddd","parentId":"7672523b71b118ef","traceId":"0000000000000000cd5a9b3916010a45","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:22.589Z","sequence":42549,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 9E5D37C23150]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"83bbb12618a43ddd","parentId":"7672523b71b118ef","traceId":"0000000000000000cd5a9b3916010a45","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:22.933Z","sequence":42550,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF0AB7D88CDE016]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"db0aaa4ded56a35e","parentId":"38832528a8bfa228","traceId":"000000000000000053996f8589cb4e60","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:22.955Z","sequence":42551,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF0AB7D88CDE016, resource-version: e8c3ea27-7cc5-471d-9fed-dd1360ecaa03]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"db0aaa4ded56a35e","parentId":"38832528a8bfa228","traceId":"000000000000000053996f8589cb4e60","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:22.962Z","sequence":42552,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF0AB7D88CDE016, resource-version: dba07fc5-1a18-4abf-93e6-005e18c4f0da]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"db0aaa4ded56a35e","parentId":"38832528a8bfa228","traceId":"000000000000000053996f8589cb4e60","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:23.181Z","sequence":42553,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF1D856285B946F]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1af492f3804ac80b","parentId":"242078124f45f48d","traceId":"00000000000000009e4d975a57e7e221","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:23.214Z","sequence":42554,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF1D856285B946F, resource-version: 31631d10-81e5-4c15-a34b-dde914f8c286]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1af492f3804ac80b","parentId":"242078124f45f48d","traceId":"00000000000000009e4d975a57e7e221","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:23.221Z","sequence":42555,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF1D856285B946F, resource-version: e6354dd3-c48f-4910-870f-2cac64f06733]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1af492f3804ac80b","parentId":"242078124f45f48d","traceId":"00000000000000009e4d975a57e7e221","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:24.016Z","sequence":42556,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:24.017Z","sequence":42557,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-9E5D37C23150]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:24.049Z","sequence":42558,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-6961a786-83cd-45bc-85da-0f02e4add321, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:24.172Z","sequence":42559,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:24.172Z","sequence":42560,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 9E5D37C23150]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:24.179Z","sequence":42561,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3e46262f-5f49-4381-a088-20b5cd87bf7f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:24.183Z","sequence":42562,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:24.183Z","sequence":42563,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF0AB7D88CDE016] for gateway [9E5D37C23150]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:24.189Z","sequence":42564,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.8.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:24.189Z","sequence":42565,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:24.583Z","sequence":42566,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b18a66bd-a7ba-418a-87ae-0376a531075f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:24.584Z","sequence":42567,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:24.584Z","sequence":42568,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-6D0E067D7C27]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:24.598Z","sequence":42569,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-c2c82f86-62d3-44f9-8e57-a34bc1e93615, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:24.741Z","sequence":42570,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:24.741Z","sequence":42571,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 6D0E067D7C27]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:24.749Z","sequence":42572,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d8b63ef6-51f2-46a4-ab2b-6f76ab1dfdee, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:24.753Z","sequence":42573,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:24.753Z","sequence":42574,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF1D856285B946F] for gateway [6D0E067D7C27]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:24.759Z","sequence":42575,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.3.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:24.759Z","sequence":42576,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:25.36Z","sequence":42577,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5541d4d7-3885-48a2-918d-8aa410675ea2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:25.364Z","sequence":42578,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:25.364Z","sequence":42579,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF1D856285B946F] for gateway [6D0E067D7C27]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:25.386Z","sequence":42580,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.3.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:25.389Z","sequence":42581,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:26.008Z","sequence":42582,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-025dd402-63dd-4fac-b684-17007120bcb7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:26.657Z","sequence":42583,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:26.657Z","sequence":42584,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:26.663Z","sequence":42585,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ebf3aaad-c1f3-4648-9666-9cbf879ffe70, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:26.666Z","sequence":42586,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:26.666Z","sequence":42587,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: ineos]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:26.669Z","sequence":42588,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-0ef20732-0d0a-421b-87cd-afc3c8cda233, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:27.661Z","sequence":42589,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:27.662Z","sequence":42590,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006A3] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:27.667Z","sequence":42591,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:27.667Z","sequence":42592,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:27.674Z","sequence":42593,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d0db2ed1-b810-4762-983e-33d662f07d60, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:28.487Z","sequence":42594,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:28.487Z","sequence":42595,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10009BB] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:28.502Z","sequence":42596,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:28.502Z","sequence":42597,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:28.508Z","sequence":42598,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3a9ea99f-395f-424f-8594-9502ff474d7a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:30.843Z","sequence":42599,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF39B9144DA928B]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a805f18360a65f00","parentId":"5cf6b5a6ad7090ce","traceId":"000000000000000033f76a48d009191c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:30.865Z","sequence":42600,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF39B9144DA928B]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a805f18360a65f00","parentId":"5cf6b5a6ad7090ce","traceId":"000000000000000033f76a48d009191c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:31.009Z","sequence":42601,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191454]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"906431634d2f5689","parentId":"bc9547342df02ff3","traceId":"000000000000000013ea9d4201f56b85","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:31.022Z","sequence":42602,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191454]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"906431634d2f5689","parentId":"bc9547342df02ff3","traceId":"000000000000000013ea9d4201f56b85","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:31.776Z","sequence":42603,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: FFA057224E76]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ae20cf6fe4a65088","parentId":"ea02c29b321bb669","traceId":"000000000000000049c6186926961160","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:31.798Z","sequence":42604,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: FFA057224E76, resource-version: fa78d48f-50e1-4ea8-ad00-af2a40d723d8]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ae20cf6fe4a65088","parentId":"ea02c29b321bb669","traceId":"000000000000000049c6186926961160","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:31.808Z","sequence":42605,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: FFA057224E76, resource-version: 4a8dc97b-8be6-408a-a50d-b8c0ae4d41ec]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ae20cf6fe4a65088","parentId":"ea02c29b321bb669","traceId":"000000000000000049c6186926961160","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:31.811Z","sequence":42606,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: FFA057224E76]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"705dfe82e52116be","parentId":"aa2d36f9cbd1cdc7","traceId":"000000000000000049c6186926961160","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:31.936Z","sequence":42607,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: FFA057224E76]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"705dfe82e52116be","parentId":"aa2d36f9cbd1cdc7","traceId":"000000000000000049c6186926961160","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:32.533Z","sequence":42608,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF7C6F2B82D9C17]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5778916d80dc7a66","parentId":"18dad80a41007524","traceId":"00000000000000000382051b6d006149","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:32.552Z","sequence":42609,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF7C6F2B82D9C17, resource-version: 06a20f3e-f9c2-48ea-8d5c-62cb3e19ee06]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5778916d80dc7a66","parentId":"18dad80a41007524","traceId":"00000000000000000382051b6d006149","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:32.558Z","sequence":42610,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF7C6F2B82D9C17, resource-version: 31196c2d-3c40-4b2a-ac8a-63fb52241b87]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5778916d80dc7a66","parentId":"18dad80a41007524","traceId":"00000000000000000382051b6d006149","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:32.678Z","sequence":42611,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF1D856285B946F]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e12dfd2ebd65328e","parentId":"ec7237d2e609a3ed","traceId":"000000000000000099d99938cf3c7fcf","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:32.697Z","sequence":42612,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF1D856285B946F]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e12dfd2ebd65328e","parentId":"ec7237d2e609a3ed","traceId":"000000000000000099d99938cf3c7fcf","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:33.026Z","sequence":42613,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 6D0E067D7C27]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"248c279ada10696a","parentId":"021cb64ed81d63b8","traceId":"0000000000000000bf17d7adf1029e21","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:33.042Z","sequence":42614,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 6D0E067D7C27]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"248c279ada10696a","parentId":"021cb64ed81d63b8","traceId":"0000000000000000bf17d7adf1029e21","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:33.589Z","sequence":42615,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: FFB92E785745]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"15ece440677909ae","parentId":"4a8861337622ff2e","traceId":"00000000000000002a7a38f31585e1fa","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:33.609Z","sequence":42616,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: FFB92E785745, resource-version: 3c11d57b-0a02-444b-a62a-c645bdcb17f5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"15ece440677909ae","parentId":"4a8861337622ff2e","traceId":"00000000000000002a7a38f31585e1fa","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:33.615Z","sequence":42617,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: FFB92E785745, resource-version: c5433513-8876-45fd-b645-7afcf4a371b6]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"15ece440677909ae","parentId":"4a8861337622ff2e","traceId":"00000000000000002a7a38f31585e1fa","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:33.621Z","sequence":42618,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: FFB92E785745]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f62dd8ff81b51780","parentId":"92689d16a7512794","traceId":"00000000000000002a7a38f31585e1fa","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:33.625Z","sequence":42619,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:33.625Z","sequence":42620,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-FFA057224E76]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:33.625Z","sequence":42621,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:33.626Z","sequence":42622,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-FFA057224E76]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:33.637Z","sequence":42623,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-2f20c401-ea2f-411e-a0f8-f5a89b44e145, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:33.64Z","sequence":42624,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-df0a0597-ce23-4e7f-84f5-728ffc97673a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:33.747Z","sequence":42625,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: FFB92E785745]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f62dd8ff81b51780","parentId":"92689d16a7512794","traceId":"00000000000000002a7a38f31585e1fa","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:33.904Z","sequence":42626,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:33.904Z","sequence":42627,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: FFA057224E76]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:33.909Z","sequence":42628,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2d2dcf1e-8dd6-467e-8c52-5a686ad09e28, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:33.919Z","sequence":42629,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:33.919Z","sequence":42630,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF7C6F2B82D9C17] for gateway [FFA057224E76]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:33.922Z","sequence":42631,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:33.922Z","sequence":42632,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF7C6F2B82D9C17] for gateway [FFA057224E76]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:33.925Z","sequence":42633,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:connect:0.1.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:33.925Z","sequence":42634,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:33.927Z","sequence":42635,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:connect:0.1.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:33.927Z","sequence":42636,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:34.197Z","sequence":42637,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF747C0642E9B94]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e08608072be13905","parentId":"53bae9046b303801","traceId":"000000000000000059754581401dcd97","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:34.211Z","sequence":42638,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3f403ab4-775e-406f-9c3c-4b22dcd9073e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:34.217Z","sequence":42639,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF747C0642E9B94, resource-version: e238e819-0081-48a7-a67b-433b70b3589b]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e08608072be13905","parentId":"53bae9046b303801","traceId":"000000000000000059754581401dcd97","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:34.222Z","sequence":42640,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF747C0642E9B94, resource-version: dc618aa7-453f-495f-82c6-37b6ccde35f3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e08608072be13905","parentId":"53bae9046b303801","traceId":"000000000000000059754581401dcd97","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:34.401Z","sequence":42641,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-110cdf43-a7c2-4ce6-9f64-ff6975246435, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:35.172Z","sequence":42642,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF0AB7D88CDE016]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"aaca67f8e5e1fae1","parentId":"279bcb9242f5e328","traceId":"0000000000000000eeda5ae88f530e88","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:35.188Z","sequence":42643,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF0AB7D88CDE016]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"aaca67f8e5e1fae1","parentId":"279bcb9242f5e328","traceId":"0000000000000000eeda5ae88f530e88","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:35.284Z","sequence":42644,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:35.284Z","sequence":42645,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-FFB92E785745]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:35.293Z","sequence":42646,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-288c5d50-776e-48c0-ada3-9b7083d67345, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:35.417Z","sequence":42647,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:35.417Z","sequence":42648,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: FFB92E785745]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:35.422Z","sequence":42649,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b61cd2f1-00f2-43d4-be1e-f96d65771903, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:35.426Z","sequence":42650,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:35.426Z","sequence":42651,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF747C0642E9B94] for gateway [FFB92E785745]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:35.432Z","sequence":42652,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.3.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:35.432Z","sequence":42653,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:35.542Z","sequence":42654,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 9E5D37C23150]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"037daddd9b673a2c","parentId":"352349f859544c3d","traceId":"000000000000000007487f6a0325adbc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:35.557Z","sequence":42655,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 9E5D37C23150]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"037daddd9b673a2c","parentId":"352349f859544c3d","traceId":"000000000000000007487f6a0325adbc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:35.644Z","sequence":42656,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6a34b986-88f0-45a4-a252-dc61f4a1ac91, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:36.187Z","sequence":42657,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191460]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ae099cfd534148a8","parentId":"a2df421589ba717c","traceId":"0000000000000000dbaa6a4544b1ac86","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:36.204Z","sequence":42658,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191460, resource-version: 1fd6f069-24e1-438c-93f3-b998d7d022ff]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ae099cfd534148a8","parentId":"a2df421589ba717c","traceId":"0000000000000000dbaa6a4544b1ac86","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:36.211Z","sequence":42659,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191460, resource-version: c4da3c12-133c-440f-931f-f2e0a81ef58e]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ae099cfd534148a8","parentId":"a2df421589ba717c","traceId":"0000000000000000dbaa6a4544b1ac86","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:36.214Z","sequence":42660,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191460]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d7d7b30d81d23825","parentId":"b01215cacb028621","traceId":"0000000000000000dbaa6a4544b1ac86","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:36.367Z","sequence":42661,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191460]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d7d7b30d81d23825","parentId":"b01215cacb028621","traceId":"0000000000000000dbaa6a4544b1ac86","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:37.037Z","sequence":42662,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF5E6F3801993E4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f2c8c3a29f3d131a","parentId":"dcdf47d6f224461a","traceId":"0000000000000000b651cd47f2a534e9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:37.053Z","sequence":42663,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF5E6F3801993E4, resource-version: 5ecef00e-45ba-4d30-ac27-25b894ec5036]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f2c8c3a29f3d131a","parentId":"dcdf47d6f224461a","traceId":"0000000000000000b651cd47f2a534e9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:37.059Z","sequence":42664,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF5E6F3801993E4, resource-version: dab1a3e1-4ad7-4711-9a3d-edc6cdd15827]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f2c8c3a29f3d131a","parentId":"dcdf47d6f224461a","traceId":"0000000000000000b651cd47f2a534e9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:38.115Z","sequence":42665,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:38.115Z","sequence":42666,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191460]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:38.126Z","sequence":42667,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-3015532b-f3d7-415e-b51e-f00f44dcaa78, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:38.269Z","sequence":42668,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:38.269Z","sequence":42669,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF5E6F3801993E4] for gateway [gateway_integrationtest_network_191460]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:38.269Z","sequence":42670,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:38.269Z","sequence":42671,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191460]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:38.274Z","sequence":42672,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:38.274Z","sequence":42673,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:38.274Z","sequence":42674,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e6c9ab47-b1f2-434b-9ae1-0b80b8acf7b4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:38.579Z","sequence":42675,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b2f0c035-7ca0-4874-bfeb-43673a7e4e71, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:39.648Z","sequence":42676,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF747C0642E9B94]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"966109c0a00f6a31","parentId":"e7896952af6f54a2","traceId":"0000000000000000ea2d2cf912a32de5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:39.675Z","sequence":42677,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF747C0642E9B94]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"966109c0a00f6a31","parentId":"e7896952af6f54a2","traceId":"0000000000000000ea2d2cf912a32de5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:39.971Z","sequence":42678,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: FFB92E785745]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7abce7a029a8aef4","parentId":"760f6468c3d79cef","traceId":"000000000000000017a467c90a6a3920","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:39.99Z","sequence":42679,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: FFB92E785745]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7abce7a029a8aef4","parentId":"760f6468c3d79cef","traceId":"000000000000000017a467c90a6a3920","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:45.255Z","sequence":42680,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:45.255Z","sequence":42681,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B9F] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:45.261Z","sequence":42682,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:45.261Z","sequence":42683,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:45.268Z","sequence":42684,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3c77a036-5436-412a-9d8e-5976f4a4fddc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:45.786Z","sequence":42685,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:45.786Z","sequence":42686,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001903] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:45.792Z","sequence":42687,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:45.792Z","sequence":42688,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:45.798Z","sequence":42689,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ebf6367a-1b10-4bd5-9830-d911999e91bd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:46.495Z","sequence":42690,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:46.496Z","sequence":42691,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: shelldev]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:46.501Z","sequence":42692,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-b11f46c8-d520-4498-bad4-9a033e2620dc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:46.503Z","sequence":42693,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/shelldev:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:46.504Z","sequence":42694,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: shelldev, type: hashed-password, auth-id: auth-AZUREFUNCTION-DEV]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:46.523Z","sequence":42695,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-f9cd1a24-ee22-47f6-8bda-bc63654782de, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:46.648Z","sequence":42696,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shelldev:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:46.649Z","sequence":42697,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shelldev, device-id: 70B3D57BB10001C9] for gateway [AZUREFUNCTION-DEV]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:46.661Z","sequence":42698,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_shelldev\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:46.662Z","sequence":42699,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_shelldev\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:46.669Z","sequence":42700,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-55942e8e-92c4-4f69-888d-fbaf04ceb134, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:49.438Z","sequence":42701,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF7C6F2B82D9C17]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d44526bbca48d246","parentId":"688a83961c39cc56","traceId":"000000000000000066ca6749320e2714","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:49.456Z","sequence":42702,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF7C6F2B82D9C17]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d44526bbca48d246","parentId":"688a83961c39cc56","traceId":"000000000000000066ca6749320e2714","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:50.146Z","sequence":42703,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: FFA057224E76]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"23df2ac8246ca3e0","parentId":"18438874a7e76020","traceId":"0000000000000000ed9469dd4c358151","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:50.161Z","sequence":42704,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: FFA057224E76]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"23df2ac8246ca3e0","parentId":"18438874a7e76020","traceId":"0000000000000000ed9469dd4c358151","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:50.589Z","sequence":42705,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF5E6F3801993E4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"de4c08c4dba5d5ee","parentId":"73c59f3d3c32be3d","traceId":"0000000000000000a6d2552f6db42301","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:50.648Z","sequence":42706,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF5E6F3801993E4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"de4c08c4dba5d5ee","parentId":"73c59f3d3c32be3d","traceId":"0000000000000000a6d2552f6db42301","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:50.924Z","sequence":42707,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191460]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"666a6725b58800db","parentId":"4589d728d25ab4f1","traceId":"0000000000000000dc562fa674e970e2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:50.954Z","sequence":42708,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191460]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"666a6725b58800db","parentId":"4589d728d25ab4f1","traceId":"0000000000000000dc562fa674e970e2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:51.012Z","sequence":42709,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:51.012Z","sequence":42710,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000831] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:51.019Z","sequence":42711,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:51.019Z","sequence":42712,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:51.025Z","sequence":42713,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e56da17a-0d4c-4142-a4ca-82c9f26d9dd7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:51.106Z","sequence":42714,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:51.106Z","sequence":42715,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B5F] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:51.114Z","sequence":42716,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:51.114Z","sequence":42717,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:51.12Z","sequence":42718,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8b4b6110-9809-4429-bdef-bfea500cb433, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:51.309Z","sequence":42719,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191461]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3e27a334aba5dd2f","parentId":"e1a265241aee99dd","traceId":"00000000000000008f4c03429c700b26","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:51.341Z","sequence":42720,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191461, resource-version: 8dbefbbc-1900-4e98-95e1-ffa7278009f0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3e27a334aba5dd2f","parentId":"e1a265241aee99dd","traceId":"00000000000000008f4c03429c700b26","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:51.35Z","sequence":42721,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191461, resource-version: e04611ff-4921-469c-9b50-8ccea99ff1af]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3e27a334aba5dd2f","parentId":"e1a265241aee99dd","traceId":"00000000000000008f4c03429c700b26","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:51.355Z","sequence":42722,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191461]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"da852461314c62f6","parentId":"a7cab616249d5044","traceId":"00000000000000008f4c03429c700b26","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:51.547Z","sequence":42723,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191461]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"da852461314c62f6","parentId":"a7cab616249d5044","traceId":"00000000000000008f4c03429c700b26","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:52.193Z","sequence":42724,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: B9377E4EEF1C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"35d084955ea2cc01","parentId":"f2770c904302de1a","traceId":"0000000000000000a1372ca1e9957946","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:52.265Z","sequence":42725,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: B9377E4EEF1C, resource-version: 7b151f85-163b-4958-a44d-8e4731789f17]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"35d084955ea2cc01","parentId":"f2770c904302de1a","traceId":"0000000000000000a1372ca1e9957946","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:52.305Z","sequence":42726,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: B9377E4EEF1C, resource-version: 0b8b197f-f009-49f9-a2ef-360fd5be352b]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"35d084955ea2cc01","parentId":"f2770c904302de1a","traceId":"0000000000000000a1372ca1e9957946","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:52.314Z","sequence":42727,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: B9377E4EEF1C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"dce261db8a96682d","parentId":"35bd944fcc7ebfeb","traceId":"0000000000000000a1372ca1e9957946","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:52.636Z","sequence":42728,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: B9377E4EEF1C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"dce261db8a96682d","parentId":"35bd944fcc7ebfeb","traceId":"0000000000000000a1372ca1e9957946","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:52.64Z","sequence":42729,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFA40FDAA327A59]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"57fb00311cd67aa4","parentId":"07ef26bb4ca2d52e","traceId":"0000000000000000ddebcbc735253dd8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:52.679Z","sequence":42730,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFA40FDAA327A59, resource-version: f0f4cd29-d335-45fd-9c0d-5653619f46e4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"57fb00311cd67aa4","parentId":"07ef26bb4ca2d52e","traceId":"0000000000000000ddebcbc735253dd8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:52.689Z","sequence":42731,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFA40FDAA327A59, resource-version: 1915286d-512b-48a8-bf5e-eb6f15458048]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"57fb00311cd67aa4","parentId":"07ef26bb4ca2d52e","traceId":"0000000000000000ddebcbc735253dd8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:52.917Z","sequence":42732,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF29A54C445EB54]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"795552453f2ed3a2","parentId":"fd8f4d40b660ef9c","traceId":"0000000000000000457be40183af9373","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:52.935Z","sequence":42733,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF29A54C445EB54, resource-version: 20389044-a5b0-417b-adde-a470948be399]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"795552453f2ed3a2","parentId":"fd8f4d40b660ef9c","traceId":"0000000000000000457be40183af9373","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:52.94Z","sequence":42734,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF29A54C445EB54, resource-version: 68e566be-15be-4950-a60e-9ce3b7b58810]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"795552453f2ed3a2","parentId":"fd8f4d40b660ef9c","traceId":"0000000000000000457be40183af9373","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:53.258Z","sequence":42735,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191463]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"56b99f1d61122085","parentId":"c5d45c11bb92d09c","traceId":"00000000000000005f5b16d3525b500c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:53.285Z","sequence":42736,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191463, resource-version: d1ea417d-50d6-4590-b9d2-74e0e7278cca]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"56b99f1d61122085","parentId":"c5d45c11bb92d09c","traceId":"00000000000000005f5b16d3525b500c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:53.305Z","sequence":42737,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191463, resource-version: ecd76fd6-23fb-47d1-a094-63bac27beb21]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"56b99f1d61122085","parentId":"c5d45c11bb92d09c","traceId":"00000000000000005f5b16d3525b500c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:53.313Z","sequence":42738,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191463]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1281128eb0b1aed3","parentId":"6c779a9f252804ea","traceId":"00000000000000005f5b16d3525b500c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:53.496Z","sequence":42739,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191463]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1281128eb0b1aed3","parentId":"6c779a9f252804ea","traceId":"00000000000000005f5b16d3525b500c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:53.784Z","sequence":42740,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:53.784Z","sequence":42741,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191461]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:53.795Z","sequence":42742,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-7d5a8360-118a-47c3-b8a2-c84e192fa956, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:53.918Z","sequence":42743,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:53.918Z","sequence":42744,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFA40FDAA327A59] for gateway [gateway_integrationtest_network_191461]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:53.919Z","sequence":42745,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:53.919Z","sequence":42746,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191461]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:53.927Z","sequence":42747,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c4719ad1-a6ab-429b-a80d-bee4e580fbf1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:53.927Z","sequence":42748,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:53.927Z","sequence":42749,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:54.218Z","sequence":42750,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF507D1893959C6]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d03ebb78048dbc5a","parentId":"df606d1c7882d9af","traceId":"000000000000000024af45e259b39b7a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:54.239Z","sequence":42751,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF507D1893959C6, resource-version: c9b93992-f4bd-4d76-84eb-fb2147eeae78]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d03ebb78048dbc5a","parentId":"df606d1c7882d9af","traceId":"000000000000000024af45e259b39b7a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:54.245Z","sequence":42752,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF507D1893959C6, resource-version: 133b5b16-e4f0-4388-acc1-8207f52c6a4f]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d03ebb78048dbc5a","parentId":"df606d1c7882d9af","traceId":"000000000000000024af45e259b39b7a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:54.398Z","sequence":42753,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-62cb7d27-42ab-4c51-aad9-8a8db3487688, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:54.432Z","sequence":42754,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:54.432Z","sequence":42755,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-B9377E4EEF1C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:54.433Z","sequence":42756,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:54.433Z","sequence":42757,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-B9377E4EEF1C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:54.468Z","sequence":42758,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-9bc95740-ae27-4d7a-8e79-b84c331be209, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:54.475Z","sequence":42759,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-ff3a6716-c5fb-4967-a0a4-bf8da47fa804, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:54.697Z","sequence":42760,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:54.697Z","sequence":42761,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: B9377E4EEF1C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:54.705Z","sequence":42762,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:54.705Z","sequence":42763,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: B9377E4EEF1C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:54.706Z","sequence":42764,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-472084ec-7fd3-469c-812d-e65bbbb2ac31, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:54.713Z","sequence":42765,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:54.713Z","sequence":42766,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF29A54C445EB54] for gateway [B9377E4EEF1C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:54.714Z","sequence":42767,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b2590913-0156-47f1-a48f-e7611b4a63c3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:54.718Z","sequence":42768,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:54.719Z","sequence":42769,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF29A54C445EB54] for gateway [B9377E4EEF1C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:54.721Z","sequence":42770,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:connect:0.1.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:54.724Z","sequence":42771,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:54.741Z","sequence":42772,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:connect:0.1.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:54.743Z","sequence":42773,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:55.711Z","sequence":42774,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-aa343e9c-ec1d-4743-bf32-736fca72fe36, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:56.339Z","sequence":42775,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e84a16a7-8fb9-4679-a200-d94fa47b84b4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:56.339Z","sequence":42776,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:56.34Z","sequence":42777,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191463]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:56.34Z","sequence":42778,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:56.341Z","sequence":42779,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191463]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:56.341Z","sequence":42780,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:56.342Z","sequence":42781,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 0008004C80F4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:56.357Z","sequence":42782,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6bfed47a-d5ca-4caf-bbc6-e6aa88d7c992, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:56.361Z","sequence":42783,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-e12c7491-d909-4e36-986d-97e75829a259, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:56.361Z","sequence":42784,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-1efe7c1e-ac48-4ca9-a3f8-cc8ea40ad3fb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:56.608Z","sequence":42785,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:56.608Z","sequence":42786,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF507D1893959C6] for gateway [gateway_integrationtest_network_191463]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:56.609Z","sequence":42787,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:56.609Z","sequence":42788,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191463]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:56.621Z","sequence":42789,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:56.621Z","sequence":42790,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF507D1893959C6] for gateway [gateway_integrationtest_network_191463]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:56.642Z","sequence":42791,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:56.642Z","sequence":42792,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191463]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:56.643Z","sequence":42793,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:connect:0.1.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:56.643Z","sequence":42794,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:56.645Z","sequence":42795,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-72ca1b7c-81be-4494-b869-4239a7c5ed95, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:56.655Z","sequence":42796,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-34de85cb-25f1-4bed-b388-9e1365fbf95c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:56.657Z","sequence":42797,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:connect:0.1.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:56.657Z","sequence":42798,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:57.401Z","sequence":42799,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d6cdf10e-ba8c-4f27-ab59-ee844fe1174a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:57.937Z","sequence":42800,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f43525ea-4dcc-438d-8173-6b386f1be8aa, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:58.29Z","sequence":42801,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:58.291Z","sequence":42802,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB1000A73] for gateway [0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:58.312Z","sequence":42803,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:58.313Z","sequence":42804,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:58.321Z","sequence":42805,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8c6baa19-d388-41ff-8692-4fa741ee244f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:59.192Z","sequence":42806,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFA40FDAA327A59]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"75ee6a16680e4bf1","parentId":"94e03c122e979058","traceId":"000000000000000001cec59f028ef75f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:59.224Z","sequence":42807,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFA40FDAA327A59]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"75ee6a16680e4bf1","parentId":"94e03c122e979058","traceId":"000000000000000001cec59f028ef75f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:59.409Z","sequence":42808,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:59.41Z","sequence":42809,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-B9377E4EEF1C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:59.476Z","sequence":42810,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-4e43ceb1-d362-4457-adac-f013d8a3a9fe, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:59.625Z","sequence":42811,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:59.625Z","sequence":42812,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF29A54C445EB54] for gateway [B9377E4EEF1C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:59.656Z","sequence":42813,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:connect:0.1.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:59.656Z","sequence":42814,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:59.659Z","sequence":42815,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191461]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b46c497ee9d54676","parentId":"184416f5bb1d422f","traceId":"000000000000000052f398b4c61409ee","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:02:59.701Z","sequence":42816,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191461]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b46c497ee9d54676","parentId":"184416f5bb1d422f","traceId":"000000000000000052f398b4c61409ee","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:00.291Z","sequence":42817,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ca9a84a7-1001-48b7-90b3-873ffd32fbf7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:03.752Z","sequence":42818,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:03.752Z","sequence":42819,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001FD] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:03.767Z","sequence":42820,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:03.767Z","sequence":42821,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:03.768Z","sequence":42822,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:03.769Z","sequence":42823,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001FD] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:03.77Z","sequence":42824,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4f727eb1-0fa3-4e47-be53-8809374f3f6b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:03.776Z","sequence":42825,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:03.776Z","sequence":42826,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:03.778Z","sequence":42827,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8b7793c0-3cd2-4a81-a851-47c72f636a13, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:04.211Z","sequence":42828,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 81C702E058CD]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"34f1aaa2c35cb85a","parentId":"f38d33363c40fbe5","traceId":"00000000000000007fd02e4710402c03","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:04.231Z","sequence":42829,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 81C702E058CD, resource-version: 482eb4a3-0ea1-493d-ba3e-10b147926ad4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"34f1aaa2c35cb85a","parentId":"f38d33363c40fbe5","traceId":"00000000000000007fd02e4710402c03","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:04.237Z","sequence":42830,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 81C702E058CD, resource-version: 4ba4955d-f93a-46bd-b086-80255e6d0959]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"34f1aaa2c35cb85a","parentId":"f38d33363c40fbe5","traceId":"00000000000000007fd02e4710402c03","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:04.242Z","sequence":42831,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 81C702E058CD]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"dfe459803bf1e758","parentId":"d9c611ace1887dad","traceId":"00000000000000007fd02e4710402c03","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:04.406Z","sequence":42832,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:04.407Z","sequence":42833,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-B9377E4EEF1C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:04.417Z","sequence":42834,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-38b51666-166f-42b1-94d9-7cca15f34dc8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:04.441Z","sequence":42835,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 81C702E058CD]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"dfe459803bf1e758","parentId":"d9c611ace1887dad","traceId":"00000000000000007fd02e4710402c03","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:04.986Z","sequence":42836,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:04.986Z","sequence":42837,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BBD1C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:04.992Z","sequence":42838,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3d32b06d-8baa-48ac-98fd-2e4265536fb4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:04.995Z","sequence":42839,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:04.995Z","sequence":42840,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: lanxess]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:04.998Z","sequence":42841,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-86629f0d-b8c9-472f-b711-2ce74c727970, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:05.105Z","sequence":42842,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFC7F561FECDC23]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"59b2d071015674c1","parentId":"865a1e676e22948d","traceId":"0000000000000000773dee3d024bec3d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:05.123Z","sequence":42843,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFC7F561FECDC23, resource-version: 4d03bcd7-da6c-4fae-97cc-5083c6cf0571]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"59b2d071015674c1","parentId":"865a1e676e22948d","traceId":"0000000000000000773dee3d024bec3d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:05.13Z","sequence":42844,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFC7F561FECDC23, resource-version: 63aed092-1690-4112-b77f-fa5a5365346e]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"59b2d071015674c1","parentId":"865a1e676e22948d","traceId":"0000000000000000773dee3d024bec3d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:06.18Z","sequence":42845,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:06.18Z","sequence":42846,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-81C702E058CD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:06.191Z","sequence":42847,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-9a87dc9d-7300-4f36-8a4f-a38aa257bf3e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:06.322Z","sequence":42848,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:06.323Z","sequence":42849,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 81C702E058CD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:06.328Z","sequence":42850,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-12b3d874-c041-46b7-ac66-d7c6043f9b5e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:06.332Z","sequence":42851,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:06.333Z","sequence":42852,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFC7F561FECDC23] for gateway [81C702E058CD]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:06.338Z","sequence":42853,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:06.338Z","sequence":42854,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:06.766Z","sequence":42855,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7572a953-b560-4050-916c-f823997536f7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:06.973Z","sequence":42856,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"retrieving device [tenant: integrationtest, device-id: 0EFC7F561FECDC23]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5aec77d565eb1b6f","parentId":"210df7bf26d583a9","traceId":"3a220713a6b5ac7910dedafa719b802f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:07.253Z","sequence":42857,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF507D1893959C6]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fbe83322e95e9e87","parentId":"488be769b400afdf","traceId":"0000000000000000051b5099fa941ada","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:07.27Z","sequence":42858,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF507D1893959C6]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fbe83322e95e9e87","parentId":"488be769b400afdf","traceId":"0000000000000000051b5099fa941ada","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:07.604Z","sequence":42859,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191463]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a038566add12942c","parentId":"cb5d9dfd0e010ead","traceId":"0000000000000000400673d472041adc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:07.62Z","sequence":42860,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191463]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a038566add12942c","parentId":"cb5d9dfd0e010ead","traceId":"0000000000000000400673d472041adc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:07.848Z","sequence":42861,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:07.849Z","sequence":42862,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100069C] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:07.849Z","sequence":42863,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:07.85Z","sequence":42864,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:07.858Z","sequence":42865,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:07.858Z","sequence":42866,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:07.859Z","sequence":42867,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-914f0ba1-2ce8-4044-8030-c21fb8a04b7b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:07.865Z","sequence":42868,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8ed2aee1-0207-4270-9fc9-8d49bdb55c6b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:08.325Z","sequence":42869,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: FCAF009EE628]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2210f4b18e1aa551","parentId":"3d0c9a44c562f61e","traceId":"0000000000000000a3855a14550937cc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:08.373Z","sequence":42870,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: FCAF009EE628, resource-version: 65bf0391-dad6-426f-8f6e-a6a62cfd6099]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2210f4b18e1aa551","parentId":"3d0c9a44c562f61e","traceId":"0000000000000000a3855a14550937cc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:08.381Z","sequence":42871,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: FCAF009EE628, resource-version: 624bba3b-cf21-43b1-91ba-2150709d0cee]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2210f4b18e1aa551","parentId":"3d0c9a44c562f61e","traceId":"0000000000000000a3855a14550937cc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:08.385Z","sequence":42872,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: FCAF009EE628]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"02f9d363e0a87149","parentId":"4ade1d6ccb112d6b","traceId":"0000000000000000a3855a14550937cc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:08.643Z","sequence":42873,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: FCAF009EE628]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"02f9d363e0a87149","parentId":"4ade1d6ccb112d6b","traceId":"0000000000000000a3855a14550937cc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:10.177Z","sequence":42874,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF8BCE618669CE6]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ef9333da6d7d0156","parentId":"0480e72296846095","traceId":"000000000000000091d89afceb119438","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:10.193Z","sequence":42875,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF8BCE618669CE6, resource-version: 1ffd4523-a2b4-4988-8d23-0568181b9719]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ef9333da6d7d0156","parentId":"0480e72296846095","traceId":"000000000000000091d89afceb119438","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:10.2Z","sequence":42876,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF8BCE618669CE6, resource-version: 84cef02e-9f26-4f79-855a-288c052ddf6a]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ef9333da6d7d0156","parentId":"0480e72296846095","traceId":"000000000000000091d89afceb119438","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:11.31Z","sequence":42877,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:11.31Z","sequence":42878,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-FCAF009EE628]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:11.311Z","sequence":42879,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:11.311Z","sequence":42880,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-FCAF009EE628]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:11.312Z","sequence":42881,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:11.313Z","sequence":42882,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-FCAF009EE628]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:11.33Z","sequence":42883,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-c26d86a9-db02-4e3e-9a18-65afb36ffc05, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:11.33Z","sequence":42884,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-3a51ddc3-2c03-447d-9988-425693a049f8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:11.331Z","sequence":42885,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-9b7b26a9-23d5-4177-b263-fa3c220784ee, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:11.688Z","sequence":42886,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:11.688Z","sequence":42887,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: FCAF009EE628]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:11.694Z","sequence":42888,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-23903299-7ab2-4e8e-87b8-88ac16cf44db, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:11.694Z","sequence":42889,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:11.694Z","sequence":42890,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: FCAF009EE628]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:11.701Z","sequence":42891,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f8e66d63-882d-46b5-948f-895d4c3870a7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:11.702Z","sequence":42892,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:11.702Z","sequence":42893,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF8BCE618669CE6] for gateway [FCAF009EE628]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:11.707Z","sequence":42894,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:11.707Z","sequence":42895,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:12.04Z","sequence":42896,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b3bc1904-3dfb-4822-88d9-22e06ca11bc5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:12.041Z","sequence":42897,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:12.041Z","sequence":42898,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF8BCE618669CE6] for gateway [FCAF009EE628]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:12.042Z","sequence":42899,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:12.043Z","sequence":42900,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF8BCE618669CE6] for gateway [FCAF009EE628]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:12.047Z","sequence":42901,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:12.048Z","sequence":42902,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:12.049Z","sequence":42903,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:12.049Z","sequence":42904,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:12.262Z","sequence":42905,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"retrieving device [tenant: integrationtest, device-id: 0EF8BCE618669CE6]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"380dd7f32e17fd57","parentId":"8ece5fbe176a99a9","traceId":"e2231accaf44dc824bb0ed53e833da1b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:12.423Z","sequence":42906,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0dd453e3-fe99-404a-a49a-5331cb4d61ec, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:12.763Z","sequence":42907,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-36afb35c-7905-4df2-8714-2bae59a0e4c7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:12.797Z","sequence":42908,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:12.798Z","sequence":42909,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000516] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:12.804Z","sequence":42910,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:12.804Z","sequence":42911,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:12.81Z","sequence":42912,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ee87a4bb-adec-4194-b0b7-3b3fa6ff5141, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:14.283Z","sequence":42913,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af] wants to open a link [address: Source{address='registration/oiltanking/cf641549-74b9-40ce-a4c1-c180c67e7fd0', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:14.283Z","sequence":42914,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-18]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:14.284Z","sequence":42915,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@54dbbbd4] for replies to [registration/oiltanking/cf641549-74b9-40ce-a4c1-c180c67e7fd0]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:14.288Z","sequence":42916,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af] wants to open a link [address: Target{address='registration/oiltanking', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:14.289Z","sequence":42917,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-19]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:14.289Z","sequence":42918,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:14.291Z","sequence":42919,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oiltanking:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:14.292Z","sequence":42920,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oiltanking, device-id: 0008004BB60F]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:14.313Z","sequence":42921,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-841143d4-e6b3-47ea-9221-9e64af0733fe, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:14.316Z","sequence":42922,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:14.317Z","sequence":42923,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oiltanking]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:14.325Z","sequence":42924,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-59c8b44a-1c3f-47d6-ab02-d832188878b6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:14.451Z","sequence":42925,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:14.452Z","sequence":42926,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006B1] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:14.469Z","sequence":42927,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:14.469Z","sequence":42928,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:14.485Z","sequence":42929,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-21990246-8928-49d7-a736-24cc89789051, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:17.006Z","sequence":42930,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFC7F561FECDC23]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0c9090298217f8a5","parentId":"64d1e451d95f9ff4","traceId":"0000000000000000616b7d0e43fed4a3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:17.056Z","sequence":42931,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFC7F561FECDC23]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0c9090298217f8a5","parentId":"64d1e451d95f9ff4","traceId":"0000000000000000616b7d0e43fed4a3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:17.38Z","sequence":42932,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 81C702E058CD]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a3291baa0a685d65","parentId":"460ce29526857794","traceId":"000000000000000081f2971add4f491b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:17.397Z","sequence":42933,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 81C702E058CD]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a3291baa0a685d65","parentId":"460ce29526857794","traceId":"000000000000000081f2971add4f491b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:17.874Z","sequence":42934,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191466]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4cadd5155ca67f0b","parentId":"0c10c92aa996daaf","traceId":"000000000000000091cbe0f71049c9a9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:17.892Z","sequence":42935,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191466, resource-version: cfeb5170-52cc-4bff-ab2c-49a1e7315270]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4cadd5155ca67f0b","parentId":"0c10c92aa996daaf","traceId":"000000000000000091cbe0f71049c9a9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:17.899Z","sequence":42936,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191466, resource-version: 37c758fa-8278-4589-9d2d-aef28c6158b4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4cadd5155ca67f0b","parentId":"0c10c92aa996daaf","traceId":"000000000000000091cbe0f71049c9a9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:17.902Z","sequence":42937,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191466]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"896825c119a34452","parentId":"a4f70c3c754123cd","traceId":"000000000000000091cbe0f71049c9a9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:18.08Z","sequence":42938,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191466]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"896825c119a34452","parentId":"a4f70c3c754123cd","traceId":"000000000000000091cbe0f71049c9a9","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:18.75Z","sequence":42939,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF9D6BEF278D36F]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"59b6d3382f5da34d","parentId":"b8973f1c9177167b","traceId":"0000000000000000b8ac74ec79eba90f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:18.781Z","sequence":42940,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF9D6BEF278D36F, resource-version: ca635e5d-efc6-4399-a6ac-f9235e84a953]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"59b6d3382f5da34d","parentId":"b8973f1c9177167b","traceId":"0000000000000000b8ac74ec79eba90f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:18.787Z","sequence":42941,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF9D6BEF278D36F, resource-version: da05746a-8cc9-4ce5-9368-8ad9aafda732]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"59b6d3382f5da34d","parentId":"b8973f1c9177167b","traceId":"0000000000000000b8ac74ec79eba90f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:19.857Z","sequence":42942,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:19.857Z","sequence":42943,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191466]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:19.867Z","sequence":42944,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-78e3d12d-b60e-4905-90af-a0bfa1d71bf4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:19.988Z","sequence":42945,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:19.988Z","sequence":42946,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF9D6BEF278D36F] for gateway [gateway_integrationtest_network_191466]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:19.989Z","sequence":42947,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:19.989Z","sequence":42948,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191466]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:19.995Z","sequence":42949,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:19.995Z","sequence":42950,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:19.996Z","sequence":42951,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b42b3230-8ec1-4451-a8ae-5973e5eed23d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:20.334Z","sequence":42952,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6532b614-0067-431c-ab0e-592bd285f611, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:21.602Z","sequence":42953,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:21.602Z","sequence":42954,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: terega]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:21.613Z","sequence":42955,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-16201b08-d993-4f42-8c3e-94405d559704, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:21.618Z","sequence":42956,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/terega:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:21.618Z","sequence":42957,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: terega, type: hashed-password, auth-id: auth-gateway_terega_network_27]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:21.632Z","sequence":42958,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-24905742-2bc4-45f6-84e3-d276a9c025ba, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:21.753Z","sequence":42959,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/terega:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:21.753Z","sequence":42960,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: terega, device-id: 70B3D57BB1000DF8] for gateway [gateway_terega_network_27]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:21.781Z","sequence":42961,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_terega\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:21.781Z","sequence":42962,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_terega\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:21.793Z","sequence":42963,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1c10b387-5f74-4747-9973-6be232a3909c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:22.461Z","sequence":42964,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF8BCE618669CE6]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"646aa362b001eec8","parentId":"e428ecd6ec2aa065","traceId":"0000000000000000488cad262a8677ad","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:22.486Z","sequence":42965,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF8BCE618669CE6]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"646aa362b001eec8","parentId":"e428ecd6ec2aa065","traceId":"0000000000000000488cad262a8677ad","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:23.013Z","sequence":42966,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: FCAF009EE628]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2f83547e96fa3c73","parentId":"da0c3047dac696f9","traceId":"0000000000000000213af720e1c18bb0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:23.028Z","sequence":42967,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: FCAF009EE628]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2f83547e96fa3c73","parentId":"da0c3047dac696f9","traceId":"0000000000000000213af720e1c18bb0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:23.586Z","sequence":42968,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191467]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0acd18f40a2c27ff","parentId":"030001a0f2e8f0e8","traceId":"00000000000000007b2af9fce2f9ff80","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:23.611Z","sequence":42969,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191467, resource-version: 4a00fee9-498a-4a65-9304-f49317adc130]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0acd18f40a2c27ff","parentId":"030001a0f2e8f0e8","traceId":"00000000000000007b2af9fce2f9ff80","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:23.62Z","sequence":42970,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191467, resource-version: dd36d7ec-1d03-4f5e-b076-c3e11b899e69]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0acd18f40a2c27ff","parentId":"030001a0f2e8f0e8","traceId":"00000000000000007b2af9fce2f9ff80","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:23.637Z","sequence":42971,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191467]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c9253bdc95cae882","parentId":"e283210f58dc0e5c","traceId":"00000000000000007b2af9fce2f9ff80","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:23.77Z","sequence":42972,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:23.771Z","sequence":42973,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000796] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:23.78Z","sequence":42974,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:23.781Z","sequence":42975,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:23.787Z","sequence":42976,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-62b20bcf-622a-40a2-b155-b79100ee071e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:23.806Z","sequence":42977,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191467]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c9253bdc95cae882","parentId":"e283210f58dc0e5c","traceId":"00000000000000007b2af9fce2f9ff80","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:23.885Z","sequence":42978,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"retrieving device [tenant: shell, device-id: 70B3D57BB1000796]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"435d09bcefb4c160","parentId":"28f0a9bccfcd89a3","traceId":"a743583b3f85bbb6551c62a3584b06e4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:24.701Z","sequence":42979,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF9295517E50D40]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"af79f19954242489","parentId":"c5a5d4b7845b6886","traceId":"0000000000000000611241225ebbb66b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:24.772Z","sequence":42980,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF9295517E50D40, resource-version: 2e0ae50f-fbf8-4441-800a-e12e6b3bac4e]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"af79f19954242489","parentId":"c5a5d4b7845b6886","traceId":"0000000000000000611241225ebbb66b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:24.792Z","sequence":42981,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF9295517E50D40, resource-version: 93e014f2-f883-4dfb-b4a8-c53c175f65fc]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"af79f19954242489","parentId":"c5a5d4b7845b6886","traceId":"0000000000000000611241225ebbb66b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:25.413Z","sequence":42982,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:25.413Z","sequence":42983,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AC1] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:25.426Z","sequence":42984,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:25.428Z","sequence":42985,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:25.434Z","sequence":42986,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f0960f89-5800-49d0-aee0-578e40fcf7a6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:25.933Z","sequence":42987,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:25.933Z","sequence":42988,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191467]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:25.98Z","sequence":42989,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-a29e2aa7-a6cb-42b2-a7ee-040dfeb79f77, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:26.107Z","sequence":42990,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:26.107Z","sequence":42991,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF9295517E50D40] for gateway [gateway_integrationtest_network_191467]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:26.108Z","sequence":42992,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:26.108Z","sequence":42993,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191467]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:26.136Z","sequence":42994,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8f49fc96-370c-4c97-98b5-b2c92fa3bf30, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:26.144Z","sequence":42995,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.5.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:26.145Z","sequence":42996,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:26.456Z","sequence":42997,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c0e1e3e0-32a0-45c3-9f4d-63562dd09c01, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:30.344Z","sequence":42998,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF9295517E50D40]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b8f5ce398890a0ce","parentId":"29181562de33f631","traceId":"0000000000000000c0ab4e7daa9208fd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:30.36Z","sequence":42999,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF9295517E50D40]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b8f5ce398890a0ce","parentId":"29181562de33f631","traceId":"0000000000000000c0ab4e7daa9208fd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:30.516Z","sequence":43000,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191467]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"acdd8915681833d1","parentId":"859e32398dc138f1","traceId":"00000000000000003d640b6910457b88","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:30.538Z","sequence":43001,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191467]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"acdd8915681833d1","parentId":"859e32398dc138f1","traceId":"00000000000000003d640b6910457b88","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:30.678Z","sequence":43002,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191468]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3bb421332ee13746","parentId":"952e8bc55779a823","traceId":"0000000000000000023342c98b894358","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:30.697Z","sequence":43003,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191468, resource-version: 1b04bd79-9622-4126-bf7a-efbe0052dabe]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3bb421332ee13746","parentId":"952e8bc55779a823","traceId":"0000000000000000023342c98b894358","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:30.703Z","sequence":43004,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191468, resource-version: ffd43716-78f9-4d93-81f1-f96d8f5ed8be]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3bb421332ee13746","parentId":"952e8bc55779a823","traceId":"0000000000000000023342c98b894358","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:30.707Z","sequence":43005,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191468]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1405edf66fe688fe","parentId":"e22e3b6962abec46","traceId":"0000000000000000023342c98b894358","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:30.762Z","sequence":43006,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF9D6BEF278D36F]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f24857553b7a2945","parentId":"0712a8ebedcc4f86","traceId":"0000000000000000494731b5d8a64f35","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:30.779Z","sequence":43007,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF9D6BEF278D36F]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f24857553b7a2945","parentId":"0712a8ebedcc4f86","traceId":"0000000000000000494731b5d8a64f35","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:30.856Z","sequence":43008,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191468]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1405edf66fe688fe","parentId":"e22e3b6962abec46","traceId":"0000000000000000023342c98b894358","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:30.927Z","sequence":43009,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191466]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b79d764f9a257489","parentId":"a1ac3d8f3a8a5d69","traceId":"0000000000000000bff26128bd29ada3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:30.944Z","sequence":43010,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191466]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b79d764f9a257489","parentId":"a1ac3d8f3a8a5d69","traceId":"0000000000000000bff26128bd29ada3","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:31.15Z","sequence":43011,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0ED38A1AB9D7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c921d4147892d735","parentId":"a9f749d8ebe4dd00","traceId":"00000000000000009a9148f45a77b373","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:31.167Z","sequence":43012,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0ED38A1AB9D7, resource-version: b0e11762-8420-4dad-a800-156afaed2434]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c921d4147892d735","parentId":"a9f749d8ebe4dd00","traceId":"00000000000000009a9148f45a77b373","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:31.173Z","sequence":43013,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0ED38A1AB9D7, resource-version: 6dc872db-9755-473e-ab1c-432c1fb84544]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c921d4147892d735","parentId":"a9f749d8ebe4dd00","traceId":"00000000000000009a9148f45a77b373","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:31.176Z","sequence":43014,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 0ED38A1AB9D7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8c9dfb624485f5f6","parentId":"2a5a51265c17d834","traceId":"00000000000000009a9148f45a77b373","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:31.3Z","sequence":43015,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 0ED38A1AB9D7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8c9dfb624485f5f6","parentId":"2a5a51265c17d834","traceId":"00000000000000009a9148f45a77b373","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:31.737Z","sequence":43016,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF4B3E2A8DE2C21]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d446dd667a92fcb7","parentId":"b1867189e5521cb4","traceId":"0000000000000000694c3de21da7f48b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:31.754Z","sequence":43017,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF4B3E2A8DE2C21, resource-version: e9b7ac35-bd71-464e-b674-0d7104449dd1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d446dd667a92fcb7","parentId":"b1867189e5521cb4","traceId":"0000000000000000694c3de21da7f48b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:31.761Z","sequence":43018,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF4B3E2A8DE2C21, resource-version: 28788759-eeb1-4b04-bbb3-29e127307520]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d446dd667a92fcb7","parentId":"b1867189e5521cb4","traceId":"0000000000000000694c3de21da7f48b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:31.769Z","sequence":43019,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFEA5608B6885FF]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"53b485eab5fce5e0","parentId":"62d272a45ef95cef","traceId":"0000000000000000e8e08ca9110ce825","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:31.79Z","sequence":43020,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFEA5608B6885FF, resource-version: 72ba3ba7-34cd-4899-8bd6-553ad5f829ae]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"53b485eab5fce5e0","parentId":"62d272a45ef95cef","traceId":"0000000000000000e8e08ca9110ce825","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:31.8Z","sequence":43021,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFEA5608B6885FF, resource-version: 92c29bd7-59cc-48f8-85b1-1c7471b7ca19]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"53b485eab5fce5e0","parentId":"62d272a45ef95cef","traceId":"0000000000000000e8e08ca9110ce825","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:32.813Z","sequence":43022,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:32.813Z","sequence":43023,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-0ED38A1AB9D7]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:32.823Z","sequence":43024,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-1fffd047-4efc-4486-8cba-6aef0e411a81, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:32.87Z","sequence":43025,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:32.87Z","sequence":43026,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191468]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:32.879Z","sequence":43027,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-a7805f54-5a2b-4d9a-8714-b8c249dc684a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:32.949Z","sequence":43028,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:32.949Z","sequence":43029,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0ED38A1AB9D7]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:32.954Z","sequence":43030,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c3e9738e-db8f-423d-b339-018576337dfd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:32.958Z","sequence":43031,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:32.958Z","sequence":43032,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF4B3E2A8DE2C21] for gateway [0ED38A1AB9D7]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:32.963Z","sequence":43033,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:32.963Z","sequence":43034,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:33.141Z","sequence":43035,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-086a4291-231e-4a60-bda9-b42d12f8d002, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:33.141Z","sequence":43036,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:33.141Z","sequence":43037,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFEA5608B6885FF] for gateway [gateway_integrationtest_network_191468]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:33.142Z","sequence":43038,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:33.142Z","sequence":43039,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191468]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:33.148Z","sequence":43040,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-81aaeb93-493a-4b87-bec4-87d9d2922f26, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:33.148Z","sequence":43041,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.5.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:33.148Z","sequence":43042,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:33.469Z","sequence":43043,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-45880dbf-87b8-492e-9335-c19a9fb14519, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:35.032Z","sequence":43044,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:35.033Z","sequence":43045,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: indeel]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:35.036Z","sequence":43046,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-a71cdef5-7e34-4dc9-835c-3553cd12ad7b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:35.038Z","sequence":43047,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/indeel:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:35.038Z","sequence":43048,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: indeel, type: hashed-password, auth-id: auth-gateway_indeel_network_40884]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:35.048Z","sequence":43049,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-eb8f83b5-de43-418e-8641-4bb66b28b95c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:35.299Z","sequence":43050,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/indeel:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:35.299Z","sequence":43051,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: indeel, device-id: 70B3D57BB10013FA] for gateway [gateway_indeel_network_40884]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:35.3Z","sequence":43052,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/indeel:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:35.301Z","sequence":43053,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: indeel, device-id: gateway_indeel_network_40884]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:35.305Z","sequence":43054,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_indeel\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:35.305Z","sequence":43055,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_indeel\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:35.306Z","sequence":43056,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-006f2e70-1d44-4098-89a1-af959344746d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:35.308Z","sequence":43057,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-618438eb-43cc-46e4-94ae-0be0f6d07df0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:35.491Z","sequence":43058,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:35.491Z","sequence":43059,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000168] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:35.504Z","sequence":43060,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:35.509Z","sequence":43061,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:35.512Z","sequence":43062,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9fb6240b-a4a2-4fb5-af63-7f765127bfee, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:35.647Z","sequence":43063,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:35.647Z","sequence":43064,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000168] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:35.662Z","sequence":43065,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:35.662Z","sequence":43066,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:35.665Z","sequence":43067,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7eb852ba-b9f2-4956-a588-18d8ef672b22, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:36.296Z","sequence":43068,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFEA5608B6885FF]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"27eb2012e5e00c73","parentId":"f05682b2c56c5b9c","traceId":"0000000000000000a158a30d332ff66f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:36.322Z","sequence":43069,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFEA5608B6885FF]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"27eb2012e5e00c73","parentId":"f05682b2c56c5b9c","traceId":"0000000000000000a158a30d332ff66f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:36.458Z","sequence":43070,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191468]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a1087954ebef7b4a","parentId":"651d55b84e2019c4","traceId":"00000000000000007a30ef71802ac4ac","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:36.479Z","sequence":43071,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191468]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a1087954ebef7b4a","parentId":"651d55b84e2019c4","traceId":"00000000000000007a30ef71802ac4ac","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:36.659Z","sequence":43072,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:36.66Z","sequence":43073,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006C2] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:36.665Z","sequence":43074,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:36.665Z","sequence":43075,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:36.674Z","sequence":43076,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3e354b49-487c-4d96-b1bf-4e024f494cd1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:36.971Z","sequence":43077,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: C09B65E62864]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"dedf5aa966d99b52","parentId":"7d1c5c516d9d023f","traceId":"000000000000000038490c4dd409f0e0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:36.989Z","sequence":43078,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: C09B65E62864, resource-version: cae6870a-8d16-4f62-b466-87407b260786]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"dedf5aa966d99b52","parentId":"7d1c5c516d9d023f","traceId":"000000000000000038490c4dd409f0e0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:36.996Z","sequence":43079,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: C09B65E62864, resource-version: 5590b3dc-c753-4e5c-ab4d-6ccf13f6f05a]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"dedf5aa966d99b52","parentId":"7d1c5c516d9d023f","traceId":"000000000000000038490c4dd409f0e0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:37.001Z","sequence":43080,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: C09B65E62864]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bb1ae1fae6142f2c","parentId":"840ca31099e2d093","traceId":"000000000000000038490c4dd409f0e0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:37.14Z","sequence":43081,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: C09B65E62864]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bb1ae1fae6142f2c","parentId":"840ca31099e2d093","traceId":"000000000000000038490c4dd409f0e0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:38.08Z","sequence":43082,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF5AECD9F1C038F]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"67970a91e12d0a8d","parentId":"2c474a1419ed6915","traceId":"0000000000000000f2885a54cd788e9b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:38.098Z","sequence":43083,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF5AECD9F1C038F, resource-version: f6ae059a-3823-4b12-9cc2-491a590a2e3b]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"67970a91e12d0a8d","parentId":"2c474a1419ed6915","traceId":"0000000000000000f2885a54cd788e9b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:38.104Z","sequence":43084,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF5AECD9F1C038F, resource-version: e5aa73c6-19d5-4e23-8d32-08c52a3037cd]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"67970a91e12d0a8d","parentId":"2c474a1419ed6915","traceId":"0000000000000000f2885a54cd788e9b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:39.155Z","sequence":43085,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:39.156Z","sequence":43086,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-C09B65E62864]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:39.174Z","sequence":43087,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-d86dcd08-f349-47d0-a634-01a7db33d3ee, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:39.294Z","sequence":43088,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:39.295Z","sequence":43089,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: C09B65E62864]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:39.3Z","sequence":43090,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d45564cb-c248-48ae-ae74-d1dfc1f2c291, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:39.305Z","sequence":43091,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:39.305Z","sequence":43092,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF5AECD9F1C038F] for gateway [C09B65E62864]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:39.31Z","sequence":43093,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:39.311Z","sequence":43094,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:39.497Z","sequence":43095,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-47b9d5da-68da-42d9-8ae9-ba4a848b2d07, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:39.498Z","sequence":43096,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:39.498Z","sequence":43097,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006C4] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:39.503Z","sequence":43098,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:39.503Z","sequence":43099,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:39.508Z","sequence":43100,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7b0ac199-93ae-4b78-b761-b4caa7dd750e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:39.692Z","sequence":43101,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:39.692Z","sequence":43102,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: dow]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:39.696Z","sequence":43103,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-e2e9b7dd-1116-4135-b27f-ca8458b25619, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:39.698Z","sequence":43104,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/dow:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:39.698Z","sequence":43105,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: dow, type: hashed-password, auth-id: auth-gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:39.715Z","sequence":43106,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-037bead4-0d1a-4182-acfb-17c0c1783789, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:39.999Z","sequence":43107,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:40Z","sequence":43108,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 70B3D57BB1001264] for gateway [gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:40.009Z","sequence":43109,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:40.009Z","sequence":43110,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:40.013Z","sequence":43111,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-90d43493-36b5-4ccf-b73a-ac11ebe9fc56, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:40.363Z","sequence":43112,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:40.364Z","sequence":43113,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001EA] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:40.37Z","sequence":43114,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:40.37Z","sequence":43115,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:40.373Z","sequence":43116,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b58325aa-8403-46fb-bc05-659180eb666c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:40.461Z","sequence":43117,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:40.461Z","sequence":43118,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001EA] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:40.467Z","sequence":43119,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:40.467Z","sequence":43120,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:40.47Z","sequence":43121,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-79de5db0-e390-4159-b97f-2a4f50cda6dd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:41.605Z","sequence":43122,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF37AD3BF052830]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"10c0fbfe06b63bde","parentId":"c4d9eb4735915e9c","traceId":"00000000000000006d0c14177008eda6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:41.621Z","sequence":43123,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF37AD3BF052830]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"10c0fbfe06b63bde","parentId":"c4d9eb4735915e9c","traceId":"00000000000000006d0c14177008eda6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:41.96Z","sequence":43124,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:41.961Z","sequence":43125,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000693] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:41.962Z","sequence":43126,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 3B7BA7B97891]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b08966b375090962","parentId":"48a2ef03d484333d","traceId":"00000000000000007810eea59aa592ff","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:41.969Z","sequence":43127,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:41.969Z","sequence":43128,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:41.976Z","sequence":43129,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6a856a63-1e4f-48b4-bb79-a221342828a4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:41.983Z","sequence":43130,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 3B7BA7B97891]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b08966b375090962","parentId":"48a2ef03d484333d","traceId":"00000000000000007810eea59aa592ff","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:42.557Z","sequence":43131,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: F9301EA6E5F9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f76c08044f434c68","parentId":"2ebfde9c0af22136","traceId":"00000000000000006b1b2a00f6aa1abb","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:42.574Z","sequence":43132,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: F9301EA6E5F9, resource-version: 3b97d37d-02aa-4f35-88eb-dbf58c9774f5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f76c08044f434c68","parentId":"2ebfde9c0af22136","traceId":"00000000000000006b1b2a00f6aa1abb","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:42.58Z","sequence":43133,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: F9301EA6E5F9, resource-version: 839a8c5a-5c16-4f4d-8816-c98a39482778]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f76c08044f434c68","parentId":"2ebfde9c0af22136","traceId":"00000000000000006b1b2a00f6aa1abb","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:42.583Z","sequence":43134,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: F9301EA6E5F9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ba02f8646d807baa","parentId":"5018e59bfec25f5b","traceId":"00000000000000006b1b2a00f6aa1abb","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:42.703Z","sequence":43135,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: F9301EA6E5F9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ba02f8646d807baa","parentId":"5018e59bfec25f5b","traceId":"00000000000000006b1b2a00f6aa1abb","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:43.644Z","sequence":43136,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF7712A6D606940]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7b9be9ee322c72f7","parentId":"f6461cf7ca1c3652","traceId":"000000000000000071de22e1dfc00dc6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:43.674Z","sequence":43137,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF7712A6D606940, resource-version: 90cb41c9-cd5b-4737-8733-4155cf779681]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7b9be9ee322c72f7","parentId":"f6461cf7ca1c3652","traceId":"000000000000000071de22e1dfc00dc6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:43.679Z","sequence":43138,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF7712A6D606940, resource-version: 4cb7ea58-11ec-4531-99c6-8e2ac22de0bd]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7b9be9ee322c72f7","parentId":"f6461cf7ca1c3652","traceId":"000000000000000071de22e1dfc00dc6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:43.684Z","sequence":43139,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af] wants to open a link [address: Source{address='registration/aloxy/01de4f4b-d05a-4c13-bafc-061cf02bcb7a', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:43.684Z","sequence":43140,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-20]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:43.684Z","sequence":43141,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@30a66ca9] for replies to [registration/aloxy/01de4f4b-d05a-4c13-bafc-061cf02bcb7a]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:43.686Z","sequence":43142,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af] wants to open a link [address: Target{address='registration/aloxy', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:43.687Z","sequence":43143,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-21]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:43.687Z","sequence":43144,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:43.689Z","sequence":43145,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/aloxy:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:43.69Z","sequence":43146,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: aloxy, device-id: 0008004A8F68]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:43.695Z","sequence":43147,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-74fa7b3a-3a74-44f8-a2f0-6c974df9f6db, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:43.697Z","sequence":43148,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:43.698Z","sequence":43149,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: aloxy]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:43.7Z","sequence":43150,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-51b39fde-9c84-46dd-87e6-e46a09617b82, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:43.705Z","sequence":43151,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:43.705Z","sequence":43152,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B87] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:43.71Z","sequence":43153,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:43.71Z","sequence":43154,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:43.716Z","sequence":43155,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-81d19aae-6f25-40df-8c64-e5de9dc5040c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:44.275Z","sequence":43156,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:44.275Z","sequence":43157,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: repsol]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:44.281Z","sequence":43158,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-14ea7df6-e850-4ee0-a3f7-ef976d71f4b6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:44.284Z","sequence":43159,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/repsol:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:44.285Z","sequence":43160,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: repsol, device-id: 70B3D57BB1000187] for gateway [0008004A37FF]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:44.313Z","sequence":43161,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:0.4.1\"\n },\n \"viaGroups\" : [ \"gateways_repsol\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:44.314Z","sequence":43162,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_repsol\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:44.327Z","sequence":43163,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4f94b602-11e0-498a-bf6f-7bae603c4e98, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:44.749Z","sequence":43164,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:44.749Z","sequence":43165,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-F9301EA6E5F9]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:44.791Z","sequence":43166,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-47469e0a-05d4-4ab7-a7bd-6a2db59d3182, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:44.913Z","sequence":43167,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:44.914Z","sequence":43168,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: F9301EA6E5F9]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:44.926Z","sequence":43169,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-68592135-6816-4416-818a-dd587290c0b2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:44.932Z","sequence":43170,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:44.933Z","sequence":43171,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF7712A6D606940] for gateway [F9301EA6E5F9]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:44.941Z","sequence":43172,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.3.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:44.941Z","sequence":43173,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:45.381Z","sequence":43174,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b38ff196-dacd-42d6-b644-94933fa0d4d7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:47.155Z","sequence":43175,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF4B3E2A8DE2C21]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b46360ca7257928f","parentId":"7b5c2188b09b6600","traceId":"0000000000000000fb99d3e431462c0d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:47.17Z","sequence":43176,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF4B3E2A8DE2C21]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"b46360ca7257928f","parentId":"7b5c2188b09b6600","traceId":"0000000000000000fb99d3e431462c0d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:47.302Z","sequence":43177,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:47.302Z","sequence":43178,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB100052B] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:47.308Z","sequence":43179,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:47.308Z","sequence":43180,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:47.312Z","sequence":43181,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-364047f4-81c5-4a11-a2da-62b151dd525a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:47.801Z","sequence":43182,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0ED38A1AB9D7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7e856b0e9d384c65","parentId":"22e896afeccdd216","traceId":"0000000000000000e282cf2229fb8ed7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:47.822Z","sequence":43183,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0ED38A1AB9D7]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7e856b0e9d384c65","parentId":"22e896afeccdd216","traceId":"0000000000000000e282cf2229fb8ed7","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:48.563Z","sequence":43184,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191472]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3cd61ec26a23172f","parentId":"f6d40ff9b7f9cff2","traceId":"00000000000000008210d3c430ba4897","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:48.58Z","sequence":43185,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191472, resource-version: 9d812ec3-8f0f-4811-b928-2cf5525852b6]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3cd61ec26a23172f","parentId":"f6d40ff9b7f9cff2","traceId":"00000000000000008210d3c430ba4897","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:48.585Z","sequence":43186,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191472, resource-version: e11c433d-2ed7-4f5c-8bfe-df285ce41d1b]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3cd61ec26a23172f","parentId":"f6d40ff9b7f9cff2","traceId":"00000000000000008210d3c430ba4897","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:48.593Z","sequence":43187,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191472]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"96a8ecd8381b2539","parentId":"bcc0a6b74e49dc51","traceId":"00000000000000008210d3c430ba4897","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:48.755Z","sequence":43188,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191472]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"96a8ecd8381b2539","parentId":"bcc0a6b74e49dc51","traceId":"00000000000000008210d3c430ba4897","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:49.753Z","sequence":43189,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFCC497940C8D47]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"95f6316c2d640b5f","parentId":"b7a77bb3d1c965f1","traceId":"0000000000000000c8cbb87ca769edc6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:49.77Z","sequence":43190,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFCC497940C8D47, resource-version: ff79f56e-953a-4635-aecc-d670f20e3b60]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"95f6316c2d640b5f","parentId":"b7a77bb3d1c965f1","traceId":"0000000000000000c8cbb87ca769edc6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:49.776Z","sequence":43191,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFCC497940C8D47, resource-version: eb3c19fa-0e9e-4038-9a3a-b3d8f59a4173]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"95f6316c2d640b5f","parentId":"b7a77bb3d1c965f1","traceId":"0000000000000000c8cbb87ca769edc6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:50.838Z","sequence":43192,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:50.838Z","sequence":43193,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191472]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:50.85Z","sequence":43194,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-15378549-733d-4532-8478-9beaeac296bf, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:50.977Z","sequence":43195,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:50.977Z","sequence":43196,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFCC497940C8D47] for gateway [gateway_integrationtest_network_191472]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:50.977Z","sequence":43197,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:50.978Z","sequence":43198,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191472]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:50.985Z","sequence":43199,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:50.985Z","sequence":43200,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:50.986Z","sequence":43201,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ff985973-1628-47e4-9488-33b4ac797731, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:51.335Z","sequence":43202,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c630fb27-0bc6-4539-a91d-33d5233c8fec, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:54.09Z","sequence":43203,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF5AECD9F1C038F]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4520e7242a7c769e","parentId":"7f6ccffbff807589","traceId":"0000000000000000a9c59c73ad199c5d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:54.117Z","sequence":43204,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF5AECD9F1C038F]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4520e7242a7c769e","parentId":"7f6ccffbff807589","traceId":"0000000000000000a9c59c73ad199c5d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:55.069Z","sequence":43205,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: C09B65E62864]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f7146b6262394cc4","parentId":"3c8979b11e2ac4d3","traceId":"00000000000000009e082641a3d5c29a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:55.091Z","sequence":43206,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: C09B65E62864]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f7146b6262394cc4","parentId":"3c8979b11e2ac4d3","traceId":"00000000000000009e082641a3d5c29a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:55.781Z","sequence":43207,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191473]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"359b7a71b9af2a70","parentId":"d7f9e0f020d1e0bc","traceId":"0000000000000000e14a0a4ccca10b6c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:55.809Z","sequence":43208,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191473, resource-version: 6d7d182a-b671-478f-b638-1fbc1504c0ab]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"359b7a71b9af2a70","parentId":"d7f9e0f020d1e0bc","traceId":"0000000000000000e14a0a4ccca10b6c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:55.825Z","sequence":43209,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191473, resource-version: e3a8d01a-9061-4a17-b1d1-c706bc342f7b]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"359b7a71b9af2a70","parentId":"d7f9e0f020d1e0bc","traceId":"0000000000000000e14a0a4ccca10b6c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:55.829Z","sequence":43210,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191473]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0b6ec2226562ed59","parentId":"901d89ea148c2357","traceId":"0000000000000000e14a0a4ccca10b6c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:55.989Z","sequence":43211,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191473]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0b6ec2226562ed59","parentId":"901d89ea148c2357","traceId":"0000000000000000e14a0a4ccca10b6c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:56.134Z","sequence":43212,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFCC497940C8D47]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"11d3e5450ca00256","parentId":"fbd33b2e6d2f8a5c","traceId":"0000000000000000dc2d07f671c0e504","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:56.162Z","sequence":43213,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFCC497940C8D47]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"11d3e5450ca00256","parentId":"fbd33b2e6d2f8a5c","traceId":"0000000000000000dc2d07f671c0e504","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:56.338Z","sequence":43214,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191472]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8f0d058c406c692d","parentId":"c919cb98212a1dad","traceId":"000000000000000030443b83c71a155f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:56.356Z","sequence":43215,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191472]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8f0d058c406c692d","parentId":"c919cb98212a1dad","traceId":"000000000000000030443b83c71a155f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:56.745Z","sequence":43216,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFBF9AC39765E9D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3fcd4340080f0551","parentId":"752c9f32c1e0eb74","traceId":"0000000000000000b64b463e6facb93e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:56.765Z","sequence":43217,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFBF9AC39765E9D, resource-version: 0b1616e9-492b-4a77-9b91-afb4b699cde3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3fcd4340080f0551","parentId":"752c9f32c1e0eb74","traceId":"0000000000000000b64b463e6facb93e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:56.773Z","sequence":43218,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFBF9AC39765E9D, resource-version: ae575fd7-1302-4656-a458-f2ead2e0cb6d]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3fcd4340080f0551","parentId":"752c9f32c1e0eb74","traceId":"0000000000000000b64b463e6facb93e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:57.853Z","sequence":43219,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:57.853Z","sequence":43220,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191473]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:57.854Z","sequence":43221,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:57.854Z","sequence":43222,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191473]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:57.867Z","sequence":43223,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:57.867Z","sequence":43224,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191473]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:57.874Z","sequence":43225,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-1ed392cf-14f2-436a-ac8c-2956d946827a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:57.875Z","sequence":43226,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-94fe404a-a471-457e-bbb7-7a695d3178f0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:57.883Z","sequence":43227,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-a6a64cc8-c10d-450d-b84f-5ae235572831, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:58.195Z","sequence":43228,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:58.195Z","sequence":43229,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFBF9AC39765E9D] for gateway [gateway_integrationtest_network_191473]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:58.196Z","sequence":43230,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:58.197Z","sequence":43231,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191473]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:58.205Z","sequence":43232,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-10c840fd-1213-4194-8d3d-e08dc4257f4a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:58.206Z","sequence":43233,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:58.206Z","sequence":43234,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:58.549Z","sequence":43235,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF7712A6D606940]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e967c7ffb2880817","parentId":"46e53351dd91ac5a","traceId":"0000000000000000ed57e4a8f7ad3b6c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:58.611Z","sequence":43236,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-957db051-241d-4eb2-97fd-55680edd9789, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:58.612Z","sequence":43237,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:58.612Z","sequence":43238,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFBF9AC39765E9D] for gateway [gateway_integrationtest_network_191473]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:58.612Z","sequence":43239,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:58.612Z","sequence":43240,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFBF9AC39765E9D] for gateway [gateway_integrationtest_network_191473]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:58.625Z","sequence":43241,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF7712A6D606940]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e967c7ffb2880817","parentId":"46e53351dd91ac5a","traceId":"0000000000000000ed57e4a8f7ad3b6c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:58.635Z","sequence":43242,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:58.636Z","sequence":43243,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:58.636Z","sequence":43244,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:58.636Z","sequence":43245,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:59.098Z","sequence":43246,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-52689dba-45f9-4d34-8d73-aa091c6777c0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:59.288Z","sequence":43247,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"retrieving device [tenant: integrationtest, device-id: 0EFBF9AC39765E9D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ba0196359aa1d36b","parentId":"1dc748a6d509063a","traceId":"c7db50f152d1f2c2f1613fd8ea484bc1","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:59.43Z","sequence":43248,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-05f4d34d-5f86-4434-8169-90e5940302ae, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:59.497Z","sequence":43249,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: F9301EA6E5F9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"32db44304fb9d8bc","parentId":"a13aa8ebe0a3e5fa","traceId":"00000000000000001af72be67699352e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:03:59.528Z","sequence":43250,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: F9301EA6E5F9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"32db44304fb9d8bc","parentId":"a13aa8ebe0a3e5fa","traceId":"00000000000000001af72be67699352e","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:04:00.96Z","sequence":43251,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:04:00.96Z","sequence":43252,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000218] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:04:00.97Z","sequence":43253,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:04:00.97Z","sequence":43254,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:04:00.977Z","sequence":43255,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:04:00.977Z","sequence":43256,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000218] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:04:00.977Z","sequence":43257,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2bf555b9-6c21-43fb-aa70-880a5b0fd7ab, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:04:00.987Z","sequence":43258,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:04:00.987Z","sequence":43259,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:04:00.99Z","sequence":43260,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-bda495e6-b31f-4167-bc7e-3143d13e20bd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:04:04.41Z","sequence":43261,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:04:04.41Z","sequence":43262,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-B9377E4EEF1C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:04:04.422Z","sequence":43263,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-b40e767d-a57e-4f85-aa0f-2ecf65ffc252, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:04:04.542Z","sequence":43264,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:04:04.543Z","sequence":43265,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BB613]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:04:04.561Z","sequence":43266,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c03e8d65-51b0-4808-8c1d-5c95e7cb75f2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:04:08.627Z","sequence":43267,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFBF9AC39765E9D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5b74aaa25f1cd9a3","parentId":"8311f74834b5004f","traceId":"000000000000000013a9b3d951e117cd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:04:08.652Z","sequence":43268,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFBF9AC39765E9D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5b74aaa25f1cd9a3","parentId":"8311f74834b5004f","traceId":"000000000000000013a9b3d951e117cd","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:04:08.866Z","sequence":43269,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191473]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e3159ef34a271bb7","parentId":"13b2167641119aa3","traceId":"0000000000000000fb0a5dc34cc3ba84","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:04:08.887Z","sequence":43270,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191473]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e3159ef34a271bb7","parentId":"13b2167641119aa3","traceId":"0000000000000000fb0a5dc34cc3ba84","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:04:10.838Z","sequence":43271,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:04:10.839Z","sequence":43272,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oci]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:04:10.842Z","sequence":43273,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-9a6e47ec-64fa-49ae-949d-f910ee8bf8a0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:04:11.305Z","sequence":43274,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:04:11.306Z","sequence":43275,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10001D9] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:04:11.312Z","sequence":43276,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:04:11.312Z","sequence":43277,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:04:11.319Z","sequence":43278,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f890bdb6-7e62-46e0-801e-ad0c57feebce, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:04:13.963Z","sequence":43279,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF29A54C445EB54]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a5913969dee26da5","parentId":"3c258b3f36c23a39","traceId":"00000000000000002478d90f24a16c5b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:04:13.982Z","sequence":43280,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF29A54C445EB54]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a5913969dee26da5","parentId":"3c258b3f36c23a39","traceId":"00000000000000002478d90f24a16c5b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:04:14.213Z","sequence":43281,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:04:14.213Z","sequence":43282,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB1000A6F] for gateway [0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:04:14.219Z","sequence":43283,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:04:14.219Z","sequence":43284,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:04:14.223Z","sequence":43285,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d5923c4d-dc8e-425d-ba7f-d479325c9a0c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:04:14.406Z","sequence":43286,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:04:14.406Z","sequence":43287,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB1000A82] for gateway [0008004B5135]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:04:14.411Z","sequence":43288,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:04:14.412Z","sequence":43289,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:04:14.414Z","sequence":43290,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1e6c9737-7bd1-4857-9147-afedd00af8ac, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:04:14.829Z","sequence":43291,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: B9377E4EEF1C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8a3de167d7e3edcb","parentId":"78b9ddf54943b68e","traceId":"000000000000000015bc50a7ef168203","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:04:14.848Z","sequence":43292,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: B9377E4EEF1C]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8a3de167d7e3edcb","parentId":"78b9ddf54943b68e","traceId":"000000000000000015bc50a7ef168203","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:04:14.997Z","sequence":43293,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:04:14.997Z","sequence":43294,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006C8] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:04:15.009Z","sequence":43295,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:04:15.009Z","sequence":43296,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:04:15.015Z","sequence":43297,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8304ecca-81e0-4ef4-a7b5-38df311f0274, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:04:15.957Z","sequence":43298,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191474]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"eb323f1d51791ebc","parentId":"9b82b2ab13eec358","traceId":"000000000000000005042fad6c50048b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:04:16.008Z","sequence":43299,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191474, resource-version: 05901005-f3fc-441e-834d-0c166acf6c71]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"eb323f1d51791ebc","parentId":"9b82b2ab13eec358","traceId":"000000000000000005042fad6c50048b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:04:16.028Z","sequence":43300,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191474, resource-version: 67f23f75-6f1d-4522-8e3b-454877cd534e]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"eb323f1d51791ebc","parentId":"9b82b2ab13eec358","traceId":"000000000000000005042fad6c50048b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:04:16.033Z","sequence":43301,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191474]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c8a40c0b26980312","parentId":"758a5ba85d93c16c","traceId":"000000000000000005042fad6c50048b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:04:16.424Z","sequence":43302,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191474]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c8a40c0b26980312","parentId":"758a5ba85d93c16c","traceId":"000000000000000005042fad6c50048b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:04:17.381Z","sequence":43303,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFAE067FD78CD87]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5e458ba58cafd8d3","parentId":"fb005c4509d119c7","traceId":"0000000000000000a6f1a71040457ae4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:04:17.403Z","sequence":43304,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFAE067FD78CD87, resource-version: f87202bd-5bef-4e0b-9a49-b9cdb68c5fd8]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5e458ba58cafd8d3","parentId":"fb005c4509d119c7","traceId":"0000000000000000a6f1a71040457ae4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:04:17.41Z","sequence":43305,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFAE067FD78CD87, resource-version: b5c05973-3245-48bc-ad79-f1201ce27e83]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5e458ba58cafd8d3","parentId":"fb005c4509d119c7","traceId":"0000000000000000a6f1a71040457ae4","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:04:22.49Z","sequence":43306,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:04:22.491Z","sequence":43307,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: shell]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:04:22.511Z","sequence":43308,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-07ffc20c-1b1a-4479-b9f6-afb0573f522c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:04:22.515Z","sequence":43309,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/shell:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:04:22.515Z","sequence":43310,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: shell, type: hashed-password, auth-id: auth-gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:04:22.525Z","sequence":43311,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-76531c41-3d96-4f77-b4db-d554b46083fa, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:04:22.658Z","sequence":43312,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:04:22.658Z","sequence":43313,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006E1] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:04:22.664Z","sequence":43314,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.8.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:04:22.664Z","sequence":43315,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:04:22.67Z","sequence":43316,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6142c862-e873-4ada-9592-9c8c7ea93aa7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:04:23.602Z","sequence":43317,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:04:23.602Z","sequence":43318,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006BE] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:04:23.608Z","sequence":43319,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:04:23.608Z","sequence":43320,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:04:23.614Z","sequence":43321,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0ed48ccf-472f-4443-b43d-ae75c93f9226, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:04:26.797Z","sequence":43322,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:04:26.797Z","sequence":43323,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AAF] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:04:26.803Z","sequence":43324,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:04:26.803Z","sequence":43325,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:04:26.81Z","sequence":43326,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ac46a89a-e78d-4732-88ba-91267f750aa9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:04:29.615Z","sequence":43327,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/terega:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:04:29.616Z","sequence":43328,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: terega, device-id: 70B3D57BB1000DFE] for gateway [gateway_terega_network_27]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:04:29.622Z","sequence":43329,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_terega\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:04:29.622Z","sequence":43330,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_terega\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:04:29.625Z","sequence":43331,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6f214085-192f-4955-9941-24925ea3416e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:04:32.542Z","sequence":43332,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:04:32.542Z","sequence":43333,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000208] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:04:32.548Z","sequence":43334,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:04:32.548Z","sequence":43335,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:04:32.551Z","sequence":43336,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8761df1d-04fb-4661-9cf9-3831ac5919d5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:04:32.575Z","sequence":43337,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:04:32.575Z","sequence":43338,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000208] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:04:32.579Z","sequence":43339,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:04:32.579Z","sequence":43340,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:04:32.582Z","sequence":43341,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b81204ff-407f-4a0f-be86-59bef2ecd4d5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:04:48.805Z","sequence":43342,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:04:48.805Z","sequence":43343,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:04:48.815Z","sequence":43344,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f581dd98-9ac7-4619-9a0a-5d9ea52689c3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:04:49.471Z","sequence":43345,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:04:49.471Z","sequence":43346,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100068E] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:04:49.476Z","sequence":43347,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:04:49.476Z","sequence":43348,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:04:49.482Z","sequence":43349,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4927b3c9-b789-4608-a6ec-3ac005aef0f6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:04:52.939Z","sequence":43350,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFAE067FD78CD87]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"70001b6c1c6a8480","parentId":"1c32931f62df4913","traceId":"0000000000000000308fe96364ec5c2d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:04:52.954Z","sequence":43351,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFAE067FD78CD87]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"70001b6c1c6a8480","parentId":"1c32931f62df4913","traceId":"0000000000000000308fe96364ec5c2d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:04:56.045Z","sequence":43352,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:04:56.046Z","sequence":43353,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 70B3D57BB1001243] for gateway [gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:04:56.053Z","sequence":43354,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:04:56.054Z","sequence":43355,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:04:56.058Z","sequence":43356,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6c11f31c-aa1b-4642-b3a8-931da138f5ae, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:04:56.418Z","sequence":43357,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/repsol:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:04:56.418Z","sequence":43358,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: repsol, device-id: 0008004A37FF]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:04:56.424Z","sequence":43359,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d3788958-1d98-4338-bbb0-6cc19dcd4b99, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:00.09Z","sequence":43360,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/acta:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:00.09Z","sequence":43361,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: acta, device-id: 0008004AAAA3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:00.107Z","sequence":43362,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a2b8153b-5f7f-4260-ad76-0c1f60d464ea, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:00.112Z","sequence":43363,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:00.113Z","sequence":43364,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: acta]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:00.119Z","sequence":43365,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-9ddfadf6-9c73-4bbe-9a7c-3d105b1c5876, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:00.603Z","sequence":43366,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:00.603Z","sequence":43367,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000797] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:00.612Z","sequence":43368,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:00.612Z","sequence":43369,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:00.624Z","sequence":43370,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-177bbbbd-9fdb-4fc2-b8d5-14c8f3b7913c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:05.407Z","sequence":43371,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:05.408Z","sequence":43372,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10009DC] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:05.412Z","sequence":43373,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:05.413Z","sequence":43374,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:05.417Z","sequence":43375,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:05.417Z","sequence":43376,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:05.421Z","sequence":43377,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-db2fcad2-a633-4dc4-8da9-22da700d3d13, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:05.425Z","sequence":43378,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a662a274-91dd-49e0-bc0f-6e7cdcf89e61, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:07.04Z","sequence":43379,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:07.041Z","sequence":43380,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006DC] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:07.047Z","sequence":43381,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:07.047Z","sequence":43382,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:07.054Z","sequence":43383,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-becb3c6e-8d91-46f2-b928-4cdb50af739b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:10.032Z","sequence":43384,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:10.032Z","sequence":43385,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A9D] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:10.039Z","sequence":43386,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:10.039Z","sequence":43387,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:10.046Z","sequence":43388,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0b6fe13a-a0c1-4809-b4ba-161f4ad4a2a5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:10.833Z","sequence":43389,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:10.833Z","sequence":43390,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AE3] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:10.844Z","sequence":43391,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:10.845Z","sequence":43392,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:10.859Z","sequence":43393,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0f1350cd-65ae-4437-ba3c-ef787b5ed4ce, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:11.021Z","sequence":43394,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:11.021Z","sequence":43395,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006AA] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:11.027Z","sequence":43396,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:11.027Z","sequence":43397,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:11.033Z","sequence":43398,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d65ed2c6-e52e-4879-a077-bc1be7fbd2c8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:20.612Z","sequence":43399,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:20.613Z","sequence":43400,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C01] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:20.621Z","sequence":43401,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:20.621Z","sequence":43402,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:20.627Z","sequence":43403,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0521e234-1d26-4c3f-a391-fa76340b5008, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:21.762Z","sequence":43404,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:21.762Z","sequence":43405,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001E9] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:21.768Z","sequence":43406,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:21.768Z","sequence":43407,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:21.771Z","sequence":43408,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d099e017-4181-49c9-8745-4c2686fe13ea, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:21.788Z","sequence":43409,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:21.788Z","sequence":43410,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001E9] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:21.793Z","sequence":43411,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:21.793Z","sequence":43412,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:21.795Z","sequence":43413,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c2052993-90c4-407d-9dcf-3bf9400a1335, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:22.612Z","sequence":43414,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:22.612Z","sequence":43415,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 0008004B51D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:22.619Z","sequence":43416,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d446c0da-e510-4e41-9320-9afb40e61712, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:22.624Z","sequence":43417,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:22.624Z","sequence":43418,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: dow]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:22.627Z","sequence":43419,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-c9d6651f-df5d-4d4d-b41a-a6d78ee5ff5a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:23.542Z","sequence":43420,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191474]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c5bda548dddc6825","parentId":"9d68e57d8e812b07","traceId":"00000000000000005cc9aba8ac967944","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:23.563Z","sequence":43421,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191474]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c5bda548dddc6825","parentId":"9d68e57d8e812b07","traceId":"00000000000000005cc9aba8ac967944","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:23.746Z","sequence":43422,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191475]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a82d0feac4449cb7","parentId":"a88a2f6e5838a4d9","traceId":"00000000000000007def0e26894cfd09","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:23.762Z","sequence":43423,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191475, resource-version: 4ca2c605-228c-4d7d-9576-6c651c6b9ea0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a82d0feac4449cb7","parentId":"a88a2f6e5838a4d9","traceId":"00000000000000007def0e26894cfd09","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:23.767Z","sequence":43424,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191475, resource-version: 6a786534-1767-4dce-af58-8873cfe54883]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a82d0feac4449cb7","parentId":"a88a2f6e5838a4d9","traceId":"00000000000000007def0e26894cfd09","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:23.77Z","sequence":43425,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191475]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c1eee94f7b5e1c6c","parentId":"f4c56728e9da576d","traceId":"00000000000000007def0e26894cfd09","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:23.881Z","sequence":43426,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191475]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c1eee94f7b5e1c6c","parentId":"f4c56728e9da576d","traceId":"00000000000000007def0e26894cfd09","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:24.345Z","sequence":43427,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF3917B5918F002]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6f602ecfdbb16028","parentId":"b2bad874640eed76","traceId":"0000000000000000ffce2ddf4857b085","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:24.363Z","sequence":43428,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF3917B5918F002, resource-version: 322ce25a-ec55-4812-9574-4b22c1732005]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6f602ecfdbb16028","parentId":"b2bad874640eed76","traceId":"0000000000000000ffce2ddf4857b085","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:24.369Z","sequence":43429,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF3917B5918F002, resource-version: c6635179-519e-4e46-9d83-364894c83a30]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6f602ecfdbb16028","parentId":"b2bad874640eed76","traceId":"0000000000000000ffce2ddf4857b085","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:25.457Z","sequence":43430,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:25.457Z","sequence":43431,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:25.461Z","sequence":43432,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-c956c9bd-6d6c-4f9a-859a-7bdcea16244f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:25.463Z","sequence":43433,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:25.463Z","sequence":43434,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191475]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:25.474Z","sequence":43435,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-b6b6ab62-8329-42ad-964a-28f2abbf2346, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:25.593Z","sequence":43436,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:25.593Z","sequence":43437,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF3917B5918F002] for gateway [gateway_integrationtest_network_191475]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:25.594Z","sequence":43438,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:25.594Z","sequence":43439,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191475]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:25.599Z","sequence":43440,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:25.6Z","sequence":43441,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:25.601Z","sequence":43442,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6f1e97ca-d77f-46e9-a37b-aa1c8fbd7593, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:25.781Z","sequence":43443,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5ff1c72c-9d06-46d8-90c6-4fcbb5bb99ed, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:31.576Z","sequence":43444,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:31.576Z","sequence":43445,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A98] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:31.582Z","sequence":43446,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:31.582Z","sequence":43447,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:31.588Z","sequence":43448,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-957f596f-7918-4c9d-ac3f-971572270494, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:32.004Z","sequence":43449,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:32.005Z","sequence":43450,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A9C] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:32.011Z","sequence":43451,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:32.011Z","sequence":43452,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:32.017Z","sequence":43453,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f4e918a0-d81f-41bb-86a2-857faf61c686, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:34.859Z","sequence":43454,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:34.859Z","sequence":43455,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AE5] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:34.865Z","sequence":43456,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:34.865Z","sequence":43457,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:34.871Z","sequence":43458,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4adb1303-a694-4196-9c63-e071f2153aa8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:36.973Z","sequence":43459,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF3917B5918F002]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bf80af606b9903e0","parentId":"23b0d824a02f9bbb","traceId":"0000000000000000bc8381685a9d48ee","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:37.002Z","sequence":43460,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF3917B5918F002]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"bf80af606b9903e0","parentId":"23b0d824a02f9bbb","traceId":"0000000000000000bc8381685a9d48ee","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:37.117Z","sequence":43461,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191475]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"10e5df66016a4937","parentId":"d29490e7d5756bd6","traceId":"00000000000000007fb7b32efdd92a5b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:37.158Z","sequence":43462,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191475]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"10e5df66016a4937","parentId":"d29490e7d5756bd6","traceId":"00000000000000007fb7b32efdd92a5b","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:37.979Z","sequence":43463,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: D1D826581416]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"91454e9d466d8a9e","parentId":"a2b682c2b977034e","traceId":"0000000000000000f7295ea9d495bf88","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:38.021Z","sequence":43464,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: D1D826581416, resource-version: 3fba62b1-89ef-4f1b-821c-550cb33b24f4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"91454e9d466d8a9e","parentId":"a2b682c2b977034e","traceId":"0000000000000000f7295ea9d495bf88","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:38.035Z","sequence":43465,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: D1D826581416, resource-version: 2d5633f8-955c-4223-a671-3391206525f2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"91454e9d466d8a9e","parentId":"a2b682c2b977034e","traceId":"0000000000000000f7295ea9d495bf88","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:38.038Z","sequence":43466,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: D1D826581416]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a5e9bea9693e7d6e","parentId":"5d9e213ed977d5bf","traceId":"0000000000000000f7295ea9d495bf88","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:38.19Z","sequence":43467,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: D1D826581416]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a5e9bea9693e7d6e","parentId":"5d9e213ed977d5bf","traceId":"0000000000000000f7295ea9d495bf88","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:38.606Z","sequence":43468,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF7DD071816EEDE]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cd63710489bab488","parentId":"608f38e852e74a30","traceId":"0000000000000000a5ce0ebf0b708708","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:38.657Z","sequence":43469,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF7DD071816EEDE, resource-version: b33c30d7-7b3a-4e5a-8695-1201470fc51d]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cd63710489bab488","parentId":"608f38e852e74a30","traceId":"0000000000000000a5ce0ebf0b708708","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:38.675Z","sequence":43470,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF7DD071816EEDE, resource-version: 89b936f3-5d30-4f68-8ec8-acb9bdddf246]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cd63710489bab488","parentId":"608f38e852e74a30","traceId":"0000000000000000a5ce0ebf0b708708","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:39.386Z","sequence":43471,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:39.386Z","sequence":43472,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AA7] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:39.397Z","sequence":43473,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:39.397Z","sequence":43474,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:39.411Z","sequence":43475,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0277fff6-f64d-42f9-8448-a3a954fc4fda, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:39.72Z","sequence":43476,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:39.72Z","sequence":43477,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:39.731Z","sequence":43478,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-885a2f0a-9713-4edb-9db6-4111bb2f0c6b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:39.734Z","sequence":43479,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:39.734Z","sequence":43480,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-D1D826581416]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:39.771Z","sequence":43481,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-ed9f068e-c0fa-4486-9154-29f05a7abf06, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:39.896Z","sequence":43482,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:39.896Z","sequence":43483,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: D1D826581416]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:39.904Z","sequence":43484,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-82bd4f8c-906c-459d-9723-d4732d46de69, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:39.908Z","sequence":43485,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:39.908Z","sequence":43486,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF7DD071816EEDE] for gateway [D1D826581416]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:39.913Z","sequence":43487,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:39.913Z","sequence":43488,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:40.095Z","sequence":43489,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a8789d1d-888a-4d71-941a-e81003396f9f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:40.195Z","sequence":43490,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:40.195Z","sequence":43491,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000202] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:40.212Z","sequence":43492,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:40.212Z","sequence":43493,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:40.217Z","sequence":43494,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-31ec2452-89a3-4401-aa86-2bab67ac33ea, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:40.312Z","sequence":43495,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:40.312Z","sequence":43496,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000202] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:40.325Z","sequence":43497,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:40.325Z","sequence":43498,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:40.334Z","sequence":43499,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ef5e22ab-e95b-42f5-899a-0a8ead64fd32, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:41.193Z","sequence":43500,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:41.193Z","sequence":43501,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A96] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:41.204Z","sequence":43502,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:41.204Z","sequence":43503,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:41.211Z","sequence":43504,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-fd6a2e69-64f1-4cc1-b82e-4eae4bb25e8c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:45.352Z","sequence":43505,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:45.352Z","sequence":43506,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BFC] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:45.362Z","sequence":43507,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:45.362Z","sequence":43508,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:45.368Z","sequence":43509,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8ecf396b-08d7-4b27-9b63-c51808970bbb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:48.402Z","sequence":43510,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:48.402Z","sequence":43511,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100016C] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:48.414Z","sequence":43512,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:48.414Z","sequence":43513,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:48.421Z","sequence":43514,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:48.421Z","sequence":43515,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100016C] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:48.425Z","sequence":43516,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-880b3ed1-ae13-433c-98e1-8ecb7e6b861d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:48.43Z","sequence":43517,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:48.43Z","sequence":43518,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:48.436Z","sequence":43519,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-deb74799-df71-49eb-8fb2-69654f8ee47d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:49.319Z","sequence":43520,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF7DD071816EEDE]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3a6821c5b2e458ad","parentId":"0b84d166770f4d6c","traceId":"0000000000000000a5c90588a68994c8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:49.36Z","sequence":43521,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF7DD071816EEDE]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3a6821c5b2e458ad","parentId":"0b84d166770f4d6c","traceId":"0000000000000000a5c90588a68994c8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:49.943Z","sequence":43522,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: D1D826581416]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5889d8f88aaac480","parentId":"490f95dd3e871b44","traceId":"00000000000000003fa78a2ed554f702","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:49.969Z","sequence":43523,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: D1D826581416]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5889d8f88aaac480","parentId":"490f95dd3e871b44","traceId":"00000000000000003fa78a2ed554f702","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:51.633Z","sequence":43524,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 7C7366981E8D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6df8bff697641c0e","parentId":"23977e18e4aa083e","traceId":"000000000000000003eb8d6f2afe7054","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:51.676Z","sequence":43525,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 7C7366981E8D, resource-version: 585c50bb-30dd-4ae1-bba2-468b7b7d166c]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6df8bff697641c0e","parentId":"23977e18e4aa083e","traceId":"000000000000000003eb8d6f2afe7054","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:51.691Z","sequence":43526,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 7C7366981E8D, resource-version: 93f1174a-b36e-4807-80e8-06728ac4e8a0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6df8bff697641c0e","parentId":"23977e18e4aa083e","traceId":"000000000000000003eb8d6f2afe7054","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:51.697Z","sequence":43527,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 7C7366981E8D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8b360b667eb2ebee","parentId":"df249d6f372f1c78","traceId":"000000000000000003eb8d6f2afe7054","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:52.036Z","sequence":43528,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 7C7366981E8D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8b360b667eb2ebee","parentId":"df249d6f372f1c78","traceId":"000000000000000003eb8d6f2afe7054","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:52.822Z","sequence":43529,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF37FDEF0B84E8A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f7a57c9b5adfc448","parentId":"67bf0ab04d995b2a","traceId":"0000000000000000b3c9989e9ab95e3a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:52.846Z","sequence":43530,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF37FDEF0B84E8A, resource-version: adacb540-8bbe-405c-be00-8b89e4205adc]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f7a57c9b5adfc448","parentId":"67bf0ab04d995b2a","traceId":"0000000000000000b3c9989e9ab95e3a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:52.877Z","sequence":43531,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF37FDEF0B84E8A, resource-version: ff88dfe1-abb3-4fa4-b51f-4ff7e4923700]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f7a57c9b5adfc448","parentId":"67bf0ab04d995b2a","traceId":"0000000000000000b3c9989e9ab95e3a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:53.92Z","sequence":43532,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:53.921Z","sequence":43533,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-7C7366981E8D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:53.947Z","sequence":43534,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-7010cb8b-7136-4b3e-9228-6564e76fcf4a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:54.068Z","sequence":43535,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:54.069Z","sequence":43536,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 7C7366981E8D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:54.081Z","sequence":43537,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-feee75ff-e072-4bb8-ae18-f2f376571515, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:54.085Z","sequence":43538,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:54.085Z","sequence":43539,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF37FDEF0B84E8A] for gateway [7C7366981E8D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:54.101Z","sequence":43540,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:54.101Z","sequence":43541,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:54.516Z","sequence":43542,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-bb9b3c4c-7f0a-40ec-a7ac-f8f39e746a9a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:54.517Z","sequence":43543,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:54.517Z","sequence":43544,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 70B3D57BB1001260] for gateway [gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:54.518Z","sequence":43545,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:54.518Z","sequence":43546,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:54.547Z","sequence":43547,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e7961c8f-9e61-410a-825b-cc8ca8d91382, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:54.548Z","sequence":43548,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:54.548Z","sequence":43549,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:54.59Z","sequence":43550,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e2b83aab-f18c-4f99-865f-ae28d02a1cf3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:55.058Z","sequence":43551,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/conditionall:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:55.058Z","sequence":43552,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: conditionall, device-id: 0008004B512D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:55.081Z","sequence":43553,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1317ab36-a849-4851-ab2d-998e7fb6df45, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:55.085Z","sequence":43554,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:55.085Z","sequence":43555,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: conditionall]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:55.105Z","sequence":43556,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-55bd82d3-7dd3-4207-aeb6-e2412e3262c8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:59.453Z","sequence":43557,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF37FDEF0B84E8A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c739abbbeb05c913","parentId":"bb5fbbcdb51f6be0","traceId":"00000000000000000e3b5f9efe40d363","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:59.505Z","sequence":43558,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF37FDEF0B84E8A]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c739abbbeb05c913","parentId":"bb5fbbcdb51f6be0","traceId":"00000000000000000e3b5f9efe40d363","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:59.822Z","sequence":43559,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:59.822Z","sequence":43560,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100190D] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:59.833Z","sequence":43561,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:59.833Z","sequence":43562,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:59.839Z","sequence":43563,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b12c1e3d-3d5a-41b4-9d95-04782ab42c9a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:05:59.997Z","sequence":43564,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 7C7366981E8D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3f951f9e319facdc","parentId":"6a244ba8b35a3bde","traceId":"0000000000000000a2d90dd5cb0c0ff5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:00.076Z","sequence":43565,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 7C7366981E8D]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3f951f9e319facdc","parentId":"6a244ba8b35a3bde","traceId":"0000000000000000a2d90dd5cb0c0ff5","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:00.413Z","sequence":43566,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:00.413Z","sequence":43567,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A97] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:00.441Z","sequence":43568,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:00.441Z","sequence":43569,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:00.447Z","sequence":43570,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e961a145-bf96-4b9d-8b75-42037f5d19e2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:02.342Z","sequence":43571,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:02.343Z","sequence":43572,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AB2] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:02.348Z","sequence":43573,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:02.348Z","sequence":43574,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:02.355Z","sequence":43575,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a977a4b5-a2b7-442c-a1a7-888e9b871d9e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:03.473Z","sequence":43576,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:03.473Z","sequence":43577,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AA5] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:03.479Z","sequence":43578,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:03.48Z","sequence":43579,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:03.485Z","sequence":43580,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9a68d640-85ae-4c42-bc04-3266bf879d8d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:05.363Z","sequence":43581,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:05.363Z","sequence":43582,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:05.369Z","sequence":43583,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4242ca53-0e4f-45d8-9ae0-f4efefe3a5de, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:05.562Z","sequence":43584,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:05.562Z","sequence":43585,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006D1] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:05.588Z","sequence":43586,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:05.589Z","sequence":43587,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:05.597Z","sequence":43588,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c3b0f8e3-b716-478e-ad6f-1c494204cdb4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:05.728Z","sequence":43589,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:05.729Z","sequence":43590,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006B3] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:05.739Z","sequence":43591,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:05.74Z","sequence":43592,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:05.748Z","sequence":43593,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6c222c0b-af99-4bb7-8ee0-220306ec40a6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:06.583Z","sequence":43594,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:06.584Z","sequence":43595,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10002D6] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:06.589Z","sequence":43596,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:06.59Z","sequence":43597,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:06.595Z","sequence":43598,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-da66c601-0e7a-4f74-bd08-aae27828c754, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:11.387Z","sequence":43599,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:11.388Z","sequence":43600,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C15] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:11.398Z","sequence":43601,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:11.398Z","sequence":43602,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:11.404Z","sequence":43603,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2e49ba72-cd94-4f17-b642-902e0363dbc6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:13.659Z","sequence":43604,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:13.659Z","sequence":43605,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006B8] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:13.666Z","sequence":43606,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:13.666Z","sequence":43607,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:13.674Z","sequence":43608,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d679fb7c-0131-4180-bd80-f415ea7b84db, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:16.756Z","sequence":43609,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:16.756Z","sequence":43610,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A9F] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:16.762Z","sequence":43611,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:16.762Z","sequence":43612,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:16.771Z","sequence":43613,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5b002e44-d9b2-4d1f-9b9f-6fabdda765aa, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:18.725Z","sequence":43614,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:18.725Z","sequence":43615,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100140D] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:18.737Z","sequence":43616,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:18.737Z","sequence":43617,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:18.745Z","sequence":43618,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6db3c0fa-f345-40fd-a429-d5f48628d71a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:19.517Z","sequence":43619,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:19.517Z","sequence":43620,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: flint]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:19.521Z","sequence":43621,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-a2212ff4-1106-4989-8801-41f4d0ac892c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:19.525Z","sequence":43622,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/flint:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:19.525Z","sequence":43623,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: flint, type: hashed-password, auth-id: auth-flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:19.542Z","sequence":43624,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-1d9ec18a-2a67-46db-870a-78bbc9acba29, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:19.857Z","sequence":43625,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:19.857Z","sequence":43626,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AAF] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:19.865Z","sequence":43627,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:19.865Z","sequence":43628,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:19.871Z","sequence":43629,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a4868642-5a7c-4cfa-869c-8bb821c32ad1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:19.997Z","sequence":43630,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:19.997Z","sequence":43631,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10009DF] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:20.009Z","sequence":43632,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:20.009Z","sequence":43633,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:20.013Z","sequence":43634,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-535c7d03-6930-4d9c-b04b-01053950ed31, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:20.471Z","sequence":43635,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:20.471Z","sequence":43636,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A0D] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:20.479Z","sequence":43637,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:20.479Z","sequence":43638,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:20.484Z","sequence":43639,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8e624ab8-657f-4f37-82bf-980ffcb8b979, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:21.889Z","sequence":43640,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:21.889Z","sequence":43641,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A9A] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:21.916Z","sequence":43642,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:21.916Z","sequence":43643,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:21.929Z","sequence":43644,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-70de989e-aa68-44ac-ad3d-fd2980af6460, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:23.005Z","sequence":43645,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:23.005Z","sequence":43646,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A46] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:23.018Z","sequence":43647,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:23.019Z","sequence":43648,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:23.026Z","sequence":43649,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7fbd38e3-a09e-47e7-8665-dd3895e9d463, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:24.33Z","sequence":43650,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:24.331Z","sequence":43651,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100057A] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:24.337Z","sequence":43652,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:24.337Z","sequence":43653,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:24.342Z","sequence":43654,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-42c4c06b-6905-4858-8c68-accb41be101d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:26.634Z","sequence":43655,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:26.634Z","sequence":43656,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C09] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:26.639Z","sequence":43657,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:26.64Z","sequence":43658,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:26.645Z","sequence":43659,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-91b1a850-06b1-4fc7-bcee-6f5efc79e28a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:27.994Z","sequence":43660,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:27.994Z","sequence":43661,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000802] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:28.002Z","sequence":43662,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:28.002Z","sequence":43663,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:28.006Z","sequence":43664,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-fa135bbe-1ef0-4f2d-9889-2ef608cc39d7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:28.931Z","sequence":43665,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:28.931Z","sequence":43666,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006C3] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:28.937Z","sequence":43667,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:28.937Z","sequence":43668,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:28.943Z","sequence":43669,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0adfb0f6-93d5-4a13-992a-36ddc7f6ce9a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:30.456Z","sequence":43670,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:30.456Z","sequence":43671,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AAB] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:30.462Z","sequence":43672,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:30.462Z","sequence":43673,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:30.468Z","sequence":43674,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6c790527-62d5-4436-968e-e26957713f57, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:32.575Z","sequence":43675,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:32.575Z","sequence":43676,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BB84C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:32.582Z","sequence":43677,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ce00f85b-9a00-42a3-869a-b48d4f62c520, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:32.586Z","sequence":43678,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:32.586Z","sequence":43679,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: lanxess]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:32.589Z","sequence":43680,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-a9ecac98-ccd2-4766-b3d5-c20ba47508ef, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:33.587Z","sequence":43681,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:33.587Z","sequence":43682,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 0008004B5135]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:33.596Z","sequence":43683,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8b5c7455-1dbb-4476-bc6a-0368f5d3f607, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:33.601Z","sequence":43684,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:33.601Z","sequence":43685,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: ineos]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:33.604Z","sequence":43686,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-6e035918-e6f2-4e83-82bf-6f703a80cf68, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:35.336Z","sequence":43687,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:35.336Z","sequence":43688,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AA1] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:35.342Z","sequence":43689,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:35.342Z","sequence":43690,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:35.348Z","sequence":43691,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7d1b8073-61e1-46b7-b04e-ef6009de3159, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:36.333Z","sequence":43692,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:36.333Z","sequence":43693,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100190F] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:36.339Z","sequence":43694,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:36.339Z","sequence":43695,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:36.345Z","sequence":43696,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c84177a3-cb18-4cb3-b94a-f9761857f67d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:36.513Z","sequence":43697,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:36.513Z","sequence":43698,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10018EE] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:36.522Z","sequence":43699,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:36.523Z","sequence":43700,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:36.529Z","sequence":43701,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4812abfd-71d5-4421-a4ea-07440aa80b48, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:37.52Z","sequence":43702,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:37.521Z","sequence":43703,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BBD1B]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:37.527Z","sequence":43704,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-cf42b5ab-bcb5-4a27-8d14-60d82ea79dc4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:40.635Z","sequence":43705,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:40.635Z","sequence":43706,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10018F1] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:40.641Z","sequence":43707,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:40.641Z","sequence":43708,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:40.647Z","sequence":43709,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3f5efcaa-00b3-4f00-b03b-8290d6cd8a13, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:45.301Z","sequence":43710,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/arkema:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:45.301Z","sequence":43711,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: arkema, device-id: 0008004AE119]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:45.314Z","sequence":43712,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-cc14a183-8c7d-4b68-b408-13c5f602fb8d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:45.317Z","sequence":43713,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:45.318Z","sequence":43714,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: arkema]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:45.32Z","sequence":43715,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-b5cd5968-b1d7-462d-9699-deb565dda392, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:46.874Z","sequence":43716,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:46.874Z","sequence":43717,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006A4] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:46.883Z","sequence":43718,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:46.883Z","sequence":43719,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:46.889Z","sequence":43720,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e74fcb60-b731-4f38-a445-9f7ebddafb27, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:47.529Z","sequence":43721,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:47.529Z","sequence":43722,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AB3] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:47.554Z","sequence":43723,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:47.554Z","sequence":43724,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:47.56Z","sequence":43725,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ca965134-65da-4c29-b213-25ff1f71c35a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:51.594Z","sequence":43726,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:51.594Z","sequence":43727,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10018F0] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:51.603Z","sequence":43728,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:51.604Z","sequence":43729,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:51.611Z","sequence":43730,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-98749f68-b92f-4dcf-995c-470d95714559, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:52.089Z","sequence":43731,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:52.089Z","sequence":43732,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AA0] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:52.095Z","sequence":43733,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:52.095Z","sequence":43734,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:52.101Z","sequence":43735,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a5fc6bac-e657-4289-8083-d8f46dfda8de, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:56.382Z","sequence":43736,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:56.382Z","sequence":43737,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10018F2] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:56.387Z","sequence":43738,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:56.388Z","sequence":43739,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:06:56.393Z","sequence":43740,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f9acca07-85d8-43d6-97a2-97f49748579f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:02.526Z","sequence":43741,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:02.526Z","sequence":43742,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A94] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:02.532Z","sequence":43743,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:02.532Z","sequence":43744,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:02.538Z","sequence":43745,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-53982587-f81d-48df-9419-949457fcb9cd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:04.253Z","sequence":43746,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191478]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4ab415cb98384bd7","parentId":"bc7eec021cb36243","traceId":"0000000000000000b51ca2bcf101d911","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:04.277Z","sequence":43747,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191478, resource-version: 0b902df6-284b-403e-9b61-fdff3df6d9a9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4ab415cb98384bd7","parentId":"bc7eec021cb36243","traceId":"0000000000000000b51ca2bcf101d911","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:04.285Z","sequence":43748,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191478, resource-version: af78ed0e-1911-4e28-afef-e5084be43eb4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4ab415cb98384bd7","parentId":"bc7eec021cb36243","traceId":"0000000000000000b51ca2bcf101d911","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:04.289Z","sequence":43749,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191478]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ed1c3aa0c66f6c45","parentId":"0a5bd4fc49d8f6c7","traceId":"0000000000000000b51ca2bcf101d911","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:04.467Z","sequence":43750,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191478]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ed1c3aa0c66f6c45","parentId":"0a5bd4fc49d8f6c7","traceId":"0000000000000000b51ca2bcf101d911","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:04.611Z","sequence":43751,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:04.612Z","sequence":43752,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001ABA] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:04.627Z","sequence":43753,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:04.627Z","sequence":43754,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:04.633Z","sequence":43755,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ee036431-66ff-4167-b24c-9ec50db0a552, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:05.273Z","sequence":43756,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF98CF025AC4255]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"552df7aba0d19d53","parentId":"c2c66ea2d734b2ab","traceId":"00000000000000008d200fbad0a4655a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:05.301Z","sequence":43757,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF98CF025AC4255, resource-version: 18003424-070f-4526-91bf-d4e5f26da00a]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"552df7aba0d19d53","parentId":"c2c66ea2d734b2ab","traceId":"00000000000000008d200fbad0a4655a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:05.307Z","sequence":43758,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF98CF025AC4255, resource-version: 9ea7996f-55f9-4f25-b4b7-37f0254737ce]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"552df7aba0d19d53","parentId":"c2c66ea2d734b2ab","traceId":"00000000000000008d200fbad0a4655a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:06.378Z","sequence":43759,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:06.38Z","sequence":43760,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191478]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:06.391Z","sequence":43761,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-a89f5df2-bdf5-46bf-a7a0-d42298410979, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:06.512Z","sequence":43762,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:06.512Z","sequence":43763,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF98CF025AC4255] for gateway [gateway_integrationtest_network_191478]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:06.513Z","sequence":43764,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:06.513Z","sequence":43765,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191478]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:06.533Z","sequence":43766,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:06.533Z","sequence":43767,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:06.533Z","sequence":43768,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-df0607ac-505d-4c8a-a097-b76b8c16e992, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:06.887Z","sequence":43769,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-44d26bfe-f520-4441-a435-891ca99ab855, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:08.726Z","sequence":43770,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:08.726Z","sequence":43771,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C0D] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:08.732Z","sequence":43772,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:08.732Z","sequence":43773,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:08.738Z","sequence":43774,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6388c27e-55e7-45c6-bc17-cf06d1f09568, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:09.962Z","sequence":43775,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:09.963Z","sequence":43776,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C13] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:09.97Z","sequence":43777,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:09.97Z","sequence":43778,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:09.976Z","sequence":43779,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3aa17af0-c74f-4c20-acab-26f6a46fb4ab, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:11.912Z","sequence":43780,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:11.912Z","sequence":43781,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AAC] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:11.918Z","sequence":43782,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:11.918Z","sequence":43783,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:11.924Z","sequence":43784,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c4d65fc9-3b0b-46f0-ab04-a94707242f86, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:13.475Z","sequence":43785,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/conditionall:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:13.476Z","sequence":43786,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: conditionall, device-id: 70B3D57BB1000228] for gateway [0008004B512D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:13.497Z","sequence":43787,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_conditionall\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:13.497Z","sequence":43788,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_conditionall\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:13.5Z","sequence":43789,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7ef22561-e945-4370-8064-47c925b05cc5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:20.937Z","sequence":43790,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF98CF025AC4255]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2182a978c73a8a4b","parentId":"2d1d2ecd39ac069e","traceId":"000000000000000015062ee28b7d2719","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:20.952Z","sequence":43791,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF98CF025AC4255]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"2182a978c73a8a4b","parentId":"2d1d2ecd39ac069e","traceId":"000000000000000015062ee28b7d2719","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:21.12Z","sequence":43792,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191478]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ad756ad93da46088","parentId":"37759d15ac489c39","traceId":"00000000000000002c3932486e66e132","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:21.136Z","sequence":43793,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191478]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ad756ad93da46088","parentId":"37759d15ac489c39","traceId":"00000000000000002c3932486e66e132","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:21.901Z","sequence":43794,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 50B237073BB5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0d3839fcd14bb37b","parentId":"b15a0f1a6503472d","traceId":"00000000000000007f8325dbfb3f0734","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:21.918Z","sequence":43795,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 50B237073BB5, resource-version: dc655de4-8ba6-4278-8501-b3fd93b8bba4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0d3839fcd14bb37b","parentId":"b15a0f1a6503472d","traceId":"00000000000000007f8325dbfb3f0734","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:21.925Z","sequence":43796,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 50B237073BB5, resource-version: 0e3bf929-0f10-4c68-917c-4210a989eabb]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0d3839fcd14bb37b","parentId":"b15a0f1a6503472d","traceId":"00000000000000007f8325dbfb3f0734","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:21.928Z","sequence":43797,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 50B237073BB5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"94ac7f4957f26d84","parentId":"3db3357d368ffd74","traceId":"00000000000000007f8325dbfb3f0734","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:22.055Z","sequence":43798,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 50B237073BB5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"94ac7f4957f26d84","parentId":"3db3357d368ffd74","traceId":"00000000000000007f8325dbfb3f0734","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:22.639Z","sequence":43799,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF5F3ACB08D17A9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"929d3d6f6aabb0a2","parentId":"4a87f1b0bfa062af","traceId":"0000000000000000f44e6a9c6d74ce35","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:22.657Z","sequence":43800,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF5F3ACB08D17A9, resource-version: 491b652e-6abb-4987-83a5-20552cf844aa]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"929d3d6f6aabb0a2","parentId":"4a87f1b0bfa062af","traceId":"0000000000000000f44e6a9c6d74ce35","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:22.665Z","sequence":43801,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF5F3ACB08D17A9, resource-version: 80fa7e42-50e7-4728-a3d4-3f5da3bf8f95]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"929d3d6f6aabb0a2","parentId":"4a87f1b0bfa062af","traceId":"0000000000000000f44e6a9c6d74ce35","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:23.716Z","sequence":43802,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:23.716Z","sequence":43803,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-50B237073BB5]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:23.726Z","sequence":43804,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-30475faa-db67-4e22-8564-1151018bf683, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:23.843Z","sequence":43805,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:23.843Z","sequence":43806,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 50B237073BB5]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:23.848Z","sequence":43807,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b4c7a379-ab95-4332-828a-c34bf5d3817e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:23.853Z","sequence":43808,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:23.853Z","sequence":43809,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF5F3ACB08D17A9] for gateway [50B237073BB5]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:23.858Z","sequence":43810,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:23.859Z","sequence":43811,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:24.048Z","sequence":43812,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-27325ac3-8ac7-4884-becb-898d46748900, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:27.075Z","sequence":43813,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:27.075Z","sequence":43814,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: shell]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:27.078Z","sequence":43815,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-ddc611d3-fc02-4fd0-8e7e-12dcf211dc02, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:27.08Z","sequence":43816,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/shell:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:27.081Z","sequence":43817,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: shell, type: hashed-password, auth-id: auth-gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:27.09Z","sequence":43818,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-da99f651-d5f7-4fe0-802d-dc995cfd8265, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:27.21Z","sequence":43819,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:27.21Z","sequence":43820,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001901] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:27.216Z","sequence":43821,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:27.216Z","sequence":43822,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:27.222Z","sequence":43823,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ab4f593c-0679-48d0-9366-b6df19a6be27, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:28.575Z","sequence":43824,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:28.575Z","sequence":43825,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:28.583Z","sequence":43826,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4c5dbb2d-cbc1-466b-86df-b5fa4fcf1de6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:34.56Z","sequence":43827,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:34.561Z","sequence":43828,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001910] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:34.566Z","sequence":43829,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:34.566Z","sequence":43830,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:34.572Z","sequence":43831,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ee088ee1-cd1b-4af9-a472-dd3824352fbe, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:36.785Z","sequence":43832,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:36.785Z","sequence":43833,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AB1] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:36.79Z","sequence":43834,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:36.79Z","sequence":43835,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:36.796Z","sequence":43836,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9d10ba9c-fcf4-4c1a-b201-9608446819f6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:36.829Z","sequence":43837,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF5F3ACB08D17A9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a3d8d4b9550e396e","parentId":"cdf3e6f5ec3f359e","traceId":"0000000000000000d0831feca219d640","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:36.849Z","sequence":43838,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF5F3ACB08D17A9]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a3d8d4b9550e396e","parentId":"cdf3e6f5ec3f359e","traceId":"0000000000000000d0831feca219d640","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:37.181Z","sequence":43839,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 50B237073BB5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0e17bbe681fe7768","parentId":"2920f9e246ae3ae1","traceId":"00000000000000007d46590344867680","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:37.199Z","sequence":43840,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 50B237073BB5]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0e17bbe681fe7768","parentId":"2920f9e246ae3ae1","traceId":"00000000000000007d46590344867680","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:44.029Z","sequence":43841,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:44.029Z","sequence":43842,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oci]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:44.042Z","sequence":43843,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-72ce3f2d-e564-483d-b4ce-3e351bc3fcba, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:44.045Z","sequence":43844,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:44.045Z","sequence":43845,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100016F] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:44.054Z","sequence":43846,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:44.054Z","sequence":43847,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB100016F] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:44.059Z","sequence":43848,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:44.06Z","sequence":43849,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:44.063Z","sequence":43850,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-29e51712-717d-4af5-868e-9d3f5f46ff8f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:44.064Z","sequence":43851,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:44.064Z","sequence":43852,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:44.067Z","sequence":43853,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8fedbf48-cb67-4d0a-9d05-7ef8db5636e2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:44.784Z","sequence":43854,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:44.785Z","sequence":43855,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100190B] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:44.805Z","sequence":43856,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:44.805Z","sequence":43857,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:44.813Z","sequence":43858,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8d916055-aa0e-47ad-8978-f396bc02ac66, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:46.713Z","sequence":43859,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:46.713Z","sequence":43860,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001ABE] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:46.721Z","sequence":43861,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:46.721Z","sequence":43862,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:46.729Z","sequence":43863,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b75cc7d6-fa1d-48d0-9c54-7b648472a230, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:49.79Z","sequence":43864,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:49.79Z","sequence":43865,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AAA] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:49.796Z","sequence":43866,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:49.796Z","sequence":43867,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:49.802Z","sequence":43868,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-813a5e3f-d7fd-4710-a8d4-48196588ef8e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:54.188Z","sequence":43869,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:54.191Z","sequence":43870,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10018FE] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:54.199Z","sequence":43871,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:54.199Z","sequence":43872,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:54.212Z","sequence":43873,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-70f1aa1b-776c-4a6c-b924-8add45adb625, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:57.492Z","sequence":43874,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:57.492Z","sequence":43875,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001919] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:57.506Z","sequence":43876,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:57.506Z","sequence":43877,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:57.522Z","sequence":43878,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-942295f2-b22e-46c5-8170-5819de619e0a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:57.885Z","sequence":43879,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:57.885Z","sequence":43880,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 0008004C80F4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:57.886Z","sequence":43881,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:57.886Z","sequence":43882,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019EC] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:57.904Z","sequence":43883,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:57.905Z","sequence":43884,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:57.905Z","sequence":43885,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-84b4501a-694b-4ba7-9d1c-8edb4da5d2e7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:57.914Z","sequence":43886,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a4a61eff-4dee-4822-b229-ca884d1547c3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:58.485Z","sequence":43887,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:58.485Z","sequence":43888,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000809] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:58.509Z","sequence":43889,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:58.509Z","sequence":43890,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:07:58.519Z","sequence":43891,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-38dcbace-f528-4bee-9bdd-c93503e660bf, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:03.083Z","sequence":43892,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:03.083Z","sequence":43893,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001ABD] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:03.101Z","sequence":43894,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:03.101Z","sequence":43895,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:03.11Z","sequence":43896,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ef319819-5027-4230-a0a1-80ef14ba8a49, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:04.529Z","sequence":43897,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:04.529Z","sequence":43898,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000204] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:04.544Z","sequence":43899,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:04.544Z","sequence":43900,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:04.549Z","sequence":43901,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0a8c228e-0650-4d33-9ae8-cd9402fef6c1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:04.759Z","sequence":43902,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:04.759Z","sequence":43903,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000204] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:04.764Z","sequence":43904,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:04.764Z","sequence":43905,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:04.77Z","sequence":43906,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-caec7db7-0aea-475a-a8de-e639b76e096c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:06.081Z","sequence":43907,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:06.082Z","sequence":43908,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: dow]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:06.085Z","sequence":43909,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-f1d457c5-6df1-439b-94a8-cd97f4029383, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:06.092Z","sequence":43910,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/dow:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:06.093Z","sequence":43911,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: dow, type: hashed-password, auth-id: auth-gateway_dow_network_39199]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:06.125Z","sequence":43912,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-99657fa5-4f95-4f16-8c76-4c578a75124d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:06.178Z","sequence":43913,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:06.179Z","sequence":43914,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000A22] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:06.189Z","sequence":43915,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:06.189Z","sequence":43916,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:06.207Z","sequence":43917,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c1e376ea-2597-44ff-bd3f-1dfb37136423, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:06.407Z","sequence":43918,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:06.407Z","sequence":43919,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 70B3D57BB10014FA] for gateway [gateway_dow_network_39199]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:06.408Z","sequence":43920,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:06.408Z","sequence":43921,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: gateway_dow_network_39199]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:06.422Z","sequence":43922,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:06.422Z","sequence":43923,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:06.424Z","sequence":43924,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3a9a8a78-135d-4c2f-bed5-288c04562b39, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:06.432Z","sequence":43925,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a97b513f-0155-4cff-a322-ab6dd163cc8b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:07.017Z","sequence":43926,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:07.017Z","sequence":43927,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BF1] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:07.027Z","sequence":43928,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:07.027Z","sequence":43929,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:07.04Z","sequence":43930,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-75b008f7-96d3-4400-875b-b4db953a0cea, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:08.191Z","sequence":43931,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:08.191Z","sequence":43932,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BBD1C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:08.209Z","sequence":43933,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a0f0e44f-08b7-4992-aee4-deb9bd7bfbc8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:11.364Z","sequence":43934,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:11.364Z","sequence":43935,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:11.397Z","sequence":43936,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-41a768ff-b2f5-4dc9-bf6a-8641a68b792b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:11.457Z","sequence":43937,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:11.457Z","sequence":43938,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006C9] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:11.481Z","sequence":43939,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:11.481Z","sequence":43940,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:11.49Z","sequence":43941,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7a54474b-d5fa-4bd1-89b7-86b64d865577, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:16.133Z","sequence":43942,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oiltanking:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:16.133Z","sequence":43943,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oiltanking, device-id: 0008004BB60F]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:16.163Z","sequence":43944,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a388ef55-dad0-4b11-8eec-c7024202fa2b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:16.167Z","sequence":43945,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:16.167Z","sequence":43946,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oiltanking]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:16.181Z","sequence":43947,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-bc066bb4-bc31-438d-af22-6718c7d18b18, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:19.661Z","sequence":43948,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:19.661Z","sequence":43949,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AE4] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:19.684Z","sequence":43950,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:19.684Z","sequence":43951,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:19.701Z","sequence":43952,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-86ba3e92-df3a-4452-8bee-9524251e3e0a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:24.932Z","sequence":43953,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:24.932Z","sequence":43954,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB1000A64] for gateway [0008004B5135]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:24.949Z","sequence":43955,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:24.949Z","sequence":43956,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:24.959Z","sequence":43957,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5203e57c-ad88-4b3b-96ba-3ee9cd114829, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:26.766Z","sequence":43958,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:26.766Z","sequence":43959,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BEE] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:26.771Z","sequence":43960,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:26.771Z","sequence":43961,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:26.777Z","sequence":43962,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4bda8e8d-cb63-4626-8a0c-a6d3a5021e70, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:35.608Z","sequence":43963,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:35.609Z","sequence":43964,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001F4] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:35.614Z","sequence":43965,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:35.614Z","sequence":43966,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:35.618Z","sequence":43967,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-17b9e602-24a7-45a6-9dc0-e8ba680cc8df, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:35.71Z","sequence":43968,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:35.71Z","sequence":43969,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB10001F4] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:35.723Z","sequence":43970,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:35.723Z","sequence":43971,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:35.727Z","sequence":43972,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5560c1f1-64d5-4a1d-b65b-781463e5b5df, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:35.805Z","sequence":43973,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:35.805Z","sequence":43974,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C0B] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:35.813Z","sequence":43975,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:35.813Z","sequence":43976,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:35.82Z","sequence":43977,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f65015d1-9776-4d21-8dcc-d46163ebed00, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:40.005Z","sequence":43978,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:40.005Z","sequence":43979,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10018E3] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:40.014Z","sequence":43980,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:40.014Z","sequence":43981,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:40.02Z","sequence":43982,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6199bece-eea1-4ac3-827f-d41a0ad2e684, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:42.15Z","sequence":43983,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:42.15Z","sequence":43984,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10001C7] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:42.16Z","sequence":43985,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:42.16Z","sequence":43986,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:42.167Z","sequence":43987,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-be6f7365-25de-45f0-b189-2aea66178bed, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:43.606Z","sequence":43988,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:43.606Z","sequence":43989,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A75] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:43.611Z","sequence":43990,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:43.611Z","sequence":43991,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:43.621Z","sequence":43992,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b665f627-82fb-4f27-9faf-8fddba26f19e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:46.257Z","sequence":43993,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/aloxy:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:46.257Z","sequence":43994,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: aloxy, device-id: 0008004A8F68]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:46.272Z","sequence":43995,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3b50d3bc-d08a-43ed-9ff9-6e46cc956710, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:46.276Z","sequence":43996,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:46.276Z","sequence":43997,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: aloxy]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:46.28Z","sequence":43998,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-60ddd4c6-f7ed-4fb5-aa1c-016af86c704d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:50.773Z","sequence":43999,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:50.773Z","sequence":44000,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 70B3D57BB1000190] for gateway [0008004BB613]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:50.78Z","sequence":44001,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_lanxess\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:50.78Z","sequence":44002,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_lanxess\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:50.783Z","sequence":44003,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3674b155-7f83-403d-866c-915e788f8c1d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:52.186Z","sequence":44004,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:52.186Z","sequence":44005,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 70B3D57BB1000190] for gateway [0008004BBD1B]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:52.193Z","sequence":44006,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_lanxess\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:52.194Z","sequence":44007,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_lanxess\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:52.201Z","sequence":44008,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e38b2dc6-d366-4744-8b3a-9194729506dd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:56.266Z","sequence":44009,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:56.267Z","sequence":44010,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10002D5] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:56.272Z","sequence":44011,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:56.273Z","sequence":44012,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:56.284Z","sequence":44013,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-08bc566d-1da8-489b-b89b-843a2e757e4f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:59.295Z","sequence":44014,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:59.295Z","sequence":44015,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 70B3D57BB1000A88] for gateway [0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:59.301Z","sequence":44016,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_ineos\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:59.301Z","sequence":44017,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_ineos\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:59.304Z","sequence":44018,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9474672a-8e92-4d9f-bab3-fc9d0e2b923f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:59.879Z","sequence":44019,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:59.879Z","sequence":44020,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BF2] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:59.904Z","sequence":44021,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:59.905Z","sequence":44022,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:08:59.917Z","sequence":44023,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6ef0e9fe-139d-4c99-9783-e36a0806ae2d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:04.497Z","sequence":44024,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191480]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"eca8abfb98988688","parentId":"c63dee015d585d72","traceId":"0000000000000000584797606b4bf174","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:04.521Z","sequence":44025,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191480, resource-version: 79c439b9-b985-4ddf-9307-ac07023f6e56]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"eca8abfb98988688","parentId":"c63dee015d585d72","traceId":"0000000000000000584797606b4bf174","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:04.531Z","sequence":44026,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191480, resource-version: c97c8acf-e5a9-4cff-bd82-762941583b17]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"eca8abfb98988688","parentId":"c63dee015d585d72","traceId":"0000000000000000584797606b4bf174","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:04.537Z","sequence":44027,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191480]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e7ba75ea58733de9","parentId":"ed8985f00d00e60e","traceId":"0000000000000000584797606b4bf174","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:04.733Z","sequence":44028,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191480]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"e7ba75ea58733de9","parentId":"ed8985f00d00e60e","traceId":"0000000000000000584797606b4bf174","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:05.499Z","sequence":44029,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EF733481820EC12]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cf5882ae14020f72","parentId":"b1bd314852623cae","traceId":"00000000000000000b0df27948e38755","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:05.517Z","sequence":44030,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EF733481820EC12, resource-version: f59afeed-4195-40a5-8a89-2fd842cba357]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cf5882ae14020f72","parentId":"b1bd314852623cae","traceId":"00000000000000000b0df27948e38755","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:05.522Z","sequence":44031,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EF733481820EC12, resource-version: e613f933-3c00-4a87-956f-573ad41486a2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cf5882ae14020f72","parentId":"b1bd314852623cae","traceId":"00000000000000000b0df27948e38755","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:06.214Z","sequence":44032,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:06.214Z","sequence":44033,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BB613]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:06.221Z","sequence":44034,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-991ec3e8-f236-42f9-a94a-6029ef348f66, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:06.598Z","sequence":44035,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:06.598Z","sequence":44036,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:06.602Z","sequence":44037,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-fb8cf4cf-9edd-4621-9992-0b64b4386ef5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:06.604Z","sequence":44038,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:06.604Z","sequence":44039,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191480]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:06.616Z","sequence":44040,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-8850b678-632c-4784-ab88-22150865165b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:06.737Z","sequence":44041,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:06.737Z","sequence":44042,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EF733481820EC12] for gateway [gateway_integrationtest_network_191480]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:06.737Z","sequence":44043,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:06.737Z","sequence":44044,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191480]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:06.745Z","sequence":44045,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:06.745Z","sequence":44046,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:06.746Z","sequence":44047,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-12feeb45-fae3-4a79-8c84-dac836a14352, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:07.057Z","sequence":44048,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7fb176b3-2143-44cd-9d58-52ef85f4bda9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:08.578Z","sequence":44049,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:08.579Z","sequence":44050,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: terega]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:08.582Z","sequence":44051,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-ffac5cfa-3982-4031-bbb5-5df106db4d39, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:08.586Z","sequence":44052,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/terega:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:08.586Z","sequence":44053,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: terega, type: hashed-password, auth-id: auth-gateway_terega_network_27]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:08.601Z","sequence":44054,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-a3a758a9-3ecf-4598-b6ea-22c5236df9af, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:08.738Z","sequence":44055,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/terega:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:08.738Z","sequence":44056,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: terega, device-id: 70B3D57BB1000E13] for gateway [gateway_terega_network_27]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:08.739Z","sequence":44057,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/terega:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:08.74Z","sequence":44058,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: terega, device-id: gateway_terega_network_27]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:08.748Z","sequence":44059,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_terega\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:08.75Z","sequence":44060,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_terega\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:08.751Z","sequence":44061,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-52fa40da-3a00-4fab-96a4-4ae7958e7df6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:08.755Z","sequence":44062,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-145567a4-30a8-4cba-8a71-cdc4ae34757d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:16.146Z","sequence":44063,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:16.146Z","sequence":44064,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BF7] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:16.154Z","sequence":44065,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:16.155Z","sequence":44066,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:16.16Z","sequence":44067,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0c6e8bcd-19cd-4667-8988-19d69290f598, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:21.413Z","sequence":44068,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EF733481820EC12]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ccecbda6885735ac","parentId":"83d7ac14647a4b4c","traceId":"0000000000000000fb4e91ab7af749a6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:21.434Z","sequence":44069,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EF733481820EC12]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ccecbda6885735ac","parentId":"83d7ac14647a4b4c","traceId":"0000000000000000fb4e91ab7af749a6","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:21.649Z","sequence":44070,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191480]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8814362dacf8bcd7","parentId":"c376795f721b2a3c","traceId":"00000000000000000c8d3096321bc27c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:21.665Z","sequence":44071,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191480]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"8814362dacf8bcd7","parentId":"c376795f721b2a3c","traceId":"00000000000000000c8d3096321bc27c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:22.196Z","sequence":44072,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: ECD0A4AB17A2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d4be3c82abc81019","parentId":"a59b3ae81b93c3d4","traceId":"00000000000000009942f2bc4342f6b2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:22.214Z","sequence":44073,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: ECD0A4AB17A2, resource-version: 18636b59-31ed-4385-9a91-4591aa7abe50]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d4be3c82abc81019","parentId":"a59b3ae81b93c3d4","traceId":"00000000000000009942f2bc4342f6b2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:22.22Z","sequence":44074,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: ECD0A4AB17A2, resource-version: 0c109093-d6f6-44d0-ab15-d1788193465b]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"d4be3c82abc81019","parentId":"a59b3ae81b93c3d4","traceId":"00000000000000009942f2bc4342f6b2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:22.223Z","sequence":44075,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: ECD0A4AB17A2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f8a26d948e37c4bc","parentId":"cd731272b847ce36","traceId":"00000000000000009942f2bc4342f6b2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:22.347Z","sequence":44076,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: ECD0A4AB17A2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f8a26d948e37c4bc","parentId":"cd731272b847ce36","traceId":"00000000000000009942f2bc4342f6b2","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:22.732Z","sequence":44077,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFD41957E742BEB]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f685eb5ae65f1149","parentId":"dd91db9a22ed36bc","traceId":"0000000000000000f72a9b2c91f1fbd8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:22.75Z","sequence":44078,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFD41957E742BEB, resource-version: a7ad6a41-8ed7-49c9-bef1-8d3d0c69a0e6]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f685eb5ae65f1149","parentId":"dd91db9a22ed36bc","traceId":"0000000000000000f72a9b2c91f1fbd8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:22.758Z","sequence":44079,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFD41957E742BEB, resource-version: 614967ef-7409-42ba-9e4d-1b71ef84505b]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f685eb5ae65f1149","parentId":"dd91db9a22ed36bc","traceId":"0000000000000000f72a9b2c91f1fbd8","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:23.806Z","sequence":44080,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:23.807Z","sequence":44081,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: integrationtest]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:23.81Z","sequence":44082,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-617a6af1-e15d-4626-aad3-8b0d0a60f661, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:23.812Z","sequence":44083,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:23.812Z","sequence":44084,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-ECD0A4AB17A2]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:23.823Z","sequence":44085,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-d3b7186f-c238-47a7-85a6-688f3dcf8bfc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:23.944Z","sequence":44086,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:23.944Z","sequence":44087,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: ECD0A4AB17A2]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:23.95Z","sequence":44088,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-884890cb-2de9-4e71-8719-a8753d049616, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:23.954Z","sequence":44089,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:23.954Z","sequence":44090,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD41957E742BEB] for gateway [ECD0A4AB17A2]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:23.959Z","sequence":44091,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:23.959Z","sequence":44092,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:24.219Z","sequence":44093,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-abb1b22f-26ed-4c2e-bef8-908f55dc215b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:26.068Z","sequence":44094,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/dow:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:26.069Z","sequence":44095,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: dow, type: hashed-password, auth-id: auth-gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:26.08Z","sequence":44096,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-5ef6617b-7af9-4db6-b548-c7bf12badd9b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:26.386Z","sequence":44097,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:26.386Z","sequence":44098,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 70B3D57BB100126E] for gateway [gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:26.392Z","sequence":44099,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:26.392Z","sequence":44100,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:26.396Z","sequence":44101,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e1d8145f-cd0c-41bd-a2f8-f4556de77f7b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:35.175Z","sequence":44102,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFD41957E742BEB]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0d1cc21fd263bb60","parentId":"0203f258f439688f","traceId":"0000000000000000c075cc32bba43ef0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:35.192Z","sequence":44103,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFD41957E742BEB]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"0d1cc21fd263bb60","parentId":"0203f258f439688f","traceId":"0000000000000000c075cc32bba43ef0","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:35.541Z","sequence":44104,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: ECD0A4AB17A2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"621118bbabdea6cb","parentId":"d0eceac33beaa777","traceId":"00000000000000005b98de5697ed3a19","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:35.558Z","sequence":44105,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: ECD0A4AB17A2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"621118bbabdea6cb","parentId":"d0eceac33beaa777","traceId":"00000000000000005b98de5697ed3a19","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38Z","sequence":44106,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client's [lora-adapter@HONO] access token has expired, closing connection","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.001Z","sequence":44107,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client's [mqtt-adapter@HONO] access token has expired, closing connection","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.002Z","sequence":44108,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client's [lora-adapter@HONO] access token has expired, closing connection","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.002Z","sequence":44109,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client's [command-router@HONO] access token has expired, closing connection","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.003Z","sequence":44110,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client's [mqtt-adapter@HONO] access token has expired, closing connection","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.003Z","sequence":44111,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client's [lora-adapter@HONO] access token has expired, closing connection","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.12Z","sequence":44112,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"initializing SASL authenticator","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.12Z","sequence":44113,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client provided an empty list of SASL mechanisms [hostname: null, state: PN_SASL_IDLE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.121Z","sequence":44114,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"initializing SASL authenticator","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.121Z","sequence":44115,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client provided an empty list of SASL mechanisms [hostname: null, state: PN_SASL_IDLE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.124Z","sequence":44116,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client wants to authenticate using SASL [mechanism: PLAIN, host: null, state: PN_SASL_STEP]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.125Z","sequence":44117,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"received authentication request [mechanism: PLAIN]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"01907d9c7b6d7b71","traceId":"2e67b1f29c2d4ad235907159f0b8b5d3","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.125Z","sequence":44118,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"processing PLAIN authentication request [authzid: , authcid: command-router@HONO, pwd: *****]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"01907d9c7b6d7b71","traceId":"2e67b1f29c2d4ad235907159f0b8b5d3","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.125Z","sequence":44119,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"OpenSSL [available: false, supports KeyManagerFactory: false]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"01907d9c7b6d7b71","traceId":"2e67b1f29c2d4ad235907159f0b8b5d3","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.125Z","sequence":44120,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"using JVM's default SSL engine","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"01907d9c7b6d7b71","traceId":"2e67b1f29c2d4ad235907159f0b8b5d3","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.125Z","sequence":44121,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"01907d9c7b6d7b71","traceId":"2e67b1f29c2d4ad235907159f0b8b5d3","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.125Z","sequence":44122,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"01907d9c7b6d7b71","traceId":"2e67b1f29c2d4ad235907159f0b8b5d3","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.125Z","sequence":44123,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connecting to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"01907d9c7b6d7b71","traceId":"2e67b1f29c2d4ad235907159f0b8b5d3","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.129Z","sequence":44124,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"initializing SASL authenticator","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.13Z","sequence":44125,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client provided an empty list of SASL mechanisms [hostname: null, state: PN_SASL_IDLE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.13Z","sequence":44126,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client wants to authenticate using SASL [mechanism: PLAIN, host: null, state: PN_SASL_STEP]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.13Z","sequence":44127,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"received authentication request [mechanism: PLAIN]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6d1540a0267b416d","traceId":"b6c7e18e2b222b9dcb19e96250e48d92","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.13Z","sequence":44128,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"processing PLAIN authentication request [authzid: , authcid: mqtt-adapter@HONO, pwd: *****]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6d1540a0267b416d","traceId":"b6c7e18e2b222b9dcb19e96250e48d92","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.131Z","sequence":44129,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"OpenSSL [available: false, supports KeyManagerFactory: false]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6d1540a0267b416d","traceId":"b6c7e18e2b222b9dcb19e96250e48d92","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.131Z","sequence":44130,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"using JVM's default SSL engine","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6d1540a0267b416d","traceId":"b6c7e18e2b222b9dcb19e96250e48d92","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.131Z","sequence":44131,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6d1540a0267b416d","traceId":"b6c7e18e2b222b9dcb19e96250e48d92","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.131Z","sequence":44132,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6d1540a0267b416d","traceId":"b6c7e18e2b222b9dcb19e96250e48d92","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.131Z","sequence":44133,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connecting to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6d1540a0267b416d","traceId":"b6c7e18e2b222b9dcb19e96250e48d92","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.132Z","sequence":44134,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client wants to authenticate using SASL [mechanism: PLAIN, host: null, state: PN_SASL_STEP]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.132Z","sequence":44135,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"received authentication request [mechanism: PLAIN]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"de9ca33141886abb","traceId":"adaae001b45f7f33ead9ae1bcdf1b79e","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.132Z","sequence":44136,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"processing PLAIN authentication request [authzid: , authcid: mqtt-adapter@HONO, pwd: *****]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"de9ca33141886abb","traceId":"adaae001b45f7f33ead9ae1bcdf1b79e","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.132Z","sequence":44137,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"OpenSSL [available: false, supports KeyManagerFactory: false]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"de9ca33141886abb","traceId":"adaae001b45f7f33ead9ae1bcdf1b79e","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.132Z","sequence":44138,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"using JVM's default SSL engine","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"de9ca33141886abb","traceId":"adaae001b45f7f33ead9ae1bcdf1b79e","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.132Z","sequence":44139,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"de9ca33141886abb","traceId":"adaae001b45f7f33ead9ae1bcdf1b79e","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.132Z","sequence":44140,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"de9ca33141886abb","traceId":"adaae001b45f7f33ead9ae1bcdf1b79e","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.132Z","sequence":44141,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connecting to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"de9ca33141886abb","traceId":"adaae001b45f7f33ead9ae1bcdf1b79e","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.235Z","sequence":44142,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"initializing SASL authenticator","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.235Z","sequence":44143,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client provided an empty list of SASL mechanisms [hostname: null, state: PN_SASL_IDLE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.236Z","sequence":44144,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"initializing SASL authenticator","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.237Z","sequence":44145,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client provided an empty list of SASL mechanisms [hostname: null, state: PN_SASL_IDLE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.249Z","sequence":44146,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"initializing SASL authenticator","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.249Z","sequence":44147,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client provided an empty list of SASL mechanisms [hostname: null, state: PN_SASL_IDLE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.249Z","sequence":44148,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client wants to authenticate using SASL [mechanism: PLAIN, host: null, state: PN_SASL_STEP]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.25Z","sequence":44149,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client wants to authenticate using SASL [mechanism: PLAIN, host: null, state: PN_SASL_STEP]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.25Z","sequence":44150,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"received authentication request [mechanism: PLAIN]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fc835ed036736c39","traceId":"fc91f3a03f96953b98c7bfd03f35707c","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.25Z","sequence":44151,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"processing PLAIN authentication request [authzid: , authcid: lora-adapter@HONO, pwd: *****]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fc835ed036736c39","traceId":"fc91f3a03f96953b98c7bfd03f35707c","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.25Z","sequence":44152,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"OpenSSL [available: false, supports KeyManagerFactory: false]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fc835ed036736c39","traceId":"fc91f3a03f96953b98c7bfd03f35707c","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.25Z","sequence":44153,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"using JVM's default SSL engine","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fc835ed036736c39","traceId":"fc91f3a03f96953b98c7bfd03f35707c","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.25Z","sequence":44154,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fc835ed036736c39","traceId":"fc91f3a03f96953b98c7bfd03f35707c","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.25Z","sequence":44155,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fc835ed036736c39","traceId":"fc91f3a03f96953b98c7bfd03f35707c","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.25Z","sequence":44156,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connecting to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fc835ed036736c39","traceId":"fc91f3a03f96953b98c7bfd03f35707c","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.256Z","sequence":44157,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client wants to authenticate using SASL [mechanism: PLAIN, host: null, state: PN_SASL_STEP]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.257Z","sequence":44158,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"received authentication request [mechanism: PLAIN]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cf1bbfd8ea7a8b84","traceId":"dea31e6edb9c0f6c73dc78063afe6bbe","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.257Z","sequence":44159,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"processing PLAIN authentication request [authzid: , authcid: lora-adapter@HONO, pwd: *****]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cf1bbfd8ea7a8b84","traceId":"dea31e6edb9c0f6c73dc78063afe6bbe","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.257Z","sequence":44160,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"OpenSSL [available: false, supports KeyManagerFactory: false]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cf1bbfd8ea7a8b84","traceId":"dea31e6edb9c0f6c73dc78063afe6bbe","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.258Z","sequence":44161,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"using JVM's default SSL engine","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cf1bbfd8ea7a8b84","traceId":"dea31e6edb9c0f6c73dc78063afe6bbe","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.258Z","sequence":44162,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cf1bbfd8ea7a8b84","traceId":"dea31e6edb9c0f6c73dc78063afe6bbe","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.258Z","sequence":44163,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cf1bbfd8ea7a8b84","traceId":"dea31e6edb9c0f6c73dc78063afe6bbe","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.258Z","sequence":44164,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connecting to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cf1bbfd8ea7a8b84","traceId":"dea31e6edb9c0f6c73dc78063afe6bbe","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.258Z","sequence":44165,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"received authentication request [mechanism: PLAIN]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"510fb9ea23837b8e","traceId":"068b3de748080f9f4bba5b250c318003","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.259Z","sequence":44166,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"processing PLAIN authentication request [authzid: , authcid: lora-adapter@HONO, pwd: *****]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"510fb9ea23837b8e","traceId":"068b3de748080f9f4bba5b250c318003","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.259Z","sequence":44167,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"OpenSSL [available: false, supports KeyManagerFactory: false]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"510fb9ea23837b8e","traceId":"068b3de748080f9f4bba5b250c318003","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.259Z","sequence":44168,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"using JVM's default SSL engine","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"510fb9ea23837b8e","traceId":"068b3de748080f9f4bba5b250c318003","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.259Z","sequence":44169,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"510fb9ea23837b8e","traceId":"068b3de748080f9f4bba5b250c318003","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.259Z","sequence":44170,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"510fb9ea23837b8e","traceId":"068b3de748080f9f4bba5b250c318003","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.26Z","sequence":44171,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connecting to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"510fb9ea23837b8e","traceId":"068b3de748080f9f4bba5b250c318003","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.29Z","sequence":44172,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connected to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server], opening connection ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"01907d9c7b6d7b71","traceId":"2e67b1f29c2d4ad235907159f0b8b5d3","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.292Z","sequence":44173,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connection to container [hono-auth-0.0.0.0:5671] at [amqps://aloxy-hono-service-auth:5671, role: Authentication Server] open","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"01907d9c7b6d7b71","traceId":"2e67b1f29c2d4ad235907159f0b8b5d3","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.294Z","sequence":44174,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"opened receiver link to Authentication service, waiting for token ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"01907d9c7b6d7b71","traceId":"2e67b1f29c2d4ad235907159f0b8b5d3","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.294Z","sequence":44175,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"successfully retrieved token from Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"01907d9c7b6d7b71","traceId":"2e67b1f29c2d4ad235907159f0b8b5d3","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.294Z","sequence":44176,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"closing connection to Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"01907d9c7b6d7b71","traceId":"2e67b1f29c2d4ad235907159f0b8b5d3","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.295Z","sequence":44177,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.EventBusAuthenticationService","level":"DEBUG","message":"received token [length: 696] in response to authentication request","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.295Z","sequence":44178,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.JjwtBasedAuthTokenValidator","level":"DEBUG","message":"using key [id: 984e3639028b1e7d0b7d97f8f3de6a82638af0ed7d06ce7d9e038a1c4c634169] to validate signature (alg: RS256]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.296Z","sequence":44179,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"authentication of client [authorization ID: command-router@HONO] succeeded","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.296Z","sequence":44180,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"finishing SASL handshake with outcome PN_SASL_OK","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.296Z","sequence":44181,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"received connection request from client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.299Z","sequence":44182,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"processing open frame from client container [Hono service-command-router-Tenant-8c258f6d-8b57-47cf-8f84-a38d9786fed2]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.299Z","sequence":44183,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"INFO","message":"client connected [container: Hono service-command-router-Tenant-8c258f6d-8b57-47cf-8f84-a38d9786fed2, user: command-router@HONO, token valid until: 2023-07-25T07:09:38Z]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.302Z","sequence":44184,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"opening new session with client [container: Hono service-command-router-Tenant-8c258f6d-8b57-47cf-8f84-a38d9786fed2]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.306Z","sequence":44185,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connected to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server], opening connection ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"de9ca33141886abb","traceId":"adaae001b45f7f33ead9ae1bcdf1b79e","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.308Z","sequence":44186,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connection to container [hono-auth-0.0.0.0:5671] at [amqps://aloxy-hono-service-auth:5671, role: Authentication Server] open","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"de9ca33141886abb","traceId":"adaae001b45f7f33ead9ae1bcdf1b79e","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.311Z","sequence":44187,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"opened receiver link to Authentication service, waiting for token ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"de9ca33141886abb","traceId":"adaae001b45f7f33ead9ae1bcdf1b79e","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.311Z","sequence":44188,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"successfully retrieved token from Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"de9ca33141886abb","traceId":"adaae001b45f7f33ead9ae1bcdf1b79e","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.311Z","sequence":44189,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"closing connection to Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"de9ca33141886abb","traceId":"adaae001b45f7f33ead9ae1bcdf1b79e","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.311Z","sequence":44190,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.EventBusAuthenticationService","level":"DEBUG","message":"received token [length: 969] in response to authentication request","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.312Z","sequence":44191,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.JjwtBasedAuthTokenValidator","level":"DEBUG","message":"using key [id: 984e3639028b1e7d0b7d97f8f3de6a82638af0ed7d06ce7d9e038a1c4c634169] to validate signature (alg: RS256]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.313Z","sequence":44192,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"authentication of client [authorization ID: mqtt-adapter@HONO] succeeded","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.313Z","sequence":44193,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"finishing SASL handshake with outcome PN_SASL_OK","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.313Z","sequence":44194,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"received connection request from client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.316Z","sequence":44195,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"processing open frame from client container [Hono adapter-mqtt-Tenant-ded758d0-b7cf-4d65-a210-6d11fa222d32]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.316Z","sequence":44196,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"INFO","message":"client connected [container: Hono adapter-mqtt-Tenant-ded758d0-b7cf-4d65-a210-6d11fa222d32, user: mqtt-adapter@HONO, token valid until: 2023-07-25T07:09:38Z]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.319Z","sequence":44197,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"opening new session with client [container: Hono adapter-mqtt-Tenant-ded758d0-b7cf-4d65-a210-6d11fa222d32]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.321Z","sequence":44198,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connected to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server], opening connection ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6d1540a0267b416d","traceId":"b6c7e18e2b222b9dcb19e96250e48d92","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.323Z","sequence":44199,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connection to container [hono-auth-0.0.0.0:5671] at [amqps://aloxy-hono-service-auth:5671, role: Authentication Server] open","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6d1540a0267b416d","traceId":"b6c7e18e2b222b9dcb19e96250e48d92","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.329Z","sequence":44200,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"opened receiver link to Authentication service, waiting for token ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6d1540a0267b416d","traceId":"b6c7e18e2b222b9dcb19e96250e48d92","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.329Z","sequence":44201,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"successfully retrieved token from Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6d1540a0267b416d","traceId":"b6c7e18e2b222b9dcb19e96250e48d92","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.329Z","sequence":44202,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"closing connection to Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6d1540a0267b416d","traceId":"b6c7e18e2b222b9dcb19e96250e48d92","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.329Z","sequence":44203,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.EventBusAuthenticationService","level":"DEBUG","message":"received token [length: 969] in response to authentication request","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.33Z","sequence":44204,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.JjwtBasedAuthTokenValidator","level":"DEBUG","message":"using key [id: 984e3639028b1e7d0b7d97f8f3de6a82638af0ed7d06ce7d9e038a1c4c634169] to validate signature (alg: RS256]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.33Z","sequence":44205,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"authentication of client [authorization ID: mqtt-adapter@HONO] succeeded","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.33Z","sequence":44206,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"finishing SASL handshake with outcome PN_SASL_OK","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.33Z","sequence":44207,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"received connection request from client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.332Z","sequence":44208,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"processing open frame from client container [Hono adapter-mqtt-Credentials-75faa79c-12c0-45f2-bd9c-973655a3937c]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.333Z","sequence":44209,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"INFO","message":"client connected [container: Hono adapter-mqtt-Credentials-75faa79c-12c0-45f2-bd9c-973655a3937c, user: mqtt-adapter@HONO, token valid until: 2023-07-25T07:09:38Z]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.334Z","sequence":44210,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"opening new session with client [container: Hono adapter-mqtt-Credentials-75faa79c-12c0-45f2-bd9c-973655a3937c]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.414Z","sequence":44211,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connected to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server], opening connection ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cf1bbfd8ea7a8b84","traceId":"dea31e6edb9c0f6c73dc78063afe6bbe","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.415Z","sequence":44212,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connection to container [hono-auth-0.0.0.0:5671] at [amqps://aloxy-hono-service-auth:5671, role: Authentication Server] open","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cf1bbfd8ea7a8b84","traceId":"dea31e6edb9c0f6c73dc78063afe6bbe","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.418Z","sequence":44213,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"opened receiver link to Authentication service, waiting for token ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cf1bbfd8ea7a8b84","traceId":"dea31e6edb9c0f6c73dc78063afe6bbe","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.418Z","sequence":44214,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"successfully retrieved token from Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cf1bbfd8ea7a8b84","traceId":"dea31e6edb9c0f6c73dc78063afe6bbe","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.418Z","sequence":44215,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"closing connection to Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"cf1bbfd8ea7a8b84","traceId":"dea31e6edb9c0f6c73dc78063afe6bbe","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.418Z","sequence":44216,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.EventBusAuthenticationService","level":"DEBUG","message":"received token [length: 969] in response to authentication request","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.419Z","sequence":44217,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.JjwtBasedAuthTokenValidator","level":"DEBUG","message":"using key [id: 984e3639028b1e7d0b7d97f8f3de6a82638af0ed7d06ce7d9e038a1c4c634169] to validate signature (alg: RS256]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.419Z","sequence":44218,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"authentication of client [authorization ID: lora-adapter@HONO] succeeded","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.419Z","sequence":44219,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"finishing SASL handshake with outcome PN_SASL_OK","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.419Z","sequence":44220,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"received connection request from client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.421Z","sequence":44221,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"processing open frame from client container [Hono adapter-lora-Tenant-995cc45f-23b2-488f-a5d9-0b18c4ae6c62]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.421Z","sequence":44222,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"INFO","message":"client connected [container: Hono adapter-lora-Tenant-995cc45f-23b2-488f-a5d9-0b18c4ae6c62, user: lora-adapter@HONO, token valid until: 2023-07-25T07:09:38Z]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.423Z","sequence":44223,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"opening new session with client [container: Hono adapter-lora-Tenant-995cc45f-23b2-488f-a5d9-0b18c4ae6c62]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.434Z","sequence":44224,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connected to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server], opening connection ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"510fb9ea23837b8e","traceId":"068b3de748080f9f4bba5b250c318003","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.435Z","sequence":44225,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connection to container [hono-auth-0.0.0.0:5671] at [amqps://aloxy-hono-service-auth:5671, role: Authentication Server] open","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"510fb9ea23837b8e","traceId":"068b3de748080f9f4bba5b250c318003","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.438Z","sequence":44226,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"opened receiver link to Authentication service, waiting for token ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"510fb9ea23837b8e","traceId":"068b3de748080f9f4bba5b250c318003","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.438Z","sequence":44227,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"successfully retrieved token from Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"510fb9ea23837b8e","traceId":"068b3de748080f9f4bba5b250c318003","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.438Z","sequence":44228,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"closing connection to Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"510fb9ea23837b8e","traceId":"068b3de748080f9f4bba5b250c318003","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.438Z","sequence":44229,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.EventBusAuthenticationService","level":"DEBUG","message":"received token [length: 969] in response to authentication request","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.438Z","sequence":44230,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.JjwtBasedAuthTokenValidator","level":"DEBUG","message":"using key [id: 984e3639028b1e7d0b7d97f8f3de6a82638af0ed7d06ce7d9e038a1c4c634169] to validate signature (alg: RS256]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.439Z","sequence":44231,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"authentication of client [authorization ID: lora-adapter@HONO] succeeded","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.439Z","sequence":44232,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"finishing SASL handshake with outcome PN_SASL_OK","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.439Z","sequence":44233,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"received connection request from client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.441Z","sequence":44234,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"processing open frame from client container [Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.441Z","sequence":44235,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"INFO","message":"client connected [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d, user: lora-adapter@HONO, token valid until: 2023-07-25T07:09:38Z]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.443Z","sequence":44236,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"opening new session with client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.443Z","sequence":44237,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] wants to open a link [address: Source{address='registration/shell/b8c5a8d4-29a3-4436-8c07-595b3b3b87b0', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.443Z","sequence":44238,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-0]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.443Z","sequence":44239,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@41f5baf6] for replies to [registration/shell/b8c5a8d4-29a3-4436-8c07-595b3b3b87b0]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.445Z","sequence":44240,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] wants to open a link [address: Target{address='registration/shell', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.445Z","sequence":44241,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-1]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.445Z","sequence":44242,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.448Z","sequence":44243,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.448Z","sequence":44244,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000AD2] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.454Z","sequence":44245,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connected to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server], opening connection ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fc835ed036736c39","traceId":"fc91f3a03f96953b98c7bfd03f35707c","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.456Z","sequence":44246,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connection to container [hono-auth-0.0.0.0:5671] at [amqps://aloxy-hono-service-auth:5671, role: Authentication Server] open","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fc835ed036736c39","traceId":"fc91f3a03f96953b98c7bfd03f35707c","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.458Z","sequence":44247,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"opened receiver link to Authentication service, waiting for token ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fc835ed036736c39","traceId":"fc91f3a03f96953b98c7bfd03f35707c","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.458Z","sequence":44248,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"successfully retrieved token from Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fc835ed036736c39","traceId":"fc91f3a03f96953b98c7bfd03f35707c","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.459Z","sequence":44249,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"closing connection to Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"fc835ed036736c39","traceId":"fc91f3a03f96953b98c7bfd03f35707c","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.459Z","sequence":44250,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.EventBusAuthenticationService","level":"DEBUG","message":"received token [length: 969] in response to authentication request","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.459Z","sequence":44251,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.JjwtBasedAuthTokenValidator","level":"DEBUG","message":"using key [id: 984e3639028b1e7d0b7d97f8f3de6a82638af0ed7d06ce7d9e038a1c4c634169] to validate signature (alg: RS256]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.46Z","sequence":44252,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"authentication of client [authorization ID: lora-adapter@HONO] succeeded","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.46Z","sequence":44253,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"finishing SASL handshake with outcome PN_SASL_OK","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.46Z","sequence":44254,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"received connection request from client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.46Z","sequence":44255,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.46Z","sequence":44256,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.462Z","sequence":44257,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"processing open frame from client container [Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.462Z","sequence":44258,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"INFO","message":"client connected [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6, user: lora-adapter@HONO, token valid until: 2023-07-25T07:09:38Z]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.464Z","sequence":44259,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"opening new session with client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:38.467Z","sequence":44260,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7a6981cb-21b9-49c5-8c23-79a7c8af5e8f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:39.001Z","sequence":44261,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client's [command-router@HONO] access token has expired, closing connection","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:39.055Z","sequence":44262,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"initializing SASL authenticator","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:39.055Z","sequence":44263,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client provided an empty list of SASL mechanisms [hostname: null, state: PN_SASL_IDLE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:39.057Z","sequence":44264,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client wants to authenticate using SASL [mechanism: PLAIN, host: null, state: PN_SASL_STEP]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:39.057Z","sequence":44265,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"received authentication request [mechanism: PLAIN]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ed1f1f6c230fe8d0","traceId":"416b4a1b8f5035b9b4ad40cda53be9e1","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:39.057Z","sequence":44266,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.DelegatingAuthenticationService","level":"DEBUG","message":"processing PLAIN authentication request [authzid: , authcid: command-router@HONO, pwd: *****]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ed1f1f6c230fe8d0","traceId":"416b4a1b8f5035b9b4ad40cda53be9e1","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:39.057Z","sequence":44267,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"OpenSSL [available: false, supports KeyManagerFactory: false]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ed1f1f6c230fe8d0","traceId":"416b4a1b8f5035b9b4ad40cda53be9e1","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:39.057Z","sequence":44268,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"using JVM's default SSL engine","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ed1f1f6c230fe8d0","traceId":"416b4a1b8f5035b9b4ad40cda53be9e1","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:39.057Z","sequence":44269,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ed1f1f6c230fe8d0","traceId":"416b4a1b8f5035b9b4ad40cda53be9e1","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:39.057Z","sequence":44270,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"enabling secure protocol [TLSv1.3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ed1f1f6c230fe8d0","traceId":"416b4a1b8f5035b9b4ad40cda53be9e1","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:39.057Z","sequence":44271,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connecting to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ed1f1f6c230fe8d0","traceId":"416b4a1b8f5035b9b4ad40cda53be9e1","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:39.139Z","sequence":44272,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connected to AMQP 1.0 container [amqps://aloxy-hono-service-auth:5671, role: Authentication Server], opening connection ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ed1f1f6c230fe8d0","traceId":"416b4a1b8f5035b9b4ad40cda53be9e1","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:39.141Z","sequence":44273,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.impl.ConnectionFactoryImpl","level":"DEBUG","message":"connection to container [hono-auth-0.0.0.0:5671] at [amqps://aloxy-hono-service-auth:5671, role: Authentication Server] open","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ed1f1f6c230fe8d0","traceId":"416b4a1b8f5035b9b4ad40cda53be9e1","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:39.143Z","sequence":44274,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"opened receiver link to Authentication service, waiting for token ...","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ed1f1f6c230fe8d0","traceId":"416b4a1b8f5035b9b4ad40cda53be9e1","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:39.143Z","sequence":44275,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"successfully retrieved token from Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ed1f1f6c230fe8d0","traceId":"416b4a1b8f5035b9b4ad40cda53be9e1","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:39.143Z","sequence":44276,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.delegating.AuthenticationServerClient","level":"DEBUG","message":"closing connection to Authentication service","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"ed1f1f6c230fe8d0","traceId":"416b4a1b8f5035b9b4ad40cda53be9e1","sampled":"false"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:39.143Z","sequence":44277,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.EventBusAuthenticationService","level":"DEBUG","message":"received token [length: 696] in response to authentication request","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:39.144Z","sequence":44278,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.JjwtBasedAuthTokenValidator","level":"DEBUG","message":"using key [id: 984e3639028b1e7d0b7d97f8f3de6a82638af0ed7d06ce7d9e038a1c4c634169] to validate signature (alg: RS256]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:39.144Z","sequence":44279,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"authentication of client [authorization ID: command-router@HONO] succeeded","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:39.144Z","sequence":44280,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"finishing SASL handshake with outcome PN_SASL_OK","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:39.144Z","sequence":44281,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"received connection request from client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:39.147Z","sequence":44282,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"processing open frame from client container [Hono service-command-router-Device Registration-6b43a4ef-0980-4edd-b8fb-ab7a8b085811]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:39.147Z","sequence":44283,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"INFO","message":"client connected [container: Hono service-command-router-Device Registration-6b43a4ef-0980-4edd-b8fb-ab7a8b085811, user: command-router@HONO, token valid until: 2023-07-25T07:09:39Z]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:39.149Z","sequence":44284,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"opening new session with client [container: Hono service-command-router-Device Registration-6b43a4ef-0980-4edd-b8fb-ab7a8b085811]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:39.572Z","sequence":44285,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:39.573Z","sequence":44286,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006A5] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:39.581Z","sequence":44287,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:39.581Z","sequence":44288,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:39.587Z","sequence":44289,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-94e2d9d8-316a-4a40-b636-e77004eae7bc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:50.506Z","sequence":44290,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:50.506Z","sequence":44291,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:50.521Z","sequence":44292,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-789ed2a6-f6ac-4d80-b9db-b0eaca816632, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:51.453Z","sequence":44293,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:51.453Z","sequence":44294,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000571] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:51.459Z","sequence":44295,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:51.459Z","sequence":44296,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:51.466Z","sequence":44297,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-04e87878-5d53-4b5b-87c0-4938cd959e07, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:53.004Z","sequence":44298,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] wants to open a link [address: Source{address='registration/dow/9676ce3f-4f8c-4b97-b93f-763349029930', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:53.005Z","sequence":44299,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-2]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:53.005Z","sequence":44300,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@304e383] for replies to [registration/dow/9676ce3f-4f8c-4b97-b93f-763349029930]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:53.007Z","sequence":44301,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] wants to open a link [address: Target{address='registration/dow', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:53.007Z","sequence":44302,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:53.008Z","sequence":44303,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:53.01Z","sequence":44304,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:53.01Z","sequence":44305,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 70B3D57BB1001287] for gateway [gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:53.02Z","sequence":44306,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:53.02Z","sequence":44307,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:53.023Z","sequence":44308,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f939d17f-89c1-40d9-87af-1e8b4503c68c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:53.713Z","sequence":44309,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:53.713Z","sequence":44310,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C11] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:53.721Z","sequence":44311,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:53.721Z","sequence":44312,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:53.727Z","sequence":44313,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-05fab1d6-a187-4807-91c1-61e49bec76a1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:58.003Z","sequence":44314,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:58.003Z","sequence":44315,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000B2F] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:58.009Z","sequence":44316,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:58.009Z","sequence":44317,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:58.015Z","sequence":44318,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3463bfe0-a423-443f-a791-6baaad74dcf6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:58.175Z","sequence":44319,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/repsol:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:58.175Z","sequence":44320,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: repsol, device-id: 0008004A37FF]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:58.181Z","sequence":44321,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-65e2f85d-9f40-49e8-9478-3acba7a45085, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:58.184Z","sequence":44322,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Tenant-ded758d0-b7cf-4d65-a210-6d11fa222d32] wants to open a link [address: Source{address='tenant/929c814e-bfca-4c49-8176-40a49b0a8db8', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:58.185Z","sequence":44323,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-0]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:58.185Z","sequence":44324,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@5f166cc9] for replies to [tenant/929c814e-bfca-4c49-8176-40a49b0a8db8]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:58.187Z","sequence":44325,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Tenant-ded758d0-b7cf-4d65-a210-6d11fa222d32] wants to open a link [address: Target{address='tenant', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:58.188Z","sequence":44326,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-1]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:58.188Z","sequence":44327,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:58.19Z","sequence":44328,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:58.19Z","sequence":44329,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: repsol]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:09:58.193Z","sequence":44330,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-24f80f58-7504-4d37-8421-001408e450a8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:02.761Z","sequence":44331,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/acta:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:02.761Z","sequence":44332,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: acta, device-id: 0008004AAAA3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:02.767Z","sequence":44333,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-69cbcfca-aa9a-48b1-8e9a-35a3bcca6173, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:02.77Z","sequence":44334,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:02.77Z","sequence":44335,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: acta]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:02.775Z","sequence":44336,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-3a65aa11-3bb6-44ed-b388-ac6d1a03c124, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:07.563Z","sequence":44337,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:07.564Z","sequence":44338,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 70B3D57BB10014ED] for gateway [gateway_dow_network_39199]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:07.57Z","sequence":44339,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:07.571Z","sequence":44340,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:07.577Z","sequence":44341,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-87c74e7c-af1c-4dc8-9e30-dbe5e0c344cf, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:08.467Z","sequence":44342,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:08.467Z","sequence":44343,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000BF4] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:08.473Z","sequence":44344,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:08.473Z","sequence":44345,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:08.479Z","sequence":44346,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1b7641b7-c49c-4b3d-8954-9880b7d557c7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:08.666Z","sequence":44347,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:08.666Z","sequence":44348,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000C1A] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:08.671Z","sequence":44349,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:08.671Z","sequence":44350,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:08.678Z","sequence":44351,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d1f48831-1ef0-4564-83c0-9da63a0e75d6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:09.85Z","sequence":44352,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] wants to open a link [address: Source{address='registration/terega/5433dd28-7d0d-4b24-aa03-d5b38984d15e', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:09.85Z","sequence":44353,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:09.85Z","sequence":44354,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@48e849f2] for replies to [registration/terega/5433dd28-7d0d-4b24-aa03-d5b38984d15e]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:09.853Z","sequence":44355,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] wants to open a link [address: Target{address='registration/terega', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:09.853Z","sequence":44356,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-5]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:09.853Z","sequence":44357,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:09.855Z","sequence":44358,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/terega:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:09.855Z","sequence":44359,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: terega, device-id: 70B3D57BB10000A2] for gateway [gateway_terega_network_27]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:09.86Z","sequence":44360,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_terega\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:09.86Z","sequence":44361,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_terega\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:09.863Z","sequence":44362,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d5374792-f335-4ef6-9eb7-379c55ef02af, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:18.108Z","sequence":44363,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Tenant-995cc45f-23b2-488f-a5d9-0b18c4ae6c62] wants to open a link [address: Source{address='tenant/de75db59-9b4e-41e2-8d59-d860111c8572', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:18.109Z","sequence":44364,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-0]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:18.109Z","sequence":44365,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@6e325e97] for replies to [tenant/de75db59-9b4e-41e2-8d59-d860111c8572]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:18.111Z","sequence":44366,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Tenant-995cc45f-23b2-488f-a5d9-0b18c4ae6c62] wants to open a link [address: Target{address='tenant', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:18.111Z","sequence":44367,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-1]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:18.111Z","sequence":44368,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:18.116Z","sequence":44369,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:18.117Z","sequence":44370,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: flint]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:18.12Z","sequence":44371,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-2874c750-16bb-4c94-93d6-ce73dd8594b3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:18.124Z","sequence":44372,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Source{address='credentials/flint/f9a72aa5-b11e-4c6c-b643-88b06ae81d91', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:18.125Z","sequence":44373,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-0]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:18.125Z","sequence":44374,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@7c78a1c5] for replies to [credentials/flint/f9a72aa5-b11e-4c6c-b643-88b06ae81d91]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:18.128Z","sequence":44375,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Target{address='credentials/flint', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:18.129Z","sequence":44376,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-1]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:18.129Z","sequence":44377,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:18.132Z","sequence":44378,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/flint:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:18.133Z","sequence":44379,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: flint, type: hashed-password, auth-id: auth-flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:18.159Z","sequence":44380,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-e7906b27-7e8f-46d6-a592-0d1fdd8a3d57, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:18.414Z","sequence":44381,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] wants to open a link [address: Source{address='registration/flint/801201ce-5647-4cb9-9ccf-29219f7b41f1', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:18.414Z","sequence":44382,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-6]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:18.414Z","sequence":44383,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@66681f58] for replies to [registration/flint/801201ce-5647-4cb9-9ccf-29219f7b41f1]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:18.416Z","sequence":44384,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] wants to open a link [address: Target{address='registration/flint', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:18.417Z","sequence":44385,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-7]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:18.417Z","sequence":44386,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:18.419Z","sequence":44387,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:18.42Z","sequence":44388,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB1000528] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:18.42Z","sequence":44389,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:18.42Z","sequence":44390,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:18.426Z","sequence":44391,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:18.426Z","sequence":44392,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:18.427Z","sequence":44393,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6dd9f2b4-4b0c-4152-9603-a0242d8ce2e7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:18.429Z","sequence":44394,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-107a4d95-3fcf-42c8-86ac-99d2763b15aa, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:21.128Z","sequence":44395,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:21.129Z","sequence":44396,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001949] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:21.134Z","sequence":44397,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:21.134Z","sequence":44398,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:21.14Z","sequence":44399,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1c7adb91-1515-4951-a253-33c68cfcd4d0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:24.623Z","sequence":44400,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:24.623Z","sequence":44401,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 0008004B51D4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:24.631Z","sequence":44402,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2d0af271-0d90-4a21-b3b2-25524111deba, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:24.634Z","sequence":44403,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:24.634Z","sequence":44404,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: dow]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:24.636Z","sequence":44405,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-7bb067e6-1713-4039-b036-81082f972fd1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:27.911Z","sequence":44406,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:27.912Z","sequence":44407,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: shell]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:27.915Z","sequence":44408,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-dd9530ba-52fc-4b79-8de9-1a85ac763a2e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:27.919Z","sequence":44409,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Source{address='credentials/shell/505589fb-3a26-4435-b4e1-42a2c7ac695d', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:27.92Z","sequence":44410,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-2]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:27.92Z","sequence":44411,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@3472272d] for replies to [credentials/shell/505589fb-3a26-4435-b4e1-42a2c7ac695d]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:27.921Z","sequence":44412,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Target{address='credentials/shell', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:27.922Z","sequence":44413,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-3]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:27.922Z","sequence":44414,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:27.924Z","sequence":44415,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/shell:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:27.924Z","sequence":44416,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: shell, type: hashed-password, auth-id: auth-gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:27.933Z","sequence":44417,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-5303889b-5822-422a-9bca-b41f7d69f3c4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:32.85Z","sequence":44418,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:32.85Z","sequence":44419,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001B10] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:32.859Z","sequence":44420,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:32.859Z","sequence":44421,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:32.866Z","sequence":44422,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4602e84a-8679-42b8-9fb7-64f77014f530, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:36.097Z","sequence":44423,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:36.097Z","sequence":44424,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000179] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:36.102Z","sequence":44425,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:36.102Z","sequence":44426,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:36.105Z","sequence":44427,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d6c25e8a-4c18-4e1a-aef6-bbb520429d3a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:36.127Z","sequence":44428,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:36.127Z","sequence":44429,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000179] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:36.131Z","sequence":44430,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:36.132Z","sequence":44431,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:36.134Z","sequence":44432,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ff10db5d-5466-41fe-bb06-006eda7d7c27, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:36.425Z","sequence":44433,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:36.425Z","sequence":44434,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10019EE] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:36.431Z","sequence":44435,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:36.431Z","sequence":44436,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:36.437Z","sequence":44437,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-31b1865f-847f-493b-ae21-193ae8d4bfb5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:40.195Z","sequence":44438,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:40.195Z","sequence":44439,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: exxon]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:40.198Z","sequence":44440,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-ce5cf757-2c98-422b-b528-2d88aee7b1da, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:40.202Z","sequence":44441,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Source{address='credentials/exxon/30f1e0e0-ea82-4a83-9c2d-b7980af6b4ef', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:40.202Z","sequence":44442,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-4]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:40.202Z","sequence":44443,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@1f6c6005] for replies to [credentials/exxon/30f1e0e0-ea82-4a83-9c2d-b7980af6b4ef]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:40.204Z","sequence":44444,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Target{address='credentials/exxon', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:40.204Z","sequence":44445,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-5]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:40.204Z","sequence":44446,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:40.206Z","sequence":44447,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/exxon:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:40.207Z","sequence":44448,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: exxon, type: hashed-password, auth-id: auth-gateway_exxon_network_2559]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:40.217Z","sequence":44449,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-4e30ed51-1c39-46b1-ae6f-1abc19765dd1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:40.334Z","sequence":44450,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] wants to open a link [address: Source{address='registration/exxon/976b3926-0f4c-48a9-849b-9551c5901772', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:40.334Z","sequence":44451,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-8]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:40.334Z","sequence":44452,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@436fdee4] for replies to [registration/exxon/976b3926-0f4c-48a9-849b-9551c5901772]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:40.336Z","sequence":44453,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] wants to open a link [address: Target{address='registration/exxon', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:40.336Z","sequence":44454,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-9]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:40.336Z","sequence":44455,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:40.339Z","sequence":44456,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/exxon:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:40.339Z","sequence":44457,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: exxon, device-id: 70B3D57BB10013DD] for gateway [gateway_exxon_network_2559]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:40.339Z","sequence":44458,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/exxon:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:40.339Z","sequence":44459,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: exxon, device-id: gateway_exxon_network_2559]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:40.346Z","sequence":44460,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_exxon\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:40.346Z","sequence":44461,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_exxon\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:40.346Z","sequence":44462,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d4dc83a6-6ff6-4c6e-b2b4-2771ed68e3d4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:40.348Z","sequence":44463,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-37c73431-cf6a-4efa-a4b1-0d4b0b23140e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:46.137Z","sequence":44464,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:46.137Z","sequence":44465,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006CF] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:46.143Z","sequence":44466,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:46.143Z","sequence":44467,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:46.148Z","sequence":44468,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4402c007-743d-4720-bd9a-aa8e0b07cfa8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:49.272Z","sequence":44469,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:49.272Z","sequence":44470,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AF3] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:49.279Z","sequence":44471,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:49.279Z","sequence":44472,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:49.286Z","sequence":44473,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-94fb618f-7930-4418-baa6-adb0410fe39b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:54.096Z","sequence":44474,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:54.096Z","sequence":44475,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AFD] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:54.102Z","sequence":44476,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:54.102Z","sequence":44477,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:54.108Z","sequence":44478,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2ac8f8ed-712f-4959-b2b2-df0a1eddeabe, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:55.117Z","sequence":44479,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:55.117Z","sequence":44480,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1000ABE] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:55.125Z","sequence":44481,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:55.125Z","sequence":44482,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:55.132Z","sequence":44483,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-aae785cd-80d2-48fa-bd7a-5a960cb54166, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:56.815Z","sequence":44484,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/conditionall:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:56.815Z","sequence":44485,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: conditionall, device-id: 0008004B512D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:56.821Z","sequence":44486,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0350e828-1e8b-4602-a474-de0652e6c6c2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:56.824Z","sequence":44487,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:56.824Z","sequence":44488,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: conditionall]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:56.827Z","sequence":44489,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-322bc61d-1632-44f9-ad90-b1a0066ef53b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:57.853Z","sequence":44490,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:57.853Z","sequence":44491,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001928] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:57.86Z","sequence":44492,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:57.86Z","sequence":44493,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:57.869Z","sequence":44494,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-269b47bc-d99f-45f2-8cc6-4ce787994558, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:59.058Z","sequence":44495,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:59.058Z","sequence":44496,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AFB] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:59.064Z","sequence":44497,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:59.064Z","sequence":44498,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:59.069Z","sequence":44499,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-bf1125c9-ea06-4ae6-893d-a0f80770341d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:59.636Z","sequence":44500,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:59.636Z","sequence":44501,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001945] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:59.656Z","sequence":44502,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:59.657Z","sequence":44503,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:10:59.663Z","sequence":44504,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-62de2f43-b743-4b2d-9e2a-2c40efe998c7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:04.268Z","sequence":44505,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: gateway_integrationtest_network_191482]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1665a3c72e90d2a0","parentId":"845ec202cf62e104","traceId":"0000000000000000c9e5755291e9e34c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:04.289Z","sequence":44506,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: gateway_integrationtest_network_191482, resource-version: 2e9d26ab-5f83-4173-b72e-b2a38b2bc702]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1665a3c72e90d2a0","parentId":"845ec202cf62e104","traceId":"0000000000000000c9e5755291e9e34c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:04.297Z","sequence":44507,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191482, resource-version: 09defd6f-254f-4382-9215-29f467c7ba3e]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"1665a3c72e90d2a0","parentId":"845ec202cf62e104","traceId":"0000000000000000c9e5755291e9e34c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:04.3Z","sequence":44508,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: gateway_integrationtest_network_191482]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"00447a37dbe8bf74","parentId":"2d85e760dfc921a4","traceId":"0000000000000000c9e5755291e9e34c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:04.41Z","sequence":44509,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191482]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"00447a37dbe8bf74","parentId":"2d85e760dfc921a4","traceId":"0000000000000000c9e5755291e9e34c","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:05.124Z","sequence":44510,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFC8066F046A6E3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a2b24c50cc215582","parentId":"5591e08e580340cf","traceId":"00000000000000009641e861981184ee","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:05.142Z","sequence":44511,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFC8066F046A6E3, resource-version: fd015fa5-cec8-4a9a-b52f-89167587de97]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a2b24c50cc215582","parentId":"5591e08e580340cf","traceId":"00000000000000009641e861981184ee","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:05.148Z","sequence":44512,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFC8066F046A6E3, resource-version: f909da2e-e6e7-49ff-ac66-d565b7634bbe]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"a2b24c50cc215582","parentId":"5591e08e580340cf","traceId":"00000000000000009641e861981184ee","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:05.337Z","sequence":44513,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/repsol:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:05.337Z","sequence":44514,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: repsol, device-id: 70B3D57BB1000229] for gateway [0008004A37FF]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:05.361Z","sequence":44515,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:0.4.1\"\n },\n \"viaGroups\" : [ \"gateways_repsol\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:05.361Z","sequence":44516,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_repsol\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:05.365Z","sequence":44517,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-31c3675d-6c50-480c-b1ad-342f47283d00, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:06.242Z","sequence":44518,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Source{address='credentials/integrationtest/bd8f9e93-518e-481c-808e-3ed0cb868e18', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:06.242Z","sequence":44519,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-6]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:06.243Z","sequence":44520,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@2466a412] for replies to [credentials/integrationtest/bd8f9e93-518e-481c-808e-3ed0cb868e18]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:06.245Z","sequence":44521,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] wants to open a link [address: Target{address='credentials/integrationtest', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:06.245Z","sequence":44522,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-7]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:06.245Z","sequence":44523,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:06.247Z","sequence":44524,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:06.248Z","sequence":44525,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-gateway_integrationtest_network_191482]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:06.258Z","sequence":44526,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-97d4455e-0ade-4f54-b003-d3c7e6b295e7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:06.378Z","sequence":44527,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] wants to open a link [address: Source{address='registration/integrationtest/201fae81-304d-4847-9b4f-4d7f15db42c5', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:06.379Z","sequence":44528,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:06.379Z","sequence":44529,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@10db8b2a] for replies to [registration/integrationtest/201fae81-304d-4847-9b4f-4d7f15db42c5]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:06.381Z","sequence":44530,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] wants to open a link [address: Target{address='registration/integrationtest', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:06.381Z","sequence":44531,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-11]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:06.381Z","sequence":44532,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:06.383Z","sequence":44533,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:06.383Z","sequence":44534,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFC8066F046A6E3] for gateway [gateway_integrationtest_network_191482]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:06.383Z","sequence":44535,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:06.383Z","sequence":44536,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: gateway_integrationtest_network_191482]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:06.388Z","sequence":44537,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:06.388Z","sequence":44538,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:06.389Z","sequence":44539,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a84f59d9-8f85-4ca9-a483-aff3daa81789, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:06.659Z","sequence":44540,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-62c67239-5fe2-4f7b-b4d9-38358b901515, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:07.295Z","sequence":44541,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:07.295Z","sequence":44542,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:07.307Z","sequence":44543,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-924dc136-5cec-411a-ad94-36db2b8cdc50, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:07.312Z","sequence":44544,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:07.313Z","sequence":44545,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: oci]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:07.317Z","sequence":44546,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-0029b6c1-01db-4514-bdfe-342273fd8a69, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:08.204Z","sequence":44547,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:08.204Z","sequence":44548,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100194B] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:08.21Z","sequence":44549,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:08.21Z","sequence":44550,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:08.216Z","sequence":44551,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-cfb70907-a3cf-4a60-b04f-6d386331ba8d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:11.038Z","sequence":44552,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:11.038Z","sequence":44553,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB10006BB] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:11.044Z","sequence":44554,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:11.044Z","sequence":44555,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:11.05Z","sequence":44556,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a3522de0-69f2-49a2-8b2b-3049fed694d9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:12.68Z","sequence":44557,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:12.681Z","sequence":44558,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001B0E] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:12.693Z","sequence":44559,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:12.694Z","sequence":44560,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:12.699Z","sequence":44561,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-14a5202a-0d40-4e19-9bfe-3a5b586f598e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:15.449Z","sequence":44562,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:15.449Z","sequence":44563,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001A66] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:15.465Z","sequence":44564,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:15.465Z","sequence":44565,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:15.471Z","sequence":44566,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-49b90918-0489-44ef-bca7-ab0f1869deb1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:17.581Z","sequence":44567,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFC8066F046A6E3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c91e7e0290250985","parentId":"3168f99c3b17d1cf","traceId":"00000000000000000c3c26f67e594c1a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:17.599Z","sequence":44568,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFC8066F046A6E3]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c91e7e0290250985","parentId":"3168f99c3b17d1cf","traceId":"00000000000000000c3c26f67e594c1a","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:17.806Z","sequence":44569,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: gateway_integrationtest_network_191482]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"af95a6948e5bb5dd","parentId":"faed04ffd742df88","traceId":"00000000000000000eb33434ad120d66","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:17.822Z","sequence":44570,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: gateway_integrationtest_network_191482]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"af95a6948e5bb5dd","parentId":"faed04ffd742df88","traceId":"00000000000000000eb33434ad120d66","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:18.786Z","sequence":44571,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: B883EDB3F1E2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"110036f1fa6d45ee","parentId":"8e24a84388e83f9b","traceId":"000000000000000073a2ee415a15b19f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:18.809Z","sequence":44572,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: B883EDB3F1E2, resource-version: 64cc5eef-bd08-4180-a069-26728171f304]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"110036f1fa6d45ee","parentId":"8e24a84388e83f9b","traceId":"000000000000000073a2ee415a15b19f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:18.816Z","sequence":44573,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: B883EDB3F1E2, resource-version: d6763881-8adf-4944-b924-a7f5376fc8a8]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"110036f1fa6d45ee","parentId":"8e24a84388e83f9b","traceId":"000000000000000073a2ee415a15b19f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:18.821Z","sequence":44574,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: B883EDB3F1E2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4b0107615d9ae01d","parentId":"e64bf7ade5554eca","traceId":"000000000000000073a2ee415a15b19f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:19.003Z","sequence":44575,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: B883EDB3F1E2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"4b0107615d9ae01d","parentId":"e64bf7ade5554eca","traceId":"000000000000000073a2ee415a15b19f","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:19.526Z","sequence":44576,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFD1A921374D1A4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7564f989957c975d","parentId":"a4f03a4a928f437a","traceId":"00000000000000007d9c8ee5a08f747d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:19.543Z","sequence":44577,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFD1A921374D1A4, resource-version: 189fc232-27a3-4b96-ad59-bc22ae105a25]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7564f989957c975d","parentId":"a4f03a4a928f437a","traceId":"00000000000000007d9c8ee5a08f747d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:19.549Z","sequence":44578,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFD1A921374D1A4, resource-version: 8da920c7-45f1-49ec-839b-4f0b1dd4ef2f]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"7564f989957c975d","parentId":"a4f03a4a928f437a","traceId":"00000000000000007d9c8ee5a08f747d","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:20.608Z","sequence":44579,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Credentials-75faa79c-12c0-45f2-bd9c-973655a3937c] wants to open a link [address: Source{address='credentials/integrationtest/ea520b68-8761-4454-90f9-4ed40231daac', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, distributionMode=null, filter=null, defaultOutcome=Released{}, outcomes=[amqp:accepted:list, amqp:rejected:list, amqp:released:list, amqp:modified:list], capabilities=null}] for receiving messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:20.608Z","sequence":44580,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing response sender link with client [auto-0]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:20.608Z","sequence":44581,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"registered sender [io.vertx.proton.impl.ProtonSenderImpl@7cd8d2d3] for replies to [credentials/integrationtest/ea520b68-8761-4454-90f9-4ed40231daac]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:20.61Z","sequence":44582,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Credentials-75faa79c-12c0-45f2-bd9c-973655a3937c] wants to open a link [address: Target{address='credentials/integrationtest', durable=NONE, expiryPolicy=SESSION_END, timeout=0, dynamic=false, dynamicNodeProperties=null, capabilities=null}] for sending messages","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:20.61Z","sequence":44583,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"establishing link for receiving request messages from client [auto-1]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:20.61Z","sequence":44584,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"flowing 100 credits to client","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:20.613Z","sequence":44585,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:20.613Z","sequence":44586,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-B883EDB3F1E2]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:20.623Z","sequence":44587,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-c4eb4c30-4204-4479-a1e2-a8423157eebe, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:20.746Z","sequence":44588,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:20.746Z","sequence":44589,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: B883EDB3F1E2]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:20.751Z","sequence":44590,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-341edbdc-bcb9-4647-99a3-4dacb09e8748, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:20.755Z","sequence":44591,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:20.755Z","sequence":44592,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFD1A921374D1A4] for gateway [B883EDB3F1E2]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:20.76Z","sequence":44593,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:20.76Z","sequence":44594,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:20.94Z","sequence":44595,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-66517314-56e1-4e9a-9dc5-70695da3286c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:25.572Z","sequence":44596,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:25.572Z","sequence":44597,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: dow]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:25.575Z","sequence":44598,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-06c05a75-d69e-4d13-a7dd-807040c82cee, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:25.883Z","sequence":44599,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:25.883Z","sequence":44600,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 70B3D57BB100125B] for gateway [gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:25.883Z","sequence":44601,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:25.883Z","sequence":44602,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:25.89Z","sequence":44603,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9b0f5b7d-c165-49ef-8ade-db848c08e267, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:25.89Z","sequence":44604,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:25.89Z","sequence":44605,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:25.893Z","sequence":44606,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c3f566bb-d2d6-49a7-92d5-6e6f22070d95, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:26.458Z","sequence":44607,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:26.458Z","sequence":44608,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001B0F] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:26.464Z","sequence":44609,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:26.464Z","sequence":44610,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:26.47Z","sequence":44611,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-574a0714-fa02-4a68-84fc-4507ce9a1d0f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:32.999Z","sequence":44612,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: 0EFD1A921374D1A4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3cc04d5d41e68665","parentId":"9dc3754b19684858","traceId":"0000000000000000a231e3038a5ad237","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:33.021Z","sequence":44613,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: 0EFD1A921374D1A4]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"3cc04d5d41e68665","parentId":"9dc3754b19684858","traceId":"0000000000000000a231e3038a5ad237","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:33.307Z","sequence":44614,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"removing device [tenant: integrationtest, device-id: B883EDB3F1E2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6f24213503585f19","parentId":"31c2ad460cc7319a","traceId":"0000000000000000e27b3403228917fc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:33.327Z","sequence":44615,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully deleted credentials for device [tenant: integrationtest, device-id: B883EDB3F1E2]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"6f24213503585f19","parentId":"31c2ad460cc7319a","traceId":"0000000000000000e27b3403228917fc","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:34.29Z","sequence":44616,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:34.29Z","sequence":44617,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001B14] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:34.295Z","sequence":44618,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:34.295Z","sequence":44619,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:34.301Z","sequence":44620,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-08cc361c-5230-44d3-b133-a298ab3b19f1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:34.334Z","sequence":44621,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:34.335Z","sequence":44622,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BB84C]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:34.339Z","sequence":44623,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-eaaf8896-eced-420f-bb9a-d117b9349140, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:34.342Z","sequence":44624,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:34.342Z","sequence":44625,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: lanxess]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:34.346Z","sequence":44626,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-a8288cae-210f-47c9-9e87-3b9548fd1cac, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:35.309Z","sequence":44627,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:35.309Z","sequence":44628,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 0008004B5135]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:35.336Z","sequence":44629,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9257fd5a-eb0a-4577-bb31-9d38709a0241, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:35.34Z","sequence":44630,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:35.341Z","sequence":44631,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: ineos]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:35.35Z","sequence":44632,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-eab18366-11e9-4774-8926-b89ec1d99edd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:39.971Z","sequence":44633,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/lanxess:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:39.971Z","sequence":44634,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: lanxess, device-id: 0008004BBD1B]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:39.976Z","sequence":44635,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-26dddfcc-60d1-48fb-bd96-8f17400e0714, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:40.98Z","sequence":44636,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:40.98Z","sequence":44637,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 70B3D57BB1001277] for gateway [gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:40.986Z","sequence":44638,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:40.986Z","sequence":44639,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:40.989Z","sequence":44640,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2cef6ab1-6c55-431c-b6ad-c9142cb0753c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:41.817Z","sequence":44641,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:41.817Z","sequence":44642,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10009DC] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:41.836Z","sequence":44643,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.9.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:41.837Z","sequence":44644,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:41.84Z","sequence":44645,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c00ec846-ccec-4739-b0d1-f49d4e8d3147, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:47.081Z","sequence":44646,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/arkema:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:47.081Z","sequence":44647,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: arkema, device-id: 0008004AE119]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:47.109Z","sequence":44648,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2ffc3452-4552-4efd-955e-520f09d61c45, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:47.112Z","sequence":44649,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to tenant:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:47.113Z","sequence":44650,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"retrieving tenant [id: arkema]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:47.127Z","sequence":44651,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: tenant-client-f921823c-0c68-4df7-82a6-4442b778823f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:53.992Z","sequence":44652,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/dow:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:53.992Z","sequence":44653,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: dow, device-id: 70B3D57BB100122E] for gateway [gateway_dow_network_8551]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:54.007Z","sequence":44654,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:54.007Z","sequence":44655,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_dow\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:54.012Z","sequence":44656,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-93ecbbd2-5fdc-4972-bfd4-1f39cbca84b4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:57.318Z","sequence":44657,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:57.318Z","sequence":44658,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100193E] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:57.324Z","sequence":44659,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:57.324Z","sequence":44660,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:11:57.329Z","sequence":44661,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ac17d0c6-6351-4d54-869f-7abcc622ee9d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:04.506Z","sequence":44662,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 110FE005A947]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f8c990b9e2248857","parentId":"4f073978bcbc6da8","traceId":"000000000000000067acbf7ec56a7989","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:04.543Z","sequence":44663,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 110FE005A947, resource-version: 5d2f770a-01d2-4215-b227-40503f3156c0]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f8c990b9e2248857","parentId":"4f073978bcbc6da8","traceId":"000000000000000067acbf7ec56a7989","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:04.557Z","sequence":44664,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 110FE005A947, resource-version: 2938b6ee-8107-4a8b-ba18-df45dd66d7b1]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"f8c990b9e2248857","parentId":"4f073978bcbc6da8","traceId":"000000000000000067acbf7ec56a7989","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:04.562Z","sequence":44665,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint","level":"DEBUG","message":"updating 1 credentials [tenant: integrationtest, device-id: 110FE005A947]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5b35eaeb87944f8e","parentId":"a0512c18df2bc9c8","traceId":"000000000000000067acbf7ec56a7989","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:04.9Z","sequence":44666,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully updated credentials for device [tenant: integrationtest, device-id: 110FE005A947]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"5b35eaeb87944f8e","parentId":"a0512c18df2bc9c8","traceId":"000000000000000067acbf7ec56a7989","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:06.324Z","sequence":44667,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint","level":"DEBUG","message":"creating device [tenant: integrationtest, device-id: 0EFDF6C6D798EE91]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c9d04efc0741946d","parentId":"ae1c745d5235abf4","traceId":"0000000000000000446ab693dca97142","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:06.343Z","sequence":44668,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDeviceDao","level":"DEBUG","message":"successfully created device [tenant: integrationtest, device-id: 0EFDF6C6D798EE91, resource-version: d6ca1d08-3d10-45d4-9c35-fed407078104]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c9d04efc0741946d","parentId":"ae1c745d5235abf4","traceId":"0000000000000000446ab693dca97142","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:06.35Z","sequence":44669,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedCredentialsDao","level":"DEBUG","message":"successfully added credentials for device [tenant: integrationtest, device-id: 0EFDF6C6D798EE91, resource-version: aa5932d9-aff7-4492-9b5a-1726321da191]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{"spanId":"c9d04efc0741946d","parentId":"ae1c745d5235abf4","traceId":"0000000000000000446ab693dca97142","sampled":"true"},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:06.477Z","sequence":44670,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:06.478Z","sequence":44671,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-110FE005A947]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:06.478Z","sequence":44672,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:06.478Z","sequence":44673,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-110FE005A947]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:06.48Z","sequence":44674,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:06.481Z","sequence":44675,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-110FE005A947]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:06.481Z","sequence":44676,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to credentials/integrationtest:get","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:06.481Z","sequence":44677,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"getting credentials [tenant: integrationtest, type: hashed-password, auth-id: auth-110FE005A947]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:06.489Z","sequence":44678,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-8e36c078-81db-4fc8-a436-899354519423, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:06.491Z","sequence":44679,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-30c2cfd0-6cc0-4991-8320-b92434f48980, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:06.491Z","sequence":44680,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-d5000923-06f2-4af0-82ae-1f9235ed7378, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:06.492Z","sequence":44681,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: credentials-client-667fd6ce-7f3e-4356-8227-4dee51d2745b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.081Z","sequence":44682,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.081Z","sequence":44683,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 110FE005A947]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.087Z","sequence":44684,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-103d7fa4-6037-423d-8a2b-a271d4b57c3c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.22Z","sequence":44685,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.221Z","sequence":44686,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDF6C6D798EE91] for gateway [110FE005A947]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.227Z","sequence":44687,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.227Z","sequence":44688,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.233Z","sequence":44689,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.233Z","sequence":44690,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDF6C6D798EE91] for gateway [110FE005A947]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.234Z","sequence":44691,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.234Z","sequence":44692,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDF6C6D798EE91] for gateway [110FE005A947]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.235Z","sequence":44693,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.235Z","sequence":44694,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDF6C6D798EE91] for gateway [110FE005A947]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.237Z","sequence":44695,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.237Z","sequence":44696,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDF6C6D798EE91] for gateway [110FE005A947]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.238Z","sequence":44697,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.239Z","sequence":44698,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDF6C6D798EE91] for gateway [110FE005A947]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.239Z","sequence":44699,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.239Z","sequence":44700,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDF6C6D798EE91] for gateway [110FE005A947]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.239Z","sequence":44701,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.24Z","sequence":44702,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDF6C6D798EE91] for gateway [110FE005A947]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.24Z","sequence":44703,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.24Z","sequence":44704,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDF6C6D798EE91] for gateway [110FE005A947]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.241Z","sequence":44705,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.241Z","sequence":44706,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDF6C6D798EE91] for gateway [110FE005A947]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.242Z","sequence":44707,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.242Z","sequence":44708,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDF6C6D798EE91] for gateway [110FE005A947]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.242Z","sequence":44709,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.243Z","sequence":44710,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDF6C6D798EE91] for gateway [110FE005A947]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.244Z","sequence":44711,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.244Z","sequence":44712,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDF6C6D798EE91] for gateway [110FE005A947]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.244Z","sequence":44713,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.244Z","sequence":44714,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDF6C6D798EE91] for gateway [110FE005A947]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.246Z","sequence":44715,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.246Z","sequence":44716,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDF6C6D798EE91] for gateway [110FE005A947]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.247Z","sequence":44717,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.247Z","sequence":44718,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDF6C6D798EE91] for gateway [110FE005A947]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.248Z","sequence":44719,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.248Z","sequence":44720,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDF6C6D798EE91] for gateway [110FE005A947]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.248Z","sequence":44721,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.248Z","sequence":44722,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDF6C6D798EE91] for gateway [110FE005A947]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.249Z","sequence":44723,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.249Z","sequence":44724,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.256Z","sequence":44725,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.257Z","sequence":44726,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDF6C6D798EE91] for gateway [110FE005A947]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.258Z","sequence":44727,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.258Z","sequence":44728,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDF6C6D798EE91] for gateway [110FE005A947]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.258Z","sequence":44729,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.259Z","sequence":44730,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDF6C6D798EE91] for gateway [110FE005A947]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.259Z","sequence":44731,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.259Z","sequence":44732,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDF6C6D798EE91] for gateway [110FE005A947]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.261Z","sequence":44733,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.262Z","sequence":44734,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDF6C6D798EE91] for gateway [110FE005A947]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.263Z","sequence":44735,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.263Z","sequence":44736,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDF6C6D798EE91] for gateway [110FE005A947]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.263Z","sequence":44737,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.264Z","sequence":44738,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDF6C6D798EE91] for gateway [110FE005A947]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.264Z","sequence":44739,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.264Z","sequence":44740,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDF6C6D798EE91] for gateway [110FE005A947]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.265Z","sequence":44741,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.265Z","sequence":44742,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDF6C6D798EE91] for gateway [110FE005A947]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.271Z","sequence":44743,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.271Z","sequence":44744,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDF6C6D798EE91] for gateway [110FE005A947]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.272Z","sequence":44745,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.272Z","sequence":44746,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDF6C6D798EE91] for gateway [110FE005A947]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.272Z","sequence":44747,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.272Z","sequence":44748,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDF6C6D798EE91] for gateway [110FE005A947]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.276Z","sequence":44749,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.277Z","sequence":44750,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.286Z","sequence":44751,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.286Z","sequence":44752,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.287Z","sequence":44753,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.287Z","sequence":44754,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.292Z","sequence":44755,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.292Z","sequence":44756,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.296Z","sequence":44757,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.296Z","sequence":44758,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.299Z","sequence":44759,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.299Z","sequence":44760,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.3Z","sequence":44761,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.3Z","sequence":44762,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.301Z","sequence":44763,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.301Z","sequence":44764,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.304Z","sequence":44765,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.304Z","sequence":44766,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.305Z","sequence":44767,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.305Z","sequence":44768,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.306Z","sequence":44769,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.306Z","sequence":44770,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.307Z","sequence":44771,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.307Z","sequence":44772,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.308Z","sequence":44773,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.309Z","sequence":44774,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.309Z","sequence":44775,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.31Z","sequence":44776,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.313Z","sequence":44777,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.313Z","sequence":44778,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.314Z","sequence":44779,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.314Z","sequence":44780,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.315Z","sequence":44781,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.315Z","sequence":44782,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.316Z","sequence":44783,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.316Z","sequence":44784,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.317Z","sequence":44785,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.318Z","sequence":44786,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDF6C6D798EE91] for gateway [110FE005A947]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.318Z","sequence":44787,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.318Z","sequence":44788,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDF6C6D798EE91] for gateway [110FE005A947]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.319Z","sequence":44789,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.319Z","sequence":44790,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDF6C6D798EE91] for gateway [110FE005A947]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.32Z","sequence":44791,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.32Z","sequence":44792,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDF6C6D798EE91] for gateway [110FE005A947]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.332Z","sequence":44793,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.332Z","sequence":44794,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDF6C6D798EE91] for gateway [110FE005A947]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.332Z","sequence":44795,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.332Z","sequence":44796,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDF6C6D798EE91] for gateway [110FE005A947]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.332Z","sequence":44797,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.332Z","sequence":44798,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDF6C6D798EE91] for gateway [110FE005A947]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.333Z","sequence":44799,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.333Z","sequence":44800,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDF6C6D798EE91] for gateway [110FE005A947]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.333Z","sequence":44801,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.333Z","sequence":44802,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDF6C6D798EE91] for gateway [110FE005A947]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.333Z","sequence":44803,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.333Z","sequence":44804,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDF6C6D798EE91] for gateway [110FE005A947]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.333Z","sequence":44805,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.333Z","sequence":44806,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDF6C6D798EE91] for gateway [110FE005A947]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.334Z","sequence":44807,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.334Z","sequence":44808,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDF6C6D798EE91] for gateway [110FE005A947]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.334Z","sequence":44809,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.334Z","sequence":44810,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDF6C6D798EE91] for gateway [110FE005A947]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.334Z","sequence":44811,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.334Z","sequence":44812,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDF6C6D798EE91] for gateway [110FE005A947]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.334Z","sequence":44813,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.334Z","sequence":44814,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDF6C6D798EE91] for gateway [110FE005A947]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.335Z","sequence":44815,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.335Z","sequence":44816,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDF6C6D798EE91] for gateway [110FE005A947]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.336Z","sequence":44817,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.336Z","sequence":44818,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDF6C6D798EE91] for gateway [110FE005A947]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.336Z","sequence":44819,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.336Z","sequence":44820,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDF6C6D798EE91] for gateway [110FE005A947]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.336Z","sequence":44821,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.336Z","sequence":44822,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDF6C6D798EE91] for gateway [110FE005A947]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.337Z","sequence":44823,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.337Z","sequence":44824,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDF6C6D798EE91] for gateway [110FE005A947]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.337Z","sequence":44825,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.337Z","sequence":44826,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDF6C6D798EE91] for gateway [110FE005A947]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.337Z","sequence":44827,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.337Z","sequence":44828,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDF6C6D798EE91] for gateway [110FE005A947]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.337Z","sequence":44829,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.337Z","sequence":44830,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDF6C6D798EE91] for gateway [110FE005A947]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.338Z","sequence":44831,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.338Z","sequence":44832,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDF6C6D798EE91] for gateway [110FE005A947]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.338Z","sequence":44833,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.338Z","sequence":44834,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDF6C6D798EE91] for gateway [110FE005A947]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.338Z","sequence":44835,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.338Z","sequence":44836,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDF6C6D798EE91] for gateway [110FE005A947]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.338Z","sequence":44837,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.338Z","sequence":44838,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDF6C6D798EE91] for gateway [110FE005A947]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.339Z","sequence":44839,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.339Z","sequence":44840,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDF6C6D798EE91] for gateway [110FE005A947]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.339Z","sequence":44841,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.339Z","sequence":44842,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDF6C6D798EE91] for gateway [110FE005A947]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.339Z","sequence":44843,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.339Z","sequence":44844,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDF6C6D798EE91] for gateway [110FE005A947]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.339Z","sequence":44845,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.339Z","sequence":44846,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDF6C6D798EE91] for gateway [110FE005A947]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.34Z","sequence":44847,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.34Z","sequence":44848,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDF6C6D798EE91] for gateway [110FE005A947]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.341Z","sequence":44849,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.341Z","sequence":44850,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDF6C6D798EE91] for gateway [110FE005A947]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.341Z","sequence":44851,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.341Z","sequence":44852,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDF6C6D798EE91] for gateway [110FE005A947]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.341Z","sequence":44853,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.341Z","sequence":44854,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDF6C6D798EE91] for gateway [110FE005A947]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.341Z","sequence":44855,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.341Z","sequence":44856,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDF6C6D798EE91] for gateway [110FE005A947]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.342Z","sequence":44857,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.342Z","sequence":44858,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDF6C6D798EE91] for gateway [110FE005A947]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.342Z","sequence":44859,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.342Z","sequence":44860,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDF6C6D798EE91] for gateway [110FE005A947]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.342Z","sequence":44861,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.342Z","sequence":44862,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDF6C6D798EE91] for gateway [110FE005A947]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.343Z","sequence":44863,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.343Z","sequence":44864,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDF6C6D798EE91] for gateway [110FE005A947]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.343Z","sequence":44865,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.343Z","sequence":44866,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDF6C6D798EE91] for gateway [110FE005A947]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.344Z","sequence":44867,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.344Z","sequence":44868,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDF6C6D798EE91] for gateway [110FE005A947]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.344Z","sequence":44869,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.344Z","sequence":44870,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDF6C6D798EE91] for gateway [110FE005A947]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.344Z","sequence":44871,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.345Z","sequence":44872,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDF6C6D798EE91] for gateway [110FE005A947]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.345Z","sequence":44873,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.345Z","sequence":44874,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDF6C6D798EE91] for gateway [110FE005A947]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.345Z","sequence":44875,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.345Z","sequence":44876,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDF6C6D798EE91] for gateway [110FE005A947]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.346Z","sequence":44877,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.346Z","sequence":44878,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDF6C6D798EE91] for gateway [110FE005A947]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.346Z","sequence":44879,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.346Z","sequence":44880,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDF6C6D798EE91] for gateway [110FE005A947]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.346Z","sequence":44881,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.346Z","sequence":44882,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDF6C6D798EE91] for gateway [110FE005A947]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.347Z","sequence":44883,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.347Z","sequence":44884,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDF6C6D798EE91] for gateway [110FE005A947]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.362Z","sequence":44885,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.362Z","sequence":44886,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDF6C6D798EE91] for gateway [110FE005A947]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.362Z","sequence":44887,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.362Z","sequence":44888,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDF6C6D798EE91] for gateway [110FE005A947]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.362Z","sequence":44889,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.362Z","sequence":44890,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDF6C6D798EE91] for gateway [110FE005A947]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.362Z","sequence":44891,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.363Z","sequence":44892,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDF6C6D798EE91] for gateway [110FE005A947]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.363Z","sequence":44893,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.363Z","sequence":44894,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDF6C6D798EE91] for gateway [110FE005A947]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.363Z","sequence":44895,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.363Z","sequence":44896,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDF6C6D798EE91] for gateway [110FE005A947]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.363Z","sequence":44897,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.363Z","sequence":44898,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDF6C6D798EE91] for gateway [110FE005A947]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.364Z","sequence":44899,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.364Z","sequence":44900,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDF6C6D798EE91] for gateway [110FE005A947]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.364Z","sequence":44901,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.364Z","sequence":44902,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDF6C6D798EE91] for gateway [110FE005A947]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.364Z","sequence":44903,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.364Z","sequence":44904,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDF6C6D798EE91] for gateway [110FE005A947]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.365Z","sequence":44905,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.365Z","sequence":44906,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDF6C6D798EE91] for gateway [110FE005A947]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.365Z","sequence":44907,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.365Z","sequence":44908,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDF6C6D798EE91] for gateway [110FE005A947]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.365Z","sequence":44909,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.366Z","sequence":44910,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDF6C6D798EE91] for gateway [110FE005A947]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.366Z","sequence":44911,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.366Z","sequence":44912,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDF6C6D798EE91] for gateway [110FE005A947]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.366Z","sequence":44913,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.366Z","sequence":44914,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDF6C6D798EE91] for gateway [110FE005A947]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.367Z","sequence":44915,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.367Z","sequence":44916,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDF6C6D798EE91] for gateway [110FE005A947]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.367Z","sequence":44917,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.367Z","sequence":44918,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.368Z","sequence":44919,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.368Z","sequence":44920,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.368Z","sequence":44921,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.368Z","sequence":44922,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.368Z","sequence":44923,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.368Z","sequence":44924,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.368Z","sequence":44925,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.368Z","sequence":44926,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.368Z","sequence":44927,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.368Z","sequence":44928,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.369Z","sequence":44929,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.369Z","sequence":44930,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.602Z","sequence":44931,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3c131318-45d5-4a55-8153-302e45a6e2d1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.603Z","sequence":44932,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.603Z","sequence":44933,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.604Z","sequence":44934,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.604Z","sequence":44935,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.605Z","sequence":44936,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.605Z","sequence":44937,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.606Z","sequence":44938,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.606Z","sequence":44939,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDF6C6D798EE91] for gateway [110FE005A947]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.606Z","sequence":44940,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.606Z","sequence":44941,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDF6C6D798EE91] for gateway [110FE005A947]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.606Z","sequence":44942,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.606Z","sequence":44943,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDF6C6D798EE91] for gateway [110FE005A947]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.607Z","sequence":44944,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/integrationtest:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.607Z","sequence":44945,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: integrationtest, device-id: 0EFDF6C6D798EE91] for gateway [110FE005A947]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.607Z","sequence":44946,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.607Z","sequence":44947,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10007F7] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.612Z","sequence":44948,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.612Z","sequence":44949,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.612Z","sequence":44950,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.613Z","sequence":44951,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.613Z","sequence":44952,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.613Z","sequence":44953,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.613Z","sequence":44954,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.613Z","sequence":44955,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.655Z","sequence":44956,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.655Z","sequence":44957,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.658Z","sequence":44958,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.658Z","sequence":44959,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.659Z","sequence":44960,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.659Z","sequence":44961,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.662Z","sequence":44962,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.662Z","sequence":44963,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.664Z","sequence":44964,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.664Z","sequence":44965,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.665Z","sequence":44966,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.665Z","sequence":44967,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.665Z","sequence":44968,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.665Z","sequence":44969,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.667Z","sequence":44970,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.673Z","sequence":44971,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.674Z","sequence":44972,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.674Z","sequence":44973,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.674Z","sequence":44974,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.674Z","sequence":44975,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.674Z","sequence":44976,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.675Z","sequence":44977,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.675Z","sequence":44978,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.675Z","sequence":44979,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.675Z","sequence":44980,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.675Z","sequence":44981,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.676Z","sequence":44982,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.676Z","sequence":44983,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.677Z","sequence":44984,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.677Z","sequence":44985,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.687Z","sequence":44986,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.688Z","sequence":44987,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.693Z","sequence":44988,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.693Z","sequence":44989,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.697Z","sequence":44990,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.697Z","sequence":44991,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.697Z","sequence":44992,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.698Z","sequence":44993,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.698Z","sequence":44994,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.698Z","sequence":44995,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.699Z","sequence":44996,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.699Z","sequence":44997,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.699Z","sequence":44998,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.699Z","sequence":44999,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.7Z","sequence":45000,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.7Z","sequence":45001,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.715Z","sequence":45002,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.715Z","sequence":45003,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.717Z","sequence":45004,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.717Z","sequence":45005,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.717Z","sequence":45006,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.718Z","sequence":45007,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.718Z","sequence":45008,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.718Z","sequence":45009,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.718Z","sequence":45010,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.719Z","sequence":45011,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.764Z","sequence":45012,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.764Z","sequence":45013,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.766Z","sequence":45014,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.767Z","sequence":45015,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.768Z","sequence":45016,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.768Z","sequence":45017,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.782Z","sequence":45018,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.782Z","sequence":45019,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.788Z","sequence":45020,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.789Z","sequence":45021,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.789Z","sequence":45022,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.79Z","sequence":45023,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.79Z","sequence":45024,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.791Z","sequence":45025,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.791Z","sequence":45026,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.791Z","sequence":45027,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.792Z","sequence":45028,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.792Z","sequence":45029,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.864Z","sequence":45030,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.864Z","sequence":45031,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.865Z","sequence":45032,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.865Z","sequence":45033,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.866Z","sequence":45034,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:07.867Z","sequence":45035,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:09.059Z","sequence":45036,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-abeb4a26-9019-4708-8e0a-4b56bb396790, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:09.059Z","sequence":45037,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:09.06Z","sequence":45038,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:09.06Z","sequence":45039,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:09.06Z","sequence":45040,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:09.066Z","sequence":45041,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:09.066Z","sequence":45042,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:10.435Z","sequence":45043,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f67ad70d-f870-4394-a8be-5076dfe63482, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:10.453Z","sequence":45044,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:10.453Z","sequence":45045,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:10.453Z","sequence":45046,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:10.453Z","sequence":45047,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:11.972Z","sequence":45048,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9ce80864-d383-40d6-a131-5ebe65a37a54, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:11.973Z","sequence":45049,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:11.973Z","sequence":45050,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:11.996Z","sequence":45051,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:11.997Z","sequence":45052,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:11.997Z","sequence":45053,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:11.997Z","sequence":45054,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:13.086Z","sequence":45055,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-14227bcb-4819-4eda-944e-8d888f47be4f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:14.726Z","sequence":45056,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-247fc330-a94a-473a-8e2e-2237c2597cc4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:14.727Z","sequence":45057,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:14.727Z","sequence":45058,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:14.727Z","sequence":45059,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:14.727Z","sequence":45060,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:14.727Z","sequence":45061,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:14.727Z","sequence":45062,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:16.295Z","sequence":45063,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2d7959ce-8dc2-4b57-ac62-34959e38bb39, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:16.296Z","sequence":45064,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:16.296Z","sequence":45065,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:16.3Z","sequence":45066,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:16.301Z","sequence":45067,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:17.039Z","sequence":45068,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0486fa0f-ea13-4399-acc9-0513b7d5903c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:17.04Z","sequence":45069,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:17.04Z","sequence":45070,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:17.041Z","sequence":45071,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:17.041Z","sequence":45072,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:17.042Z","sequence":45073,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:17.042Z","sequence":45074,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:17.533Z","sequence":45075,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d28fb558-514d-4d4e-846e-9e250f265e8f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:17.858Z","sequence":45076,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c3e32f27-2992-4c56-8034-e9d2547f5607, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:17.858Z","sequence":45077,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:17.858Z","sequence":45078,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:17.859Z","sequence":45079,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:17.859Z","sequence":45080,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:18.196Z","sequence":45081,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-27711299-2e3b-4242-b770-8c8abecfa358, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:18.197Z","sequence":45082,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:18.197Z","sequence":45083,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:18.418Z","sequence":45084,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-072c3b5f-4909-4d2b-9a92-bb3204c192fc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:18.646Z","sequence":45085,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ea04fbc2-1352-4e76-ae8e-70d0b9fd1b1c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:18.646Z","sequence":45086,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:18.646Z","sequence":45087,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:19.032Z","sequence":45088,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4c1bbd13-277d-4826-be4f-7f8308020fa1, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:19.451Z","sequence":45089,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-695f66e0-5280-4d5e-8b52-37eea5abef51, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:19.821Z","sequence":45090,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b251e07e-46dc-469d-a941-395f086401cd, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:20.158Z","sequence":45091,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-5020a308-6140-4295-89da-c3e04166ee0e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:20.453Z","sequence":45092,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d74991c8-f1f8-4fb7-a562-2ecfead951c7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:20.663Z","sequence":45093,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2635b08e-c684-4fda-ac0d-159d442e2a9e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:20.835Z","sequence":45094,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-d2dcd856-bdb7-415e-bd79-1e7a5958dc51, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:21.012Z","sequence":45095,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c120449e-1961-4ce4-977c-b14001939773, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:21.199Z","sequence":45096,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-557eadb3-fbd6-41c1-a059-18c17c77d91b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:21.538Z","sequence":45097,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c798ffd3-28f4-41bd-83b7-8b5ddeb14810, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:22.798Z","sequence":45098,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7ab537ae-dd6f-46c3-b24b-0e0ba224dd84, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:22.798Z","sequence":45099,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:22.798Z","sequence":45100,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:23.101Z","sequence":45101,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b98bfe77-0c60-4863-97ac-8ba14c25d8d0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:23.103Z","sequence":45102,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:23.103Z","sequence":45103,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100194E] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:23.103Z","sequence":45104,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:23.103Z","sequence":45105,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AF2] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:23.104Z","sequence":45106,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:23.104Z","sequence":45107,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001944] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:23.105Z","sequence":45108,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:23.105Z","sequence":45109,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100194E] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:23.293Z","sequence":45110,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-cc54ada8-7458-4479-a1a1-5ab88f89ac5d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:23.446Z","sequence":45111,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-da24cbe2-6d54-408a-8d31-d1a3473a4c72, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:23.446Z","sequence":45112,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:23.446Z","sequence":45113,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:23.447Z","sequence":45114,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:23.447Z","sequence":45115,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:23.628Z","sequence":45116,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-68478295-e3f1-43de-8a6c-7ff0d264b96a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:23.814Z","sequence":45117,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2851573c-d4d1-40c5-86ae-cfd356f0db13, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:24.126Z","sequence":45118,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c203937b-c436-411e-ac0a-1a712e1bd1df, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:24.126Z","sequence":45119,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:24.127Z","sequence":45120,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:24.506Z","sequence":45121,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8e921925-52c5-45b8-8ef8-48c86e42782d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:24.681Z","sequence":45122,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-addf345e-ac3b-49bd-856d-499f7ac2c0d7, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:24.82Z","sequence":45123,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a99f16f7-e987-4ad7-9954-5d11255c44b0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:25.065Z","sequence":45124,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a8c75c31-3362-4822-a6ed-afefa186c3d0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:25.446Z","sequence":45125,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-69840a05-adad-4bc9-975e-ce35998e7643, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:25.905Z","sequence":45126,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-889e83fd-fd5d-477b-bfc0-b397bdb55527, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:26.6Z","sequence":45127,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-984f017c-101a-47b5-895f-e165f12d136d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:27.14Z","sequence":45128,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f43dfa14-9f6d-4d74-820c-24352b4d3150, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:27.657Z","sequence":45129,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3b393aa3-e2bb-4801-b263-25b8c6f86c65, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:27.967Z","sequence":45130,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-374308d7-a9ee-49cc-8cd4-ecf0a40b14c3, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:28.174Z","sequence":45131,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-778e0ec2-26b1-4b8e-8d15-822bf36b782b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:28.318Z","sequence":45132,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a4adccc7-919c-4b27-af37-22415341e2c2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:28.456Z","sequence":45133,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9bbb88c5-3770-4dcc-97ab-44cdda471d2a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:28.655Z","sequence":45134,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-80a20107-a24f-4862-8cc4-8c52ad5d7f67, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:28.91Z","sequence":45135,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-f39310b1-419a-43a5-874d-9c027f8ae3e8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:29.158Z","sequence":45136,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9c814bae-c116-45ca-a221-2950bf83c5ac, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:29.428Z","sequence":45137,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-326d8e0e-658b-431e-aa09-508858c66846, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:29.626Z","sequence":45138,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-6b47cdce-205c-40b7-a14f-b7f6ee2c8005, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:29.779Z","sequence":45139,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3a0da882-a314-4f2d-8262-a65df513dec0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:30.065Z","sequence":45140,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-47a6e444-8e73-4752-8459-d96e5c76b947, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:30.399Z","sequence":45141,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-8ab24486-c229-4b64-aa22-c33f4d1ba574, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:30.608Z","sequence":45142,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9f431070-bd0b-41cc-9d79-1695719fb03a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:30.751Z","sequence":45143,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-1c9dc6dc-b2aa-47a1-a135-50586cfbab40, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:30.937Z","sequence":45144,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b90d948a-a69e-4a68-9fe0-53ebfaccc292, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:31.266Z","sequence":45145,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0ce0f720-0f07-4a5e-9c49-16a2913c196f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:31.708Z","sequence":45146,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a01e9cbb-11b1-4d51-b244-455e89a8eda0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:32.715Z","sequence":45147,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ac78e840-f45d-4040-9223-b97610973026, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:33.154Z","sequence":45148,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2753c18e-3b76-4cfa-8a34-1d8c501cdc4e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:33.591Z","sequence":45149,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7014115d-1575-4375-87eb-b02f7263e873, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:33.597Z","sequence":45150,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:33.597Z","sequence":45151,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:34.083Z","sequence":45152,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c2bf46e0-c65d-4915-be06-f66fcfe20736, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:34.696Z","sequence":45153,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a20fed64-e570-4367-9d26-0e8c47067089, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:34.985Z","sequence":45154,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e4e1a6a1-4024-4df3-9e45-839ab791cd3a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:35.189Z","sequence":45155,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ea9ef55b-ff07-4493-95cc-8b2524253d3a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:35.456Z","sequence":45156,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-190bce3b-7a4e-4799-91df-a0655db4f681, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:35.739Z","sequence":45157,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-965ca490-53c7-4a25-9119-e66ba33bdaeb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:35.898Z","sequence":45158,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9ff24eb8-5668-4ca9-be7d-f6a155ab1c19, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:36.15Z","sequence":45159,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-b6ac4ffe-e2f8-4a20-90a0-82c20feac719, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:36.469Z","sequence":45160,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-90d274a0-dc8c-483d-984e-67aa6e60ba87, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:36.703Z","sequence":45161,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2565c826-2c55-4727-9650-084b23a44572, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:37.183Z","sequence":45162,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0c54c79b-2481-4497-a85a-2c68cc536868, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:37.669Z","sequence":45163,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c900cf4e-1b30-4633-a97a-a9cc1cce5e3a, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:38.018Z","sequence":45164,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-3864e4fb-9ff5-466c-ab94-468161b510eb, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:38.221Z","sequence":45165,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-760de300-e41f-4552-ad00-f92dbba5e311, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:38.381Z","sequence":45166,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0c885ac3-f4d8-43da-bcac-f5cdd0f18f8c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:38.593Z","sequence":45167,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-212d8a9c-792d-4340-bcac-a3b047dfb33d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:38.878Z","sequence":45168,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4e939f42-7298-43f2-b08e-83d75537208b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:39.198Z","sequence":45169,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a0151fac-5abb-43c1-aeb8-02b60772a311, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:39.667Z","sequence":45170,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-66cfd4f4-af76-4496-ab55-18cdab7e9d19, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:40.163Z","sequence":45171,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-69f0b690-50e5-4b6b-b9fc-06ff8be935b2, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:40.513Z","sequence":45172,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a3daa604-cf01-4c29-8f5b-f7dc6c6c0baa, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:41.06Z","sequence":45173,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-47153e81-7975-469c-9a10-f039bf2622c9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:41.061Z","sequence":45174,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono service-command-router-Tenant-8c258f6d-8b57-47cf-8f84-a38d9786fed2] closed connection with error","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72,"exception":{"refId":1,"exceptionType":"io.vertx.core.impl.NoStackTraceThrowable","message":"Error{condition=amqp:resource-limit-exceeded, description='local-idle-timeout expired', info=null}","frames":[]}} +{"timestamp":"2023-07-25T06:12:41.062Z","sequence":45175,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Tenant-ded758d0-b7cf-4d65-a210-6d11fa222d32] closed connection with error","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72,"exception":{"refId":1,"exceptionType":"io.vertx.core.impl.NoStackTraceThrowable","message":"Error{condition=amqp:resource-limit-exceeded, description='local-idle-timeout expired', info=null}","frames":[]}} +{"timestamp":"2023-07-25T06:12:41.063Z","sequence":45176,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Tenant-995cc45f-23b2-488f-a5d9-0b18c4ae6c62] closed connection with error","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72,"exception":{"refId":1,"exceptionType":"io.vertx.core.impl.NoStackTraceThrowable","message":"Error{condition=amqp:resource-limit-exceeded, description='local-idle-timeout expired', info=null}","frames":[]}} +{"timestamp":"2023-07-25T06:12:41.063Z","sequence":45177,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] closed connection with error","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72,"exception":{"refId":1,"exceptionType":"io.vertx.core.impl.NoStackTraceThrowable","message":"Error{condition=amqp:resource-limit-exceeded, description='local-idle-timeout expired', info=null}","frames":[]}} +{"timestamp":"2023-07-25T06:12:41.065Z","sequence":45178,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:41.065Z","sequence":45179,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000173] for gateway [0008004BB6DC]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:41.066Z","sequence":45180,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/oci:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:41.066Z","sequence":45181,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: oci, device-id: 70B3D57BB1000173] for gateway [0008004AE117]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:41.066Z","sequence":45182,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:41.066Z","sequence":45183,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:41.067Z","sequence":45184,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/conditionall:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:41.067Z","sequence":45185,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: conditionall, device-id: 70B3D57BB1000211] for gateway [0008004B512D]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:41.068Z","sequence":45186,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [mqtt-adapter@HONO] is authorized to registration/ineos:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:41.068Z","sequence":45187,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: ineos, device-id: 0008004BBD1E]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:41.069Z","sequence":45188,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono service-command-router-Device Registration-6b43a4ef-0980-4edd-b8fb-ab7a8b085811] closed connection with error","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72,"exception":{"refId":1,"exceptionType":"io.vertx.core.impl.NoStackTraceThrowable","message":"Error{condition=amqp:resource-limit-exceeded, description='local-idle-timeout expired', info=null}","frames":[]}} +{"timestamp":"2023-07-25T06:12:41.07Z","sequence":45189,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:41.07Z","sequence":45190,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB10009DF] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:41.071Z","sequence":45191,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/flint:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:41.071Z","sequence":45192,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: flint, device-id: 70B3D57BB100081A] for gateway [flint-actility]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:41.072Z","sequence":45193,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:41.072Z","sequence":45194,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AF2] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:41.073Z","sequence":45195,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:41.073Z","sequence":45196,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001944] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:41.073Z","sequence":45197,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:41.074Z","sequence":45198,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB100194E] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:41.074Z","sequence":45199,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:41.074Z","sequence":45200,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001AF2] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:41.075Z","sequence":45201,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"client [lora-adapter@HONO] is authorized to registration/shell:assert","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:41.075Z","sequence":45202,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"asserting registration of device [tenant: shell, device-id: 70B3D57BB1001944] for gateway [gateway_shell_network_10]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:41.076Z","sequence":45203,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] closed connection with error","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72,"exception":{"refId":1,"exceptionType":"io.vertx.core.impl.NoStackTraceThrowable","message":"Error{condition=amqp:resource-limit-exceeded, description='local-idle-timeout expired', info=null}","frames":[]}} +{"timestamp":"2023-07-25T06:12:41.077Z","sequence":45204,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Credentials-75faa79c-12c0-45f2-bd9c-973655a3937c] closed connection with error","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72,"exception":{"refId":1,"exceptionType":"io.vertx.core.impl.NoStackTraceThrowable","message":"Error{condition=amqp:resource-limit-exceeded, description='local-idle-timeout expired', info=null}","frames":[]}} +{"timestamp":"2023-07-25T06:12:41.376Z","sequence":45205,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-fc15483a-ae68-401c-bc70-942cfbf179d6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:41.642Z","sequence":45206,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-97faf80b-a822-4234-b428-7bc5b0bc3fc6, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:41.898Z","sequence":45207,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-a54fd2fe-f2bd-419b-bd1a-5856d0cfbd9d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:42.092Z","sequence":45208,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7fd2d20a-8615-41cd-8d99-66c1bcfb4f0f, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:42.264Z","sequence":45209,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-308b04ef-c9b4-4138-a3c9-ec1e12cf93a8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:42.405Z","sequence":45210,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-97b62fbb-885b-49db-b902-dd423a57eb32, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:42.676Z","sequence":45211,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-7f2aafb2-f913-4cc8-89ef-3bbecc764d7c, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:42.985Z","sequence":45212,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-87613849-5c6c-49db-b91e-49d25b49169e, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:43.209Z","sequence":45213,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9cdbc889-c47b-4eb7-a3fc-bcf1fd76ca58, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:43.445Z","sequence":45214,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-2df309ae-e4e1-4a6c-9276-5effe3c9f4b8, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:43.81Z","sequence":45215,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-c8cfa5e3-62c3-4809-8489-4c4448a72db4, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:43.81Z","sequence":45216,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:43.811Z","sequence":45217,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:43.812Z","sequence":45218,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_integrationtest\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:43.816Z","sequence":45219,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_integrationtest\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:44.692Z","sequence":45220,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4e752055-a3da-455f-9f67-96a97f2e70cc, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:45.15Z","sequence":45221,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-9df94564-2289-4d33-a4b8-c334064e3f17, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:45.38Z","sequence":45222,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-def973b3-2eff-4410-8f3f-b489a2d205d5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:45.385Z","sequence":45223,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-45db657f-0d8f-4814-a717-c93299b8121b, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:45.688Z","sequence":45224,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-be8b44e4-eed3-45c1-947f-fcf02a27c422, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:45.919Z","sequence":45225,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-0a71ea2c-ff17-4ddb-a086-7d5a3bce1051, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:46.059Z","sequence":45226,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-afe687cb-7dbd-41ec-9b73-6d62fa1f6a66, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:47.334Z","sequence":45227,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-59146925-1a53-4b96-9761-8b296d36e1de, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:47.678Z","sequence":45228,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-e80c38e3-64ea-4891-a7b0-0334c971b426, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:47.679Z","sequence":45229,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:47.679Z","sequence":45230,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:47.679Z","sequence":45231,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:47.68Z","sequence":45232,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:47.68Z","sequence":45233,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:47.68Z","sequence":45234,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:47.68Z","sequence":45235,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:47.681Z","sequence":45236,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:47.681Z","sequence":45237,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono service-command-router-Tenant-8c258f6d-8b57-47cf-8f84-a38d9786fed2] disconnected","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:47.681Z","sequence":45238,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Tenant-ded758d0-b7cf-4d65-a210-6d11fa222d32] disconnected","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:47.682Z","sequence":45239,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Tenant-995cc45f-23b2-488f-a5d9-0b18c4ae6c62] disconnected","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:47.682Z","sequence":45240,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Credentials-26d881a9-f1cc-4627-b0ef-01c2f23bb1c6] disconnected","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:47.682Z","sequence":45241,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono service-command-router-Device Registration-6b43a4ef-0980-4edd-b8fb-ab7a8b085811] disconnected","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:47.682Z","sequence":45242,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-lora-Device Registration-5636e540-668e-4f6b-a079-bffba2cecb6d] disconnected","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:47.682Z","sequence":45243,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Credentials-75faa79c-12c0-45f2-bd9c-973655a3937c] disconnected","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:47.682Z","sequence":45244,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:47.682Z","sequence":45245,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:47.683Z","sequence":45246,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:47.683Z","sequence":45247,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:47.683Z","sequence":45248,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:47.683Z","sequence":45249,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:47.683Z","sequence":45250,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:47.683Z","sequence":45251,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:47.684Z","sequence":45252,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:47.684Z","sequence":45253,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:network:0.1.0\"\n },\n \"memberOf\" : [ \"gateways_shell\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:47.684Z","sequence":45254,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.6.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:47.684Z","sequence":45255,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:47.684Z","sequence":45256,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:47.684Z","sequence":45257,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:47.684Z","sequence":45258,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_oci\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:47.684Z","sequence":45259,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.1\"\n },\n \"memberOf\" : [ \"gateways_oci\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:47.685Z","sequence":45260,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-4568f9af-8b1a-4d16-952d-5bbea485afc0, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:47.685Z","sequence":45261,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.4.0\"\n },\n \"viaGroups\" : [ \"gateways_conditionall\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:47.685Z","sequence":45262,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_conditionall\" ],\n \"downstream-message-mapper\" : \"downstream_dash7v1_1\",\n \"upstream-message-mapper\" : \"upstream_dash7v1_1\"\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:47.685Z","sequence":45263,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Device data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"io.aloxy:mvpi:1.10.0\"\n },\n \"viaGroups\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:47.685Z","sequence":45264,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"Gateway data: {\n \"enabled\" : true,\n \"defaults\" : {\n \"model\" : \"gateway:0.2.0\"\n },\n \"memberOf\" : [ \"gateways_flint\" ]\n}","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:47.686Z","sequence":45265,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-891b2719-ce2f-40a1-a272-9d848bbbeee5, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:47.686Z","sequence":45266,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.AbstractServiceApplication","level":"INFO","message":"shutting down Hono MongoDB Device Registry","threadName":"main","threadId":1,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:47.713Z","sequence":45267,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"initializing SASL authenticator","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:47.714Z","sequence":45268,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client provided an empty list of SASL mechanisms [hostname: null, state: PN_SASL_IDLE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:47.715Z","sequence":45269,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"initializing SASL authenticator","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:47.715Z","sequence":45270,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client provided an empty list of SASL mechanisms [hostname: null, state: PN_SASL_IDLE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:47.731Z","sequence":45271,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"initializing SASL authenticator","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:47.731Z","sequence":45272,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client provided an empty list of SASL mechanisms [hostname: null, state: PN_SASL_IDLE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:47.733Z","sequence":45273,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"initializing SASL authenticator","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:47.734Z","sequence":45274,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client provided an empty list of SASL mechanisms [hostname: null, state: PN_SASL_IDLE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:47.748Z","sequence":45275,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"initializing SASL authenticator","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:47.748Z","sequence":45276,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client provided an empty list of SASL mechanisms [hostname: null, state: PN_SASL_IDLE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:47.774Z","sequence":45277,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"initializing SASL authenticator","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:47.775Z","sequence":45278,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client provided an empty list of SASL mechanisms [hostname: null, state: PN_SASL_IDLE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:47.775Z","sequence":45279,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"initializing SASL authenticator","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:47.776Z","sequence":45280,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.HonoSaslAuthenticator","level":"DEBUG","message":"client provided an empty list of SASL mechanisms [hostname: null, state: PN_SASL_IDLE]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:47.92Z","sequence":45281,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDao","level":"DEBUG","message":"error retrieving group members [tenantId: shell]: java.lang.IllegalStateException: state should be: server session pool is open","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:47.92Z","sequence":45282,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"failed to resolve group members","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72,"exception":{"refId":1,"exceptionType":"org.eclipse.hono.client.ServerErrorException","message":"Error Code: 503","frames":[{"class":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDao","method":"mapError","line":390},{"class":"io.vertx.core.impl.future.Composition","method":"onFailure","line":50},{"class":"io.vertx.core.impl.future.FutureImpl$ListenerArray","method":"onFailure","line":268},{"class":"io.vertx.core.impl.future.FutureBase","method":"emitFailure","line":75},{"class":"io.vertx.core.impl.future.FutureImpl","method":"tryFail","line":230},{"class":"io.vertx.core.impl.future.Mapping","method":"onFailure","line":45},{"class":"io.vertx.core.impl.future.FutureBase","method":"lambda$emitFailure$1","line":69},{"class":"io.netty.util.concurrent.AbstractEventExecutor","method":"runTask","line":174},{"class":"io.netty.util.concurrent.AbstractEventExecutor","method":"safeExecute","line":167},{"class":"io.netty.util.concurrent.SingleThreadEventExecutor","method":"runAllTasks","line":470},{"class":"io.netty.channel.nio.NioEventLoop","method":"run","line":566},{"class":"io.netty.util.concurrent.SingleThreadEventExecutor$4","method":"run","line":997},{"class":"io.netty.util.internal.ThreadExecutorMap$2","method":"run","line":74},{"class":"io.netty.util.concurrent.FastThreadLocalRunnable","method":"run","line":30},{"class":"java.lang.Thread","method":"run","line":833},{"class":"com.oracle.svm.core.thread.PlatformThreads","method":"threadStartRoutine","line":775},{"class":"com.oracle.svm.core.posix.thread.PosixPlatformThreads","method":"pthreadStartRoutine","line":203}],"causedBy":{"exception":{"refId":2,"exceptionType":"java.lang.IllegalStateException","message":"state should be: server session pool is open","frames":[{"class":"com.mongodb.assertions.Assertions","method":"isTrue","line":81},{"class":"com.mongodb.internal.session.ServerSessionPool","method":"get","line":77},{"class":"com.mongodb.internal.session.BaseClientSessionImpl","method":"getServerSession","line":126},{"class":"com.mongodb.internal.session.ClientSessionContext","method":"getSessionId","line":48},{"class":"com.mongodb.internal.connection.ClusterClockAdvancingSessionContext","method":"getSessionId","line":50},{"class":"com.mongodb.internal.connection.CommandMessage","method":"getExtraElements","line":227},{"class":"com.mongodb.internal.connection.CommandMessage","method":"encodeMessageBodyWithMetadata","line":157},{"class":"com.mongodb.internal.connection.RequestMessage","method":"encode","line":134},{"class":"com.mongodb.internal.connection.CommandMessage","method":"encode","line":60},{"class":"com.mongodb.internal.connection.InternalStreamConnection","method":"sendAndReceiveAsync","line":454},{"class":"com.mongodb.internal.connection.UsageTrackingInternalConnection","method":"sendAndReceiveAsync","line":162},{"class":"com.mongodb.internal.connection.DefaultConnectionPool$PooledConnection","method":"sendAndReceiveAsync","line":680},{"class":"com.mongodb.internal.connection.CommandProtocolImpl","method":"executeAsync","line":77},{"class":"com.mongodb.internal.connection.DefaultServer$DefaultServerProtocolExecutor","method":"executeAsync","line":225},{"class":"com.mongodb.internal.connection.DefaultServerConnection","method":"executeProtocolAsync","line":126},{"class":"com.mongodb.internal.connection.DefaultServerConnection","method":"commandAsync","line":107},{"class":"com.mongodb.internal.connection.DefaultServerConnection","method":"commandAsync","line":96},{"class":"com.mongodb.internal.connection.DefaultServer$AsyncOperationCountTrackingConnection","method":"commandAsync","line":356},{"class":"com.mongodb.internal.operation.CommandOperationHelper","method":"createReadCommandAndExecuteAsync","line":314},{"class":"com.mongodb.internal.operation.FindOperation","method":"lambda$executeAsync$4","line":358},{"class":"com.mongodb.internal.operation.OperationHelper","method":"lambda$withAsyncSourceAndConnection$2","line":415},{"class":"com.mongodb.internal.operation.OperationHelper","method":"lambda$withAsyncSuppliedResource$4","line":432},{"class":"com.mongodb.internal.async.function.AsyncCallbackSupplier","method":"lambda$whenComplete$2","line":101},{"class":"com.mongodb.internal.operation.OperationHelper","method":"lambda$withAsyncSuppliedResource$5","line":434},{"class":"com.mongodb.internal.connection.DefaultServer$1","method":"onResult","line":127},{"class":"com.mongodb.internal.connection.DefaultServer$1","method":"onResult","line":116},{"class":"com.mongodb.internal.async.ErrorHandlingResultCallback","method":"onResult","line":46},{"class":"com.mongodb.internal.connection.DefaultConnectionPool","method":"lambda$getAsync$0","line":197},{"class":"com.mongodb.internal.connection.DefaultConnectionPool","method":"lambda$getAsync$1","line":224},{"class":"com.mongodb.internal.connection.DefaultConnectionPool$Task","method":"doComplete","line":1382},{"class":"com.mongodb.internal.connection.DefaultConnectionPool$Task","method":"execute","line":1368},{"class":"com.mongodb.internal.connection.DefaultConnectionPool$AsyncWorkManager","method":"workerRun","line":1309},{"class":"com.mongodb.internal.connection.DefaultConnectionPool$AsyncWorkManager","method":"runAndLogUncaught","line":1339},{"class":"com.mongodb.internal.connection.DefaultConnectionPool$AsyncWorkManager","method":"lambda$initUnlessClosed$0","line":1274},{"class":"java.util.concurrent.Executors$RunnableAdapter","method":"call","line":539},{"class":"java.util.concurrent.FutureTask","method":"run","line":264},{"class":"java.util.concurrent.ThreadPoolExecutor","method":"runWorker","line":1136},{"class":"java.util.concurrent.ThreadPoolExecutor$Worker","method":"run","line":635},{"class":"java.lang.Thread","method":"run","line":833},{"class":"com.oracle.svm.core.thread.PlatformThreads","method":"threadStartRoutine","line":775},{"class":"com.oracle.svm.core.posix.thread.PosixPlatformThreads","method":"pthreadStartRoutine","line":203}]}}}} +{"timestamp":"2023-07-25T06:12:47.92Z","sequence":45283,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.HonoProtonHelper","level":"DEBUG","message":"sender link [source: registration/shell/b8c5a8d4-29a3-4436-8c07-595b3b3b87b0, target: null] is locally open but underlying transport is disconnected","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:47.92Z","sequence":45284,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDao","level":"DEBUG","message":"error retrieving group members [tenantId: shell]: java.lang.IllegalStateException: state should be: server session pool is open","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:47.92Z","sequence":45285,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"failed to resolve group members","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72,"exception":{"refId":1,"exceptionType":"org.eclipse.hono.client.ServerErrorException","message":"Error Code: 503","frames":[{"class":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDao","method":"mapError","line":390},{"class":"io.vertx.core.impl.future.Composition","method":"onFailure","line":50},{"class":"io.vertx.core.impl.future.FutureImpl$ListenerArray","method":"onFailure","line":268},{"class":"io.vertx.core.impl.future.FutureBase","method":"emitFailure","line":75},{"class":"io.vertx.core.impl.future.FutureImpl","method":"tryFail","line":230},{"class":"io.vertx.core.impl.future.Mapping","method":"onFailure","line":45},{"class":"io.vertx.core.impl.future.FutureBase","method":"lambda$emitFailure$1","line":69},{"class":"io.netty.util.concurrent.AbstractEventExecutor","method":"runTask","line":174},{"class":"io.netty.util.concurrent.AbstractEventExecutor","method":"safeExecute","line":167},{"class":"io.netty.util.concurrent.SingleThreadEventExecutor","method":"runAllTasks","line":470},{"class":"io.netty.channel.nio.NioEventLoop","method":"run","line":566},{"class":"io.netty.util.concurrent.SingleThreadEventExecutor$4","method":"run","line":997},{"class":"io.netty.util.internal.ThreadExecutorMap$2","method":"run","line":74},{"class":"io.netty.util.concurrent.FastThreadLocalRunnable","method":"run","line":30},{"class":"java.lang.Thread","method":"run","line":833},{"class":"com.oracle.svm.core.thread.PlatformThreads","method":"threadStartRoutine","line":775},{"class":"com.oracle.svm.core.posix.thread.PosixPlatformThreads","method":"pthreadStartRoutine","line":203}],"causedBy":{"exception":{"refId":2,"exceptionType":"java.lang.IllegalStateException","message":"state should be: server session pool is open","frames":[{"class":"com.mongodb.assertions.Assertions","method":"isTrue","line":81},{"class":"com.mongodb.internal.session.ServerSessionPool","method":"get","line":77},{"class":"com.mongodb.internal.session.BaseClientSessionImpl","method":"getServerSession","line":126},{"class":"com.mongodb.internal.session.ClientSessionContext","method":"getSessionId","line":48},{"class":"com.mongodb.internal.connection.ClusterClockAdvancingSessionContext","method":"getSessionId","line":50},{"class":"com.mongodb.internal.connection.CommandMessage","method":"getExtraElements","line":227},{"class":"com.mongodb.internal.connection.CommandMessage","method":"encodeMessageBodyWithMetadata","line":157},{"class":"com.mongodb.internal.connection.RequestMessage","method":"encode","line":134},{"class":"com.mongodb.internal.connection.CommandMessage","method":"encode","line":60},{"class":"com.mongodb.internal.connection.InternalStreamConnection","method":"sendAndReceiveAsync","line":454},{"class":"com.mongodb.internal.connection.UsageTrackingInternalConnection","method":"sendAndReceiveAsync","line":162},{"class":"com.mongodb.internal.connection.DefaultConnectionPool$PooledConnection","method":"sendAndReceiveAsync","line":680},{"class":"com.mongodb.internal.connection.CommandProtocolImpl","method":"executeAsync","line":77},{"class":"com.mongodb.internal.connection.DefaultServer$DefaultServerProtocolExecutor","method":"executeAsync","line":225},{"class":"com.mongodb.internal.connection.DefaultServerConnection","method":"executeProtocolAsync","line":126},{"class":"com.mongodb.internal.connection.DefaultServerConnection","method":"commandAsync","line":107},{"class":"com.mongodb.internal.connection.DefaultServerConnection","method":"commandAsync","line":96},{"class":"com.mongodb.internal.connection.DefaultServer$AsyncOperationCountTrackingConnection","method":"commandAsync","line":356},{"class":"com.mongodb.internal.operation.CommandOperationHelper","method":"createReadCommandAndExecuteAsync","line":314},{"class":"com.mongodb.internal.operation.FindOperation","method":"lambda$executeAsync$4","line":358},{"class":"com.mongodb.internal.operation.OperationHelper","method":"lambda$withAsyncSourceAndConnection$2","line":415},{"class":"com.mongodb.internal.operation.OperationHelper","method":"lambda$withAsyncSuppliedResource$4","line":432},{"class":"com.mongodb.internal.async.function.AsyncCallbackSupplier","method":"lambda$whenComplete$2","line":101},{"class":"com.mongodb.internal.operation.OperationHelper","method":"lambda$withAsyncSuppliedResource$5","line":434},{"class":"com.mongodb.internal.connection.DefaultServer$1","method":"onResult","line":127},{"class":"com.mongodb.internal.connection.DefaultServer$1","method":"onResult","line":116},{"class":"com.mongodb.internal.async.ErrorHandlingResultCallback","method":"onResult","line":46},{"class":"com.mongodb.internal.connection.DefaultConnectionPool","method":"lambda$getAsync$0","line":197},{"class":"com.mongodb.internal.connection.DefaultConnectionPool","method":"lambda$getAsync$1","line":224},{"class":"com.mongodb.internal.connection.DefaultConnectionPool$Task","method":"doComplete","line":1382},{"class":"com.mongodb.internal.connection.DefaultConnectionPool$Task","method":"execute","line":1368},{"class":"com.mongodb.internal.connection.DefaultConnectionPool$AsyncWorkManager","method":"workerRun","line":1309},{"class":"com.mongodb.internal.connection.DefaultConnectionPool$AsyncWorkManager","method":"runAndLogUncaught","line":1339},{"class":"com.mongodb.internal.connection.DefaultConnectionPool$AsyncWorkManager","method":"lambda$initUnlessClosed$0","line":1274},{"class":"java.util.concurrent.Executors$RunnableAdapter","method":"call","line":539},{"class":"java.util.concurrent.FutureTask","method":"run","line":264},{"class":"java.util.concurrent.ThreadPoolExecutor","method":"runWorker","line":1136},{"class":"java.util.concurrent.ThreadPoolExecutor$Worker","method":"run","line":635},{"class":"java.lang.Thread","method":"run","line":833},{"class":"com.oracle.svm.core.thread.PlatformThreads","method":"threadStartRoutine","line":775},{"class":"com.oracle.svm.core.posix.thread.PosixPlatformThreads","method":"pthreadStartRoutine","line":203}]}}}} +{"timestamp":"2023-07-25T06:12:47.921Z","sequence":45286,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.HonoProtonHelper","level":"DEBUG","message":"sender link [source: registration/shell/b8c5a8d4-29a3-4436-8c07-595b3b3b87b0, target: null] is locally open but underlying transport is disconnected","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:47.921Z","sequence":45287,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDao","level":"DEBUG","message":"error retrieving group members [tenantId: shell]: java.lang.IllegalStateException: state should be: server session pool is open","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:47.921Z","sequence":45288,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"failed to resolve group members","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72,"exception":{"refId":1,"exceptionType":"org.eclipse.hono.client.ServerErrorException","message":"Error Code: 503","frames":[{"class":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDao","method":"mapError","line":390},{"class":"io.vertx.core.impl.future.Composition","method":"onFailure","line":50},{"class":"io.vertx.core.impl.future.FutureImpl$ListenerArray","method":"onFailure","line":268},{"class":"io.vertx.core.impl.future.FutureBase","method":"emitFailure","line":75},{"class":"io.vertx.core.impl.future.FutureImpl","method":"tryFail","line":230},{"class":"io.vertx.core.impl.future.Mapping","method":"onFailure","line":45},{"class":"io.vertx.core.impl.future.FutureBase","method":"lambda$emitFailure$1","line":69},{"class":"io.netty.util.concurrent.AbstractEventExecutor","method":"runTask","line":174},{"class":"io.netty.util.concurrent.AbstractEventExecutor","method":"safeExecute","line":167},{"class":"io.netty.util.concurrent.SingleThreadEventExecutor","method":"runAllTasks","line":470},{"class":"io.netty.channel.nio.NioEventLoop","method":"run","line":566},{"class":"io.netty.util.concurrent.SingleThreadEventExecutor$4","method":"run","line":997},{"class":"io.netty.util.internal.ThreadExecutorMap$2","method":"run","line":74},{"class":"io.netty.util.concurrent.FastThreadLocalRunnable","method":"run","line":30},{"class":"java.lang.Thread","method":"run","line":833},{"class":"com.oracle.svm.core.thread.PlatformThreads","method":"threadStartRoutine","line":775},{"class":"com.oracle.svm.core.posix.thread.PosixPlatformThreads","method":"pthreadStartRoutine","line":203}],"causedBy":{"exception":{"refId":2,"exceptionType":"java.lang.IllegalStateException","message":"state should be: server session pool is open","frames":[{"class":"com.mongodb.assertions.Assertions","method":"isTrue","line":81},{"class":"com.mongodb.internal.session.ServerSessionPool","method":"get","line":77},{"class":"com.mongodb.internal.session.BaseClientSessionImpl","method":"getServerSession","line":126},{"class":"com.mongodb.internal.session.ClientSessionContext","method":"getSessionId","line":48},{"class":"com.mongodb.internal.connection.ClusterClockAdvancingSessionContext","method":"getSessionId","line":50},{"class":"com.mongodb.internal.connection.CommandMessage","method":"getExtraElements","line":227},{"class":"com.mongodb.internal.connection.CommandMessage","method":"encodeMessageBodyWithMetadata","line":157},{"class":"com.mongodb.internal.connection.RequestMessage","method":"encode","line":134},{"class":"com.mongodb.internal.connection.CommandMessage","method":"encode","line":60},{"class":"com.mongodb.internal.connection.InternalStreamConnection","method":"sendAndReceiveAsync","line":454},{"class":"com.mongodb.internal.connection.UsageTrackingInternalConnection","method":"sendAndReceiveAsync","line":162},{"class":"com.mongodb.internal.connection.DefaultConnectionPool$PooledConnection","method":"sendAndReceiveAsync","line":680},{"class":"com.mongodb.internal.connection.CommandProtocolImpl","method":"executeAsync","line":77},{"class":"com.mongodb.internal.connection.DefaultServer$DefaultServerProtocolExecutor","method":"executeAsync","line":225},{"class":"com.mongodb.internal.connection.DefaultServerConnection","method":"executeProtocolAsync","line":126},{"class":"com.mongodb.internal.connection.DefaultServerConnection","method":"commandAsync","line":107},{"class":"com.mongodb.internal.connection.DefaultServerConnection","method":"commandAsync","line":96},{"class":"com.mongodb.internal.connection.DefaultServer$AsyncOperationCountTrackingConnection","method":"commandAsync","line":356},{"class":"com.mongodb.internal.operation.CommandOperationHelper","method":"createReadCommandAndExecuteAsync","line":314},{"class":"com.mongodb.internal.operation.FindOperation","method":"lambda$executeAsync$4","line":358},{"class":"com.mongodb.internal.operation.OperationHelper","method":"lambda$withAsyncSourceAndConnection$2","line":415},{"class":"com.mongodb.internal.operation.OperationHelper","method":"lambda$withAsyncSuppliedResource$4","line":432},{"class":"com.mongodb.internal.async.function.AsyncCallbackSupplier","method":"lambda$whenComplete$2","line":101},{"class":"com.mongodb.internal.operation.OperationHelper","method":"lambda$withAsyncSuppliedResource$5","line":434},{"class":"com.mongodb.internal.connection.DefaultServer$1","method":"onResult","line":127},{"class":"com.mongodb.internal.connection.DefaultServer$1","method":"onResult","line":116},{"class":"com.mongodb.internal.async.ErrorHandlingResultCallback","method":"onResult","line":46},{"class":"com.mongodb.internal.connection.DefaultConnectionPool","method":"lambda$getAsync$0","line":197},{"class":"com.mongodb.internal.connection.DefaultConnectionPool","method":"lambda$getAsync$1","line":224},{"class":"com.mongodb.internal.connection.DefaultConnectionPool$Task","method":"doComplete","line":1382},{"class":"com.mongodb.internal.connection.DefaultConnectionPool$Task","method":"execute","line":1368},{"class":"com.mongodb.internal.connection.DefaultConnectionPool$AsyncWorkManager","method":"workerRun","line":1309},{"class":"com.mongodb.internal.connection.DefaultConnectionPool$AsyncWorkManager","method":"runAndLogUncaught","line":1339},{"class":"com.mongodb.internal.connection.DefaultConnectionPool$AsyncWorkManager","method":"lambda$initUnlessClosed$0","line":1274},{"class":"java.util.concurrent.Executors$RunnableAdapter","method":"call","line":539},{"class":"java.util.concurrent.FutureTask","method":"run","line":264},{"class":"java.util.concurrent.ThreadPoolExecutor","method":"runWorker","line":1136},{"class":"java.util.concurrent.ThreadPoolExecutor$Worker","method":"run","line":635},{"class":"java.lang.Thread","method":"run","line":833},{"class":"com.oracle.svm.core.thread.PlatformThreads","method":"threadStartRoutine","line":775},{"class":"com.oracle.svm.core.posix.thread.PosixPlatformThreads","method":"pthreadStartRoutine","line":203}]}}}} +{"timestamp":"2023-07-25T06:12:47.921Z","sequence":45289,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.HonoProtonHelper","level":"DEBUG","message":"sender link [source: registration/shell/b8c5a8d4-29a3-4436-8c07-595b3b3b87b0, target: null] is locally open but underlying transport is disconnected","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:47.922Z","sequence":45290,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDao","level":"DEBUG","message":"error retrieving group members [tenantId: flint]: java.lang.IllegalStateException: state should be: server session pool is open","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:47.922Z","sequence":45291,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"failed to resolve group members","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72,"exception":{"refId":1,"exceptionType":"org.eclipse.hono.client.ServerErrorException","message":"Error Code: 503","frames":[{"class":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDao","method":"mapError","line":390},{"class":"io.vertx.core.impl.future.Composition","method":"onFailure","line":50},{"class":"io.vertx.core.impl.future.FutureImpl$ListenerArray","method":"onFailure","line":268},{"class":"io.vertx.core.impl.future.FutureBase","method":"emitFailure","line":75},{"class":"io.vertx.core.impl.future.FutureImpl","method":"tryFail","line":230},{"class":"io.vertx.core.impl.future.Mapping","method":"onFailure","line":45},{"class":"io.vertx.core.impl.future.FutureBase","method":"lambda$emitFailure$1","line":69},{"class":"io.netty.util.concurrent.AbstractEventExecutor","method":"runTask","line":174},{"class":"io.netty.util.concurrent.AbstractEventExecutor","method":"safeExecute","line":167},{"class":"io.netty.util.concurrent.SingleThreadEventExecutor","method":"runAllTasks","line":470},{"class":"io.netty.channel.nio.NioEventLoop","method":"run","line":566},{"class":"io.netty.util.concurrent.SingleThreadEventExecutor$4","method":"run","line":997},{"class":"io.netty.util.internal.ThreadExecutorMap$2","method":"run","line":74},{"class":"io.netty.util.concurrent.FastThreadLocalRunnable","method":"run","line":30},{"class":"java.lang.Thread","method":"run","line":833},{"class":"com.oracle.svm.core.thread.PlatformThreads","method":"threadStartRoutine","line":775},{"class":"com.oracle.svm.core.posix.thread.PosixPlatformThreads","method":"pthreadStartRoutine","line":203}],"causedBy":{"exception":{"refId":2,"exceptionType":"java.lang.IllegalStateException","message":"state should be: server session pool is open","frames":[{"class":"com.mongodb.assertions.Assertions","method":"isTrue","line":81},{"class":"com.mongodb.internal.session.ServerSessionPool","method":"get","line":77},{"class":"com.mongodb.internal.session.BaseClientSessionImpl","method":"getServerSession","line":126},{"class":"com.mongodb.internal.session.ClientSessionContext","method":"getSessionId","line":48},{"class":"com.mongodb.internal.connection.ClusterClockAdvancingSessionContext","method":"getSessionId","line":50},{"class":"com.mongodb.internal.connection.CommandMessage","method":"getExtraElements","line":227},{"class":"com.mongodb.internal.connection.CommandMessage","method":"encodeMessageBodyWithMetadata","line":157},{"class":"com.mongodb.internal.connection.RequestMessage","method":"encode","line":134},{"class":"com.mongodb.internal.connection.CommandMessage","method":"encode","line":60},{"class":"com.mongodb.internal.connection.InternalStreamConnection","method":"sendAndReceiveAsync","line":454},{"class":"com.mongodb.internal.connection.UsageTrackingInternalConnection","method":"sendAndReceiveAsync","line":162},{"class":"com.mongodb.internal.connection.DefaultConnectionPool$PooledConnection","method":"sendAndReceiveAsync","line":680},{"class":"com.mongodb.internal.connection.CommandProtocolImpl","method":"executeAsync","line":77},{"class":"com.mongodb.internal.connection.DefaultServer$DefaultServerProtocolExecutor","method":"executeAsync","line":225},{"class":"com.mongodb.internal.connection.DefaultServerConnection","method":"executeProtocolAsync","line":126},{"class":"com.mongodb.internal.connection.DefaultServerConnection","method":"commandAsync","line":107},{"class":"com.mongodb.internal.connection.DefaultServerConnection","method":"commandAsync","line":96},{"class":"com.mongodb.internal.connection.DefaultServer$AsyncOperationCountTrackingConnection","method":"commandAsync","line":356},{"class":"com.mongodb.internal.operation.CommandOperationHelper","method":"createReadCommandAndExecuteAsync","line":314},{"class":"com.mongodb.internal.operation.FindOperation","method":"lambda$executeAsync$4","line":358},{"class":"com.mongodb.internal.operation.OperationHelper","method":"lambda$withAsyncSourceAndConnection$2","line":415},{"class":"com.mongodb.internal.operation.OperationHelper","method":"lambda$withAsyncSuppliedResource$4","line":432},{"class":"com.mongodb.internal.async.function.AsyncCallbackSupplier","method":"lambda$whenComplete$2","line":101},{"class":"com.mongodb.internal.operation.OperationHelper","method":"lambda$withAsyncSuppliedResource$5","line":434},{"class":"com.mongodb.internal.connection.DefaultServer$1","method":"onResult","line":127},{"class":"com.mongodb.internal.connection.DefaultServer$1","method":"onResult","line":116},{"class":"com.mongodb.internal.async.ErrorHandlingResultCallback","method":"onResult","line":46},{"class":"com.mongodb.internal.connection.DefaultConnectionPool","method":"lambda$getAsync$0","line":197},{"class":"com.mongodb.internal.connection.DefaultConnectionPool","method":"lambda$getAsync$1","line":224},{"class":"com.mongodb.internal.connection.DefaultConnectionPool$Task","method":"doComplete","line":1382},{"class":"com.mongodb.internal.connection.DefaultConnectionPool$Task","method":"execute","line":1368},{"class":"com.mongodb.internal.connection.DefaultConnectionPool$AsyncWorkManager","method":"workerRun","line":1309},{"class":"com.mongodb.internal.connection.DefaultConnectionPool$AsyncWorkManager","method":"runAndLogUncaught","line":1339},{"class":"com.mongodb.internal.connection.DefaultConnectionPool$AsyncWorkManager","method":"lambda$initUnlessClosed$0","line":1274},{"class":"java.util.concurrent.Executors$RunnableAdapter","method":"call","line":539},{"class":"java.util.concurrent.FutureTask","method":"run","line":264},{"class":"java.util.concurrent.ThreadPoolExecutor","method":"runWorker","line":1136},{"class":"java.util.concurrent.ThreadPoolExecutor$Worker","method":"run","line":635},{"class":"java.lang.Thread","method":"run","line":833},{"class":"com.oracle.svm.core.thread.PlatformThreads","method":"threadStartRoutine","line":775},{"class":"com.oracle.svm.core.posix.thread.PosixPlatformThreads","method":"pthreadStartRoutine","line":203}]}}}} +{"timestamp":"2023-07-25T06:12:47.922Z","sequence":45292,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.HonoProtonHelper","level":"DEBUG","message":"sender link [source: registration/flint/801201ce-5647-4cb9-9ccf-29219f7b41f1, target: null] is locally open but underlying transport is disconnected","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:47.922Z","sequence":45293,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDao","level":"DEBUG","message":"error retrieving group members [tenantId: oci]: java.lang.IllegalStateException: state should be: server session pool is open","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:47.922Z","sequence":45294,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"failed to resolve group members","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72,"exception":{"refId":1,"exceptionType":"org.eclipse.hono.client.ServerErrorException","message":"Error Code: 503","frames":[{"class":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDao","method":"mapError","line":390},{"class":"io.vertx.core.impl.future.Composition","method":"onFailure","line":50},{"class":"io.vertx.core.impl.future.FutureImpl$ListenerArray","method":"onFailure","line":268},{"class":"io.vertx.core.impl.future.FutureBase","method":"emitFailure","line":75},{"class":"io.vertx.core.impl.future.FutureImpl","method":"tryFail","line":230},{"class":"io.vertx.core.impl.future.Mapping","method":"onFailure","line":45},{"class":"io.vertx.core.impl.future.FutureBase","method":"lambda$emitFailure$1","line":69},{"class":"io.netty.util.concurrent.AbstractEventExecutor","method":"runTask","line":174},{"class":"io.netty.util.concurrent.AbstractEventExecutor","method":"safeExecute","line":167},{"class":"io.netty.util.concurrent.SingleThreadEventExecutor","method":"runAllTasks","line":470},{"class":"io.netty.channel.nio.NioEventLoop","method":"run","line":566},{"class":"io.netty.util.concurrent.SingleThreadEventExecutor$4","method":"run","line":997},{"class":"io.netty.util.internal.ThreadExecutorMap$2","method":"run","line":74},{"class":"io.netty.util.concurrent.FastThreadLocalRunnable","method":"run","line":30},{"class":"java.lang.Thread","method":"run","line":833},{"class":"com.oracle.svm.core.thread.PlatformThreads","method":"threadStartRoutine","line":775},{"class":"com.oracle.svm.core.posix.thread.PosixPlatformThreads","method":"pthreadStartRoutine","line":203}],"causedBy":{"exception":{"refId":2,"exceptionType":"java.lang.IllegalStateException","message":"state should be: server session pool is open","frames":[{"class":"com.mongodb.assertions.Assertions","method":"isTrue","line":81},{"class":"com.mongodb.internal.session.ServerSessionPool","method":"get","line":77},{"class":"com.mongodb.internal.session.BaseClientSessionImpl","method":"getServerSession","line":126},{"class":"com.mongodb.internal.session.ClientSessionContext","method":"getSessionId","line":48},{"class":"com.mongodb.internal.connection.ClusterClockAdvancingSessionContext","method":"getSessionId","line":50},{"class":"com.mongodb.internal.connection.CommandMessage","method":"getExtraElements","line":227},{"class":"com.mongodb.internal.connection.CommandMessage","method":"encodeMessageBodyWithMetadata","line":157},{"class":"com.mongodb.internal.connection.RequestMessage","method":"encode","line":134},{"class":"com.mongodb.internal.connection.CommandMessage","method":"encode","line":60},{"class":"com.mongodb.internal.connection.InternalStreamConnection","method":"sendAndReceiveAsync","line":454},{"class":"com.mongodb.internal.connection.UsageTrackingInternalConnection","method":"sendAndReceiveAsync","line":162},{"class":"com.mongodb.internal.connection.DefaultConnectionPool$PooledConnection","method":"sendAndReceiveAsync","line":680},{"class":"com.mongodb.internal.connection.CommandProtocolImpl","method":"executeAsync","line":77},{"class":"com.mongodb.internal.connection.DefaultServer$DefaultServerProtocolExecutor","method":"executeAsync","line":225},{"class":"com.mongodb.internal.connection.DefaultServerConnection","method":"executeProtocolAsync","line":126},{"class":"com.mongodb.internal.connection.DefaultServerConnection","method":"commandAsync","line":107},{"class":"com.mongodb.internal.connection.DefaultServerConnection","method":"commandAsync","line":96},{"class":"com.mongodb.internal.connection.DefaultServer$AsyncOperationCountTrackingConnection","method":"commandAsync","line":356},{"class":"com.mongodb.internal.operation.CommandOperationHelper","method":"createReadCommandAndExecuteAsync","line":314},{"class":"com.mongodb.internal.operation.FindOperation","method":"lambda$executeAsync$4","line":358},{"class":"com.mongodb.internal.operation.OperationHelper","method":"lambda$withAsyncSourceAndConnection$2","line":415},{"class":"com.mongodb.internal.operation.OperationHelper","method":"lambda$withAsyncSuppliedResource$4","line":432},{"class":"com.mongodb.internal.async.function.AsyncCallbackSupplier","method":"lambda$whenComplete$2","line":101},{"class":"com.mongodb.internal.operation.OperationHelper","method":"lambda$withAsyncSuppliedResource$5","line":434},{"class":"com.mongodb.internal.connection.DefaultServer$1","method":"onResult","line":127},{"class":"com.mongodb.internal.connection.DefaultServer$1","method":"onResult","line":116},{"class":"com.mongodb.internal.async.ErrorHandlingResultCallback","method":"onResult","line":46},{"class":"com.mongodb.internal.connection.DefaultConnectionPool","method":"lambda$getAsync$0","line":197},{"class":"com.mongodb.internal.connection.DefaultConnectionPool","method":"lambda$getAsync$1","line":224},{"class":"com.mongodb.internal.connection.DefaultConnectionPool$Task","method":"doComplete","line":1382},{"class":"com.mongodb.internal.connection.DefaultConnectionPool$Task","method":"execute","line":1368},{"class":"com.mongodb.internal.connection.DefaultConnectionPool$AsyncWorkManager","method":"workerRun","line":1309},{"class":"com.mongodb.internal.connection.DefaultConnectionPool$AsyncWorkManager","method":"runAndLogUncaught","line":1339},{"class":"com.mongodb.internal.connection.DefaultConnectionPool$AsyncWorkManager","method":"lambda$initUnlessClosed$0","line":1274},{"class":"java.util.concurrent.Executors$RunnableAdapter","method":"call","line":539},{"class":"java.util.concurrent.FutureTask","method":"run","line":264},{"class":"java.util.concurrent.ThreadPoolExecutor","method":"runWorker","line":1136},{"class":"java.util.concurrent.ThreadPoolExecutor$Worker","method":"run","line":635},{"class":"java.lang.Thread","method":"run","line":833},{"class":"com.oracle.svm.core.thread.PlatformThreads","method":"threadStartRoutine","line":775},{"class":"com.oracle.svm.core.posix.thread.PosixPlatformThreads","method":"pthreadStartRoutine","line":203}]}}}} +{"timestamp":"2023-07-25T06:12:47.922Z","sequence":45295,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-ae9988ba-483a-41b0-96d9-3871a2294cda, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:47.923Z","sequence":45296,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDao","level":"DEBUG","message":"error retrieving group members [tenantId: oci]: java.lang.IllegalStateException: state should be: server session pool is open","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:47.923Z","sequence":45297,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"failed to resolve group members","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72,"exception":{"refId":1,"exceptionType":"org.eclipse.hono.client.ServerErrorException","message":"Error Code: 503","frames":[{"class":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDao","method":"mapError","line":390},{"class":"io.vertx.core.impl.future.Composition","method":"onFailure","line":50},{"class":"io.vertx.core.impl.future.FutureImpl$ListenerArray","method":"onFailure","line":268},{"class":"io.vertx.core.impl.future.FutureBase","method":"emitFailure","line":75},{"class":"io.vertx.core.impl.future.FutureImpl","method":"tryFail","line":230},{"class":"io.vertx.core.impl.future.Mapping","method":"onFailure","line":45},{"class":"io.vertx.core.impl.future.FutureBase","method":"lambda$emitFailure$1","line":69},{"class":"io.netty.util.concurrent.AbstractEventExecutor","method":"runTask","line":174},{"class":"io.netty.util.concurrent.AbstractEventExecutor","method":"safeExecute","line":167},{"class":"io.netty.util.concurrent.SingleThreadEventExecutor","method":"runAllTasks","line":470},{"class":"io.netty.channel.nio.NioEventLoop","method":"run","line":566},{"class":"io.netty.util.concurrent.SingleThreadEventExecutor$4","method":"run","line":997},{"class":"io.netty.util.internal.ThreadExecutorMap$2","method":"run","line":74},{"class":"io.netty.util.concurrent.FastThreadLocalRunnable","method":"run","line":30},{"class":"java.lang.Thread","method":"run","line":833},{"class":"com.oracle.svm.core.thread.PlatformThreads","method":"threadStartRoutine","line":775},{"class":"com.oracle.svm.core.posix.thread.PosixPlatformThreads","method":"pthreadStartRoutine","line":203}],"causedBy":{"exception":{"refId":2,"exceptionType":"java.lang.IllegalStateException","message":"state should be: server session pool is open","frames":[{"class":"com.mongodb.assertions.Assertions","method":"isTrue","line":81},{"class":"com.mongodb.internal.session.ServerSessionPool","method":"get","line":77},{"class":"com.mongodb.internal.session.BaseClientSessionImpl","method":"getServerSession","line":126},{"class":"com.mongodb.internal.session.ClientSessionContext","method":"getSessionId","line":48},{"class":"com.mongodb.internal.connection.ClusterClockAdvancingSessionContext","method":"getSessionId","line":50},{"class":"com.mongodb.internal.connection.CommandMessage","method":"getExtraElements","line":227},{"class":"com.mongodb.internal.connection.CommandMessage","method":"encodeMessageBodyWithMetadata","line":157},{"class":"com.mongodb.internal.connection.RequestMessage","method":"encode","line":134},{"class":"com.mongodb.internal.connection.CommandMessage","method":"encode","line":60},{"class":"com.mongodb.internal.connection.InternalStreamConnection","method":"sendAndReceiveAsync","line":454},{"class":"com.mongodb.internal.connection.UsageTrackingInternalConnection","method":"sendAndReceiveAsync","line":162},{"class":"com.mongodb.internal.connection.DefaultConnectionPool$PooledConnection","method":"sendAndReceiveAsync","line":680},{"class":"com.mongodb.internal.connection.CommandProtocolImpl","method":"executeAsync","line":77},{"class":"com.mongodb.internal.connection.DefaultServer$DefaultServerProtocolExecutor","method":"executeAsync","line":225},{"class":"com.mongodb.internal.connection.DefaultServerConnection","method":"executeProtocolAsync","line":126},{"class":"com.mongodb.internal.connection.DefaultServerConnection","method":"commandAsync","line":107},{"class":"com.mongodb.internal.connection.DefaultServerConnection","method":"commandAsync","line":96},{"class":"com.mongodb.internal.connection.DefaultServer$AsyncOperationCountTrackingConnection","method":"commandAsync","line":356},{"class":"com.mongodb.internal.operation.CommandOperationHelper","method":"createReadCommandAndExecuteAsync","line":314},{"class":"com.mongodb.internal.operation.FindOperation","method":"lambda$executeAsync$4","line":358},{"class":"com.mongodb.internal.operation.OperationHelper","method":"lambda$withAsyncSourceAndConnection$2","line":415},{"class":"com.mongodb.internal.operation.OperationHelper","method":"lambda$withAsyncSuppliedResource$4","line":432},{"class":"com.mongodb.internal.async.function.AsyncCallbackSupplier","method":"lambda$whenComplete$2","line":101},{"class":"com.mongodb.internal.operation.OperationHelper","method":"lambda$withAsyncSuppliedResource$5","line":434},{"class":"com.mongodb.internal.connection.DefaultServer$1","method":"onResult","line":127},{"class":"com.mongodb.internal.connection.DefaultServer$1","method":"onResult","line":116},{"class":"com.mongodb.internal.async.ErrorHandlingResultCallback","method":"onResult","line":46},{"class":"com.mongodb.internal.connection.DefaultConnectionPool","method":"lambda$getAsync$0","line":197},{"class":"com.mongodb.internal.connection.DefaultConnectionPool","method":"lambda$getAsync$1","line":224},{"class":"com.mongodb.internal.connection.DefaultConnectionPool$Task","method":"doComplete","line":1382},{"class":"com.mongodb.internal.connection.DefaultConnectionPool$Task","method":"execute","line":1368},{"class":"com.mongodb.internal.connection.DefaultConnectionPool$AsyncWorkManager","method":"workerRun","line":1309},{"class":"com.mongodb.internal.connection.DefaultConnectionPool$AsyncWorkManager","method":"runAndLogUncaught","line":1339},{"class":"com.mongodb.internal.connection.DefaultConnectionPool$AsyncWorkManager","method":"lambda$initUnlessClosed$0","line":1274},{"class":"java.util.concurrent.Executors$RunnableAdapter","method":"call","line":539},{"class":"java.util.concurrent.FutureTask","method":"run","line":264},{"class":"java.util.concurrent.ThreadPoolExecutor","method":"runWorker","line":1136},{"class":"java.util.concurrent.ThreadPoolExecutor$Worker","method":"run","line":635},{"class":"java.lang.Thread","method":"run","line":833},{"class":"com.oracle.svm.core.thread.PlatformThreads","method":"threadStartRoutine","line":775},{"class":"com.oracle.svm.core.posix.thread.PosixPlatformThreads","method":"pthreadStartRoutine","line":203}]}}}} +{"timestamp":"2023-07-25T06:12:47.923Z","sequence":45298,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-155631d1-78e1-444c-b289-a897a17286c9, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:47.923Z","sequence":45299,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDao","level":"DEBUG","message":"error retrieving group members [tenantId: conditionall]: java.lang.IllegalStateException: state should be: server session pool is open","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:47.923Z","sequence":45300,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"failed to resolve group members","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72,"exception":{"refId":1,"exceptionType":"org.eclipse.hono.client.ServerErrorException","message":"Error Code: 503","frames":[{"class":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDao","method":"mapError","line":390},{"class":"io.vertx.core.impl.future.Composition","method":"onFailure","line":50},{"class":"io.vertx.core.impl.future.FutureImpl$ListenerArray","method":"onFailure","line":268},{"class":"io.vertx.core.impl.future.FutureBase","method":"emitFailure","line":75},{"class":"io.vertx.core.impl.future.FutureImpl","method":"tryFail","line":230},{"class":"io.vertx.core.impl.future.Mapping","method":"onFailure","line":45},{"class":"io.vertx.core.impl.future.FutureBase","method":"lambda$emitFailure$1","line":69},{"class":"io.netty.util.concurrent.AbstractEventExecutor","method":"runTask","line":174},{"class":"io.netty.util.concurrent.AbstractEventExecutor","method":"safeExecute","line":167},{"class":"io.netty.util.concurrent.SingleThreadEventExecutor","method":"runAllTasks","line":470},{"class":"io.netty.channel.nio.NioEventLoop","method":"run","line":566},{"class":"io.netty.util.concurrent.SingleThreadEventExecutor$4","method":"run","line":997},{"class":"io.netty.util.internal.ThreadExecutorMap$2","method":"run","line":74},{"class":"io.netty.util.concurrent.FastThreadLocalRunnable","method":"run","line":30},{"class":"java.lang.Thread","method":"run","line":833},{"class":"com.oracle.svm.core.thread.PlatformThreads","method":"threadStartRoutine","line":775},{"class":"com.oracle.svm.core.posix.thread.PosixPlatformThreads","method":"pthreadStartRoutine","line":203}],"causedBy":{"exception":{"refId":2,"exceptionType":"java.lang.IllegalStateException","message":"state should be: server session pool is open","frames":[{"class":"com.mongodb.assertions.Assertions","method":"isTrue","line":81},{"class":"com.mongodb.internal.session.ServerSessionPool","method":"get","line":77},{"class":"com.mongodb.internal.session.BaseClientSessionImpl","method":"getServerSession","line":126},{"class":"com.mongodb.internal.session.ClientSessionContext","method":"getSessionId","line":48},{"class":"com.mongodb.internal.connection.ClusterClockAdvancingSessionContext","method":"getSessionId","line":50},{"class":"com.mongodb.internal.connection.CommandMessage","method":"getExtraElements","line":227},{"class":"com.mongodb.internal.connection.CommandMessage","method":"encodeMessageBodyWithMetadata","line":157},{"class":"com.mongodb.internal.connection.RequestMessage","method":"encode","line":134},{"class":"com.mongodb.internal.connection.CommandMessage","method":"encode","line":60},{"class":"com.mongodb.internal.connection.InternalStreamConnection","method":"sendAndReceiveAsync","line":454},{"class":"com.mongodb.internal.connection.UsageTrackingInternalConnection","method":"sendAndReceiveAsync","line":162},{"class":"com.mongodb.internal.connection.DefaultConnectionPool$PooledConnection","method":"sendAndReceiveAsync","line":680},{"class":"com.mongodb.internal.connection.CommandProtocolImpl","method":"executeAsync","line":77},{"class":"com.mongodb.internal.connection.DefaultServer$DefaultServerProtocolExecutor","method":"executeAsync","line":225},{"class":"com.mongodb.internal.connection.DefaultServerConnection","method":"executeProtocolAsync","line":126},{"class":"com.mongodb.internal.connection.DefaultServerConnection","method":"commandAsync","line":107},{"class":"com.mongodb.internal.connection.DefaultServerConnection","method":"commandAsync","line":96},{"class":"com.mongodb.internal.connection.DefaultServer$AsyncOperationCountTrackingConnection","method":"commandAsync","line":356},{"class":"com.mongodb.internal.operation.CommandOperationHelper","method":"createReadCommandAndExecuteAsync","line":314},{"class":"com.mongodb.internal.operation.FindOperation","method":"lambda$executeAsync$4","line":358},{"class":"com.mongodb.internal.operation.OperationHelper","method":"lambda$withAsyncSourceAndConnection$2","line":415},{"class":"com.mongodb.internal.operation.OperationHelper","method":"lambda$withAsyncSuppliedResource$4","line":432},{"class":"com.mongodb.internal.async.function.AsyncCallbackSupplier","method":"lambda$whenComplete$2","line":101},{"class":"com.mongodb.internal.operation.OperationHelper","method":"lambda$withAsyncSuppliedResource$5","line":434},{"class":"com.mongodb.internal.connection.DefaultServer$1","method":"onResult","line":127},{"class":"com.mongodb.internal.connection.DefaultServer$1","method":"onResult","line":116},{"class":"com.mongodb.internal.async.ErrorHandlingResultCallback","method":"onResult","line":46},{"class":"com.mongodb.internal.connection.DefaultConnectionPool","method":"lambda$getAsync$0","line":197},{"class":"com.mongodb.internal.connection.DefaultConnectionPool","method":"lambda$getAsync$1","line":224},{"class":"com.mongodb.internal.connection.DefaultConnectionPool$Task","method":"doComplete","line":1382},{"class":"com.mongodb.internal.connection.DefaultConnectionPool$Task","method":"execute","line":1368},{"class":"com.mongodb.internal.connection.DefaultConnectionPool$AsyncWorkManager","method":"workerRun","line":1309},{"class":"com.mongodb.internal.connection.DefaultConnectionPool$AsyncWorkManager","method":"runAndLogUncaught","line":1339},{"class":"com.mongodb.internal.connection.DefaultConnectionPool$AsyncWorkManager","method":"lambda$initUnlessClosed$0","line":1274},{"class":"java.util.concurrent.Executors$RunnableAdapter","method":"call","line":539},{"class":"java.util.concurrent.FutureTask","method":"run","line":264},{"class":"java.util.concurrent.ThreadPoolExecutor","method":"runWorker","line":1136},{"class":"java.util.concurrent.ThreadPoolExecutor$Worker","method":"run","line":635},{"class":"java.lang.Thread","method":"run","line":833},{"class":"com.oracle.svm.core.thread.PlatformThreads","method":"threadStartRoutine","line":775},{"class":"com.oracle.svm.core.posix.thread.PosixPlatformThreads","method":"pthreadStartRoutine","line":203}]}}}} +{"timestamp":"2023-07-25T06:12:47.924Z","sequence":45301,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint","level":"DEBUG","message":"sent response message to client [correlation-id: registration-client-43ecf9e9-8d03-40b3-8513-19baffcc652d, content-type: application/json]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:47.924Z","sequence":45302,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDao","level":"DEBUG","message":"error retrieving group members [tenantId: flint]: java.lang.IllegalStateException: state should be: server session pool is open","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:47.924Z","sequence":45303,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.AbstractRegistrationService","level":"DEBUG","message":"failed to resolve group members","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72,"exception":{"refId":1,"exceptionType":"org.eclipse.hono.client.ServerErrorException","message":"Error Code: 503","frames":[{"class":"org.eclipse.hono.deviceregistry.mongodb.model.MongoDbBasedDao","method":"mapError","line":390},{"class":"io.vertx.core.impl.future.Composition","method":"onFailure","line":50},{"class":"io.vertx.core.impl.future.FutureImpl$ListenerArray","method":"onFailure","line":268},{"class":"io.vertx.core.impl.future.FutureBase","method":"emitFailure","line":75},{"class":"io.vertx.core.impl.future.FutureImpl","method":"tryFail","line":230},{"class":"io.vertx.core.impl.future.Mapping","method":"onFailure","line":45},{"class":"io.vertx.core.impl.future.FutureBase","method":"lambda$emitFailure$1","line":69},{"class":"io.netty.util.concurrent.AbstractEventExecutor","method":"runTask","line":174},{"class":"io.netty.util.concurrent.AbstractEventExecutor","method":"safeExecute","line":167},{"class":"io.netty.util.concurrent.SingleThreadEventExecutor","method":"runAllTasks","line":470},{"class":"io.netty.channel.nio.NioEventLoop","method":"run","line":566},{"class":"io.netty.util.concurrent.SingleThreadEventExecutor$4","method":"run","line":997},{"class":"io.netty.util.internal.ThreadExecutorMap$2","method":"run","line":74},{"class":"io.netty.util.concurrent.FastThreadLocalRunnable","method":"run","line":30},{"class":"java.lang.Thread","method":"run","line":833},{"class":"com.oracle.svm.core.thread.PlatformThreads","method":"threadStartRoutine","line":775},{"class":"com.oracle.svm.core.posix.thread.PosixPlatformThreads","method":"pthreadStartRoutine","line":203}],"causedBy":{"exception":{"refId":2,"exceptionType":"java.lang.IllegalStateException","message":"state should be: server session pool is open","frames":[{"class":"com.mongodb.assertions.Assertions","method":"isTrue","line":81},{"class":"com.mongodb.internal.session.ServerSessionPool","method":"get","line":77},{"class":"com.mongodb.internal.session.BaseClientSessionImpl","method":"getServerSession","line":126},{"class":"com.mongodb.internal.session.ClientSessionContext","method":"getSessionId","line":48},{"class":"com.mongodb.internal.connection.ClusterClockAdvancingSessionContext","method":"getSessionId","line":50},{"class":"com.mongodb.internal.connection.CommandMessage","method":"getExtraElements","line":227},{"class":"com.mongodb.internal.connection.CommandMessage","method":"encodeMessageBodyWithMetadata","line":157},{"class":"com.mongodb.internal.connection.RequestMessage","method":"encode","line":134},{"class":"com.mongodb.internal.connection.CommandMessage","method":"encode","line":60},{"class":"com.mongodb.internal.connection.InternalStreamConnection","method":"sendAndReceiveAsync","line":454},{"class":"com.mongodb.internal.connection.UsageTrackingInternalConnection","method":"sendAndReceiveAsync","line":162},{"class":"com.mongodb.internal.connection.DefaultConnectionPool$PooledConnection","method":"sendAndReceiveAsync","line":680},{"class":"com.mongodb.internal.connection.CommandProtocolImpl","method":"executeAsync","line":77},{"class":"com.mongodb.internal.connection.DefaultServer$DefaultServerProtocolExecutor","method":"executeAsync","line":225},{"class":"com.mongodb.internal.connection.DefaultServerConnection","method":"executeProtocolAsync","line":126},{"class":"com.mongodb.internal.connection.DefaultServerConnection","method":"commandAsync","line":107},{"class":"com.mongodb.internal.connection.DefaultServerConnection","method":"commandAsync","line":96},{"class":"com.mongodb.internal.connection.DefaultServer$AsyncOperationCountTrackingConnection","method":"commandAsync","line":356},{"class":"com.mongodb.internal.operation.CommandOperationHelper","method":"createReadCommandAndExecuteAsync","line":314},{"class":"com.mongodb.internal.operation.FindOperation","method":"lambda$executeAsync$4","line":358},{"class":"com.mongodb.internal.operation.OperationHelper","method":"lambda$withAsyncSourceAndConnection$2","line":415},{"class":"com.mongodb.internal.operation.OperationHelper","method":"lambda$withAsyncSuppliedResource$4","line":432},{"class":"com.mongodb.internal.async.function.AsyncCallbackSupplier","method":"lambda$whenComplete$2","line":101},{"class":"com.mongodb.internal.operation.OperationHelper","method":"lambda$withAsyncSuppliedResource$5","line":434},{"class":"com.mongodb.internal.connection.DefaultServer$1","method":"onResult","line":127},{"class":"com.mongodb.internal.connection.DefaultServer$1","method":"onResult","line":116},{"class":"com.mongodb.internal.async.ErrorHandlingResultCallback","method":"onResult","line":46},{"class":"com.mongodb.internal.connection.DefaultConnectionPool","method":"lambda$getAsync$0","line":197},{"class":"com.mongodb.internal.connection.DefaultConnectionPool","method":"lambda$getAsync$1","line":224},{"class":"com.mongodb.internal.connection.DefaultConnectionPool$Task","method":"doComplete","line":1382},{"class":"com.mongodb.internal.connection.DefaultConnectionPool$Task","method":"execute","line":1368},{"class":"com.mongodb.internal.connection.DefaultConnectionPool$AsyncWorkManager","method":"workerRun","line":1309},{"class":"com.mongodb.internal.connection.DefaultConnectionPool$AsyncWorkManager","method":"runAndLogUncaught","line":1339},{"class":"com.mongodb.internal.connection.DefaultConnectionPool$AsyncWorkManager","method":"lambda$initUnlessClosed$0","line":1274},{"class":"java.util.concurrent.Executors$RunnableAdapter","method":"call","line":539},{"class":"java.util.concurrent.FutureTask","method":"run","line":264},{"class":"java.util.concurrent.ThreadPoolExecutor","method":"runWorker","line":1136},{"class":"java.util.concurrent.ThreadPoolExecutor$Worker","method":"run","line":635},{"class":"java.lang.Thread","method":"run","line":833},{"class":"com.oracle.svm.core.thread.PlatformThreads","method":"threadStartRoutine","line":775},{"class":"com.oracle.svm.core.posix.thread.PosixPlatformThreads","method":"pthreadStartRoutine","line":203}]}}}} +{"timestamp":"2023-07-25T06:12:47.924Z","sequence":45304,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.HonoProtonHelper","level":"DEBUG","message":"sender link [source: registration/flint/801201ce-5647-4cb9-9ccf-29219f7b41f1, target: null] is locally open but underlying transport is disconnected","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:47.924Z","sequence":45305,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.HonoProtonHelper","level":"DEBUG","message":"sender link [source: registration/shell/b8c5a8d4-29a3-4436-8c07-595b3b3b87b0, target: null] is locally open but underlying transport is disconnected","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:47.924Z","sequence":45306,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.HonoProtonHelper","level":"DEBUG","message":"sender link [source: registration/shell/b8c5a8d4-29a3-4436-8c07-595b3b3b87b0, target: null] is locally open but underlying transport is disconnected","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:47.924Z","sequence":45307,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.HonoProtonHelper","level":"DEBUG","message":"sender link [source: registration/shell/b8c5a8d4-29a3-4436-8c07-595b3b3b87b0, target: null] is locally open but underlying transport is disconnected","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:47.924Z","sequence":45308,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.HonoProtonHelper","level":"DEBUG","message":"sender link [source: registration/shell/b8c5a8d4-29a3-4436-8c07-595b3b3b87b0, target: null] is locally open but underlying transport is disconnected","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:47.925Z","sequence":45309,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.HonoProtonHelper","level":"DEBUG","message":"sender link [source: registration/shell/b8c5a8d4-29a3-4436-8c07-595b3b3b87b0, target: null] is locally open but underlying transport is disconnected","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:47.925Z","sequence":45310,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.client.amqp.connection.HonoProtonHelper","level":"DEBUG","message":"sender link [source: registration/shell/b8c5a8d4-29a3-4436-8c07-595b3b3b87b0, target: null] is locally open but underlying transport is disconnected","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:47.925Z","sequence":45311,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"INFO","message":"stopping secure AMQP server [0.0.0.0:5671]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:47.925Z","sequence":45312,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryHttpServer","level":"INFO","message":"stopping secure HTTP server [0.0.0.0:8443]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:47.925Z","sequence":45313,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryHttpServer","level":"INFO","message":"stopping insecure HTTP server [0.0.0.0:8080]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:47.926Z","sequence":45314,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryHttpServer","level":"INFO","message":"stopping endpoint [name: v1/tenants, class: org.eclipse.hono.service.management.tenant.DelegatingTenantManagementHttpEndpoint]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:47.926Z","sequence":45315,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryHttpServer","level":"INFO","message":"stopping endpoint [name: v1/devices, class: org.eclipse.hono.service.management.device.DelegatingDeviceManagementHttpEndpoint]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:47.926Z","sequence":45316,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryHttpServer","level":"INFO","message":"stopping endpoint [name: v1/credentials, class: org.eclipse.hono.service.management.credentials.DelegatingCredentialsManagementHttpEndpoint]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:47.927Z","sequence":45317,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.auth.BaseAuthenticationService","level":"INFO","message":"unregistering event bus listener [address: authentication.in]","threadName":"vert.x-eventloop-thread-1","threadId":60,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:47.93Z","sequence":45318,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"INFO","message":"stopping endpoint [name: credentials, class: org.eclipse.hono.service.credentials.DelegatingCredentialsAmqpEndpoint]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:47.93Z","sequence":45319,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.service.management.device.DeviceAndGatewayAutoProvisioner","level":"DEBUG","message":"shutting down","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:47.93Z","sequence":45320,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"INFO","message":"stopping endpoint [name: registration, class: org.eclipse.hono.service.registration.DelegatingRegistrationAmqpEndpoint]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:47.93Z","sequence":45321,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.service.device.EdgeDeviceAutoProvisioner","level":"DEBUG","message":"shutting down","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:47.931Z","sequence":45322,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"INFO","message":"stopping endpoint [name: tenant, class: org.eclipse.hono.service.tenant.DelegatingTenantAmqpEndpoint]","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:47.931Z","sequence":45323,"loggerClassName":"org.slf4j.impl.Slf4jLogger","loggerName":"org.eclipse.hono.deviceregistry.server.DeviceRegistryAmqpServer","level":"DEBUG","message":"client [container: Hono adapter-mqtt-Device Registration-d293e371-7f45-4d63-b360-4f04f354e9af] disconnected","threadName":"vert.x-eventloop-thread-0","threadId":59,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} +{"timestamp":"2023-07-25T06:12:47.94Z","sequence":45324,"loggerClassName":"org.jboss.logging.Logger","loggerName":"io.quarkus","level":"INFO","message":"hono-service-device-registry-mongodb stopped in 13.505s","threadName":"main","threadId":1,"mdc":{},"ndc":"","hostName":"aloxy-hono-service-device-registry-c7bccf474-zzhxb","processId":72} diff --git a/service-base/pom.xml b/service-base/pom.xml index 4fa5b432ad..ba6b7009f9 100644 --- a/service-base/pom.xml +++ b/service-base/pom.xml @@ -196,6 +196,14 @@ micrometer-registry-prometheus test + + org.eclipse.hono + hono-client-registry + + + org.eclipse.hono + hono-client-registry + diff --git a/adapter-base/src/main/java/org/eclipse/hono/adapter/AdapterDisabledException.java b/service-base/src/main/java/org/eclipse/hono/service/AdapterDisabledException.java similarity index 97% rename from adapter-base/src/main/java/org/eclipse/hono/adapter/AdapterDisabledException.java rename to service-base/src/main/java/org/eclipse/hono/service/AdapterDisabledException.java index 12b86dbdd5..72301bb6d5 100644 --- a/adapter-base/src/main/java/org/eclipse/hono/adapter/AdapterDisabledException.java +++ b/service-base/src/main/java/org/eclipse/hono/service/AdapterDisabledException.java @@ -10,7 +10,7 @@ * * SPDX-License-Identifier: EPL-2.0 */ -package org.eclipse.hono.adapter; +package org.eclipse.hono.service; import java.net.HttpURLConnection; diff --git a/service-base/src/main/java/org/eclipse/hono/service/metric/Metrics.java b/service-base/src/main/java/org/eclipse/hono/service/metric/Metrics.java index c2478626bf..5c551ca1a8 100644 --- a/service-base/src/main/java/org/eclipse/hono/service/metric/Metrics.java +++ b/service-base/src/main/java/org/eclipse/hono/service/metric/Metrics.java @@ -116,6 +116,38 @@ void reportTelemetry( int payloadSize, Sample timer); + /** + * Reports a telemetry message or event received from a device. + *

+ * The payload size of the message is calculated based on the configured + * minimum message size and the calculated size is reported. + *

+ * The configured minimum message size is retrieved from the tenant + * configuration object. + * + * @param type The type of message received, e.g. telemetry or event. + * @param tenantId The tenant that the device belongs to. + * @param tenantObject The tenant configuration object or {@code null}. + * @param outcome The outcome of processing the message. + * @param qos The delivery semantics used for sending the message downstream. + * @param payloadSize The number of bytes contained in the message's payload. + * @param timer The timer indicating the amount of time used + * for processing the message. + * @param reason The reason providing more information about the outcome of processing the message. + * @throws NullPointerException if any of the parameters except the tenant object are {@code null}. + * @throws IllegalArgumentException if type is neither telemetry nor event or + * if payload size is negative. + */ + void reportTelemetry( + MetricsTags.EndpointType type, + String tenantId, + TenantObject tenantObject, + MetricsTags.ProcessingOutcome outcome, + MetricsTags.QoS qos, + int payloadSize, + Sample timer, + MetricsTags.Reason reason); + /** * Reports a telemetry message or event received from a device. *

@@ -148,6 +180,40 @@ void reportTelemetry( MetricsTags.TtdStatus ttdStatus, Sample timer); + /** + * Reports a telemetry message or event received from a device. + *

+ * The payload size of the message is calculated based on the configured + * minimum message size and the calculated size is reported. + *

+ * The configured minimum message size is retrieved from the tenant + * configuration object. + * + * @param type The type of message received, e.g. telemetry or event. + * @param tenantId The tenant that the device belongs to. + * @param tenantObject The tenant configuration object or {@code null}. + * @param outcome The outcome of processing the message. + * @param qos The delivery semantics used for sending the message downstream. + * @param payloadSize The number of bytes contained in the message's payload. + * @param ttdStatus The outcome of processing the TTD value contained in the message. + * @param timer The timer indicating the amount of time used + * for processing the message. + * @param reason The reason providing more information about the outcome of processing the message. + * @throws NullPointerException if any of the parameters except the tenant object are {@code null}. + * @throws IllegalArgumentException if type is neither telemetry nor event or + * if payload size is negative. + */ + void reportTelemetry( + MetricsTags.EndpointType type, + String tenantId, + TenantObject tenantObject, + MetricsTags.ProcessingOutcome outcome, + MetricsTags.QoS qos, + int payloadSize, + MetricsTags.TtdStatus ttdStatus, + Sample timer, + MetricsTags.Reason reason); + /** * Reports a command & control message being transferred to/from a device. *

diff --git a/service-base/src/main/java/org/eclipse/hono/service/metric/MetricsTags.java b/service-base/src/main/java/org/eclipse/hono/service/metric/MetricsTags.java index 32c8e8b526..4e283dfe69 100644 --- a/service-base/src/main/java/org/eclipse/hono/service/metric/MetricsTags.java +++ b/service-base/src/main/java/org/eclipse/hono/service/metric/MetricsTags.java @@ -14,6 +14,8 @@ package org.eclipse.hono.service.metric; import org.eclipse.hono.client.ClientErrorException; +import org.eclipse.hono.client.registry.TenantDisabledOrNotRegisteredException; +import org.eclipse.hono.service.AdapterDisabledException; import org.eclipse.hono.util.CommandConstants; import org.eclipse.hono.util.EventConstants; import org.eclipse.hono.util.Hostnames; @@ -241,6 +243,82 @@ public Tag asTag() { } } + /** + * A status providing more information about the outcome of processing a message received from a device. + *

+ * The immutable enum check is disabled because the offending field's (tag) type + * is in fact immutable but has no corresponding annotation. + */ + @SuppressWarnings("ImmutableEnumChecker") + public enum Reason { + + /** + * The message received has a bad syntax and could not be parsed. + */ + BAD_SYNTAX("bad-syntax"), + /** + * The type of the message could not be deducted from the message. + */ + UNKNOWN_TYPE("unknown-type"), + /** + * The type of the message is not supported for this action. + */ + UNSUPPORTED_TYPE("unsupported-type"), + /** + * Tenant is disabled or not registered. + */ + TENANT_DISABLED_OR_NOT_REGISTERED("tenant-disabled-or-not-registered"), + /** + * Tenant is disabld for this adapter. + */ + TENANT_DISABLED_FOR_ADAPTER("tenant-disabled-for-this-adapter"), + /** + * Message limit exceeded. + */ + MESSAGE_LIMIT_EXCEEDED("message-limit-exceeded"), + /** + * Unknown reason. + */ + UNKNOWN("unknown"); + + static final String TAG_NAME = "reason"; + + private final Tag tag; + + Reason(final String tagValue) { + this.tag = Tag.of(TAG_NAME, tagValue); + } + + /** + * Gets a reason for an error. + * + * @param t The error. + * @return The reason. + */ + public static Reason from(final Throwable t) { + if (TenantDisabledOrNotRegisteredException.class.isInstance(t)) { + return MetricsTags.Reason.TENANT_DISABLED_OR_NOT_REGISTERED; + } else if (AdapterDisabledException.class.isInstance(t)) { + return MetricsTags.Reason.TENANT_DISABLED_FOR_ADAPTER; + } else if (ClientErrorException.class.isInstance(t)) { + final ClientErrorException exception = (ClientErrorException) t; + if (exception.getErrorCode() == 429) { + return MetricsTags.Reason.MESSAGE_LIMIT_EXCEEDED; + } + } + return MetricsTags.Reason.UNKNOWN; + } + + /** + * Gets a Micrometer tag for the outcome. + * + * @return The tag. + */ + public Tag asTag() { + return tag; + } + } + /** * Status indicating the outcome of processing a TTD value contained in a message received from a device. *

diff --git a/service-base/src/main/java/org/eclipse/hono/service/metric/MicrometerBasedMetrics.java b/service-base/src/main/java/org/eclipse/hono/service/metric/MicrometerBasedMetrics.java index 33c0b264bd..5a369938f6 100644 --- a/service-base/src/main/java/org/eclipse/hono/service/metric/MicrometerBasedMetrics.java +++ b/service-base/src/main/java/org/eclipse/hono/service/metric/MicrometerBasedMetrics.java @@ -259,6 +259,19 @@ public void reportTelemetry( reportTelemetry(type, tenantId, tenantObject, outcome, qos, payloadSize, MetricsTags.TtdStatus.NONE, timer); } + @Override + public void reportTelemetry( + final MetricsTags.EndpointType type, + final String tenantId, + final TenantObject tenantObject, + final ProcessingOutcome outcome, + final MetricsTags.QoS qos, + final int payloadSize, + final Timer.Sample timer, + final MetricsTags.Reason reason) { + reportTelemetry(type, tenantId, tenantObject, outcome, qos, payloadSize, MetricsTags.TtdStatus.NONE, timer, reason); + } + @Override public final void reportTelemetry( final MetricsTags.EndpointType type, @@ -270,6 +283,21 @@ public final void reportTelemetry( final MetricsTags.TtdStatus ttdStatus, final Timer.Sample timer) { + reportTelemetry(type, tenantId, tenantObject, outcome, qos, payloadSize, ttdStatus, timer, null); + } + + @Override + public void reportTelemetry( + final MetricsTags.EndpointType type, + final String tenantId, + final TenantObject tenantObject, + final ProcessingOutcome outcome, + final MetricsTags.QoS qos, + final int payloadSize, + final MetricsTags.TtdStatus ttdStatus, + final Timer.Sample timer, + final MetricsTags.Reason reason) { + Objects.requireNonNull(type); Objects.requireNonNull(tenantId); Objects.requireNonNull(outcome); @@ -284,10 +312,14 @@ public final void reportTelemetry( } final Tags tags = Tags.of(type.asTag()) - .and(MetricsTags.getTenantTag(tenantId)) - .and(outcome.asTag()) - .and(qos.asTag()) - .and(ttdStatus.asTag()); + .and(MetricsTags.getTenantTag(tenantId)) + .and(outcome.asTag()) + .and(qos.asTag()) + .and(ttdStatus.asTag()); + + if (reason != null) { + tags.and(reason.asTag()); + } timer.stop(this.registry.timer(METER_TELEMETRY_PROCESSING_DURATION, tags)); diff --git a/service-base/src/main/java/org/eclipse/hono/service/metric/NoopBasedMetrics.java b/service-base/src/main/java/org/eclipse/hono/service/metric/NoopBasedMetrics.java index 8ecd30946b..7d8e804c33 100644 --- a/service-base/src/main/java/org/eclipse/hono/service/metric/NoopBasedMetrics.java +++ b/service-base/src/main/java/org/eclipse/hono/service/metric/NoopBasedMetrics.java @@ -99,6 +99,19 @@ public void reportTelemetry( } } + @Override + public void reportTelemetry( + final EndpointType type, + final String tenantId, + final TenantObject tenantObject, + final ProcessingOutcome outcome, + final MetricsTags.QoS qos, + final int payloadSize, + final Sample timer, + final MetricsTags.Reason reason) { + reportTelemetry(type, tenantId, tenantObject, outcome, qos, payloadSize, timer); + } + @Override public void reportTelemetry( final MetricsTags.EndpointType type, @@ -112,6 +125,20 @@ public void reportTelemetry( reportTelemetry(type, tenantId, tenantObject, outcome, qos, payloadSize, timer); } + @Override + public void reportTelemetry( + final EndpointType type, + final String tenantId, + final TenantObject tenantObject, + final ProcessingOutcome outcome, + final MetricsTags.QoS qos, + final int payloadSize, + final MetricsTags.TtdStatus ttdStatus, + final Sample timer, + final MetricsTags.Reason reason) { + reportTelemetry(type, tenantId, tenantObject, outcome, qos, payloadSize, timer); + } + @Override public void reportCommand( final Direction direction,